oci-bds 2.25.0 → 2.28.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/lib/client.d.ts +38 -37
- package/lib/client.js +149 -74
- package/lib/client.js.map +1 -1
- package/lib/model/add-auto-scale-policy-details.js +2 -2
- package/lib/model/add-auto-scale-policy-details.js.map +1 -1
- package/lib/model/auto-scale-policy-details.js +2 -2
- package/lib/model/auto-scale-policy-details.js.map +1 -1
- package/lib/model/horizontal-scaling-schedule-details.js +2 -2
- package/lib/model/horizontal-scaling-schedule-details.js.map +1 -1
- package/lib/model/update-auto-scale-policy-details.js +2 -2
- package/lib/model/update-auto-scale-policy-details.js.map +1 -1
- package/lib/model/vertical-scaling-schedule-details.js +2 -2
- package/lib/model/vertical-scaling-schedule-details.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/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/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
|
@@ -30,6 +30,7 @@ export declare class BdsClient {
|
|
|
30
30
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
31
31
|
protected _circuitBreaker: null;
|
|
32
32
|
protected _httpOptions: any;
|
|
33
|
+
targetService: string;
|
|
33
34
|
protected _httpClient: common.HttpClient;
|
|
34
35
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
35
36
|
/**
|
|
@@ -77,7 +78,7 @@ export declare class BdsClient {
|
|
|
77
78
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
78
79
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
79
80
|
* @throws OciError when an error occurs
|
|
80
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
81
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
81
82
|
*/
|
|
82
83
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest: requests.ActivateBdsMetastoreConfigurationRequest): Promise<responses.ActivateBdsMetastoreConfigurationResponse>;
|
|
83
84
|
/**
|
|
@@ -87,7 +88,7 @@ export declare class BdsClient {
|
|
|
87
88
|
* @param AddAutoScalingConfigurationRequest
|
|
88
89
|
* @return AddAutoScalingConfigurationResponse
|
|
89
90
|
* @throws OciError when an error occurs
|
|
90
|
-
* @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.28.0/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
91
92
|
*/
|
|
92
93
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest: requests.AddAutoScalingConfigurationRequest): Promise<responses.AddAutoScalingConfigurationResponse>;
|
|
93
94
|
/**
|
|
@@ -97,7 +98,7 @@ export declare class BdsClient {
|
|
|
97
98
|
* @param AddBlockStorageRequest
|
|
98
99
|
* @return AddBlockStorageResponse
|
|
99
100
|
* @throws OciError when an error occurs
|
|
100
|
-
* @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.28.0/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
101
102
|
*/
|
|
102
103
|
addBlockStorage(addBlockStorageRequest: requests.AddBlockStorageRequest): Promise<responses.AddBlockStorageResponse>;
|
|
103
104
|
/**
|
|
@@ -107,7 +108,7 @@ export declare class BdsClient {
|
|
|
107
108
|
* @param AddCloudSqlRequest
|
|
108
109
|
* @return AddCloudSqlResponse
|
|
109
110
|
* @throws OciError when an error occurs
|
|
110
|
-
* @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.28.0/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
111
112
|
*/
|
|
112
113
|
addCloudSql(addCloudSqlRequest: requests.AddCloudSqlRequest): Promise<responses.AddCloudSqlResponse>;
|
|
113
114
|
/**
|
|
@@ -117,7 +118,7 @@ export declare class BdsClient {
|
|
|
117
118
|
* @param AddWorkerNodesRequest
|
|
118
119
|
* @return AddWorkerNodesResponse
|
|
119
120
|
* @throws OciError when an error occurs
|
|
120
|
-
* @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.28.0/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
121
122
|
*/
|
|
122
123
|
addWorkerNodes(addWorkerNodesRequest: requests.AddWorkerNodesRequest): Promise<responses.AddWorkerNodesResponse>;
|
|
123
124
|
/**
|
|
@@ -127,7 +128,7 @@ export declare class BdsClient {
|
|
|
127
128
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
128
129
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
129
130
|
* @throws OciError when an error occurs
|
|
130
|
-
* @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.28.0/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
131
132
|
*/
|
|
132
133
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest: requests.ChangeBdsInstanceCompartmentRequest): Promise<responses.ChangeBdsInstanceCompartmentResponse>;
|
|
133
134
|
/**
|
|
@@ -137,7 +138,7 @@ export declare class BdsClient {
|
|
|
137
138
|
* @param ChangeShapeRequest
|
|
138
139
|
* @return ChangeShapeResponse
|
|
139
140
|
* @throws OciError when an error occurs
|
|
140
|
-
* @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.28.0/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
141
142
|
*/
|
|
142
143
|
changeShape(changeShapeRequest: requests.ChangeShapeRequest): Promise<responses.ChangeShapeResponse>;
|
|
143
144
|
/**
|
|
@@ -147,7 +148,7 @@ export declare class BdsClient {
|
|
|
147
148
|
* @param CreateBdsApiKeyRequest
|
|
148
149
|
* @return CreateBdsApiKeyResponse
|
|
149
150
|
* @throws OciError when an error occurs
|
|
150
|
-
* @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.28.0/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
151
152
|
*/
|
|
152
153
|
createBdsApiKey(createBdsApiKeyRequest: requests.CreateBdsApiKeyRequest): Promise<responses.CreateBdsApiKeyResponse>;
|
|
153
154
|
/**
|
|
@@ -157,7 +158,7 @@ export declare class BdsClient {
|
|
|
157
158
|
* @param CreateBdsInstanceRequest
|
|
158
159
|
* @return CreateBdsInstanceResponse
|
|
159
160
|
* @throws OciError when an error occurs
|
|
160
|
-
* @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.28.0/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
161
162
|
*/
|
|
162
163
|
createBdsInstance(createBdsInstanceRequest: requests.CreateBdsInstanceRequest): Promise<responses.CreateBdsInstanceResponse>;
|
|
163
164
|
/**
|
|
@@ -167,7 +168,7 @@ export declare class BdsClient {
|
|
|
167
168
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
168
169
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
169
170
|
* @throws OciError when an error occurs
|
|
170
|
-
* @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.28.0/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
171
172
|
*/
|
|
172
173
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest: requests.CreateBdsMetastoreConfigurationRequest): Promise<responses.CreateBdsMetastoreConfigurationResponse>;
|
|
173
174
|
/**
|
|
@@ -176,7 +177,7 @@ export declare class BdsClient {
|
|
|
176
177
|
* @param DeleteBdsApiKeyRequest
|
|
177
178
|
* @return DeleteBdsApiKeyResponse
|
|
178
179
|
* @throws OciError when an error occurs
|
|
179
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
180
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
180
181
|
*/
|
|
181
182
|
deleteBdsApiKey(deleteBdsApiKeyRequest: requests.DeleteBdsApiKeyRequest): Promise<responses.DeleteBdsApiKeyResponse>;
|
|
182
183
|
/**
|
|
@@ -185,7 +186,7 @@ export declare class BdsClient {
|
|
|
185
186
|
* @param DeleteBdsInstanceRequest
|
|
186
187
|
* @return DeleteBdsInstanceResponse
|
|
187
188
|
* @throws OciError when an error occurs
|
|
188
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
189
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
189
190
|
*/
|
|
190
191
|
deleteBdsInstance(deleteBdsInstanceRequest: requests.DeleteBdsInstanceRequest): Promise<responses.DeleteBdsInstanceResponse>;
|
|
191
192
|
/**
|
|
@@ -194,7 +195,7 @@ export declare class BdsClient {
|
|
|
194
195
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
195
196
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
196
197
|
* @throws OciError when an error occurs
|
|
197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
198
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
198
199
|
*/
|
|
199
200
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest: requests.DeleteBdsMetastoreConfigurationRequest): Promise<responses.DeleteBdsMetastoreConfigurationResponse>;
|
|
200
201
|
/**
|
|
@@ -204,7 +205,7 @@ export declare class BdsClient {
|
|
|
204
205
|
* @param GetAutoScalingConfigurationRequest
|
|
205
206
|
* @return GetAutoScalingConfigurationResponse
|
|
206
207
|
* @throws OciError when an error occurs
|
|
207
|
-
* @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.28.0/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
208
209
|
*/
|
|
209
210
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest: requests.GetAutoScalingConfigurationRequest): Promise<responses.GetAutoScalingConfigurationResponse>;
|
|
210
211
|
/**
|
|
@@ -213,7 +214,7 @@ export declare class BdsClient {
|
|
|
213
214
|
* @param GetBdsApiKeyRequest
|
|
214
215
|
* @return GetBdsApiKeyResponse
|
|
215
216
|
* @throws OciError when an error occurs
|
|
216
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
217
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
217
218
|
*/
|
|
218
219
|
getBdsApiKey(getBdsApiKeyRequest: requests.GetBdsApiKeyRequest): Promise<responses.GetBdsApiKeyResponse>;
|
|
219
220
|
/**
|
|
@@ -222,7 +223,7 @@ export declare class BdsClient {
|
|
|
222
223
|
* @param GetBdsInstanceRequest
|
|
223
224
|
* @return GetBdsInstanceResponse
|
|
224
225
|
* @throws OciError when an error occurs
|
|
225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
226
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
226
227
|
*/
|
|
227
228
|
getBdsInstance(getBdsInstanceRequest: requests.GetBdsInstanceRequest): Promise<responses.GetBdsInstanceResponse>;
|
|
228
229
|
/**
|
|
@@ -231,7 +232,7 @@ export declare class BdsClient {
|
|
|
231
232
|
* @param GetBdsMetastoreConfigurationRequest
|
|
232
233
|
* @return GetBdsMetastoreConfigurationResponse
|
|
233
234
|
* @throws OciError when an error occurs
|
|
234
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
235
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
235
236
|
*/
|
|
236
237
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest: requests.GetBdsMetastoreConfigurationRequest): Promise<responses.GetBdsMetastoreConfigurationResponse>;
|
|
237
238
|
/**
|
|
@@ -240,7 +241,7 @@ export declare class BdsClient {
|
|
|
240
241
|
* @param GetWorkRequestRequest
|
|
241
242
|
* @return GetWorkRequestResponse
|
|
242
243
|
* @throws OciError when an error occurs
|
|
243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
244
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
244
245
|
*/
|
|
245
246
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
246
247
|
/**
|
|
@@ -250,7 +251,7 @@ export declare class BdsClient {
|
|
|
250
251
|
* @param InstallPatchRequest
|
|
251
252
|
* @return InstallPatchResponse
|
|
252
253
|
* @throws OciError when an error occurs
|
|
253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
254
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
254
255
|
*/
|
|
255
256
|
installPatch(installPatchRequest: requests.InstallPatchRequest): Promise<responses.InstallPatchResponse>;
|
|
256
257
|
/**
|
|
@@ -260,7 +261,7 @@ export declare class BdsClient {
|
|
|
260
261
|
* @param ListAutoScalingConfigurationsRequest
|
|
261
262
|
* @return ListAutoScalingConfigurationsResponse
|
|
262
263
|
* @throws OciError when an error occurs
|
|
263
|
-
* @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.28.0/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
264
265
|
*/
|
|
265
266
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest: requests.ListAutoScalingConfigurationsRequest): Promise<responses.ListAutoScalingConfigurationsResponse>;
|
|
266
267
|
/**
|
|
@@ -302,7 +303,7 @@ export declare class BdsClient {
|
|
|
302
303
|
* @param ListBdsApiKeysRequest
|
|
303
304
|
* @return ListBdsApiKeysResponse
|
|
304
305
|
* @throws OciError when an error occurs
|
|
305
|
-
* @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.28.0/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
306
307
|
*/
|
|
307
308
|
listBdsApiKeys(listBdsApiKeysRequest: requests.ListBdsApiKeysRequest): Promise<responses.ListBdsApiKeysResponse>;
|
|
308
309
|
/**
|
|
@@ -344,7 +345,7 @@ export declare class BdsClient {
|
|
|
344
345
|
* @param ListBdsInstancesRequest
|
|
345
346
|
* @return ListBdsInstancesResponse
|
|
346
347
|
* @throws OciError when an error occurs
|
|
347
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
348
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
348
349
|
*/
|
|
349
350
|
listBdsInstances(listBdsInstancesRequest: requests.ListBdsInstancesRequest): Promise<responses.ListBdsInstancesResponse>;
|
|
350
351
|
/**
|
|
@@ -386,7 +387,7 @@ export declare class BdsClient {
|
|
|
386
387
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
387
388
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
388
389
|
* @throws OciError when an error occurs
|
|
389
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
390
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
390
391
|
*/
|
|
391
392
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest: requests.ListBdsMetastoreConfigurationsRequest): Promise<responses.ListBdsMetastoreConfigurationsResponse>;
|
|
392
393
|
/**
|
|
@@ -428,7 +429,7 @@ export declare class BdsClient {
|
|
|
428
429
|
* @param ListPatchHistoriesRequest
|
|
429
430
|
* @return ListPatchHistoriesResponse
|
|
430
431
|
* @throws OciError when an error occurs
|
|
431
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
432
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
432
433
|
*/
|
|
433
434
|
listPatchHistories(listPatchHistoriesRequest: requests.ListPatchHistoriesRequest): Promise<responses.ListPatchHistoriesResponse>;
|
|
434
435
|
/**
|
|
@@ -470,7 +471,7 @@ export declare class BdsClient {
|
|
|
470
471
|
* @param ListPatchesRequest
|
|
471
472
|
* @return ListPatchesResponse
|
|
472
473
|
* @throws OciError when an error occurs
|
|
473
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
474
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
474
475
|
*/
|
|
475
476
|
listPatches(listPatchesRequest: requests.ListPatchesRequest): Promise<responses.ListPatchesResponse>;
|
|
476
477
|
/**
|
|
@@ -512,7 +513,7 @@ export declare class BdsClient {
|
|
|
512
513
|
* @param ListWorkRequestErrorsRequest
|
|
513
514
|
* @return ListWorkRequestErrorsResponse
|
|
514
515
|
* @throws OciError when an error occurs
|
|
515
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
516
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
516
517
|
*/
|
|
517
518
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
518
519
|
/**
|
|
@@ -554,7 +555,7 @@ export declare class BdsClient {
|
|
|
554
555
|
* @param ListWorkRequestLogsRequest
|
|
555
556
|
* @return ListWorkRequestLogsResponse
|
|
556
557
|
* @throws OciError when an error occurs
|
|
557
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
558
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
558
559
|
*/
|
|
559
560
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
560
561
|
/**
|
|
@@ -596,7 +597,7 @@ export declare class BdsClient {
|
|
|
596
597
|
* @param ListWorkRequestsRequest
|
|
597
598
|
* @return ListWorkRequestsResponse
|
|
598
599
|
* @throws OciError when an error occurs
|
|
599
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
600
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
600
601
|
*/
|
|
601
602
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
602
603
|
/**
|
|
@@ -638,7 +639,7 @@ export declare class BdsClient {
|
|
|
638
639
|
* @param RemoveAutoScalingConfigurationRequest
|
|
639
640
|
* @return RemoveAutoScalingConfigurationResponse
|
|
640
641
|
* @throws OciError when an error occurs
|
|
641
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
642
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
642
643
|
*/
|
|
643
644
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest: requests.RemoveAutoScalingConfigurationRequest): Promise<responses.RemoveAutoScalingConfigurationResponse>;
|
|
644
645
|
/**
|
|
@@ -648,7 +649,7 @@ export declare class BdsClient {
|
|
|
648
649
|
* @param RemoveCloudSqlRequest
|
|
649
650
|
* @return RemoveCloudSqlResponse
|
|
650
651
|
* @throws OciError when an error occurs
|
|
651
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
652
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
652
653
|
*/
|
|
653
654
|
removeCloudSql(removeCloudSqlRequest: requests.RemoveCloudSqlRequest): Promise<responses.RemoveCloudSqlResponse>;
|
|
654
655
|
/**
|
|
@@ -658,7 +659,7 @@ export declare class BdsClient {
|
|
|
658
659
|
* @param RemoveNodeRequest
|
|
659
660
|
* @return RemoveNodeResponse
|
|
660
661
|
* @throws OciError when an error occurs
|
|
661
|
-
* @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.28.0/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
662
663
|
*/
|
|
663
664
|
removeNode(removeNodeRequest: requests.RemoveNodeRequest): Promise<responses.RemoveNodeResponse>;
|
|
664
665
|
/**
|
|
@@ -668,7 +669,7 @@ export declare class BdsClient {
|
|
|
668
669
|
* @param RestartNodeRequest
|
|
669
670
|
* @return RestartNodeResponse
|
|
670
671
|
* @throws OciError when an error occurs
|
|
671
|
-
* @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.28.0/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
672
673
|
*/
|
|
673
674
|
restartNode(restartNodeRequest: requests.RestartNodeRequest): Promise<responses.RestartNodeResponse>;
|
|
674
675
|
/**
|
|
@@ -678,7 +679,7 @@ export declare class BdsClient {
|
|
|
678
679
|
* @param TestBdsMetastoreConfigurationRequest
|
|
679
680
|
* @return TestBdsMetastoreConfigurationResponse
|
|
680
681
|
* @throws OciError when an error occurs
|
|
681
|
-
* @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.28.0/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
682
683
|
*/
|
|
683
684
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest: requests.TestBdsMetastoreConfigurationRequest): Promise<responses.TestBdsMetastoreConfigurationResponse>;
|
|
684
685
|
/**
|
|
@@ -687,7 +688,7 @@ export declare class BdsClient {
|
|
|
687
688
|
* @param TestBdsObjectStorageConnectionRequest
|
|
688
689
|
* @return TestBdsObjectStorageConnectionResponse
|
|
689
690
|
* @throws OciError when an error occurs
|
|
690
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
691
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
691
692
|
*/
|
|
692
693
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest: requests.TestBdsObjectStorageConnectionRequest): Promise<responses.TestBdsObjectStorageConnectionResponse>;
|
|
693
694
|
/**
|
|
@@ -697,7 +698,7 @@ export declare class BdsClient {
|
|
|
697
698
|
* @param UpdateAutoScalingConfigurationRequest
|
|
698
699
|
* @return UpdateAutoScalingConfigurationResponse
|
|
699
700
|
* @throws OciError when an error occurs
|
|
700
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
701
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
701
702
|
*/
|
|
702
703
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest: requests.UpdateAutoScalingConfigurationRequest): Promise<responses.UpdateAutoScalingConfigurationResponse>;
|
|
703
704
|
/**
|
|
@@ -706,7 +707,7 @@ export declare class BdsClient {
|
|
|
706
707
|
* @param UpdateBdsInstanceRequest
|
|
707
708
|
* @return UpdateBdsInstanceResponse
|
|
708
709
|
* @throws OciError when an error occurs
|
|
709
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
710
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
710
711
|
*/
|
|
711
712
|
updateBdsInstance(updateBdsInstanceRequest: requests.UpdateBdsInstanceRequest): Promise<responses.UpdateBdsInstanceResponse>;
|
|
712
713
|
/**
|
|
@@ -715,7 +716,7 @@ export declare class BdsClient {
|
|
|
715
716
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
716
717
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
717
718
|
* @throws OciError when an error occurs
|
|
718
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
719
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
719
720
|
*/
|
|
720
721
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest: requests.UpdateBdsMetastoreConfigurationRequest): Promise<responses.UpdateBdsMetastoreConfigurationResponse>;
|
|
721
722
|
}
|