oci-bds 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 +50 -40
- package/lib/client.js +63 -40
- package/lib/client.js.map +1 -1
- package/lib/request/activate-bds-metastore-configuration-request.d.ts +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-api-key-request.d.ts +1 -1
- package/lib/request/create-bds-instance-request.d.ts +1 -1
- package/lib/request/create-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/delete-bds-api-key-request.d.ts +1 -1
- package/lib/request/delete-bds-instance-request.d.ts +1 -1
- package/lib/request/delete-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/execute-bootstrap-script-request.d.ts +1 -1
- package/lib/request/get-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/get-bds-api-key-request.d.ts +1 -1
- package/lib/request/get-bds-instance-request.d.ts +1 -1
- package/lib/request/get-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/install-patch-request.d.ts +1 -1
- package/lib/request/list-auto-scaling-configurations-request.d.ts +1 -1
- package/lib/request/list-bds-api-keys-request.d.ts +1 -1
- package/lib/request/list-bds-instances-request.d.ts +1 -1
- package/lib/request/list-bds-metastore-configurations-request.d.ts +1 -1
- package/lib/request/list-patch-histories-request.d.ts +1 -1
- package/lib/request/list-patches-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/remove-node-request.d.ts +1 -1
- package/lib/request/restart-node-request.d.ts +1 -1
- package/lib/request/start-bds-instance-request.d.ts +1 -1
- package/lib/request/stop-bds-instance-request.d.ts +1 -1
- package/lib/request/test-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/test-bds-object-storage-connection-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/lib/request/update-bds-metastore-configuration-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export declare enum BdsApiKeys {
|
|
|
24
24
|
export declare class BdsClient {
|
|
25
25
|
protected static serviceEndpointTemplate: string;
|
|
26
26
|
protected static endpointServiceName: string;
|
|
27
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
27
28
|
protected "_endpoint": string;
|
|
28
29
|
protected "_defaultHeaders": any;
|
|
29
30
|
protected "_waiters": BdsWaiter;
|
|
@@ -31,6 +32,9 @@ export declare class BdsClient {
|
|
|
31
32
|
protected _circuitBreaker: null;
|
|
32
33
|
protected _httpOptions: any;
|
|
33
34
|
targetService: string;
|
|
35
|
+
protected _regionId: string;
|
|
36
|
+
protected "_region": common.Region;
|
|
37
|
+
protected _lastSetRegionOrRegionId: string;
|
|
34
38
|
protected _httpClient: common.HttpClient;
|
|
35
39
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
36
40
|
/**
|
|
@@ -43,6 +47,12 @@ export declare class BdsClient {
|
|
|
43
47
|
*/
|
|
44
48
|
set endpoint(endpoint: string);
|
|
45
49
|
get logger(): import("oci-common/lib/log").Logger;
|
|
50
|
+
/**
|
|
51
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
52
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
53
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
54
|
+
*/
|
|
55
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
46
56
|
/**
|
|
47
57
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
48
58
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -78,7 +88,7 @@ export declare class BdsClient {
|
|
|
78
88
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
79
89
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
80
90
|
* @throws OciError when an error occurs
|
|
81
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
91
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
82
92
|
*/
|
|
83
93
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest: requests.ActivateBdsMetastoreConfigurationRequest): Promise<responses.ActivateBdsMetastoreConfigurationResponse>;
|
|
84
94
|
/**
|
|
@@ -88,7 +98,7 @@ export declare class BdsClient {
|
|
|
88
98
|
* @param AddAutoScalingConfigurationRequest
|
|
89
99
|
* @return AddAutoScalingConfigurationResponse
|
|
90
100
|
* @throws OciError when an error occurs
|
|
91
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
92
102
|
*/
|
|
93
103
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest: requests.AddAutoScalingConfigurationRequest): Promise<responses.AddAutoScalingConfigurationResponse>;
|
|
94
104
|
/**
|
|
@@ -98,7 +108,7 @@ export declare class BdsClient {
|
|
|
98
108
|
* @param AddBlockStorageRequest
|
|
99
109
|
* @return AddBlockStorageResponse
|
|
100
110
|
* @throws OciError when an error occurs
|
|
101
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
111
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
102
112
|
*/
|
|
103
113
|
addBlockStorage(addBlockStorageRequest: requests.AddBlockStorageRequest): Promise<responses.AddBlockStorageResponse>;
|
|
104
114
|
/**
|
|
@@ -108,7 +118,7 @@ export declare class BdsClient {
|
|
|
108
118
|
* @param AddCloudSqlRequest
|
|
109
119
|
* @return AddCloudSqlResponse
|
|
110
120
|
* @throws OciError when an error occurs
|
|
111
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
112
122
|
*/
|
|
113
123
|
addCloudSql(addCloudSqlRequest: requests.AddCloudSqlRequest): Promise<responses.AddCloudSqlResponse>;
|
|
114
124
|
/**
|
|
@@ -118,7 +128,7 @@ export declare class BdsClient {
|
|
|
118
128
|
* @param AddWorkerNodesRequest
|
|
119
129
|
* @return AddWorkerNodesResponse
|
|
120
130
|
* @throws OciError when an error occurs
|
|
121
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
131
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
122
132
|
*/
|
|
123
133
|
addWorkerNodes(addWorkerNodesRequest: requests.AddWorkerNodesRequest): Promise<responses.AddWorkerNodesResponse>;
|
|
124
134
|
/**
|
|
@@ -128,7 +138,7 @@ export declare class BdsClient {
|
|
|
128
138
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
129
139
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
130
140
|
* @throws OciError when an error occurs
|
|
131
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
141
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
132
142
|
*/
|
|
133
143
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest: requests.ChangeBdsInstanceCompartmentRequest): Promise<responses.ChangeBdsInstanceCompartmentResponse>;
|
|
134
144
|
/**
|
|
@@ -138,7 +148,7 @@ export declare class BdsClient {
|
|
|
138
148
|
* @param ChangeShapeRequest
|
|
139
149
|
* @return ChangeShapeResponse
|
|
140
150
|
* @throws OciError when an error occurs
|
|
141
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
151
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
142
152
|
*/
|
|
143
153
|
changeShape(changeShapeRequest: requests.ChangeShapeRequest): Promise<responses.ChangeShapeResponse>;
|
|
144
154
|
/**
|
|
@@ -148,7 +158,7 @@ export declare class BdsClient {
|
|
|
148
158
|
* @param CreateBdsApiKeyRequest
|
|
149
159
|
* @return CreateBdsApiKeyResponse
|
|
150
160
|
* @throws OciError when an error occurs
|
|
151
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
152
162
|
*/
|
|
153
163
|
createBdsApiKey(createBdsApiKeyRequest: requests.CreateBdsApiKeyRequest): Promise<responses.CreateBdsApiKeyResponse>;
|
|
154
164
|
/**
|
|
@@ -158,7 +168,7 @@ export declare class BdsClient {
|
|
|
158
168
|
* @param CreateBdsInstanceRequest
|
|
159
169
|
* @return CreateBdsInstanceResponse
|
|
160
170
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
171
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
162
172
|
*/
|
|
163
173
|
createBdsInstance(createBdsInstanceRequest: requests.CreateBdsInstanceRequest): Promise<responses.CreateBdsInstanceResponse>;
|
|
164
174
|
/**
|
|
@@ -168,7 +178,7 @@ export declare class BdsClient {
|
|
|
168
178
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
169
179
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
170
180
|
* @throws OciError when an error occurs
|
|
171
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
181
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
172
182
|
*/
|
|
173
183
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest: requests.CreateBdsMetastoreConfigurationRequest): Promise<responses.CreateBdsMetastoreConfigurationResponse>;
|
|
174
184
|
/**
|
|
@@ -177,7 +187,7 @@ export declare class BdsClient {
|
|
|
177
187
|
* @param DeleteBdsApiKeyRequest
|
|
178
188
|
* @return DeleteBdsApiKeyResponse
|
|
179
189
|
* @throws OciError when an error occurs
|
|
180
|
-
* @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.58.1/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
181
191
|
*/
|
|
182
192
|
deleteBdsApiKey(deleteBdsApiKeyRequest: requests.DeleteBdsApiKeyRequest): Promise<responses.DeleteBdsApiKeyResponse>;
|
|
183
193
|
/**
|
|
@@ -186,7 +196,7 @@ export declare class BdsClient {
|
|
|
186
196
|
* @param DeleteBdsInstanceRequest
|
|
187
197
|
* @return DeleteBdsInstanceResponse
|
|
188
198
|
* @throws OciError when an error occurs
|
|
189
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
199
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
190
200
|
*/
|
|
191
201
|
deleteBdsInstance(deleteBdsInstanceRequest: requests.DeleteBdsInstanceRequest): Promise<responses.DeleteBdsInstanceResponse>;
|
|
192
202
|
/**
|
|
@@ -195,7 +205,7 @@ export declare class BdsClient {
|
|
|
195
205
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
196
206
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
197
207
|
* @throws OciError when an error occurs
|
|
198
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
208
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
199
209
|
*/
|
|
200
210
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest: requests.DeleteBdsMetastoreConfigurationRequest): Promise<responses.DeleteBdsMetastoreConfigurationResponse>;
|
|
201
211
|
/**
|
|
@@ -205,7 +215,7 @@ export declare class BdsClient {
|
|
|
205
215
|
* @param ExecuteBootstrapScriptRequest
|
|
206
216
|
* @return ExecuteBootstrapScriptResponse
|
|
207
217
|
* @throws OciError when an error occurs
|
|
208
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
218
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
|
|
209
219
|
*/
|
|
210
220
|
executeBootstrapScript(executeBootstrapScriptRequest: requests.ExecuteBootstrapScriptRequest): Promise<responses.ExecuteBootstrapScriptResponse>;
|
|
211
221
|
/**
|
|
@@ -215,7 +225,7 @@ export declare class BdsClient {
|
|
|
215
225
|
* @param GetAutoScalingConfigurationRequest
|
|
216
226
|
* @return GetAutoScalingConfigurationResponse
|
|
217
227
|
* @throws OciError when an error occurs
|
|
218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
228
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
219
229
|
*/
|
|
220
230
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest: requests.GetAutoScalingConfigurationRequest): Promise<responses.GetAutoScalingConfigurationResponse>;
|
|
221
231
|
/**
|
|
@@ -224,7 +234,7 @@ export declare class BdsClient {
|
|
|
224
234
|
* @param GetBdsApiKeyRequest
|
|
225
235
|
* @return GetBdsApiKeyResponse
|
|
226
236
|
* @throws OciError when an error occurs
|
|
227
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
237
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
228
238
|
*/
|
|
229
239
|
getBdsApiKey(getBdsApiKeyRequest: requests.GetBdsApiKeyRequest): Promise<responses.GetBdsApiKeyResponse>;
|
|
230
240
|
/**
|
|
@@ -233,7 +243,7 @@ export declare class BdsClient {
|
|
|
233
243
|
* @param GetBdsInstanceRequest
|
|
234
244
|
* @return GetBdsInstanceResponse
|
|
235
245
|
* @throws OciError when an error occurs
|
|
236
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
246
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
237
247
|
*/
|
|
238
248
|
getBdsInstance(getBdsInstanceRequest: requests.GetBdsInstanceRequest): Promise<responses.GetBdsInstanceResponse>;
|
|
239
249
|
/**
|
|
@@ -242,7 +252,7 @@ export declare class BdsClient {
|
|
|
242
252
|
* @param GetBdsMetastoreConfigurationRequest
|
|
243
253
|
* @return GetBdsMetastoreConfigurationResponse
|
|
244
254
|
* @throws OciError when an error occurs
|
|
245
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
255
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
246
256
|
*/
|
|
247
257
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest: requests.GetBdsMetastoreConfigurationRequest): Promise<responses.GetBdsMetastoreConfigurationResponse>;
|
|
248
258
|
/**
|
|
@@ -251,7 +261,7 @@ export declare class BdsClient {
|
|
|
251
261
|
* @param GetWorkRequestRequest
|
|
252
262
|
* @return GetWorkRequestResponse
|
|
253
263
|
* @throws OciError when an error occurs
|
|
254
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
264
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
255
265
|
*/
|
|
256
266
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
257
267
|
/**
|
|
@@ -261,7 +271,7 @@ export declare class BdsClient {
|
|
|
261
271
|
* @param InstallPatchRequest
|
|
262
272
|
* @return InstallPatchResponse
|
|
263
273
|
* @throws OciError when an error occurs
|
|
264
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
274
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
265
275
|
*/
|
|
266
276
|
installPatch(installPatchRequest: requests.InstallPatchRequest): Promise<responses.InstallPatchResponse>;
|
|
267
277
|
/**
|
|
@@ -271,7 +281,7 @@ export declare class BdsClient {
|
|
|
271
281
|
* @param ListAutoScalingConfigurationsRequest
|
|
272
282
|
* @return ListAutoScalingConfigurationsResponse
|
|
273
283
|
* @throws OciError when an error occurs
|
|
274
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
284
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
275
285
|
*/
|
|
276
286
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest: requests.ListAutoScalingConfigurationsRequest): Promise<responses.ListAutoScalingConfigurationsResponse>;
|
|
277
287
|
/**
|
|
@@ -313,7 +323,7 @@ export declare class BdsClient {
|
|
|
313
323
|
* @param ListBdsApiKeysRequest
|
|
314
324
|
* @return ListBdsApiKeysResponse
|
|
315
325
|
* @throws OciError when an error occurs
|
|
316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
326
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
317
327
|
*/
|
|
318
328
|
listBdsApiKeys(listBdsApiKeysRequest: requests.ListBdsApiKeysRequest): Promise<responses.ListBdsApiKeysResponse>;
|
|
319
329
|
/**
|
|
@@ -355,7 +365,7 @@ export declare class BdsClient {
|
|
|
355
365
|
* @param ListBdsInstancesRequest
|
|
356
366
|
* @return ListBdsInstancesResponse
|
|
357
367
|
* @throws OciError when an error occurs
|
|
358
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
368
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
359
369
|
*/
|
|
360
370
|
listBdsInstances(listBdsInstancesRequest: requests.ListBdsInstancesRequest): Promise<responses.ListBdsInstancesResponse>;
|
|
361
371
|
/**
|
|
@@ -397,7 +407,7 @@ export declare class BdsClient {
|
|
|
397
407
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
398
408
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
399
409
|
* @throws OciError when an error occurs
|
|
400
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
401
411
|
*/
|
|
402
412
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest: requests.ListBdsMetastoreConfigurationsRequest): Promise<responses.ListBdsMetastoreConfigurationsResponse>;
|
|
403
413
|
/**
|
|
@@ -439,7 +449,7 @@ export declare class BdsClient {
|
|
|
439
449
|
* @param ListPatchHistoriesRequest
|
|
440
450
|
* @return ListPatchHistoriesResponse
|
|
441
451
|
* @throws OciError when an error occurs
|
|
442
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
452
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
443
453
|
*/
|
|
444
454
|
listPatchHistories(listPatchHistoriesRequest: requests.ListPatchHistoriesRequest): Promise<responses.ListPatchHistoriesResponse>;
|
|
445
455
|
/**
|
|
@@ -481,7 +491,7 @@ export declare class BdsClient {
|
|
|
481
491
|
* @param ListPatchesRequest
|
|
482
492
|
* @return ListPatchesResponse
|
|
483
493
|
* @throws OciError when an error occurs
|
|
484
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
494
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
485
495
|
*/
|
|
486
496
|
listPatches(listPatchesRequest: requests.ListPatchesRequest): Promise<responses.ListPatchesResponse>;
|
|
487
497
|
/**
|
|
@@ -523,7 +533,7 @@ export declare class BdsClient {
|
|
|
523
533
|
* @param ListWorkRequestErrorsRequest
|
|
524
534
|
* @return ListWorkRequestErrorsResponse
|
|
525
535
|
* @throws OciError when an error occurs
|
|
526
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
536
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
527
537
|
*/
|
|
528
538
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
529
539
|
/**
|
|
@@ -565,7 +575,7 @@ export declare class BdsClient {
|
|
|
565
575
|
* @param ListWorkRequestLogsRequest
|
|
566
576
|
* @return ListWorkRequestLogsResponse
|
|
567
577
|
* @throws OciError when an error occurs
|
|
568
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
578
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
569
579
|
*/
|
|
570
580
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
571
581
|
/**
|
|
@@ -607,7 +617,7 @@ export declare class BdsClient {
|
|
|
607
617
|
* @param ListWorkRequestsRequest
|
|
608
618
|
* @return ListWorkRequestsResponse
|
|
609
619
|
* @throws OciError when an error occurs
|
|
610
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
620
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
611
621
|
*/
|
|
612
622
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
613
623
|
/**
|
|
@@ -649,7 +659,7 @@ export declare class BdsClient {
|
|
|
649
659
|
* @param RemoveAutoScalingConfigurationRequest
|
|
650
660
|
* @return RemoveAutoScalingConfigurationResponse
|
|
651
661
|
* @throws OciError when an error occurs
|
|
652
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
662
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
653
663
|
*/
|
|
654
664
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest: requests.RemoveAutoScalingConfigurationRequest): Promise<responses.RemoveAutoScalingConfigurationResponse>;
|
|
655
665
|
/**
|
|
@@ -659,7 +669,7 @@ export declare class BdsClient {
|
|
|
659
669
|
* @param RemoveCloudSqlRequest
|
|
660
670
|
* @return RemoveCloudSqlResponse
|
|
661
671
|
* @throws OciError when an error occurs
|
|
662
|
-
* @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.58.1/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
663
673
|
*/
|
|
664
674
|
removeCloudSql(removeCloudSqlRequest: requests.RemoveCloudSqlRequest): Promise<responses.RemoveCloudSqlResponse>;
|
|
665
675
|
/**
|
|
@@ -669,7 +679,7 @@ export declare class BdsClient {
|
|
|
669
679
|
* @param RemoveNodeRequest
|
|
670
680
|
* @return RemoveNodeResponse
|
|
671
681
|
* @throws OciError when an error occurs
|
|
672
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
682
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
673
683
|
*/
|
|
674
684
|
removeNode(removeNodeRequest: requests.RemoveNodeRequest): Promise<responses.RemoveNodeResponse>;
|
|
675
685
|
/**
|
|
@@ -679,7 +689,7 @@ export declare class BdsClient {
|
|
|
679
689
|
* @param RestartNodeRequest
|
|
680
690
|
* @return RestartNodeResponse
|
|
681
691
|
* @throws OciError when an error occurs
|
|
682
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
692
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
683
693
|
*/
|
|
684
694
|
restartNode(restartNodeRequest: requests.RestartNodeRequest): Promise<responses.RestartNodeResponse>;
|
|
685
695
|
/**
|
|
@@ -689,7 +699,7 @@ export declare class BdsClient {
|
|
|
689
699
|
* @param StartBdsInstanceRequest
|
|
690
700
|
* @return StartBdsInstanceResponse
|
|
691
701
|
* @throws OciError when an error occurs
|
|
692
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
702
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
|
|
693
703
|
*/
|
|
694
704
|
startBdsInstance(startBdsInstanceRequest: requests.StartBdsInstanceRequest): Promise<responses.StartBdsInstanceResponse>;
|
|
695
705
|
/**
|
|
@@ -699,7 +709,7 @@ export declare class BdsClient {
|
|
|
699
709
|
* @param StopBdsInstanceRequest
|
|
700
710
|
* @return StopBdsInstanceResponse
|
|
701
711
|
* @throws OciError when an error occurs
|
|
702
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
712
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
|
|
703
713
|
*/
|
|
704
714
|
stopBdsInstance(stopBdsInstanceRequest: requests.StopBdsInstanceRequest): Promise<responses.StopBdsInstanceResponse>;
|
|
705
715
|
/**
|
|
@@ -709,7 +719,7 @@ export declare class BdsClient {
|
|
|
709
719
|
* @param TestBdsMetastoreConfigurationRequest
|
|
710
720
|
* @return TestBdsMetastoreConfigurationResponse
|
|
711
721
|
* @throws OciError when an error occurs
|
|
712
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
722
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
713
723
|
*/
|
|
714
724
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest: requests.TestBdsMetastoreConfigurationRequest): Promise<responses.TestBdsMetastoreConfigurationResponse>;
|
|
715
725
|
/**
|
|
@@ -718,7 +728,7 @@ export declare class BdsClient {
|
|
|
718
728
|
* @param TestBdsObjectStorageConnectionRequest
|
|
719
729
|
* @return TestBdsObjectStorageConnectionResponse
|
|
720
730
|
* @throws OciError when an error occurs
|
|
721
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
731
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
722
732
|
*/
|
|
723
733
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest: requests.TestBdsObjectStorageConnectionRequest): Promise<responses.TestBdsObjectStorageConnectionResponse>;
|
|
724
734
|
/**
|
|
@@ -728,7 +738,7 @@ export declare class BdsClient {
|
|
|
728
738
|
* @param UpdateAutoScalingConfigurationRequest
|
|
729
739
|
* @return UpdateAutoScalingConfigurationResponse
|
|
730
740
|
* @throws OciError when an error occurs
|
|
731
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
741
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
732
742
|
*/
|
|
733
743
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest: requests.UpdateAutoScalingConfigurationRequest): Promise<responses.UpdateAutoScalingConfigurationResponse>;
|
|
734
744
|
/**
|
|
@@ -737,7 +747,7 @@ export declare class BdsClient {
|
|
|
737
747
|
* @param UpdateBdsInstanceRequest
|
|
738
748
|
* @return UpdateBdsInstanceResponse
|
|
739
749
|
* @throws OciError when an error occurs
|
|
740
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
750
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
741
751
|
*/
|
|
742
752
|
updateBdsInstance(updateBdsInstanceRequest: requests.UpdateBdsInstanceRequest): Promise<responses.UpdateBdsInstanceResponse>;
|
|
743
753
|
/**
|
|
@@ -746,7 +756,7 @@ export declare class BdsClient {
|
|
|
746
756
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
747
757
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
748
758
|
* @throws OciError when an error occurs
|
|
749
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
759
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
750
760
|
*/
|
|
751
761
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest: requests.UpdateBdsMetastoreConfigurationRequest): Promise<responses.UpdateBdsMetastoreConfigurationResponse>;
|
|
752
762
|
}
|