# 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).

require '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::ConfigFileLoader.load_config

# Initialize service client with default config file
data_safe_client = OCI::DataSafe::DataSafeClient.new(config: 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(
    OCI::DataSafe::Models::CreateReportDefinitionDetails.new(
      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::DataSafe::Models::Column.new(
          display_name: 'EXAMPLE-displayName-Value',
          field_name: 'EXAMPLE-fieldName-Value',
          is_hidden: false,
          display_order: 611,
          data_type: 'EXAMPLE-dataType-Value'
        )
      ],
      column_filters: [
        OCI::DataSafe::Models::ColumnFilter.new(
          field_name: 'EXAMPLE-fieldName-Value',
          operator: 'NE',
          expressions: %w[EXAMPLE--Value],
          is_enabled: true,
          is_hidden: false
        )
      ],
      column_sortings: [
        OCI::DataSafe::Models::ColumnSorting.new(
          field_name: 'EXAMPLE-fieldName-Value',
          is_ascending: false,
          sorting_order: 581
        )
      ],
      summary: [
        OCI::DataSafe::Models::Summary.new(
          name: 'EXAMPLE-name-Value',
          display_order: 47,
          is_hidden: false,
          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_ipAvv' => 'EXAMPLE_VALUE_4YHqk4wrSMBNWlJIeO1E'
      },
      defined_tags: {
        'EXAMPLE_KEY_sjEqP' => { 'EXAMPLE_KEY_NUx4n' => 'EXAMPLE--Value' }
      }
    )
  )

# Get the data from response
puts "#{create_report_definition_response.data}"