// 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  updateNodePoolDetails = {
		name: "EXAMPLE-name-Value",
		kubernetesVersion: "EXAMPLE-kubernetesVersion-Value",
		initialNodeLabels: [{
				key: "EXAMPLE-key-Value",
				value: "EXAMPLE-value-Value",

				}
				],
		quantityPerSubnet: 895,
		subnetIds: ["EXAMPLE--Value"				],
		nodeConfigDetails: {
			size: 670,
			nsgIds: ["EXAMPLE--Value"					],
			kmsKeyId: "ocid1.test.oc1..<unique_ID>EXAMPLE-kmsKeyId-Value",
			isPvEncryptionInTransitEnabled: true,
			freeformTags: {
				EXAMPLE_KEY_U0RiB :"EXAMPLE_VALUE_qodMtktE6nN4xsdxKdjO"
				},
			definedTags: {
				EXAMPLE_KEY_nNF4y :{
					EXAMPLE_KEY_xq3O6 :"EXAMPLE--Value"
					}
				},
			placementConfigs: [{
					availabilityDomain: "EXAMPLE-availabilityDomain-Value",
					subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
					capacityReservationId: "ocid1.test.oc1..<unique_ID>EXAMPLE-capacityReservationId-Value",
					preemptibleNodeConfig: {
						preemptionAction: {
							type: "TERMINATE",							isPreserveBootVolume: false

							}
,

						}
,
					faultDomains: ["EXAMPLE--Value"							],

					}
					],
			nodePoolPodNetworkOptionDetails: {
				cniType: "FLANNEL_OVERLAY",
				}
,

			}
,
		nodeMetadata: {
			EXAMPLE_KEY_S0JAJ :"EXAMPLE_VALUE_yVUOQeE1FbRbDCbnCx5o"
			},
		nodeSourceDetails: {
			sourceType: "IMAGE",			imageId: "ocid1.test.oc1..<unique_ID>EXAMPLE-imageId-Value",
			bootVolumeSizeInGBs: 442

			}
,
		sshPublicKey: "EXAMPLE-sshPublicKey-Value",
		nodeShape: "EXAMPLE-nodeShape-Value",
		nodeShapeConfig: {
			ocpus: 607.2742,
			memoryInGBs: 6567.7803,

			}
,
		freeformTags: {
			EXAMPLE_KEY_XnP2q :"EXAMPLE_VALUE_D2fXqnVLBgkmDLuhtvaj"
			},
		definedTags: {
			EXAMPLE_KEY_WNn9h :{
				EXAMPLE_KEY_wanIB :"EXAMPLE--Value"
				}
			},
		nodeEvictionNodePoolSettings: {
			evictionGraceDuration: "EXAMPLE-evictionGraceDuration-Value",
			isForceDeleteAfterGraceDuration: true,

			}
,
		nodePoolCyclingDetails: {
			maximumUnavailable: "EXAMPLE-maximumUnavailable-Value",
			maximumSurge: "EXAMPLE-maximumSurge-Value",
			isNodeCyclingEnabled: true,

			}
,

		}

	const updateNodePoolRequest: containerengine.requests.UpdateNodePoolRequest = { 
	nodePoolId: "ocid1.test.oc1..<unique_ID>EXAMPLE-nodePoolId-Value",
	updateNodePoolDetails: updateNodePoolDetails,
	ifMatch: "EXAMPLE-ifMatch-Value",
	opcRequestId: "LBEDU3S7JUB8GPDDMM68<unique_ID>",
	overrideEvictionGraceDuration: "EXAMPLE-overrideEvictionGraceDuration-Value",
	isForceDeletionAfterOverrideGraceDuration: false,

		}; 


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