# 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_response = cloud_guard_client.update_detector_recipe(
detector_recipe_id="ocid1.test.oc1..<unique_ID>EXAMPLE-detectorRecipeId-Value",
update_detector_recipe_details=oci.cloud_guard.models.UpdateDetectorRecipeDetails(
display_name="EXAMPLE-displayName-Value",
description="EXAMPLE-description-Value",
detector_rules=[
oci.cloud_guard.models.UpdateDetectorRecipeDetectorRule(
detector_rule_id="ocid1.test.oc1..<unique_ID>EXAMPLE-detectorRuleId-Value",
details=oci.cloud_guard.models.UpdateDetectorRuleDetails(
is_enabled=True,
risk_level="MEDIUM",
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")],
allowed_values_data_type="EXAMPLE-allowedValuesDataType-Value",
allowed_values=[
oci.cloud_guard.models.PropertyTuple(
key="EXAMPLE-key-Value",
value="EXAMPLE-value-Value")])],
condition=oci.cloud_guard.models.SimpleCondition(
kind="SIMPLE",
parameter="EXAMPLE-parameter-Value",
operator="IN",
value="EXAMPLE-value-Value",
value_type="MANAGED"),
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="TEXT")]))],
freeform_tags={
'EXAMPLE_KEY_UZ5kc': 'EXAMPLE_VALUE_kQ12hncqGOBkaMtUAnYh'},
defined_tags={
'EXAMPLE_KEY_BtSm2': {
'EXAMPLE_KEY_8jfeF': 'EXAMPLE--Value'}}),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="EAVLJX43FOWMJNA3OYZP<unique_ID>",
opc_retry_token="EXAMPLE-opcRetryToken-Value")
# Get the data from response
print(update_detector_recipe_response.data)