# 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

# 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
data_safe_client = oci.data_safe.DataSafeClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_report_definition_response = data_safe_client.create_report_definition(
    create_report_definition_details=oci.data_safe.models.CreateReportDefinitionDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        display_name="EXAMPLE-displayName-Value",
        parent_id="ocid1.test.oc1..<unique_ID>EXAMPLE-parentId-Value",
        column_info=[
            oci.data_safe.models.Column(
                display_name="EXAMPLE-displayName-Value",
                field_name="EXAMPLE-fieldName-Value",
                is_hidden=False,
                display_order=602,
                data_type="EXAMPLE-dataType-Value")],
        column_filters=[
            oci.data_safe.models.ColumnFilter(
                field_name="EXAMPLE-fieldName-Value",
                operator="NOT_IN",
                expressions=["EXAMPLE--Value"],
                is_enabled=False,
                is_hidden=True)],
        column_sortings=[
            oci.data_safe.models.ColumnSorting(
                field_name="EXAMPLE-fieldName-Value",
                is_ascending=False,
                sorting_order=104)],
        summary=[
            oci.data_safe.models.Summary(
                name="EXAMPLE-name-Value",
                display_order=824,
                is_hidden=True,
                group_by_field_name="EXAMPLE-groupByFieldName-Value",
                count_of="EXAMPLE-countOf-Value",
                scim_filter="EXAMPLE-scimFilter-Value")],
        description="EXAMPLE-description-Value",
        freeform_tags={
            'EXAMPLE_KEY_Qqquc': 'EXAMPLE_VALUE_xlDZLjsAxCehzYi8X5oI'},
        defined_tags={
            'EXAMPLE_KEY_LgEnB': {
                'EXAMPLE_KEY_TvKHG': 'EXAMPLE--Value'}}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="AFDW6XSV6CRGDTHQKPAQ<unique_ID>")

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