oci-containerengine 2.16.0 → 2.19.0

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.
Files changed (30) hide show
  1. package/lib/client.d.ts +42 -42
  2. package/lib/client.js +63 -63
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/cluster-endpoints.d.ts +6 -0
  5. package/lib/model/cluster-endpoints.js.map +1 -1
  6. package/lib/model/create-cluster-kubeconfig-content-details.d.ts +2 -1
  7. package/lib/model/create-cluster-kubeconfig-content-details.js +1 -0
  8. package/lib/model/create-cluster-kubeconfig-content-details.js.map +1 -1
  9. package/lib/request/cluster-migrate-to-native-vcn-request.d.ts +1 -1
  10. package/lib/request/create-cluster-request.d.ts +1 -1
  11. package/lib/request/create-kubeconfig-request.d.ts +1 -1
  12. package/lib/request/create-node-pool-request.d.ts +1 -1
  13. package/lib/request/delete-cluster-request.d.ts +1 -1
  14. package/lib/request/delete-node-pool-request.d.ts +1 -1
  15. package/lib/request/delete-work-request-request.d.ts +1 -1
  16. package/lib/request/get-cluster-migrate-to-native-vcn-status-request.d.ts +1 -1
  17. package/lib/request/get-cluster-options-request.d.ts +1 -1
  18. package/lib/request/get-cluster-request.d.ts +1 -1
  19. package/lib/request/get-node-pool-options-request.d.ts +1 -1
  20. package/lib/request/get-node-pool-request.d.ts +1 -1
  21. package/lib/request/get-work-request-request.d.ts +1 -1
  22. package/lib/request/list-clusters-request.d.ts +1 -1
  23. package/lib/request/list-node-pools-request.d.ts +1 -1
  24. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  25. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  26. package/lib/request/list-work-requests-request.d.ts +1 -1
  27. package/lib/request/update-cluster-endpoint-config-request.d.ts +1 -1
  28. package/lib/request/update-cluster-request.d.ts +1 -1
  29. package/lib/request/update-node-pool-request.d.ts +1 -1
  30. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -73,128 +73,128 @@ export declare class ContainerEngineClient {
73
73
  getWaiters(): ContainerEngineWaiter;
74
74
  /**
75
75
  * Initiates cluster migration to use native VCN.
76
- * This operation does not retry by default if the user has not defined a retry configuration.
76
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
77
77
  * @param ClusterMigrateToNativeVcnRequest
78
78
  * @return ClusterMigrateToNativeVcnResponse
79
79
  * @throws OciError when an error occurs
80
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
80
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ClusterMigrateToNativeVcn.ts.html |here} to see how to use ClusterMigrateToNativeVcn API.
81
81
  */
82
82
  clusterMigrateToNativeVcn(clusterMigrateToNativeVcnRequest: requests.ClusterMigrateToNativeVcnRequest): Promise<responses.ClusterMigrateToNativeVcnResponse>;
83
83
  /**
84
84
  * Create a new cluster.
85
- * This operation does not retry by default if the user has not defined a retry configuration.
85
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
86
86
  * @param CreateClusterRequest
87
87
  * @return CreateClusterResponse
88
88
  * @throws OciError when an error occurs
89
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
89
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/CreateCluster.ts.html |here} to see how to use CreateCluster API.
90
90
  */
91
91
  createCluster(createClusterRequest: requests.CreateClusterRequest): Promise<responses.CreateClusterResponse>;
92
92
  /**
93
93
  * Create the Kubeconfig YAML for a cluster.
94
- * This operation does not retry by default if the user has not defined a retry configuration.
94
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
95
95
  * @param CreateKubeconfigRequest
96
96
  * @return CreateKubeconfigResponse
97
97
  * @throws OciError when an error occurs
98
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
98
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/CreateKubeconfig.ts.html |here} to see how to use CreateKubeconfig API.
99
99
  */
100
100
  createKubeconfig(createKubeconfigRequest: requests.CreateKubeconfigRequest): Promise<responses.CreateKubeconfigResponse>;
101
101
  /**
102
102
  * Create a new node pool.
103
- * This operation does not retry by default if the user has not defined a retry configuration.
103
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
104
104
  * @param CreateNodePoolRequest
105
105
  * @return CreateNodePoolResponse
106
106
  * @throws OciError when an error occurs
107
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
107
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/CreateNodePool.ts.html |here} to see how to use CreateNodePool API.
108
108
  */
109
109
  createNodePool(createNodePoolRequest: requests.CreateNodePoolRequest): Promise<responses.CreateNodePoolResponse>;
110
110
  /**
111
111
  * Delete a cluster.
112
- * This operation does not retry by default if the user has not defined a retry configuration.
112
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
113
113
  * @param DeleteClusterRequest
114
114
  * @return DeleteClusterResponse
115
115
  * @throws OciError when an error occurs
116
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
116
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/DeleteCluster.ts.html |here} to see how to use DeleteCluster API.
117
117
  */
118
118
  deleteCluster(deleteClusterRequest: requests.DeleteClusterRequest): Promise<responses.DeleteClusterResponse>;
119
119
  /**
120
120
  * Delete a node pool.
121
- * This operation does not retry by default if the user has not defined a retry configuration.
121
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
122
122
  * @param DeleteNodePoolRequest
123
123
  * @return DeleteNodePoolResponse
124
124
  * @throws OciError when an error occurs
125
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/DeleteNodePool.ts.html |here} to see how to use DeleteNodePool API.
126
126
  */
127
127
  deleteNodePool(deleteNodePoolRequest: requests.DeleteNodePoolRequest): Promise<responses.DeleteNodePoolResponse>;
128
128
  /**
129
129
  * Cancel a work request that has not started.
130
- * This operation does not retry by default if the user has not defined a retry configuration.
130
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
131
131
  * @param DeleteWorkRequestRequest
132
132
  * @return DeleteWorkRequestResponse
133
133
  * @throws OciError when an error occurs
134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
134
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
135
135
  */
136
136
  deleteWorkRequest(deleteWorkRequestRequest: requests.DeleteWorkRequestRequest): Promise<responses.DeleteWorkRequestResponse>;
137
137
  /**
138
138
  * Get the details of a cluster.
139
- * This operation does not retry by default if the user has not defined a retry configuration.
139
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
140
140
  * @param GetClusterRequest
141
141
  * @return GetClusterResponse
142
142
  * @throws OciError when an error occurs
143
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
143
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetCluster.ts.html |here} to see how to use GetCluster API.
144
144
  */
145
145
  getCluster(getClusterRequest: requests.GetClusterRequest): Promise<responses.GetClusterResponse>;
146
146
  /**
147
147
  * Get details on a cluster's migration to native VCN.
148
- * This operation does not retry by default if the user has not defined a retry configuration.
148
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
149
149
  * @param GetClusterMigrateToNativeVcnStatusRequest
150
150
  * @return GetClusterMigrateToNativeVcnStatusResponse
151
151
  * @throws OciError when an error occurs
152
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
152
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetClusterMigrateToNativeVcnStatus.ts.html |here} to see how to use GetClusterMigrateToNativeVcnStatus API.
153
153
  */
154
154
  getClusterMigrateToNativeVcnStatus(getClusterMigrateToNativeVcnStatusRequest: requests.GetClusterMigrateToNativeVcnStatusRequest): Promise<responses.GetClusterMigrateToNativeVcnStatusResponse>;
155
155
  /**
156
156
  * Get options available for clusters.
157
- * This operation does not retry by default if the user has not defined a retry configuration.
157
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
158
158
  * @param GetClusterOptionsRequest
159
159
  * @return GetClusterOptionsResponse
160
160
  * @throws OciError when an error occurs
161
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
161
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetClusterOptions.ts.html |here} to see how to use GetClusterOptions API.
162
162
  */
163
163
  getClusterOptions(getClusterOptionsRequest: requests.GetClusterOptionsRequest): Promise<responses.GetClusterOptionsResponse>;
164
164
  /**
165
165
  * Get the details of a node pool.
166
- * This operation does not retry by default if the user has not defined a retry configuration.
166
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
167
167
  * @param GetNodePoolRequest
168
168
  * @return GetNodePoolResponse
169
169
  * @throws OciError when an error occurs
170
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
170
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetNodePool.ts.html |here} to see how to use GetNodePool API.
171
171
  */
172
172
  getNodePool(getNodePoolRequest: requests.GetNodePoolRequest): Promise<responses.GetNodePoolResponse>;
173
173
  /**
174
174
  * Get options available for node pools.
175
- * This operation does not retry by default if the user has not defined a retry configuration.
175
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
176
176
  * @param GetNodePoolOptionsRequest
177
177
  * @return GetNodePoolOptionsResponse
178
178
  * @throws OciError when an error occurs
179
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
179
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetNodePoolOptions.ts.html |here} to see how to use GetNodePoolOptions API.
180
180
  */
181
181
  getNodePoolOptions(getNodePoolOptionsRequest: requests.GetNodePoolOptionsRequest): Promise<responses.GetNodePoolOptionsResponse>;
182
182
  /**
183
183
  * Get the details of a work request.
184
- * This operation does not retry by default if the user has not defined a retry configuration.
184
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
185
185
  * @param GetWorkRequestRequest
186
186
  * @return GetWorkRequestResponse
187
187
  * @throws OciError when an error occurs
188
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
188
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
189
189
  */
190
190
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
191
191
  /**
192
192
  * List all the cluster objects in a compartment.
193
- * This operation does not retry by default if the user has not defined a retry configuration.
193
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
194
194
  * @param ListClustersRequest
195
195
  * @return ListClustersResponse
196
196
  * @throws OciError when an error occurs
197
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
197
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListClusters.ts.html |here} to see how to use ListClusters API.
198
198
  */
199
199
  listClusters(listClustersRequest: requests.ListClustersRequest): Promise<responses.ListClustersResponse>;
200
200
  /**
@@ -231,11 +231,11 @@ export declare class ContainerEngineClient {
231
231
  listClustersResponseIterator(request: requests.ListClustersRequest): AsyncIterableIterator<responses.ListClustersResponse>;
232
232
  /**
233
233
  * List all the node pools in a compartment, and optionally filter by cluster.
234
- * This operation does not retry by default if the user has not defined a retry configuration.
234
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
235
235
  * @param ListNodePoolsRequest
236
236
  * @return ListNodePoolsResponse
237
237
  * @throws OciError when an error occurs
238
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
238
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListNodePools.ts.html |here} to see how to use ListNodePools API.
239
239
  */
240
240
  listNodePools(listNodePoolsRequest: requests.ListNodePoolsRequest): Promise<responses.ListNodePoolsResponse>;
241
241
  /**
@@ -272,29 +272,29 @@ export declare class ContainerEngineClient {
272
272
  listNodePoolsResponseIterator(request: requests.ListNodePoolsRequest): AsyncIterableIterator<responses.ListNodePoolsResponse>;
273
273
  /**
274
274
  * Get the errors of a work request.
275
- * This operation does not retry by default if the user has not defined a retry configuration.
275
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
276
276
  * @param ListWorkRequestErrorsRequest
277
277
  * @return ListWorkRequestErrorsResponse
278
278
  * @throws OciError when an error occurs
279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
279
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
280
280
  */
281
281
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
282
282
  /**
283
283
  * Get the logs of a work request.
284
- * This operation does not retry by default if the user has not defined a retry configuration.
284
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
285
285
  * @param ListWorkRequestLogsRequest
286
286
  * @return ListWorkRequestLogsResponse
287
287
  * @throws OciError when an error occurs
288
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
288
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
289
289
  */
290
290
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
291
291
  /**
292
292
  * List all work requests in a compartment.
293
- * This operation does not retry by default if the user has not defined a retry configuration.
293
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
294
294
  * @param ListWorkRequestsRequest
295
295
  * @return ListWorkRequestsResponse
296
296
  * @throws OciError when an error occurs
297
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
297
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
298
298
  */
299
299
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
300
300
  /**
@@ -331,29 +331,29 @@ export declare class ContainerEngineClient {
331
331
  listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
332
332
  /**
333
333
  * Update the details of a cluster.
334
- * This operation does not retry by default if the user has not defined a retry configuration.
334
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
335
335
  * @param UpdateClusterRequest
336
336
  * @return UpdateClusterResponse
337
337
  * @throws OciError when an error occurs
338
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
338
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/UpdateCluster.ts.html |here} to see how to use UpdateCluster API.
339
339
  */
340
340
  updateCluster(updateClusterRequest: requests.UpdateClusterRequest): Promise<responses.UpdateClusterResponse>;
341
341
  /**
342
342
  * Update the details of the cluster endpoint configuration.
343
- * This operation does not retry by default if the user has not defined a retry configuration.
343
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
344
344
  * @param UpdateClusterEndpointConfigRequest
345
345
  * @return UpdateClusterEndpointConfigResponse
346
346
  * @throws OciError when an error occurs
347
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
347
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/UpdateClusterEndpointConfig.ts.html |here} to see how to use UpdateClusterEndpointConfig API.
348
348
  */
349
349
  updateClusterEndpointConfig(updateClusterEndpointConfigRequest: requests.UpdateClusterEndpointConfigRequest): Promise<responses.UpdateClusterEndpointConfigResponse>;
350
350
  /**
351
351
  * Update the details of a node pool.
352
- * This operation does not retry by default if the user has not defined a retry configuration.
352
+ * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
353
353
  * @param UpdateNodePoolRequest
354
354
  * @return UpdateNodePoolResponse
355
355
  * @throws OciError when an error occurs
356
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.16.0/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
356
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.19.0/containerengine/UpdateNodePool.ts.html |here} to see how to use UpdateNodePool API.
357
357
  */
358
358
  updateNodePool(updateNodePoolRequest: requests.UpdateNodePoolRequest): Promise<responses.UpdateNodePoolResponse>;
359
359
  }