# 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
container_engine_client = oci.container_engine.ContainerEngineClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_cluster_response = container_engine_client.update_cluster(
    cluster_id="ocid1.test.oc1..<unique_ID>EXAMPLE-clusterId-Value",
    update_cluster_details=oci.container_engine.models.UpdateClusterDetails(
        name="EXAMPLE-name-Value",
        kubernetes_version="EXAMPLE-kubernetesVersion-Value",
        options=oci.container_engine.models.UpdateClusterOptionsDetails(
            admission_controller_options=oci.container_engine.models.AdmissionControllerOptions(
                is_pod_security_policy_enabled=False),
            persistent_volume_config=oci.container_engine.models.PersistentVolumeConfigDetails(
                freeform_tags={
                    'EXAMPLE_KEY_kyjgc': 'EXAMPLE_VALUE_UxWyzz5HeSftXLfoktiY'},
                defined_tags={
                    'EXAMPLE_KEY_JgYCm': {
                        'EXAMPLE_KEY_0poOW': 'EXAMPLE--Value'}}),
            service_lb_config=oci.container_engine.models.ServiceLbConfigDetails(
                freeform_tags={
                    'EXAMPLE_KEY_VTNLO': 'EXAMPLE_VALUE_RaAso1TFyiAMFsWvBhmm'},
                defined_tags={
                    'EXAMPLE_KEY_5cKY1': {
                        'EXAMPLE_KEY_CwirJ': 'EXAMPLE--Value'}})),
        freeform_tags={
            'EXAMPLE_KEY_EcmQA': 'EXAMPLE_VALUE_GEyNxgfgeyp82NSpHjfM'},
        defined_tags={
            'EXAMPLE_KEY_V3LqO': {
                'EXAMPLE_KEY_eLAlW': 'EXAMPLE--Value'}},
        image_policy_config=oci.container_engine.models.UpdateImagePolicyConfigDetails(
            is_policy_enabled=True,
            key_details=[
                oci.container_engine.models.KeyDetails(
                    kms_key_id="ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value")]),
        type="ENHANCED_CLUSTER"),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="CSE5HFBXPYHWDN8Z1YPD<unique_ID>")

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