# 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=False,
        tls_protocols=["TLS_V1_3"],
        is_origin_compression_enabled=False,
        is_behind_cdn=False,
        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.IPHashLoadBalancingMethod(
            method="IP_HASH"),
        websocket_path_prefixes=["EXAMPLE--Value"],
        is_sni_enabled=True,
        health_checks=oci.waas.models.HealthCheck(
            is_enabled=False,
            method="POST",
            path="EXAMPLE-path-Value",
            headers={
                'EXAMPLE_KEY_F8hK5': 'EXAMPLE_VALUE_9QQpTKqUJDosrSHstwVr'},
            expected_response_code_group=["3XX"],
            is_response_text_check_enabled=False,
            expected_response_text="EXAMPLE-expectedResponseText-Value",
            interval_in_seconds=63,
            timeout_in_seconds=26,
            healthy_threshold=6,
            unhealthy_threshold=11)),
    opc_request_id="UABWU8MPZTCZQJDMECTX<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    if_match="EXAMPLE-ifMatch-Value")

# Get the data from response
print(update_policy_config_response.headers)