# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).

import oci
from datetime import datetime

# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()


# Initialize service client with default config file
usage_api_client = oci.usage_api.UsageapiClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_query_response = usage_api_client.create_query(
    create_query_details=oci.usage_api.models.CreateQueryDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        query_definition=oci.usage_api.models.QueryDefinition(
            display_name="EXAMPLE-displayName-Value",
            report_query=oci.usage_api.models.ReportQuery(
                tenant_id="ocid1.test.oc1..<unique_ID>EXAMPLE-tenantId-Value",
                granularity="HOURLY",
                time_usage_started=datetime.strptime(
                    "2014-03-04T22:03:33.111Z",
                    "%Y-%m-%dT%H:%M:%S.%fZ"),
                time_usage_ended=datetime.strptime(
                    "2034-01-20T12:03:44.776Z",
                    "%Y-%m-%dT%H:%M:%S.%fZ"),
                is_aggregate_by_time=False,
                forecast=oci.usage_api.models.Forecast(
                    time_forecast_ended=datetime.strptime(
                        "2011-08-30T06:57:04.167Z",
                        "%Y-%m-%dT%H:%M:%S.%fZ"),
                    forecast_type="BASIC",
                    time_forecast_started=datetime.strptime(
                        "2016-03-20T13:22:10.375Z",
                        "%Y-%m-%dT%H:%M:%S.%fZ")),
                query_type="CREDIT",
                group_by=["EXAMPLE--Value"],
                group_by_tag=[
                    oci.usage_api.models.Tag(
                        namespace="EXAMPLE-namespace-Value",
                        key="EXAMPLE-key-Value",
                        value="EXAMPLE-value-Value")],
                compartment_depth=1.2354709,
                filter=oci.usage_api.models.Filter(
                    operator="AND",
                    dimensions=[
                        oci.usage_api.models.Dimension(
                            key="EXAMPLE-key-Value",
                            value="EXAMPLE-value-Value")],
                    tags=[
                        oci.usage_api.models.Tag(
                            namespace="EXAMPLE-namespace-Value",
                            key="EXAMPLE-key-Value",
                            value="EXAMPLE-value-Value")]),
                date_range_name="ALL"),
            cost_analysis_ui=oci.usage_api.models.CostAnalysisUI(
                graph="LINES",
                is_cumulative_graph=True),
            version=6476.2437)),
    opc_request_id="KLNYOSL6QOZZB8FHBJ3V<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

# Get the data from response
print(create_query_response.data)