// 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).

package main

import (
	"context"
	"fmt"

	"github.com/oracle/oci-go-sdk/v65/common"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
	"github.com/oracle/oci-go-sdk/v65/waas"
)

func ExampleUpdatePolicyConfig() {
	// Create a default authentication provider that uses the DEFAULT
	// profile in the configuration file.
	// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
	client, err := waas.NewWaasClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

	// Create a request and dependent object(s).

	req := waas.UpdatePolicyConfigRequest{UpdatePolicyConfigDetails: waas.PolicyConfig{IsCacheControlRespected: common.Bool(false),
		IsSniEnabled: common.Bool(true),
		LoadBalancingMethod: waas.StickyCookieLoadBalancingMethod{Domain: common.String("EXAMPLE-domain-Value"),
			ExpirationTimeInSeconds: common.Int(3.1066254e+07),
			Name:                    common.String("EXAMPLE-name-Value")},
		IsHttpsEnabled:             common.Bool(false),
		IsHttpsForced:              common.Bool(false),
		IsOriginCompressionEnabled: common.Bool(true),
		IsResponseBufferingEnabled: common.Bool(false),
		TlsProtocols:               []waas.PolicyConfigTlsProtocolsEnum{waas.PolicyConfigTlsProtocolsV11},
		WebsocketPathPrefixes:      []string{"EXAMPLE--Value"},
		CertificateId:              common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-certificateId-Value"),
		CipherGroup:                waas.PolicyConfigCipherGroupDefault,
		ClientAddressHeader:        waas.PolicyConfigClientAddressHeaderXForwardedFor,
		HealthChecks: &waas.HealthCheck{ExpectedResponseCodeGroup: []waas.HealthCheckExpectedResponseCodeGroupEnum{waas.HealthCheckExpectedResponseCodeGroup5xx},
			HealthyThreshold:           common.Int(10),
			IntervalInSeconds:          common.Int(54),
			IsEnabled:                  common.Bool(false),
			IsResponseTextCheckEnabled: common.Bool(true),
			Method:                     waas.HealthCheckMethodGet,
			Path:                       common.String("EXAMPLE-path-Value"),
			ExpectedResponseText:       common.String("EXAMPLE-expectedResponseText-Value"),
			Headers:                    map[string]string{"EXAMPLE_KEY_TPyQO": "EXAMPLE_VALUE_tHeyttcCE6I3Bo8GH3KJ"},
			TimeoutInSeconds:           common.Int(111),
			UnhealthyThreshold:         common.Int(10)},
		IsBehindCdn: common.Bool(true)},
		WaasPolicyId:  common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-waasPolicyId-Value"),
		IfMatch:       common.String("EXAMPLE-ifMatch-Value"),
		OpcRequestId:  common.String("CQA9HVVA85QDUIOCDKVY<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}

	// Send the request using the service client
	resp, err := client.UpdatePolicyConfig(context.Background(), req)
	helpers.FatalIfError(err)

	// Retrieve value from the response.
	fmt.Println(resp)
}