# 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
cloud_guard_client = OCI::CloudGuard::CloudGuardClient.new(config: config)

# Send the request to service, some parameters are not required, see API doc for more info
create_detector_recipe_detector_rule_response =
  cloud_guard_client.create_detector_recipe_detector_rule(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-detectorRecipeId-Value',
    OCI::CloudGuard::Models::CreateDetectorRecipeDetectorRuleDetails.new(
      details:
        OCI::CloudGuard::Models::CreateDetectorRuleDetails.new(
          name: 'EXAMPLE-name-Value',
          source_detector_rule_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-sourceDetectorRuleId-Value',
          description: 'EXAMPLE-description-Value',
          is_enabled: false,
          risk_level: 'CRITICAL',
          configurations: [
            OCI::CloudGuard::Models::DetectorConfiguration.new(
              config_key: 'EXAMPLE-configKey-Value',
              name: 'EXAMPLE-name-Value',
              value: 'EXAMPLE-value-Value',
              data_type: 'EXAMPLE-dataType-Value',
              values: [
                OCI::CloudGuard::Models::ConfigValue.new(
                  list_type: 'CUSTOM',
                  managed_list_type: 'EXAMPLE-managedListType-Value',
                  value: 'EXAMPLE-value-Value'
                )
              ],
              allowed_values_data_type: 'EXAMPLE-allowedValuesDataType-Value',
              allowed_values: [
                OCI::CloudGuard::Models::PropertyTuple.new(
                  key: 'EXAMPLE-key-Value', value: 'EXAMPLE-value-Value'
                )
              ]
            )
          ],
          condition:
            OCI::CloudGuard::Models::SimpleCondition.new(
              kind: 'SIMPLE',
              parameter: 'EXAMPLE-parameter-Value',
              operator: 'NOT_IN',
              value: 'EXAMPLE-value-Value',
              value_type: 'MANAGED'
            ),
          labels: %w[EXAMPLE--Value],
          recommendation: 'EXAMPLE-recommendation-Value',
          data_source_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-dataSourceId-Value',
          entities_mappings: [
            OCI::CloudGuard::Models::EntitiesMapping.new(
              query_field: 'EXAMPLE-queryField-Value',
              display_name: 'EXAMPLE-displayName-Value',
              entity_type: 'JSON_LIST'
            )
          ]
        )
    )
  )

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