oci-bds 2.4.0 → 2.6.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.
- package/LICENSE.txt +6 -0
- package/lib/client.d.ts +130 -21
- package/lib/client.js +199 -42
- package/lib/client.js.map +1 -1
- package/lib/request/add-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/add-block-storage-request.d.ts +1 -1
- package/lib/request/add-cloud-sql-request.d.ts +1 -1
- package/lib/request/add-worker-nodes-request.d.ts +1 -1
- package/lib/request/change-bds-instance-compartment-request.d.ts +1 -1
- package/lib/request/change-shape-request.d.ts +1 -1
- package/lib/request/create-bds-instance-request.d.ts +1 -1
- package/lib/request/delete-bds-instance-request.d.ts +1 -1
- package/lib/request/get-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/get-bds-instance-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-auto-scaling-configurations-request.d.ts +1 -1
- package/lib/request/list-bds-instances-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/remove-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/remove-cloud-sql-request.d.ts +1 -1
- package/lib/request/restart-node-request.d.ts +1 -1
- package/lib/request/update-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/update-bds-instance-request.d.ts +1 -1
- package/package.json +3 -3
package/LICENSE.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
|
|
4
|
+
|
|
5
|
+
____________________________
|
|
6
|
+
|
|
1
7
|
The Universal Permissive License (UPL), Version 1.0
|
|
2
8
|
|
|
3
9
|
Subject to the condition set forth below, permission is hereby granted to any
|
package/lib/client.d.ts
CHANGED
|
@@ -18,6 +18,9 @@ import * as responses from "./response";
|
|
|
18
18
|
import { BdsWaiter } from "./bds-waiter";
|
|
19
19
|
export declare enum BdsApiKeys {
|
|
20
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
23
|
+
*/
|
|
21
24
|
export declare class BdsClient {
|
|
22
25
|
protected static serviceEndpointTemplate: string;
|
|
23
26
|
protected "_endpoint": string;
|
|
@@ -68,109 +71,122 @@ export declare class BdsClient {
|
|
|
68
71
|
/**
|
|
69
72
|
* Add an autoscale configuration to the cluster.
|
|
70
73
|
*
|
|
74
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
71
75
|
* @param AddAutoScalingConfigurationRequest
|
|
72
76
|
* @return AddAutoScalingConfigurationResponse
|
|
73
77
|
* @throws OciError when an error occurs
|
|
74
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
78
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
75
79
|
*/
|
|
76
80
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest: requests.AddAutoScalingConfigurationRequest): Promise<responses.AddAutoScalingConfigurationResponse>;
|
|
77
81
|
/**
|
|
78
82
|
* Adds block storage to existing worker nodes. The same amount of storage will be added to all worker nodes. No change will be made to storage that is already attached. Block storage cannot be removed.
|
|
79
83
|
*
|
|
84
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
80
85
|
* @param AddBlockStorageRequest
|
|
81
86
|
* @return AddBlockStorageResponse
|
|
82
87
|
* @throws OciError when an error occurs
|
|
83
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
88
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
84
89
|
*/
|
|
85
90
|
addBlockStorage(addBlockStorageRequest: requests.AddBlockStorageRequest): Promise<responses.AddBlockStorageResponse>;
|
|
86
91
|
/**
|
|
87
92
|
* Adds Cloud SQL to your cluster. You can use Cloud SQL to query against non-relational data stored in multiple big data sources, including Apache Hive, HDFS, Oracle NoSQL Database, and Apache HBase. Adding Cloud SQL adds a query server node to the cluster and creates cell servers on all the worker nodes in the cluster.
|
|
88
93
|
*
|
|
94
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
89
95
|
* @param AddCloudSqlRequest
|
|
90
96
|
* @return AddCloudSqlResponse
|
|
91
97
|
* @throws OciError when an error occurs
|
|
92
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
98
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
93
99
|
*/
|
|
94
100
|
addCloudSql(addCloudSqlRequest: requests.AddCloudSqlRequest): Promise<responses.AddCloudSqlResponse>;
|
|
95
101
|
/**
|
|
96
102
|
* Increases the size (scales out) a cluster by adding worker nodes. The added worker nodes will have the same shape and will have the same amount of attached block storage as other worker nodes in the cluster.
|
|
97
103
|
*
|
|
104
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
98
105
|
* @param AddWorkerNodesRequest
|
|
99
106
|
* @return AddWorkerNodesResponse
|
|
100
107
|
* @throws OciError when an error occurs
|
|
101
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
108
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
102
109
|
*/
|
|
103
110
|
addWorkerNodes(addWorkerNodesRequest: requests.AddWorkerNodesRequest): Promise<responses.AddWorkerNodesResponse>;
|
|
104
111
|
/**
|
|
105
112
|
* Moves a Big Data Service cluster into a different compartment.
|
|
106
113
|
*
|
|
114
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
107
115
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
108
116
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
109
117
|
* @throws OciError when an error occurs
|
|
110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
118
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
111
119
|
*/
|
|
112
120
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest: requests.ChangeBdsInstanceCompartmentRequest): Promise<responses.ChangeBdsInstanceCompartmentResponse>;
|
|
113
121
|
/**
|
|
114
122
|
* Changes the size of a cluster by scaling up or scaling down the nodes. Nodes are scaled up or down by changing the shapes of all the nodes of the same type to the next larger or smaller shape. The node types are master, utility, worker, and Cloud SQL. Only nodes with VM-STANDARD shapes can be scaled.
|
|
115
123
|
*
|
|
124
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
116
125
|
* @param ChangeShapeRequest
|
|
117
126
|
* @return ChangeShapeResponse
|
|
118
127
|
* @throws OciError when an error occurs
|
|
119
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
128
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
120
129
|
*/
|
|
121
130
|
changeShape(changeShapeRequest: requests.ChangeShapeRequest): Promise<responses.ChangeShapeResponse>;
|
|
122
131
|
/**
|
|
123
132
|
* Creates a Big Data Service cluster.
|
|
124
133
|
*
|
|
134
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
125
135
|
* @param CreateBdsInstanceRequest
|
|
126
136
|
* @return CreateBdsInstanceResponse
|
|
127
137
|
* @throws OciError when an error occurs
|
|
128
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
138
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
129
139
|
*/
|
|
130
140
|
createBdsInstance(createBdsInstanceRequest: requests.CreateBdsInstanceRequest): Promise<responses.CreateBdsInstanceResponse>;
|
|
131
141
|
/**
|
|
132
142
|
* Deletes the cluster identified by the given ID.
|
|
143
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
133
144
|
* @param DeleteBdsInstanceRequest
|
|
134
145
|
* @return DeleteBdsInstanceResponse
|
|
135
146
|
* @throws OciError when an error occurs
|
|
136
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
147
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
137
148
|
*/
|
|
138
149
|
deleteBdsInstance(deleteBdsInstanceRequest: requests.DeleteBdsInstanceRequest): Promise<responses.DeleteBdsInstanceResponse>;
|
|
139
150
|
/**
|
|
140
151
|
* Returns details of the autoscale configuration identified by the given ID.
|
|
141
152
|
*
|
|
153
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
142
154
|
* @param GetAutoScalingConfigurationRequest
|
|
143
155
|
* @return GetAutoScalingConfigurationResponse
|
|
144
156
|
* @throws OciError when an error occurs
|
|
145
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
157
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
146
158
|
*/
|
|
147
159
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest: requests.GetAutoScalingConfigurationRequest): Promise<responses.GetAutoScalingConfigurationResponse>;
|
|
148
160
|
/**
|
|
149
161
|
* Returns information about the Big Data Service cluster identified by the given ID.
|
|
162
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
150
163
|
* @param GetBdsInstanceRequest
|
|
151
164
|
* @return GetBdsInstanceResponse
|
|
152
165
|
* @throws OciError when an error occurs
|
|
153
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
166
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
154
167
|
*/
|
|
155
168
|
getBdsInstance(getBdsInstanceRequest: requests.GetBdsInstanceRequest): Promise<responses.GetBdsInstanceResponse>;
|
|
156
169
|
/**
|
|
157
170
|
* Returns the status of the work request identified by the given ID.
|
|
171
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
158
172
|
* @param GetWorkRequestRequest
|
|
159
173
|
* @return GetWorkRequestResponse
|
|
160
174
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
175
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
162
176
|
*/
|
|
163
177
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
164
178
|
/**
|
|
165
179
|
* Returns information about the autoscaling configurations for a cluster.
|
|
166
180
|
*
|
|
181
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
167
182
|
* @param ListAutoScalingConfigurationsRequest
|
|
168
183
|
* @return ListAutoScalingConfigurationsResponse
|
|
169
184
|
* @throws OciError when an error occurs
|
|
170
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
185
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
171
186
|
*/
|
|
172
187
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest: requests.ListAutoScalingConfigurationsRequest): Promise<responses.ListAutoScalingConfigurationsResponse>;
|
|
173
188
|
/**
|
|
189
|
+
* NOTE: This function is deprecated in favor of listAutoScalingConfigurationsRecordIterator function.
|
|
174
190
|
* Creates a new async iterator which will iterate over the models.AutoScalingConfigurationSummary objects
|
|
175
191
|
* contained in responses from the listAutoScalingConfigurations operation. This iterator will fetch more data from the
|
|
176
192
|
* server as needed.
|
|
@@ -179,22 +195,40 @@ export declare class BdsClient {
|
|
|
179
195
|
*/
|
|
180
196
|
listAllAutoScalingConfigurations(request: requests.ListAutoScalingConfigurationsRequest): AsyncIterableIterator<model.AutoScalingConfigurationSummary>;
|
|
181
197
|
/**
|
|
198
|
+
* NOTE: This function is deprecated in favor of listAutoScalingConfigurationsResponseIterator function.
|
|
182
199
|
* Creates a new async iterator which will iterate over the responses received from the listAutoScalingConfigurations operation. This iterator
|
|
183
200
|
* will fetch more data from the server as needed.
|
|
184
201
|
*
|
|
185
202
|
* @param request a request which can be sent to the service operation
|
|
186
203
|
*/
|
|
187
204
|
listAllAutoScalingConfigurationsResponses(request: requests.ListAutoScalingConfigurationsRequest): AsyncIterableIterator<responses.ListAutoScalingConfigurationsResponse>;
|
|
205
|
+
/**
|
|
206
|
+
* Creates a new async iterator which will iterate over the models.AutoScalingConfigurationSummary objects
|
|
207
|
+
* contained in responses from the listAutoScalingConfigurations operation. This iterator will fetch more data from the
|
|
208
|
+
* server as needed.
|
|
209
|
+
*
|
|
210
|
+
* @param request a request which can be sent to the service operation
|
|
211
|
+
*/
|
|
212
|
+
listAutoScalingConfigurationsRecordIterator(request: requests.ListAutoScalingConfigurationsRequest): AsyncIterableIterator<model.AutoScalingConfigurationSummary>;
|
|
213
|
+
/**
|
|
214
|
+
* Creates a new async iterator which will iterate over the responses received from the listAutoScalingConfigurations operation. This iterator
|
|
215
|
+
* will fetch more data from the server as needed.
|
|
216
|
+
*
|
|
217
|
+
* @param request a request which can be sent to the service operation
|
|
218
|
+
*/
|
|
219
|
+
listAutoScalingConfigurationsResponseIterator(request: requests.ListAutoScalingConfigurationsRequest): AsyncIterableIterator<responses.ListAutoScalingConfigurationsResponse>;
|
|
188
220
|
/**
|
|
189
221
|
* Returns a list of all Big Data Service clusters in a compartment.
|
|
190
222
|
*
|
|
223
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
191
224
|
* @param ListBdsInstancesRequest
|
|
192
225
|
* @return ListBdsInstancesResponse
|
|
193
226
|
* @throws OciError when an error occurs
|
|
194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
227
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
195
228
|
*/
|
|
196
229
|
listBdsInstances(listBdsInstancesRequest: requests.ListBdsInstancesRequest): Promise<responses.ListBdsInstancesResponse>;
|
|
197
230
|
/**
|
|
231
|
+
* NOTE: This function is deprecated in favor of listBdsInstancesRecordIterator function.
|
|
198
232
|
* Creates a new async iterator which will iterate over the models.BdsInstanceSummary objects
|
|
199
233
|
* contained in responses from the listBdsInstances operation. This iterator will fetch more data from the
|
|
200
234
|
* server as needed.
|
|
@@ -203,22 +237,40 @@ export declare class BdsClient {
|
|
|
203
237
|
*/
|
|
204
238
|
listAllBdsInstances(request: requests.ListBdsInstancesRequest): AsyncIterableIterator<model.BdsInstanceSummary>;
|
|
205
239
|
/**
|
|
240
|
+
* NOTE: This function is deprecated in favor of listBdsInstancesResponseIterator function.
|
|
206
241
|
* Creates a new async iterator which will iterate over the responses received from the listBdsInstances operation. This iterator
|
|
207
242
|
* will fetch more data from the server as needed.
|
|
208
243
|
*
|
|
209
244
|
* @param request a request which can be sent to the service operation
|
|
210
245
|
*/
|
|
211
246
|
listAllBdsInstancesResponses(request: requests.ListBdsInstancesRequest): AsyncIterableIterator<responses.ListBdsInstancesResponse>;
|
|
247
|
+
/**
|
|
248
|
+
* Creates a new async iterator which will iterate over the models.BdsInstanceSummary objects
|
|
249
|
+
* contained in responses from the listBdsInstances operation. This iterator will fetch more data from the
|
|
250
|
+
* server as needed.
|
|
251
|
+
*
|
|
252
|
+
* @param request a request which can be sent to the service operation
|
|
253
|
+
*/
|
|
254
|
+
listBdsInstancesRecordIterator(request: requests.ListBdsInstancesRequest): AsyncIterableIterator<model.BdsInstanceSummary>;
|
|
255
|
+
/**
|
|
256
|
+
* Creates a new async iterator which will iterate over the responses received from the listBdsInstances operation. This iterator
|
|
257
|
+
* will fetch more data from the server as needed.
|
|
258
|
+
*
|
|
259
|
+
* @param request a request which can be sent to the service operation
|
|
260
|
+
*/
|
|
261
|
+
listBdsInstancesResponseIterator(request: requests.ListBdsInstancesRequest): AsyncIterableIterator<responses.ListBdsInstancesResponse>;
|
|
212
262
|
/**
|
|
213
263
|
* Returns a paginated list of errors for a work request identified by the given ID.
|
|
214
264
|
*
|
|
265
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
215
266
|
* @param ListWorkRequestErrorsRequest
|
|
216
267
|
* @return ListWorkRequestErrorsResponse
|
|
217
268
|
* @throws OciError when an error occurs
|
|
218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
269
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
219
270
|
*/
|
|
220
271
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
221
272
|
/**
|
|
273
|
+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsRecordIterator function.
|
|
222
274
|
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
|
|
223
275
|
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
|
|
224
276
|
* server as needed.
|
|
@@ -227,22 +279,40 @@ export declare class BdsClient {
|
|
|
227
279
|
*/
|
|
228
280
|
listAllWorkRequestErrors(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
|
|
229
281
|
/**
|
|
282
|
+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsResponseIterator function.
|
|
230
283
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
|
|
231
284
|
* will fetch more data from the server as needed.
|
|
232
285
|
*
|
|
233
286
|
* @param request a request which can be sent to the service operation
|
|
234
287
|
*/
|
|
235
288
|
listAllWorkRequestErrorsResponses(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
|
|
289
|
+
/**
|
|
290
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
|
|
291
|
+
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
|
|
292
|
+
* server as needed.
|
|
293
|
+
*
|
|
294
|
+
* @param request a request which can be sent to the service operation
|
|
295
|
+
*/
|
|
296
|
+
listWorkRequestErrorsRecordIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
|
|
297
|
+
/**
|
|
298
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
|
|
299
|
+
* will fetch more data from the server as needed.
|
|
300
|
+
*
|
|
301
|
+
* @param request a request which can be sent to the service operation
|
|
302
|
+
*/
|
|
303
|
+
listWorkRequestErrorsResponseIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
|
|
236
304
|
/**
|
|
237
305
|
* Returns a paginated list of logs for a given work request.
|
|
238
306
|
*
|
|
307
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
239
308
|
* @param ListWorkRequestLogsRequest
|
|
240
309
|
* @return ListWorkRequestLogsResponse
|
|
241
310
|
* @throws OciError when an error occurs
|
|
242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
311
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
243
312
|
*/
|
|
244
313
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
245
314
|
/**
|
|
315
|
+
* NOTE: This function is deprecated in favor of listWorkRequestLogsRecordIterator function.
|
|
246
316
|
* Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
|
|
247
317
|
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
|
|
248
318
|
* server as needed.
|
|
@@ -251,22 +321,40 @@ export declare class BdsClient {
|
|
|
251
321
|
*/
|
|
252
322
|
listAllWorkRequestLogs(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
|
|
253
323
|
/**
|
|
324
|
+
* NOTE: This function is deprecated in favor of listWorkRequestLogsResponseIterator function.
|
|
254
325
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
|
|
255
326
|
* will fetch more data from the server as needed.
|
|
256
327
|
*
|
|
257
328
|
* @param request a request which can be sent to the service operation
|
|
258
329
|
*/
|
|
259
330
|
listAllWorkRequestLogsResponses(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
|
|
331
|
+
/**
|
|
332
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
|
|
333
|
+
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
|
|
334
|
+
* server as needed.
|
|
335
|
+
*
|
|
336
|
+
* @param request a request which can be sent to the service operation
|
|
337
|
+
*/
|
|
338
|
+
listWorkRequestLogsRecordIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
|
|
339
|
+
/**
|
|
340
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
|
|
341
|
+
* will fetch more data from the server as needed.
|
|
342
|
+
*
|
|
343
|
+
* @param request a request which can be sent to the service operation
|
|
344
|
+
*/
|
|
345
|
+
listWorkRequestLogsResponseIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
|
|
260
346
|
/**
|
|
261
347
|
* Lists the work requests in a compartment.
|
|
262
348
|
*
|
|
349
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
263
350
|
* @param ListWorkRequestsRequest
|
|
264
351
|
* @return ListWorkRequestsResponse
|
|
265
352
|
* @throws OciError when an error occurs
|
|
266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
353
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
267
354
|
*/
|
|
268
355
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
269
356
|
/**
|
|
357
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
|
|
270
358
|
* Creates a new async iterator which will iterate over the models.WorkRequest objects
|
|
271
359
|
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
272
360
|
* server as needed.
|
|
@@ -275,54 +363,75 @@ export declare class BdsClient {
|
|
|
275
363
|
*/
|
|
276
364
|
listAllWorkRequests(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequest>;
|
|
277
365
|
/**
|
|
366
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
|
|
278
367
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
279
368
|
* will fetch more data from the server as needed.
|
|
280
369
|
*
|
|
281
370
|
* @param request a request which can be sent to the service operation
|
|
282
371
|
*/
|
|
283
372
|
listAllWorkRequestsResponses(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
373
|
+
/**
|
|
374
|
+
* Creates a new async iterator which will iterate over the models.WorkRequest objects
|
|
375
|
+
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
376
|
+
* server as needed.
|
|
377
|
+
*
|
|
378
|
+
* @param request a request which can be sent to the service operation
|
|
379
|
+
*/
|
|
380
|
+
listWorkRequestsRecordIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequest>;
|
|
381
|
+
/**
|
|
382
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
383
|
+
* will fetch more data from the server as needed.
|
|
384
|
+
*
|
|
385
|
+
* @param request a request which can be sent to the service operation
|
|
386
|
+
*/
|
|
387
|
+
listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
284
388
|
/**
|
|
285
389
|
* Deletes an autoscale configuration.
|
|
286
390
|
*
|
|
391
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
287
392
|
* @param RemoveAutoScalingConfigurationRequest
|
|
288
393
|
* @return RemoveAutoScalingConfigurationResponse
|
|
289
394
|
* @throws OciError when an error occurs
|
|
290
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
395
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
291
396
|
*/
|
|
292
397
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest: requests.RemoveAutoScalingConfigurationRequest): Promise<responses.RemoveAutoScalingConfigurationResponse>;
|
|
293
398
|
/**
|
|
294
399
|
* Removes Cloud SQL from the cluster.
|
|
295
400
|
*
|
|
401
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
296
402
|
* @param RemoveCloudSqlRequest
|
|
297
403
|
* @return RemoveCloudSqlResponse
|
|
298
404
|
* @throws OciError when an error occurs
|
|
299
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
405
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
300
406
|
*/
|
|
301
407
|
removeCloudSql(removeCloudSqlRequest: requests.RemoveCloudSqlRequest): Promise<responses.RemoveCloudSqlResponse>;
|
|
302
408
|
/**
|
|
303
409
|
* Restarts a single node of a Big Data Service cluster
|
|
304
410
|
*
|
|
411
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
305
412
|
* @param RestartNodeRequest
|
|
306
413
|
* @return RestartNodeResponse
|
|
307
414
|
* @throws OciError when an error occurs
|
|
308
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
309
416
|
*/
|
|
310
417
|
restartNode(restartNodeRequest: requests.RestartNodeRequest): Promise<responses.RestartNodeResponse>;
|
|
311
418
|
/**
|
|
312
419
|
* Updates fields on an autoscale configuration, including the name, the threshold value, and whether the autoscale configuration is enabled.
|
|
313
420
|
*
|
|
421
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
314
422
|
* @param UpdateAutoScalingConfigurationRequest
|
|
315
423
|
* @return UpdateAutoScalingConfigurationResponse
|
|
316
424
|
* @throws OciError when an error occurs
|
|
317
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
425
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
318
426
|
*/
|
|
319
427
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest: requests.UpdateAutoScalingConfigurationRequest): Promise<responses.UpdateAutoScalingConfigurationResponse>;
|
|
320
428
|
/**
|
|
321
429
|
* Updates the Big Data Service cluster identified by the given ID.
|
|
430
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
322
431
|
* @param UpdateBdsInstanceRequest
|
|
323
432
|
* @return UpdateBdsInstanceResponse
|
|
324
433
|
* @throws OciError when an error occurs
|
|
325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
326
435
|
*/
|
|
327
436
|
updateBdsInstance(updateBdsInstanceRequest: requests.UpdateBdsInstanceRequest): Promise<responses.UpdateBdsInstanceResponse>;
|
|
328
437
|
}
|