# 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
waas_client = oci.waas.WaasClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
update_policy_config_response = waas_client.update_policy_config(
waas_policy_id="ocid1.test.oc1..<unique_ID>EXAMPLE-waasPolicyId-Value",
update_policy_config_details=oci.waas.models.PolicyConfig(
certificate_id="ocid1.test.oc1..<unique_ID>EXAMPLE-certificateId-Value",
is_https_enabled=False,
is_https_forced=True,
tls_protocols=["TLS_V1_3"],
is_origin_compression_enabled=True,
is_behind_cdn=True,
client_address_header="X_FORWARDED_FOR",
is_cache_control_respected=False,
is_response_buffering_enabled=False,
cipher_group="DEFAULT",
load_balancing_method=oci.waas.models.RoundRobinLoadBalancingMethod(
method="ROUND_ROBIN"),
websocket_path_prefixes=["EXAMPLE--Value"],
is_sni_enabled=True,
health_checks=oci.waas.models.HealthCheck(
is_enabled=False,
method="HEAD",
path="EXAMPLE-path-Value",
headers={
'EXAMPLE_KEY_431FN': 'EXAMPLE_VALUE_SZlPDICCDn3NZyI7WhTd'},
expected_response_code_group=["4XX"],
is_response_text_check_enabled=True,
expected_response_text="EXAMPLE-expectedResponseText-Value",
interval_in_seconds=52,
timeout_in_seconds=91,
healthy_threshold=17,
unhealthy_threshold=10)),
opc_request_id="IYPHQACK0DSKA4237VPT<unique_ID>",
opc_retry_token="EXAMPLE-opcRetryToken-Value",
if_match="EXAMPLE-ifMatch-Value")
# Get the data from response
print(update_policy_config_response.headers)