oci-containerengine 2.67.0 → 2.68.1
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 +45 -44
- package/lib/client.js +49 -45
- 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
|
@@ -65,6 +65,7 @@ class ContainerEngineClient {
|
|
|
65
65
|
this["_defaultHeaders"] = {};
|
|
66
66
|
this._circuitBreaker = null;
|
|
67
67
|
this._httpOptions = undefined;
|
|
68
|
+
this._bodyDuplexMode = undefined;
|
|
68
69
|
this.targetService = "ContainerEngine";
|
|
69
70
|
this._regionId = "";
|
|
70
71
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -79,6 +80,9 @@ class ContainerEngineClient {
|
|
|
79
80
|
this._httpOptions = clientConfiguration.httpOptions
|
|
80
81
|
? clientConfiguration.httpOptions
|
|
81
82
|
: undefined;
|
|
83
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
84
|
+
? clientConfiguration.bodyDuplexMode
|
|
85
|
+
: undefined;
|
|
82
86
|
}
|
|
83
87
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
84
88
|
const specCircuitBreakerEnabled = true;
|
|
@@ -89,7 +93,7 @@ class ContainerEngineClient {
|
|
|
89
93
|
}
|
|
90
94
|
this._httpClient =
|
|
91
95
|
params.httpClient ||
|
|
92
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
96
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
93
97
|
if (params.authenticationDetailsProvider &&
|
|
94
98
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
95
99
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -183,7 +187,7 @@ class ContainerEngineClient {
|
|
|
183
187
|
* @param ClusterMigrateToNativeVcnRequest
|
|
184
188
|
* @return ClusterMigrateToNativeVcnResponse
|
|
185
189
|
* @throws OciError when an error occurs
|
|
186
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
190
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
|
|
187
191
|
*/
|
|
188
192
|
clusterMigrateToNativeVcn(clusterMigrateToNativeVcnRequest) {
|
|
189
193
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -244,7 +248,7 @@ class ContainerEngineClient {
|
|
|
244
248
|
* @param CompleteCredentialRotationRequest
|
|
245
249
|
* @return CompleteCredentialRotationResponse
|
|
246
250
|
* @throws OciError when an error occurs
|
|
247
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
251
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/CompleteCredentialRotation.ts.html |here} to see how to use CompleteCredentialRotation API.
|
|
248
252
|
*/
|
|
249
253
|
completeCredentialRotation(completeCredentialRotationRequest) {
|
|
250
254
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -305,7 +309,7 @@ class ContainerEngineClient {
|
|
|
305
309
|
* @param CreateClusterRequest
|
|
306
310
|
* @return CreateClusterResponse
|
|
307
311
|
* @throws OciError when an error occurs
|
|
308
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
312
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
|
|
309
313
|
*/
|
|
310
314
|
createCluster(createClusterRequest) {
|
|
311
315
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -364,7 +368,7 @@ class ContainerEngineClient {
|
|
|
364
368
|
* @param CreateKubeconfigRequest
|
|
365
369
|
* @return CreateKubeconfigResponse
|
|
366
370
|
* @throws OciError when an error occurs
|
|
367
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
371
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
|
|
368
372
|
*/
|
|
369
373
|
createKubeconfig(createKubeconfigRequest) {
|
|
370
374
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -422,7 +426,7 @@ class ContainerEngineClient {
|
|
|
422
426
|
* @param CreateNodePoolRequest
|
|
423
427
|
* @return CreateNodePoolResponse
|
|
424
428
|
* @throws OciError when an error occurs
|
|
425
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
429
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
|
|
426
430
|
*/
|
|
427
431
|
createNodePool(createNodePoolRequest) {
|
|
428
432
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -481,7 +485,7 @@ class ContainerEngineClient {
|
|
|
481
485
|
* @param CreateVirtualNodePoolRequest
|
|
482
486
|
* @return CreateVirtualNodePoolResponse
|
|
483
487
|
* @throws OciError when an error occurs
|
|
484
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
488
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/CreateVirtualNodePool.ts.html |here} to see how to use CreateVirtualNodePool API.
|
|
485
489
|
*/
|
|
486
490
|
createVirtualNodePool(createVirtualNodePoolRequest) {
|
|
487
491
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -540,7 +544,7 @@ class ContainerEngineClient {
|
|
|
540
544
|
* @param CreateWorkloadMappingRequest
|
|
541
545
|
* @return CreateWorkloadMappingResponse
|
|
542
546
|
* @throws OciError when an error occurs
|
|
543
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
547
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/CreateWorkloadMapping.ts.html |here} to see how to use CreateWorkloadMapping API.
|
|
544
548
|
*/
|
|
545
549
|
createWorkloadMapping(createWorkloadMappingRequest) {
|
|
546
550
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -605,7 +609,7 @@ class ContainerEngineClient {
|
|
|
605
609
|
* @param DeleteClusterRequest
|
|
606
610
|
* @return DeleteClusterResponse
|
|
607
611
|
* @throws OciError when an error occurs
|
|
608
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
612
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
|
|
609
613
|
*/
|
|
610
614
|
deleteCluster(deleteClusterRequest) {
|
|
611
615
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -665,7 +669,7 @@ class ContainerEngineClient {
|
|
|
665
669
|
* @param DeleteNodeRequest
|
|
666
670
|
* @return DeleteNodeResponse
|
|
667
671
|
* @throws OciError when an error occurs
|
|
668
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
672
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/DeleteNode.ts.html |here} to see how to use DeleteNode API.
|
|
669
673
|
*/
|
|
670
674
|
deleteNode(deleteNodeRequest) {
|
|
671
675
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -730,7 +734,7 @@ class ContainerEngineClient {
|
|
|
730
734
|
* @param DeleteNodePoolRequest
|
|
731
735
|
* @return DeleteNodePoolResponse
|
|
732
736
|
* @throws OciError when an error occurs
|
|
733
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
737
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
|
|
734
738
|
*/
|
|
735
739
|
deleteNodePool(deleteNodePoolRequest) {
|
|
736
740
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -793,7 +797,7 @@ class ContainerEngineClient {
|
|
|
793
797
|
* @param DeleteVirtualNodePoolRequest
|
|
794
798
|
* @return DeleteVirtualNodePoolResponse
|
|
795
799
|
* @throws OciError when an error occurs
|
|
796
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
800
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/DeleteVirtualNodePool.ts.html |here} to see how to use DeleteVirtualNodePool API.
|
|
797
801
|
*/
|
|
798
802
|
deleteVirtualNodePool(deleteVirtualNodePoolRequest) {
|
|
799
803
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -856,7 +860,7 @@ class ContainerEngineClient {
|
|
|
856
860
|
* @param DeleteWorkRequestRequest
|
|
857
861
|
* @return DeleteWorkRequestResponse
|
|
858
862
|
* @throws OciError when an error occurs
|
|
859
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
863
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
860
864
|
*/
|
|
861
865
|
deleteWorkRequest(deleteWorkRequestRequest) {
|
|
862
866
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -911,7 +915,7 @@ class ContainerEngineClient {
|
|
|
911
915
|
* @param DeleteWorkloadMappingRequest
|
|
912
916
|
* @return DeleteWorkloadMappingResponse
|
|
913
917
|
* @throws OciError when an error occurs
|
|
914
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
918
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/DeleteWorkloadMapping.ts.html |here} to see how to use DeleteWorkloadMapping API.
|
|
915
919
|
*/
|
|
916
920
|
deleteWorkloadMapping(deleteWorkloadMappingRequest) {
|
|
917
921
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -967,7 +971,7 @@ class ContainerEngineClient {
|
|
|
967
971
|
* @param DisableAddonRequest
|
|
968
972
|
* @return DisableAddonResponse
|
|
969
973
|
* @throws OciError when an error occurs
|
|
970
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
974
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/DisableAddon.ts.html |here} to see how to use DisableAddon API.
|
|
971
975
|
*/
|
|
972
976
|
disableAddon(disableAddonRequest) {
|
|
973
977
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1030,7 +1034,7 @@ class ContainerEngineClient {
|
|
|
1030
1034
|
* @param GetAddonRequest
|
|
1031
1035
|
* @return GetAddonResponse
|
|
1032
1036
|
* @throws OciError when an error occurs
|
|
1033
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1037
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetAddon.ts.html |here} to see how to use GetAddon API.
|
|
1034
1038
|
*/
|
|
1035
1039
|
getAddon(getAddonRequest) {
|
|
1036
1040
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1094,7 +1098,7 @@ class ContainerEngineClient {
|
|
|
1094
1098
|
* @param GetClusterRequest
|
|
1095
1099
|
* @return GetClusterResponse
|
|
1096
1100
|
* @throws OciError when an error occurs
|
|
1097
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
|
|
1098
1102
|
*/
|
|
1099
1103
|
getCluster(getClusterRequest) {
|
|
1100
1104
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1157,7 +1161,7 @@ class ContainerEngineClient {
|
|
|
1157
1161
|
* @param GetClusterMigrateToNativeVcnStatusRequest
|
|
1158
1162
|
* @return GetClusterMigrateToNativeVcnStatusResponse
|
|
1159
1163
|
* @throws OciError when an error occurs
|
|
1160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1164
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
|
|
1161
1165
|
*/
|
|
1162
1166
|
getClusterMigrateToNativeVcnStatus(getClusterMigrateToNativeVcnStatusRequest) {
|
|
1163
1167
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1220,7 +1224,7 @@ class ContainerEngineClient {
|
|
|
1220
1224
|
* @param GetClusterOptionsRequest
|
|
1221
1225
|
* @return GetClusterOptionsResponse
|
|
1222
1226
|
* @throws OciError when an error occurs
|
|
1223
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1227
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
|
|
1224
1228
|
*/
|
|
1225
1229
|
getClusterOptions(getClusterOptionsRequest) {
|
|
1226
1230
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1280,7 +1284,7 @@ class ContainerEngineClient {
|
|
|
1280
1284
|
* @param GetCredentialRotationStatusRequest
|
|
1281
1285
|
* @return GetCredentialRotationStatusResponse
|
|
1282
1286
|
* @throws OciError when an error occurs
|
|
1283
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1287
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetCredentialRotationStatus.ts.html |here} to see how to use GetCredentialRotationStatus API.
|
|
1284
1288
|
*/
|
|
1285
1289
|
getCredentialRotationStatus(getCredentialRotationStatusRequest) {
|
|
1286
1290
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1343,7 +1347,7 @@ class ContainerEngineClient {
|
|
|
1343
1347
|
* @param GetNodePoolRequest
|
|
1344
1348
|
* @return GetNodePoolResponse
|
|
1345
1349
|
* @throws OciError when an error occurs
|
|
1346
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1350
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
|
|
1347
1351
|
*/
|
|
1348
1352
|
getNodePool(getNodePoolRequest) {
|
|
1349
1353
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1406,7 +1410,7 @@ class ContainerEngineClient {
|
|
|
1406
1410
|
* @param GetNodePoolOptionsRequest
|
|
1407
1411
|
* @return GetNodePoolOptionsResponse
|
|
1408
1412
|
* @throws OciError when an error occurs
|
|
1409
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1413
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
|
|
1410
1414
|
*/
|
|
1411
1415
|
getNodePoolOptions(getNodePoolOptionsRequest) {
|
|
1412
1416
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1466,7 +1470,7 @@ class ContainerEngineClient {
|
|
|
1466
1470
|
* @param GetVirtualNodeRequest
|
|
1467
1471
|
* @return GetVirtualNodeResponse
|
|
1468
1472
|
* @throws OciError when an error occurs
|
|
1469
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1473
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetVirtualNode.ts.html |here} to see how to use GetVirtualNode API.
|
|
1470
1474
|
*/
|
|
1471
1475
|
getVirtualNode(getVirtualNodeRequest) {
|
|
1472
1476
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1530,7 +1534,7 @@ class ContainerEngineClient {
|
|
|
1530
1534
|
* @param GetVirtualNodePoolRequest
|
|
1531
1535
|
* @return GetVirtualNodePoolResponse
|
|
1532
1536
|
* @throws OciError when an error occurs
|
|
1533
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1537
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetVirtualNodePool.ts.html |here} to see how to use GetVirtualNodePool API.
|
|
1534
1538
|
*/
|
|
1535
1539
|
getVirtualNodePool(getVirtualNodePoolRequest) {
|
|
1536
1540
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1593,7 +1597,7 @@ class ContainerEngineClient {
|
|
|
1593
1597
|
* @param GetWorkRequestRequest
|
|
1594
1598
|
* @return GetWorkRequestResponse
|
|
1595
1599
|
* @throws OciError when an error occurs
|
|
1596
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1600
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1597
1601
|
*/
|
|
1598
1602
|
getWorkRequest(getWorkRequestRequest) {
|
|
1599
1603
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1661,7 +1665,7 @@ class ContainerEngineClient {
|
|
|
1661
1665
|
* @param GetWorkloadMappingRequest
|
|
1662
1666
|
* @return GetWorkloadMappingResponse
|
|
1663
1667
|
* @throws OciError when an error occurs
|
|
1664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1668
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/GetWorkloadMapping.ts.html |here} to see how to use GetWorkloadMapping API.
|
|
1665
1669
|
*/
|
|
1666
1670
|
getWorkloadMapping(getWorkloadMappingRequest) {
|
|
1667
1671
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1725,7 +1729,7 @@ class ContainerEngineClient {
|
|
|
1725
1729
|
* @param InstallAddonRequest
|
|
1726
1730
|
* @return InstallAddonResponse
|
|
1727
1731
|
* @throws OciError when an error occurs
|
|
1728
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1732
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/InstallAddon.ts.html |here} to see how to use InstallAddon API.
|
|
1729
1733
|
*/
|
|
1730
1734
|
installAddon(installAddonRequest) {
|
|
1731
1735
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1787,7 +1791,7 @@ class ContainerEngineClient {
|
|
|
1787
1791
|
* @param ListAddonOptionsRequest
|
|
1788
1792
|
* @return ListAddonOptionsResponse
|
|
1789
1793
|
* @throws OciError when an error occurs
|
|
1790
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1794
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListAddonOptions.ts.html |here} to see how to use ListAddonOptions API.
|
|
1791
1795
|
*/
|
|
1792
1796
|
listAddonOptions(listAddonOptionsRequest) {
|
|
1793
1797
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1895,7 +1899,7 @@ class ContainerEngineClient {
|
|
|
1895
1899
|
* @param ListAddonsRequest
|
|
1896
1900
|
* @return ListAddonsResponse
|
|
1897
1901
|
* @throws OciError when an error occurs
|
|
1898
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1902
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListAddons.ts.html |here} to see how to use ListAddons API.
|
|
1899
1903
|
*/
|
|
1900
1904
|
listAddons(listAddonsRequest) {
|
|
1901
1905
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2003,7 +2007,7 @@ class ContainerEngineClient {
|
|
|
2003
2007
|
* @param ListClustersRequest
|
|
2004
2008
|
* @return ListClustersResponse
|
|
2005
2009
|
* @throws OciError when an error occurs
|
|
2006
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2010
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
|
|
2007
2011
|
*/
|
|
2008
2012
|
listClusters(listClustersRequest) {
|
|
2009
2013
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2112,7 +2116,7 @@ class ContainerEngineClient {
|
|
|
2112
2116
|
* @param ListNodePoolsRequest
|
|
2113
2117
|
* @return ListNodePoolsResponse
|
|
2114
2118
|
* @throws OciError when an error occurs
|
|
2115
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2119
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
|
|
2116
2120
|
*/
|
|
2117
2121
|
listNodePools(listNodePoolsRequest) {
|
|
2118
2122
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2222,7 +2226,7 @@ class ContainerEngineClient {
|
|
|
2222
2226
|
* @param ListPodShapesRequest
|
|
2223
2227
|
* @return ListPodShapesResponse
|
|
2224
2228
|
* @throws OciError when an error occurs
|
|
2225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListPodShapes.ts.html |here} to see how to use ListPodShapes API.
|
|
2226
2230
|
*/
|
|
2227
2231
|
listPodShapes(listPodShapesRequest) {
|
|
2228
2232
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2331,7 +2335,7 @@ class ContainerEngineClient {
|
|
|
2331
2335
|
* @param ListVirtualNodePoolsRequest
|
|
2332
2336
|
* @return ListVirtualNodePoolsResponse
|
|
2333
2337
|
* @throws OciError when an error occurs
|
|
2334
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2338
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListVirtualNodePools.ts.html |here} to see how to use ListVirtualNodePools API.
|
|
2335
2339
|
*/
|
|
2336
2340
|
listVirtualNodePools(listVirtualNodePoolsRequest) {
|
|
2337
2341
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2441,7 +2445,7 @@ class ContainerEngineClient {
|
|
|
2441
2445
|
* @param ListVirtualNodesRequest
|
|
2442
2446
|
* @return ListVirtualNodesResponse
|
|
2443
2447
|
* @throws OciError when an error occurs
|
|
2444
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2448
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListVirtualNodes.ts.html |here} to see how to use ListVirtualNodes API.
|
|
2445
2449
|
*/
|
|
2446
2450
|
listVirtualNodes(listVirtualNodesRequest) {
|
|
2447
2451
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2550,7 +2554,7 @@ class ContainerEngineClient {
|
|
|
2550
2554
|
* @param ListWorkRequestErrorsRequest
|
|
2551
2555
|
* @return ListWorkRequestErrorsResponse
|
|
2552
2556
|
* @throws OciError when an error occurs
|
|
2553
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2557
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2554
2558
|
*/
|
|
2555
2559
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2556
2560
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2610,7 +2614,7 @@ class ContainerEngineClient {
|
|
|
2610
2614
|
* @param ListWorkRequestLogsRequest
|
|
2611
2615
|
* @return ListWorkRequestLogsResponse
|
|
2612
2616
|
* @throws OciError when an error occurs
|
|
2613
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2617
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2614
2618
|
*/
|
|
2615
2619
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2616
2620
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2670,7 +2674,7 @@ class ContainerEngineClient {
|
|
|
2670
2674
|
* @param ListWorkRequestsRequest
|
|
2671
2675
|
* @return ListWorkRequestsResponse
|
|
2672
2676
|
* @throws OciError when an error occurs
|
|
2673
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2677
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2674
2678
|
*/
|
|
2675
2679
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2676
2680
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2781,7 +2785,7 @@ class ContainerEngineClient {
|
|
|
2781
2785
|
* @param ListWorkloadMappingsRequest
|
|
2782
2786
|
* @return ListWorkloadMappingsResponse
|
|
2783
2787
|
* @throws OciError when an error occurs
|
|
2784
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2788
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/ListWorkloadMappings.ts.html |here} to see how to use ListWorkloadMappings API.
|
|
2785
2789
|
*/
|
|
2786
2790
|
listWorkloadMappings(listWorkloadMappingsRequest) {
|
|
2787
2791
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2889,7 +2893,7 @@ class ContainerEngineClient {
|
|
|
2889
2893
|
* @param StartCredentialRotationRequest
|
|
2890
2894
|
* @return StartCredentialRotationResponse
|
|
2891
2895
|
* @throws OciError when an error occurs
|
|
2892
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2896
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/StartCredentialRotation.ts.html |here} to see how to use StartCredentialRotation API.
|
|
2893
2897
|
*/
|
|
2894
2898
|
startCredentialRotation(startCredentialRotationRequest) {
|
|
2895
2899
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2951,7 +2955,7 @@ class ContainerEngineClient {
|
|
|
2951
2955
|
* @param UpdateAddonRequest
|
|
2952
2956
|
* @return UpdateAddonResponse
|
|
2953
2957
|
* @throws OciError when an error occurs
|
|
2954
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2958
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/UpdateAddon.ts.html |here} to see how to use UpdateAddon API.
|
|
2955
2959
|
*/
|
|
2956
2960
|
updateAddon(updateAddonRequest) {
|
|
2957
2961
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3013,7 +3017,7 @@ class ContainerEngineClient {
|
|
|
3013
3017
|
* @param UpdateClusterRequest
|
|
3014
3018
|
* @return UpdateClusterResponse
|
|
3015
3019
|
* @throws OciError when an error occurs
|
|
3016
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3020
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
|
|
3017
3021
|
*/
|
|
3018
3022
|
updateCluster(updateClusterRequest) {
|
|
3019
3023
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3074,7 +3078,7 @@ class ContainerEngineClient {
|
|
|
3074
3078
|
* @param UpdateClusterEndpointConfigRequest
|
|
3075
3079
|
* @return UpdateClusterEndpointConfigResponse
|
|
3076
3080
|
* @throws OciError when an error occurs
|
|
3077
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3081
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
|
|
3078
3082
|
*/
|
|
3079
3083
|
updateClusterEndpointConfig(updateClusterEndpointConfigRequest) {
|
|
3080
3084
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3135,7 +3139,7 @@ class ContainerEngineClient {
|
|
|
3135
3139
|
* @param UpdateNodePoolRequest
|
|
3136
3140
|
* @return UpdateNodePoolResponse
|
|
3137
3141
|
* @throws OciError when an error occurs
|
|
3138
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3142
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
|
|
3139
3143
|
*/
|
|
3140
3144
|
updateNodePool(updateNodePoolRequest) {
|
|
3141
3145
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3199,7 +3203,7 @@ class ContainerEngineClient {
|
|
|
3199
3203
|
* @param UpdateVirtualNodePoolRequest
|
|
3200
3204
|
* @return UpdateVirtualNodePoolResponse
|
|
3201
3205
|
* @throws OciError when an error occurs
|
|
3202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/UpdateVirtualNodePool.ts.html |here} to see how to use UpdateVirtualNodePool API.
|
|
3203
3207
|
*/
|
|
3204
3208
|
updateVirtualNodePool(updateVirtualNodePoolRequest) {
|
|
3205
3209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3260,7 +3264,7 @@ class ContainerEngineClient {
|
|
|
3260
3264
|
* @param UpdateWorkloadMappingRequest
|
|
3261
3265
|
* @return UpdateWorkloadMappingResponse
|
|
3262
3266
|
* @throws OciError when an error occurs
|
|
3263
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3267
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.1/containerengine/UpdateWorkloadMapping.ts.html |here} to see how to use UpdateWorkloadMapping API.
|
|
3264
3268
|
*/
|
|
3265
3269
|
updateWorkloadMapping(updateWorkloadMappingRequest) {
|
|
3266
3270
|
return __awaiter(this, void 0, void 0, function* () {
|