# 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
cloud_guard_client = oci.cloud_guard.CloudGuardClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_detector_recipe_detector_rule_response = cloud_guard_client.update_detector_recipe_detector_rule(
    detector_recipe_id="ocid1.test.oc1..<unique_ID>EXAMPLE-detectorRecipeId-Value",
    detector_rule_id="ocid1.test.oc1..<unique_ID>EXAMPLE-detectorRuleId-Value",
    update_detector_recipe_detector_rule_details=oci.cloud_guard.models.UpdateDetectorRecipeDetectorRuleDetails(
        details=oci.cloud_guard.models.UpdateDetectorRuleDetails(
            is_enabled=True,
            risk_level="LOW",
            configurations=[
                oci.cloud_guard.models.DetectorConfiguration(
                    config_key="EXAMPLE-configKey-Value",
                    name="EXAMPLE-name-Value",
                    value="EXAMPLE-value-Value",
                    data_type="EXAMPLE-dataType-Value",
                    values=[
                        oci.cloud_guard.models.ConfigValue(
                            list_type="MANAGED",
                            managed_list_type="EXAMPLE-managedListType-Value",
                            value="EXAMPLE-value-Value")])],
            condition=oci.cloud_guard.models.SimpleCondition(
                kind="SIMPLE",
                parameter="EXAMPLE-parameter-Value",
                operator="NOT_EQUALS",
                value="EXAMPLE-value-Value",
                value_type="CUSTOM"),
            labels=["EXAMPLE--Value"],
            description="EXAMPLE-description-Value",
            recommendation="EXAMPLE-recommendation-Value",
            data_source_id="ocid1.test.oc1..<unique_ID>EXAMPLE-dataSourceId-Value",
            entities_mappings=[
                oci.cloud_guard.models.EntitiesMapping(
                    query_field="EXAMPLE-queryField-Value",
                    display_name="EXAMPLE-displayName-Value",
                    entity_type="INTERNAL_IP")])),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="W0HHEREASWQEFH26MJLD<unique_ID>")

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