// 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 * as containerengine from "oci-containerengine";
import common = require("oci-common");

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

const provider: common.ConfigFileAuthenticationDetailsProvider = new common.ConfigFileAuthenticationDetailsProvider();

(async () => {
    try {
     // Create a service client
     const client = new containerengine.ContainerEngineClient({ authenticationDetailsProvider: provider });

     // Create a request and dependent object(s).
	const  createClusterDetails = {
		name: "EXAMPLE-name-Value",
		compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
		endpointConfig: {
			subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
			nsgIds: ["EXAMPLE--Value"					],
			isPublicIpEnabled: true,

			}
,
		vcnId: "ocid1.test.oc1..<unique_ID>EXAMPLE-vcnId-Value",
		kubernetesVersion: "EXAMPLE-kubernetesVersion-Value",
		kmsKeyId: "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",
		freeformTags: {
			EXAMPLE_KEY_mMv0g :"EXAMPLE_VALUE_r7CGsfu1NGIZct6t1B3c"
			},
		definedTags: {
			EXAMPLE_KEY_P2RYH :{
				EXAMPLE_KEY_tHHpI :"EXAMPLE--Value"
				}
			},
		options: {
			serviceLbSubnetIds: ["EXAMPLE--Value"					],
			kubernetesNetworkConfig: {
				podsCidr: "EXAMPLE-podsCidr-Value",
				servicesCidr: "EXAMPLE-servicesCidr-Value",

				}
,
			addOns: {
				isKubernetesDashboardEnabled: true,
				isTillerEnabled: true,

				}
,
			admissionControllerOptions: {
				isPodSecurityPolicyEnabled: true,

				}
,
			persistentVolumeConfig: {
				freeformTags: {
					EXAMPLE_KEY_97P9t :"EXAMPLE_VALUE_kGkAu9lvm6clcE5YL1As"
					},
				definedTags: {
					EXAMPLE_KEY_ih3AG :{
						EXAMPLE_KEY_ND2Wu :"EXAMPLE--Value"
						}
					},

				}
,
			serviceLbConfig: {
				freeformTags: {
					EXAMPLE_KEY_98697 :"EXAMPLE_VALUE_36ek1CDcTMnCWymeCugl"
					},
				definedTags: {
					EXAMPLE_KEY_QUH34 :{
						EXAMPLE_KEY_JZqcL :"EXAMPLE--Value"
						}
					},

				}
,

			}
,
		imagePolicyConfig: {
			isPolicyEnabled: true,
			keyDetails: [{
					kmsKeyId: "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",

					}
					],

			}
,
		clusterPodNetworkOptions: [{
				cniType: "OCI_VCN_IP_NATIVE",
				}
				],
		type: containerengine.models.ClusterType.EnhancedCluster,

		}

	const createClusterRequest: containerengine.requests.CreateClusterRequest = { 
	createClusterDetails: createClusterDetails,
	opcRetryToken: "EXAMPLE-opcRetryToken-Value",
	opcRequestId: "BYWOQJIHTAX7G70MHK6D<unique_ID>",

		}; 


     // Send request to the Client.
     const createClusterResponse = await client.createCluster(createClusterRequest);
     }
     catch (error) {
         console.log("createCluster Failed with error  " + error);
     }
})();