# 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
update_report_definition_response = data_safe_client.update_report_definition(
    report_definition_id="ocid1.test.oc1..<unique_ID>EXAMPLE-reportDefinitionId-Value",
    update_report_definition_details=oci.data_safe.models.UpdateReportDefinitionDetails(
        display_name="EXAMPLE-displayName-Value",
        column_info=[
            oci.data_safe.models.Column(
                display_name="EXAMPLE-displayName-Value",
                field_name="EXAMPLE-fieldName-Value",
                is_hidden=True,
                display_order=766,
                data_type="EXAMPLE-dataType-Value")],
        column_filters=[
            oci.data_safe.models.ColumnFilter(
                field_name="EXAMPLE-fieldName-Value",
                operator="AND",
                expressions=["EXAMPLE--Value"],
                is_enabled=True,
                is_hidden=False)],
        column_sortings=[
            oci.data_safe.models.ColumnSorting(
                field_name="EXAMPLE-fieldName-Value",
                is_ascending=True,
                sorting_order=602)],
        summary=[
            oci.data_safe.models.Summary(
                name="EXAMPLE-name-Value",
                display_order=697,
                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_diNlr': 'EXAMPLE_VALUE_4R4wUDTuG99tspqYfPYD'},
        defined_tags={
            'EXAMPLE_KEY_F3wky': {
                'EXAMPLE_KEY_UAeup': 'EXAMPLE--Value'}}),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="6K973ZUVHMGWDYTD0ILS<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

# Get the data from response
print(update_report_definition_response.headers)