oci-containerengine 2.83.0 → 2.84.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +48 -44
- package/lib/client.js +50 -44
- package/lib/client.js.map +1 -1
- package/lib/request/cluster-migrate-to-native-vcn-request.d.ts +1 -1
- package/lib/request/complete-credential-rotation-request.d.ts +1 -1
- package/lib/request/create-cluster-request.d.ts +1 -1
- package/lib/request/create-kubeconfig-request.d.ts +1 -1
- package/lib/request/create-node-pool-request.d.ts +1 -1
- package/lib/request/create-virtual-node-pool-request.d.ts +1 -1
- package/lib/request/create-workload-mapping-request.d.ts +1 -1
- package/lib/request/delete-cluster-request.d.ts +1 -1
- package/lib/request/delete-node-pool-request.d.ts +1 -1
- package/lib/request/delete-node-request.d.ts +1 -1
- package/lib/request/delete-virtual-node-pool-request.d.ts +1 -1
- package/lib/request/delete-work-request-request.d.ts +1 -1
- package/lib/request/delete-workload-mapping-request.d.ts +1 -1
- package/lib/request/disable-addon-request.d.ts +1 -1
- package/lib/request/get-addon-request.d.ts +1 -1
- package/lib/request/get-cluster-migrate-to-native-vcn-status-request.d.ts +1 -1
- package/lib/request/get-cluster-options-request.d.ts +1 -1
- package/lib/request/get-cluster-request.d.ts +1 -1
- package/lib/request/get-credential-rotation-status-request.d.ts +1 -1
- package/lib/request/get-node-pool-options-request.d.ts +1 -1
- package/lib/request/get-node-pool-request.d.ts +1 -1
- package/lib/request/get-virtual-node-pool-request.d.ts +1 -1
- package/lib/request/get-virtual-node-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/get-workload-mapping-request.d.ts +1 -1
- package/lib/request/install-addon-request.d.ts +1 -1
- package/lib/request/list-addon-options-request.d.ts +1 -1
- package/lib/request/list-addons-request.d.ts +1 -1
- package/lib/request/list-clusters-request.d.ts +1 -1
- package/lib/request/list-node-pools-request.d.ts +1 -1
- package/lib/request/list-pod-shapes-request.d.ts +1 -1
- package/lib/request/list-virtual-node-pools-request.d.ts +1 -1
- package/lib/request/list-virtual-nodes-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/list-workload-mappings-request.d.ts +1 -1
- package/lib/request/start-credential-rotation-request.d.ts +1 -1
- package/lib/request/update-addon-request.d.ts +1 -1
- package/lib/request/update-cluster-endpoint-config-request.d.ts +1 -1
- package/lib/request/update-cluster-request.d.ts +1 -1
- package/lib/request/update-node-pool-request.d.ts +1 -1
- package/lib/request/update-virtual-node-pool-request.d.ts +1 -1
- package/lib/request/update-workload-mapping-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -194,13 +194,19 @@ class ContainerEngineClient {
|
|
|
194
194
|
this._circuitBreaker.shutdown();
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
|
+
/**
|
|
198
|
+
* Close the client once it is no longer needed
|
|
199
|
+
*/
|
|
200
|
+
close() {
|
|
201
|
+
this.shutdownCircuitBreaker();
|
|
202
|
+
}
|
|
197
203
|
/**
|
|
198
204
|
* Initiates cluster migration to use native VCN.
|
|
199
205
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
200
206
|
* @param ClusterMigrateToNativeVcnRequest
|
|
201
207
|
* @return ClusterMigrateToNativeVcnResponse
|
|
202
208
|
* @throws OciError when an error occurs
|
|
203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
209
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
|
|
204
210
|
*/
|
|
205
211
|
clusterMigrateToNativeVcn(clusterMigrateToNativeVcnRequest) {
|
|
206
212
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -261,7 +267,7 @@ class ContainerEngineClient {
|
|
|
261
267
|
* @param CompleteCredentialRotationRequest
|
|
262
268
|
* @return CompleteCredentialRotationResponse
|
|
263
269
|
* @throws OciError when an error occurs
|
|
264
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
270
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/CompleteCredentialRotation.ts.html |here} to see how to use CompleteCredentialRotation API.
|
|
265
271
|
*/
|
|
266
272
|
completeCredentialRotation(completeCredentialRotationRequest) {
|
|
267
273
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -322,7 +328,7 @@ class ContainerEngineClient {
|
|
|
322
328
|
* @param CreateClusterRequest
|
|
323
329
|
* @return CreateClusterResponse
|
|
324
330
|
* @throws OciError when an error occurs
|
|
325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
331
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
|
|
326
332
|
*/
|
|
327
333
|
createCluster(createClusterRequest) {
|
|
328
334
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -381,7 +387,7 @@ class ContainerEngineClient {
|
|
|
381
387
|
* @param CreateKubeconfigRequest
|
|
382
388
|
* @return CreateKubeconfigResponse
|
|
383
389
|
* @throws OciError when an error occurs
|
|
384
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
390
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
|
|
385
391
|
*/
|
|
386
392
|
createKubeconfig(createKubeconfigRequest) {
|
|
387
393
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -439,7 +445,7 @@ class ContainerEngineClient {
|
|
|
439
445
|
* @param CreateNodePoolRequest
|
|
440
446
|
* @return CreateNodePoolResponse
|
|
441
447
|
* @throws OciError when an error occurs
|
|
442
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
448
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
|
|
443
449
|
*/
|
|
444
450
|
createNodePool(createNodePoolRequest) {
|
|
445
451
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -498,7 +504,7 @@ class ContainerEngineClient {
|
|
|
498
504
|
* @param CreateVirtualNodePoolRequest
|
|
499
505
|
* @return CreateVirtualNodePoolResponse
|
|
500
506
|
* @throws OciError when an error occurs
|
|
501
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
507
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/CreateVirtualNodePool.ts.html |here} to see how to use CreateVirtualNodePool API.
|
|
502
508
|
*/
|
|
503
509
|
createVirtualNodePool(createVirtualNodePoolRequest) {
|
|
504
510
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -557,7 +563,7 @@ class ContainerEngineClient {
|
|
|
557
563
|
* @param CreateWorkloadMappingRequest
|
|
558
564
|
* @return CreateWorkloadMappingResponse
|
|
559
565
|
* @throws OciError when an error occurs
|
|
560
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
566
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/CreateWorkloadMapping.ts.html |here} to see how to use CreateWorkloadMapping API.
|
|
561
567
|
*/
|
|
562
568
|
createWorkloadMapping(createWorkloadMappingRequest) {
|
|
563
569
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -622,7 +628,7 @@ class ContainerEngineClient {
|
|
|
622
628
|
* @param DeleteClusterRequest
|
|
623
629
|
* @return DeleteClusterResponse
|
|
624
630
|
* @throws OciError when an error occurs
|
|
625
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
631
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
|
|
626
632
|
*/
|
|
627
633
|
deleteCluster(deleteClusterRequest) {
|
|
628
634
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -682,7 +688,7 @@ class ContainerEngineClient {
|
|
|
682
688
|
* @param DeleteNodeRequest
|
|
683
689
|
* @return DeleteNodeResponse
|
|
684
690
|
* @throws OciError when an error occurs
|
|
685
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
691
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/DeleteNode.ts.html |here} to see how to use DeleteNode API.
|
|
686
692
|
*/
|
|
687
693
|
deleteNode(deleteNodeRequest) {
|
|
688
694
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -747,7 +753,7 @@ class ContainerEngineClient {
|
|
|
747
753
|
* @param DeleteNodePoolRequest
|
|
748
754
|
* @return DeleteNodePoolResponse
|
|
749
755
|
* @throws OciError when an error occurs
|
|
750
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
756
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
|
|
751
757
|
*/
|
|
752
758
|
deleteNodePool(deleteNodePoolRequest) {
|
|
753
759
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -810,7 +816,7 @@ class ContainerEngineClient {
|
|
|
810
816
|
* @param DeleteVirtualNodePoolRequest
|
|
811
817
|
* @return DeleteVirtualNodePoolResponse
|
|
812
818
|
* @throws OciError when an error occurs
|
|
813
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
819
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/DeleteVirtualNodePool.ts.html |here} to see how to use DeleteVirtualNodePool API.
|
|
814
820
|
*/
|
|
815
821
|
deleteVirtualNodePool(deleteVirtualNodePoolRequest) {
|
|
816
822
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -873,7 +879,7 @@ class ContainerEngineClient {
|
|
|
873
879
|
* @param DeleteWorkRequestRequest
|
|
874
880
|
* @return DeleteWorkRequestResponse
|
|
875
881
|
* @throws OciError when an error occurs
|
|
876
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
882
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
877
883
|
*/
|
|
878
884
|
deleteWorkRequest(deleteWorkRequestRequest) {
|
|
879
885
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -928,7 +934,7 @@ class ContainerEngineClient {
|
|
|
928
934
|
* @param DeleteWorkloadMappingRequest
|
|
929
935
|
* @return DeleteWorkloadMappingResponse
|
|
930
936
|
* @throws OciError when an error occurs
|
|
931
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
937
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/DeleteWorkloadMapping.ts.html |here} to see how to use DeleteWorkloadMapping API.
|
|
932
938
|
*/
|
|
933
939
|
deleteWorkloadMapping(deleteWorkloadMappingRequest) {
|
|
934
940
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -984,7 +990,7 @@ class ContainerEngineClient {
|
|
|
984
990
|
* @param DisableAddonRequest
|
|
985
991
|
* @return DisableAddonResponse
|
|
986
992
|
* @throws OciError when an error occurs
|
|
987
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
993
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/DisableAddon.ts.html |here} to see how to use DisableAddon API.
|
|
988
994
|
*/
|
|
989
995
|
disableAddon(disableAddonRequest) {
|
|
990
996
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1047,7 +1053,7 @@ class ContainerEngineClient {
|
|
|
1047
1053
|
* @param GetAddonRequest
|
|
1048
1054
|
* @return GetAddonResponse
|
|
1049
1055
|
* @throws OciError when an error occurs
|
|
1050
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1056
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetAddon.ts.html |here} to see how to use GetAddon API.
|
|
1051
1057
|
*/
|
|
1052
1058
|
getAddon(getAddonRequest) {
|
|
1053
1059
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1111,7 +1117,7 @@ class ContainerEngineClient {
|
|
|
1111
1117
|
* @param GetClusterRequest
|
|
1112
1118
|
* @return GetClusterResponse
|
|
1113
1119
|
* @throws OciError when an error occurs
|
|
1114
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1120
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
|
|
1115
1121
|
*/
|
|
1116
1122
|
getCluster(getClusterRequest) {
|
|
1117
1123
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1174,7 +1180,7 @@ class ContainerEngineClient {
|
|
|
1174
1180
|
* @param GetClusterMigrateToNativeVcnStatusRequest
|
|
1175
1181
|
* @return GetClusterMigrateToNativeVcnStatusResponse
|
|
1176
1182
|
* @throws OciError when an error occurs
|
|
1177
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
|
|
1178
1184
|
*/
|
|
1179
1185
|
getClusterMigrateToNativeVcnStatus(getClusterMigrateToNativeVcnStatusRequest) {
|
|
1180
1186
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1237,7 +1243,7 @@ class ContainerEngineClient {
|
|
|
1237
1243
|
* @param GetClusterOptionsRequest
|
|
1238
1244
|
* @return GetClusterOptionsResponse
|
|
1239
1245
|
* @throws OciError when an error occurs
|
|
1240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1246
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
|
|
1241
1247
|
*/
|
|
1242
1248
|
getClusterOptions(getClusterOptionsRequest) {
|
|
1243
1249
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1297,7 +1303,7 @@ class ContainerEngineClient {
|
|
|
1297
1303
|
* @param GetCredentialRotationStatusRequest
|
|
1298
1304
|
* @return GetCredentialRotationStatusResponse
|
|
1299
1305
|
* @throws OciError when an error occurs
|
|
1300
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1306
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetCredentialRotationStatus.ts.html |here} to see how to use GetCredentialRotationStatus API.
|
|
1301
1307
|
*/
|
|
1302
1308
|
getCredentialRotationStatus(getCredentialRotationStatusRequest) {
|
|
1303
1309
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1360,7 +1366,7 @@ class ContainerEngineClient {
|
|
|
1360
1366
|
* @param GetNodePoolRequest
|
|
1361
1367
|
* @return GetNodePoolResponse
|
|
1362
1368
|
* @throws OciError when an error occurs
|
|
1363
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1369
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
|
|
1364
1370
|
*/
|
|
1365
1371
|
getNodePool(getNodePoolRequest) {
|
|
1366
1372
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1423,7 +1429,7 @@ class ContainerEngineClient {
|
|
|
1423
1429
|
* @param GetNodePoolOptionsRequest
|
|
1424
1430
|
* @return GetNodePoolOptionsResponse
|
|
1425
1431
|
* @throws OciError when an error occurs
|
|
1426
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1432
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
|
|
1427
1433
|
*/
|
|
1428
1434
|
getNodePoolOptions(getNodePoolOptionsRequest) {
|
|
1429
1435
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1483,7 +1489,7 @@ class ContainerEngineClient {
|
|
|
1483
1489
|
* @param GetVirtualNodeRequest
|
|
1484
1490
|
* @return GetVirtualNodeResponse
|
|
1485
1491
|
* @throws OciError when an error occurs
|
|
1486
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1492
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetVirtualNode.ts.html |here} to see how to use GetVirtualNode API.
|
|
1487
1493
|
*/
|
|
1488
1494
|
getVirtualNode(getVirtualNodeRequest) {
|
|
1489
1495
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1547,7 +1553,7 @@ class ContainerEngineClient {
|
|
|
1547
1553
|
* @param GetVirtualNodePoolRequest
|
|
1548
1554
|
* @return GetVirtualNodePoolResponse
|
|
1549
1555
|
* @throws OciError when an error occurs
|
|
1550
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1556
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetVirtualNodePool.ts.html |here} to see how to use GetVirtualNodePool API.
|
|
1551
1557
|
*/
|
|
1552
1558
|
getVirtualNodePool(getVirtualNodePoolRequest) {
|
|
1553
1559
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1610,7 +1616,7 @@ class ContainerEngineClient {
|
|
|
1610
1616
|
* @param GetWorkRequestRequest
|
|
1611
1617
|
* @return GetWorkRequestResponse
|
|
1612
1618
|
* @throws OciError when an error occurs
|
|
1613
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1619
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1614
1620
|
*/
|
|
1615
1621
|
getWorkRequest(getWorkRequestRequest) {
|
|
1616
1622
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1678,7 +1684,7 @@ class ContainerEngineClient {
|
|
|
1678
1684
|
* @param GetWorkloadMappingRequest
|
|
1679
1685
|
* @return GetWorkloadMappingResponse
|
|
1680
1686
|
* @throws OciError when an error occurs
|
|
1681
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1687
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/GetWorkloadMapping.ts.html |here} to see how to use GetWorkloadMapping API.
|
|
1682
1688
|
*/
|
|
1683
1689
|
getWorkloadMapping(getWorkloadMappingRequest) {
|
|
1684
1690
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1742,7 +1748,7 @@ class ContainerEngineClient {
|
|
|
1742
1748
|
* @param InstallAddonRequest
|
|
1743
1749
|
* @return InstallAddonResponse
|
|
1744
1750
|
* @throws OciError when an error occurs
|
|
1745
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1751
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/InstallAddon.ts.html |here} to see how to use InstallAddon API.
|
|
1746
1752
|
*/
|
|
1747
1753
|
installAddon(installAddonRequest) {
|
|
1748
1754
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1804,7 +1810,7 @@ class ContainerEngineClient {
|
|
|
1804
1810
|
* @param ListAddonOptionsRequest
|
|
1805
1811
|
* @return ListAddonOptionsResponse
|
|
1806
1812
|
* @throws OciError when an error occurs
|
|
1807
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1813
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListAddonOptions.ts.html |here} to see how to use ListAddonOptions API.
|
|
1808
1814
|
*/
|
|
1809
1815
|
listAddonOptions(listAddonOptionsRequest) {
|
|
1810
1816
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1912,7 +1918,7 @@ class ContainerEngineClient {
|
|
|
1912
1918
|
* @param ListAddonsRequest
|
|
1913
1919
|
* @return ListAddonsResponse
|
|
1914
1920
|
* @throws OciError when an error occurs
|
|
1915
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1921
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListAddons.ts.html |here} to see how to use ListAddons API.
|
|
1916
1922
|
*/
|
|
1917
1923
|
listAddons(listAddonsRequest) {
|
|
1918
1924
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2020,7 +2026,7 @@ class ContainerEngineClient {
|
|
|
2020
2026
|
* @param ListClustersRequest
|
|
2021
2027
|
* @return ListClustersResponse
|
|
2022
2028
|
* @throws OciError when an error occurs
|
|
2023
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2029
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
|
|
2024
2030
|
*/
|
|
2025
2031
|
listClusters(listClustersRequest) {
|
|
2026
2032
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2129,7 +2135,7 @@ class ContainerEngineClient {
|
|
|
2129
2135
|
* @param ListNodePoolsRequest
|
|
2130
2136
|
* @return ListNodePoolsResponse
|
|
2131
2137
|
* @throws OciError when an error occurs
|
|
2132
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2138
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
|
|
2133
2139
|
*/
|
|
2134
2140
|
listNodePools(listNodePoolsRequest) {
|
|
2135
2141
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2239,7 +2245,7 @@ class ContainerEngineClient {
|
|
|
2239
2245
|
* @param ListPodShapesRequest
|
|
2240
2246
|
* @return ListPodShapesResponse
|
|
2241
2247
|
* @throws OciError when an error occurs
|
|
2242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListPodShapes.ts.html |here} to see how to use ListPodShapes API.
|
|
2243
2249
|
*/
|
|
2244
2250
|
listPodShapes(listPodShapesRequest) {
|
|
2245
2251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2348,7 +2354,7 @@ class ContainerEngineClient {
|
|
|
2348
2354
|
* @param ListVirtualNodePoolsRequest
|
|
2349
2355
|
* @return ListVirtualNodePoolsResponse
|
|
2350
2356
|
* @throws OciError when an error occurs
|
|
2351
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2357
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListVirtualNodePools.ts.html |here} to see how to use ListVirtualNodePools API.
|
|
2352
2358
|
*/
|
|
2353
2359
|
listVirtualNodePools(listVirtualNodePoolsRequest) {
|
|
2354
2360
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2458,7 +2464,7 @@ class ContainerEngineClient {
|
|
|
2458
2464
|
* @param ListVirtualNodesRequest
|
|
2459
2465
|
* @return ListVirtualNodesResponse
|
|
2460
2466
|
* @throws OciError when an error occurs
|
|
2461
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2467
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListVirtualNodes.ts.html |here} to see how to use ListVirtualNodes API.
|
|
2462
2468
|
*/
|
|
2463
2469
|
listVirtualNodes(listVirtualNodesRequest) {
|
|
2464
2470
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2567,7 +2573,7 @@ class ContainerEngineClient {
|
|
|
2567
2573
|
* @param ListWorkRequestErrorsRequest
|
|
2568
2574
|
* @return ListWorkRequestErrorsResponse
|
|
2569
2575
|
* @throws OciError when an error occurs
|
|
2570
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2576
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2571
2577
|
*/
|
|
2572
2578
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2573
2579
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2627,7 +2633,7 @@ class ContainerEngineClient {
|
|
|
2627
2633
|
* @param ListWorkRequestLogsRequest
|
|
2628
2634
|
* @return ListWorkRequestLogsResponse
|
|
2629
2635
|
* @throws OciError when an error occurs
|
|
2630
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2636
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2631
2637
|
*/
|
|
2632
2638
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2633
2639
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2687,7 +2693,7 @@ class ContainerEngineClient {
|
|
|
2687
2693
|
* @param ListWorkRequestsRequest
|
|
2688
2694
|
* @return ListWorkRequestsResponse
|
|
2689
2695
|
* @throws OciError when an error occurs
|
|
2690
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2696
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2691
2697
|
*/
|
|
2692
2698
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2693
2699
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2798,7 +2804,7 @@ class ContainerEngineClient {
|
|
|
2798
2804
|
* @param ListWorkloadMappingsRequest
|
|
2799
2805
|
* @return ListWorkloadMappingsResponse
|
|
2800
2806
|
* @throws OciError when an error occurs
|
|
2801
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2807
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/ListWorkloadMappings.ts.html |here} to see how to use ListWorkloadMappings API.
|
|
2802
2808
|
*/
|
|
2803
2809
|
listWorkloadMappings(listWorkloadMappingsRequest) {
|
|
2804
2810
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2906,7 +2912,7 @@ class ContainerEngineClient {
|
|
|
2906
2912
|
* @param StartCredentialRotationRequest
|
|
2907
2913
|
* @return StartCredentialRotationResponse
|
|
2908
2914
|
* @throws OciError when an error occurs
|
|
2909
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2915
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/StartCredentialRotation.ts.html |here} to see how to use StartCredentialRotation API.
|
|
2910
2916
|
*/
|
|
2911
2917
|
startCredentialRotation(startCredentialRotationRequest) {
|
|
2912
2918
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2968,7 +2974,7 @@ class ContainerEngineClient {
|
|
|
2968
2974
|
* @param UpdateAddonRequest
|
|
2969
2975
|
* @return UpdateAddonResponse
|
|
2970
2976
|
* @throws OciError when an error occurs
|
|
2971
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2977
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/UpdateAddon.ts.html |here} to see how to use UpdateAddon API.
|
|
2972
2978
|
*/
|
|
2973
2979
|
updateAddon(updateAddonRequest) {
|
|
2974
2980
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3030,7 +3036,7 @@ class ContainerEngineClient {
|
|
|
3030
3036
|
* @param UpdateClusterRequest
|
|
3031
3037
|
* @return UpdateClusterResponse
|
|
3032
3038
|
* @throws OciError when an error occurs
|
|
3033
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3039
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
|
|
3034
3040
|
*/
|
|
3035
3041
|
updateCluster(updateClusterRequest) {
|
|
3036
3042
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3091,7 +3097,7 @@ class ContainerEngineClient {
|
|
|
3091
3097
|
* @param UpdateClusterEndpointConfigRequest
|
|
3092
3098
|
* @return UpdateClusterEndpointConfigResponse
|
|
3093
3099
|
* @throws OciError when an error occurs
|
|
3094
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
|
|
3095
3101
|
*/
|
|
3096
3102
|
updateClusterEndpointConfig(updateClusterEndpointConfigRequest) {
|
|
3097
3103
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3152,7 +3158,7 @@ class ContainerEngineClient {
|
|
|
3152
3158
|
* @param UpdateNodePoolRequest
|
|
3153
3159
|
* @return UpdateNodePoolResponse
|
|
3154
3160
|
* @throws OciError when an error occurs
|
|
3155
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
|
|
3156
3162
|
*/
|
|
3157
3163
|
updateNodePool(updateNodePoolRequest) {
|
|
3158
3164
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3216,7 +3222,7 @@ class ContainerEngineClient {
|
|
|
3216
3222
|
* @param UpdateVirtualNodePoolRequest
|
|
3217
3223
|
* @return UpdateVirtualNodePoolResponse
|
|
3218
3224
|
* @throws OciError when an error occurs
|
|
3219
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/UpdateVirtualNodePool.ts.html |here} to see how to use UpdateVirtualNodePool API.
|
|
3220
3226
|
*/
|
|
3221
3227
|
updateVirtualNodePool(updateVirtualNodePoolRequest) {
|
|
3222
3228
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3277,7 +3283,7 @@ class ContainerEngineClient {
|
|
|
3277
3283
|
* @param UpdateWorkloadMappingRequest
|
|
3278
3284
|
* @return UpdateWorkloadMappingResponse
|
|
3279
3285
|
* @throws OciError when an error occurs
|
|
3280
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/containerengine/UpdateWorkloadMapping.ts.html |here} to see how to use UpdateWorkloadMapping API.
|
|
3281
3287
|
*/
|
|
3282
3288
|
updateWorkloadMapping(updateWorkloadMappingRequest) {
|
|
3283
3289
|
return __awaiter(this, void 0, void 0, function* () {
|