oci-containerengine 2.56.0 → 2.58.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 +46 -36
- package/lib/client.js +59 -36
- package/lib/client.js.map +1 -1
- package/lib/request/cluster-migrate-to-native-vcn-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/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/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-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/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/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/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -60,11 +60,14 @@ var ContainerEngineApiKeys;
|
|
|
60
60
|
*/
|
|
61
61
|
class ContainerEngineClient {
|
|
62
62
|
constructor(params, clientConfiguration) {
|
|
63
|
+
this["_realmSpecificEndpointTemplateEnabled"] = false;
|
|
63
64
|
this["_endpoint"] = "";
|
|
64
65
|
this["_defaultHeaders"] = {};
|
|
65
66
|
this._circuitBreaker = null;
|
|
66
67
|
this._httpOptions = undefined;
|
|
67
68
|
this.targetService = "ContainerEngine";
|
|
69
|
+
this._regionId = "";
|
|
70
|
+
this._lastSetRegionOrRegionId = "";
|
|
68
71
|
const requestSigner = params.authenticationDetailsProvider
|
|
69
72
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
70
73
|
: null;
|
|
@@ -114,13 +117,31 @@ class ContainerEngineClient {
|
|
|
114
117
|
get logger() {
|
|
115
118
|
return common.LOG.logger;
|
|
116
119
|
}
|
|
120
|
+
/**
|
|
121
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
122
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
123
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
124
|
+
*/
|
|
125
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
|
|
126
|
+
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
|
|
127
|
+
if (this.logger)
|
|
128
|
+
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
129
|
+
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
|
|
130
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(ContainerEngineClient.serviceEndpointTemplate, this._region, ContainerEngineClient.endpointServiceName);
|
|
131
|
+
}
|
|
132
|
+
else if (this._lastSetRegionOrRegionId === common.Region.REGION_ID_STRING) {
|
|
133
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(ContainerEngineClient.serviceEndpointTemplate, this._regionId, ContainerEngineClient.endpointServiceName);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
117
136
|
/**
|
|
118
137
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
119
138
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
120
139
|
* @param region The region of the service.
|
|
121
140
|
*/
|
|
122
141
|
set region(region) {
|
|
142
|
+
this._region = region;
|
|
123
143
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(ContainerEngineClient.serviceEndpointTemplate, region, ContainerEngineClient.endpointServiceName);
|
|
144
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_STRING;
|
|
124
145
|
}
|
|
125
146
|
/**
|
|
126
147
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -131,7 +152,9 @@ class ContainerEngineClient {
|
|
|
131
152
|
* @param regionId The public region ID.
|
|
132
153
|
*/
|
|
133
154
|
set regionId(regionId) {
|
|
155
|
+
this._regionId = regionId;
|
|
134
156
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(ContainerEngineClient.serviceEndpointTemplate, regionId, ContainerEngineClient.endpointServiceName);
|
|
157
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
|
|
135
158
|
}
|
|
136
159
|
/**
|
|
137
160
|
* Creates a new ContainerEngineWaiter for resources for this service.
|
|
@@ -160,7 +183,7 @@ class ContainerEngineClient {
|
|
|
160
183
|
* @param ClusterMigrateToNativeVcnRequest
|
|
161
184
|
* @return ClusterMigrateToNativeVcnResponse
|
|
162
185
|
* @throws OciError when an error occurs
|
|
163
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
186
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
|
|
164
187
|
*/
|
|
165
188
|
clusterMigrateToNativeVcn(clusterMigrateToNativeVcnRequest) {
|
|
166
189
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -221,7 +244,7 @@ class ContainerEngineClient {
|
|
|
221
244
|
* @param CreateClusterRequest
|
|
222
245
|
* @return CreateClusterResponse
|
|
223
246
|
* @throws OciError when an error occurs
|
|
224
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
|
|
225
248
|
*/
|
|
226
249
|
createCluster(createClusterRequest) {
|
|
227
250
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -280,7 +303,7 @@ class ContainerEngineClient {
|
|
|
280
303
|
* @param CreateKubeconfigRequest
|
|
281
304
|
* @return CreateKubeconfigResponse
|
|
282
305
|
* @throws OciError when an error occurs
|
|
283
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
306
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
|
|
284
307
|
*/
|
|
285
308
|
createKubeconfig(createKubeconfigRequest) {
|
|
286
309
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -338,7 +361,7 @@ class ContainerEngineClient {
|
|
|
338
361
|
* @param CreateNodePoolRequest
|
|
339
362
|
* @return CreateNodePoolResponse
|
|
340
363
|
* @throws OciError when an error occurs
|
|
341
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
364
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
|
|
342
365
|
*/
|
|
343
366
|
createNodePool(createNodePoolRequest) {
|
|
344
367
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -397,7 +420,7 @@ class ContainerEngineClient {
|
|
|
397
420
|
* @param CreateVirtualNodePoolRequest
|
|
398
421
|
* @return CreateVirtualNodePoolResponse
|
|
399
422
|
* @throws OciError when an error occurs
|
|
400
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
423
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/CreateVirtualNodePool.ts.html |here} to see how to use CreateVirtualNodePool API.
|
|
401
424
|
*/
|
|
402
425
|
createVirtualNodePool(createVirtualNodePoolRequest) {
|
|
403
426
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -456,7 +479,7 @@ class ContainerEngineClient {
|
|
|
456
479
|
* @param DeleteClusterRequest
|
|
457
480
|
* @return DeleteClusterResponse
|
|
458
481
|
* @throws OciError when an error occurs
|
|
459
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
482
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
|
|
460
483
|
*/
|
|
461
484
|
deleteCluster(deleteClusterRequest) {
|
|
462
485
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -516,7 +539,7 @@ class ContainerEngineClient {
|
|
|
516
539
|
* @param DeleteNodeRequest
|
|
517
540
|
* @return DeleteNodeResponse
|
|
518
541
|
* @throws OciError when an error occurs
|
|
519
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
542
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/DeleteNode.ts.html |here} to see how to use DeleteNode API.
|
|
520
543
|
*/
|
|
521
544
|
deleteNode(deleteNodeRequest) {
|
|
522
545
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -581,7 +604,7 @@ class ContainerEngineClient {
|
|
|
581
604
|
* @param DeleteNodePoolRequest
|
|
582
605
|
* @return DeleteNodePoolResponse
|
|
583
606
|
* @throws OciError when an error occurs
|
|
584
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
607
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
|
|
585
608
|
*/
|
|
586
609
|
deleteNodePool(deleteNodePoolRequest) {
|
|
587
610
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -644,7 +667,7 @@ class ContainerEngineClient {
|
|
|
644
667
|
* @param DeleteVirtualNodePoolRequest
|
|
645
668
|
* @return DeleteVirtualNodePoolResponse
|
|
646
669
|
* @throws OciError when an error occurs
|
|
647
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
670
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/DeleteVirtualNodePool.ts.html |here} to see how to use DeleteVirtualNodePool API.
|
|
648
671
|
*/
|
|
649
672
|
deleteVirtualNodePool(deleteVirtualNodePoolRequest) {
|
|
650
673
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -707,7 +730,7 @@ class ContainerEngineClient {
|
|
|
707
730
|
* @param DeleteWorkRequestRequest
|
|
708
731
|
* @return DeleteWorkRequestResponse
|
|
709
732
|
* @throws OciError when an error occurs
|
|
710
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
733
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
711
734
|
*/
|
|
712
735
|
deleteWorkRequest(deleteWorkRequestRequest) {
|
|
713
736
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -762,7 +785,7 @@ class ContainerEngineClient {
|
|
|
762
785
|
* @param DisableAddonRequest
|
|
763
786
|
* @return DisableAddonResponse
|
|
764
787
|
* @throws OciError when an error occurs
|
|
765
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
788
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/DisableAddon.ts.html |here} to see how to use DisableAddon API.
|
|
766
789
|
*/
|
|
767
790
|
disableAddon(disableAddonRequest) {
|
|
768
791
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -825,7 +848,7 @@ class ContainerEngineClient {
|
|
|
825
848
|
* @param GetAddonRequest
|
|
826
849
|
* @return GetAddonResponse
|
|
827
850
|
* @throws OciError when an error occurs
|
|
828
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
851
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/GetAddon.ts.html |here} to see how to use GetAddon API.
|
|
829
852
|
*/
|
|
830
853
|
getAddon(getAddonRequest) {
|
|
831
854
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -889,7 +912,7 @@ class ContainerEngineClient {
|
|
|
889
912
|
* @param GetClusterRequest
|
|
890
913
|
* @return GetClusterResponse
|
|
891
914
|
* @throws OciError when an error occurs
|
|
892
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
915
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
|
|
893
916
|
*/
|
|
894
917
|
getCluster(getClusterRequest) {
|
|
895
918
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -952,7 +975,7 @@ class ContainerEngineClient {
|
|
|
952
975
|
* @param GetClusterMigrateToNativeVcnStatusRequest
|
|
953
976
|
* @return GetClusterMigrateToNativeVcnStatusResponse
|
|
954
977
|
* @throws OciError when an error occurs
|
|
955
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
978
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
|
|
956
979
|
*/
|
|
957
980
|
getClusterMigrateToNativeVcnStatus(getClusterMigrateToNativeVcnStatusRequest) {
|
|
958
981
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1015,7 +1038,7 @@ class ContainerEngineClient {
|
|
|
1015
1038
|
* @param GetClusterOptionsRequest
|
|
1016
1039
|
* @return GetClusterOptionsResponse
|
|
1017
1040
|
* @throws OciError when an error occurs
|
|
1018
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1041
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
|
|
1019
1042
|
*/
|
|
1020
1043
|
getClusterOptions(getClusterOptionsRequest) {
|
|
1021
1044
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1075,7 +1098,7 @@ class ContainerEngineClient {
|
|
|
1075
1098
|
* @param GetNodePoolRequest
|
|
1076
1099
|
* @return GetNodePoolResponse
|
|
1077
1100
|
* @throws OciError when an error occurs
|
|
1078
|
-
* @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.58.1/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
|
|
1079
1102
|
*/
|
|
1080
1103
|
getNodePool(getNodePoolRequest) {
|
|
1081
1104
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1138,7 +1161,7 @@ class ContainerEngineClient {
|
|
|
1138
1161
|
* @param GetNodePoolOptionsRequest
|
|
1139
1162
|
* @return GetNodePoolOptionsResponse
|
|
1140
1163
|
* @throws OciError when an error occurs
|
|
1141
|
-
* @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.58.1/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
|
|
1142
1165
|
*/
|
|
1143
1166
|
getNodePoolOptions(getNodePoolOptionsRequest) {
|
|
1144
1167
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1198,7 +1221,7 @@ class ContainerEngineClient {
|
|
|
1198
1221
|
* @param GetVirtualNodeRequest
|
|
1199
1222
|
* @return GetVirtualNodeResponse
|
|
1200
1223
|
* @throws OciError when an error occurs
|
|
1201
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1224
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/GetVirtualNode.ts.html |here} to see how to use GetVirtualNode API.
|
|
1202
1225
|
*/
|
|
1203
1226
|
getVirtualNode(getVirtualNodeRequest) {
|
|
1204
1227
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1262,7 +1285,7 @@ class ContainerEngineClient {
|
|
|
1262
1285
|
* @param GetVirtualNodePoolRequest
|
|
1263
1286
|
* @return GetVirtualNodePoolResponse
|
|
1264
1287
|
* @throws OciError when an error occurs
|
|
1265
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1288
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/GetVirtualNodePool.ts.html |here} to see how to use GetVirtualNodePool API.
|
|
1266
1289
|
*/
|
|
1267
1290
|
getVirtualNodePool(getVirtualNodePoolRequest) {
|
|
1268
1291
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1325,7 +1348,7 @@ class ContainerEngineClient {
|
|
|
1325
1348
|
* @param GetWorkRequestRequest
|
|
1326
1349
|
* @return GetWorkRequestResponse
|
|
1327
1350
|
* @throws OciError when an error occurs
|
|
1328
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1351
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1329
1352
|
*/
|
|
1330
1353
|
getWorkRequest(getWorkRequestRequest) {
|
|
1331
1354
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1393,7 +1416,7 @@ class ContainerEngineClient {
|
|
|
1393
1416
|
* @param InstallAddonRequest
|
|
1394
1417
|
* @return InstallAddonResponse
|
|
1395
1418
|
* @throws OciError when an error occurs
|
|
1396
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1419
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/InstallAddon.ts.html |here} to see how to use InstallAddon API.
|
|
1397
1420
|
*/
|
|
1398
1421
|
installAddon(installAddonRequest) {
|
|
1399
1422
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1455,7 +1478,7 @@ class ContainerEngineClient {
|
|
|
1455
1478
|
* @param ListAddonOptionsRequest
|
|
1456
1479
|
* @return ListAddonOptionsResponse
|
|
1457
1480
|
* @throws OciError when an error occurs
|
|
1458
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1481
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListAddonOptions.ts.html |here} to see how to use ListAddonOptions API.
|
|
1459
1482
|
*/
|
|
1460
1483
|
listAddonOptions(listAddonOptionsRequest) {
|
|
1461
1484
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1563,7 +1586,7 @@ class ContainerEngineClient {
|
|
|
1563
1586
|
* @param ListAddonsRequest
|
|
1564
1587
|
* @return ListAddonsResponse
|
|
1565
1588
|
* @throws OciError when an error occurs
|
|
1566
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1589
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListAddons.ts.html |here} to see how to use ListAddons API.
|
|
1567
1590
|
*/
|
|
1568
1591
|
listAddons(listAddonsRequest) {
|
|
1569
1592
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1671,7 +1694,7 @@ class ContainerEngineClient {
|
|
|
1671
1694
|
* @param ListClustersRequest
|
|
1672
1695
|
* @return ListClustersResponse
|
|
1673
1696
|
* @throws OciError when an error occurs
|
|
1674
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1697
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
|
|
1675
1698
|
*/
|
|
1676
1699
|
listClusters(listClustersRequest) {
|
|
1677
1700
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1780,7 +1803,7 @@ class ContainerEngineClient {
|
|
|
1780
1803
|
* @param ListNodePoolsRequest
|
|
1781
1804
|
* @return ListNodePoolsResponse
|
|
1782
1805
|
* @throws OciError when an error occurs
|
|
1783
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1806
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
|
|
1784
1807
|
*/
|
|
1785
1808
|
listNodePools(listNodePoolsRequest) {
|
|
1786
1809
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1890,7 +1913,7 @@ class ContainerEngineClient {
|
|
|
1890
1913
|
* @param ListPodShapesRequest
|
|
1891
1914
|
* @return ListPodShapesResponse
|
|
1892
1915
|
* @throws OciError when an error occurs
|
|
1893
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1916
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListPodShapes.ts.html |here} to see how to use ListPodShapes API.
|
|
1894
1917
|
*/
|
|
1895
1918
|
listPodShapes(listPodShapesRequest) {
|
|
1896
1919
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1999,7 +2022,7 @@ class ContainerEngineClient {
|
|
|
1999
2022
|
* @param ListVirtualNodePoolsRequest
|
|
2000
2023
|
* @return ListVirtualNodePoolsResponse
|
|
2001
2024
|
* @throws OciError when an error occurs
|
|
2002
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2025
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListVirtualNodePools.ts.html |here} to see how to use ListVirtualNodePools API.
|
|
2003
2026
|
*/
|
|
2004
2027
|
listVirtualNodePools(listVirtualNodePoolsRequest) {
|
|
2005
2028
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2109,7 +2132,7 @@ class ContainerEngineClient {
|
|
|
2109
2132
|
* @param ListVirtualNodesRequest
|
|
2110
2133
|
* @return ListVirtualNodesResponse
|
|
2111
2134
|
* @throws OciError when an error occurs
|
|
2112
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2135
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListVirtualNodes.ts.html |here} to see how to use ListVirtualNodes API.
|
|
2113
2136
|
*/
|
|
2114
2137
|
listVirtualNodes(listVirtualNodesRequest) {
|
|
2115
2138
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2218,7 +2241,7 @@ class ContainerEngineClient {
|
|
|
2218
2241
|
* @param ListWorkRequestErrorsRequest
|
|
2219
2242
|
* @return ListWorkRequestErrorsResponse
|
|
2220
2243
|
* @throws OciError when an error occurs
|
|
2221
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2244
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2222
2245
|
*/
|
|
2223
2246
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2224
2247
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2278,7 +2301,7 @@ class ContainerEngineClient {
|
|
|
2278
2301
|
* @param ListWorkRequestLogsRequest
|
|
2279
2302
|
* @return ListWorkRequestLogsResponse
|
|
2280
2303
|
* @throws OciError when an error occurs
|
|
2281
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2304
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2282
2305
|
*/
|
|
2283
2306
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2284
2307
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2338,7 +2361,7 @@ class ContainerEngineClient {
|
|
|
2338
2361
|
* @param ListWorkRequestsRequest
|
|
2339
2362
|
* @return ListWorkRequestsResponse
|
|
2340
2363
|
* @throws OciError when an error occurs
|
|
2341
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2364
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2342
2365
|
*/
|
|
2343
2366
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2344
2367
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2449,7 +2472,7 @@ class ContainerEngineClient {
|
|
|
2449
2472
|
* @param UpdateAddonRequest
|
|
2450
2473
|
* @return UpdateAddonResponse
|
|
2451
2474
|
* @throws OciError when an error occurs
|
|
2452
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2475
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/UpdateAddon.ts.html |here} to see how to use UpdateAddon API.
|
|
2453
2476
|
*/
|
|
2454
2477
|
updateAddon(updateAddonRequest) {
|
|
2455
2478
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2511,7 +2534,7 @@ class ContainerEngineClient {
|
|
|
2511
2534
|
* @param UpdateClusterRequest
|
|
2512
2535
|
* @return UpdateClusterResponse
|
|
2513
2536
|
* @throws OciError when an error occurs
|
|
2514
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2537
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
|
|
2515
2538
|
*/
|
|
2516
2539
|
updateCluster(updateClusterRequest) {
|
|
2517
2540
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2572,7 +2595,7 @@ class ContainerEngineClient {
|
|
|
2572
2595
|
* @param UpdateClusterEndpointConfigRequest
|
|
2573
2596
|
* @return UpdateClusterEndpointConfigResponse
|
|
2574
2597
|
* @throws OciError when an error occurs
|
|
2575
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2598
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
|
|
2576
2599
|
*/
|
|
2577
2600
|
updateClusterEndpointConfig(updateClusterEndpointConfigRequest) {
|
|
2578
2601
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2633,7 +2656,7 @@ class ContainerEngineClient {
|
|
|
2633
2656
|
* @param UpdateNodePoolRequest
|
|
2634
2657
|
* @return UpdateNodePoolResponse
|
|
2635
2658
|
* @throws OciError when an error occurs
|
|
2636
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2659
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
|
|
2637
2660
|
*/
|
|
2638
2661
|
updateNodePool(updateNodePoolRequest) {
|
|
2639
2662
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2697,7 +2720,7 @@ class ContainerEngineClient {
|
|
|
2697
2720
|
* @param UpdateVirtualNodePoolRequest
|
|
2698
2721
|
* @return UpdateVirtualNodePoolResponse
|
|
2699
2722
|
* @throws OciError when an error occurs
|
|
2700
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2723
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/containerengine/UpdateVirtualNodePool.ts.html |here} to see how to use UpdateVirtualNodePool API.
|
|
2701
2724
|
*/
|
|
2702
2725
|
updateVirtualNodePool(updateVirtualNodePoolRequest) {
|
|
2703
2726
|
return __awaiter(this, void 0, void 0, function* () {
|