oci-bds 2.77.0 → 2.78.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/lib/client.d.ts +58 -52
  2. package/lib/client.js +60 -51
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/activate-bds-metastore-configuration-request.d.ts +1 -1
  5. package/lib/request/add-auto-scaling-configuration-request.d.ts +1 -1
  6. package/lib/request/add-block-storage-request.d.ts +1 -1
  7. package/lib/request/add-cloud-sql-request.d.ts +1 -1
  8. package/lib/request/add-kafka-request.d.ts +1 -1
  9. package/lib/request/add-master-nodes-request.d.ts +1 -1
  10. package/lib/request/add-utility-nodes-request.d.ts +1 -1
  11. package/lib/request/add-worker-nodes-request.d.ts +1 -1
  12. package/lib/request/certificate-service-info-request.d.ts +1 -1
  13. package/lib/request/change-bds-instance-compartment-request.d.ts +1 -1
  14. package/lib/request/change-shape-request.d.ts +1 -1
  15. package/lib/request/create-bds-api-key-request.d.ts +1 -1
  16. package/lib/request/create-bds-instance-request.d.ts +1 -1
  17. package/lib/request/create-bds-metastore-configuration-request.d.ts +1 -1
  18. package/lib/request/delete-bds-api-key-request.d.ts +1 -1
  19. package/lib/request/delete-bds-instance-request.d.ts +1 -1
  20. package/lib/request/delete-bds-metastore-configuration-request.d.ts +1 -1
  21. package/lib/request/disable-certificate-request.d.ts +1 -1
  22. package/lib/request/enable-certificate-request.d.ts +1 -1
  23. package/lib/request/execute-bootstrap-script-request.d.ts +1 -1
  24. package/lib/request/get-auto-scaling-configuration-request.d.ts +1 -1
  25. package/lib/request/get-bds-api-key-request.d.ts +1 -1
  26. package/lib/request/get-bds-instance-request.d.ts +1 -1
  27. package/lib/request/get-bds-metastore-configuration-request.d.ts +1 -1
  28. package/lib/request/get-os-patch-details-request.d.ts +1 -1
  29. package/lib/request/get-work-request-request.d.ts +1 -1
  30. package/lib/request/install-os-patch-request.d.ts +1 -1
  31. package/lib/request/install-patch-request.d.ts +1 -1
  32. package/lib/request/list-auto-scaling-configurations-request.d.ts +1 -1
  33. package/lib/request/list-bds-api-keys-request.d.ts +1 -1
  34. package/lib/request/list-bds-instances-request.d.ts +1 -1
  35. package/lib/request/list-bds-metastore-configurations-request.d.ts +1 -1
  36. package/lib/request/list-os-patches-request.d.ts +1 -1
  37. package/lib/request/list-patch-histories-request.d.ts +1 -1
  38. package/lib/request/list-patches-request.d.ts +1 -1
  39. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  40. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  41. package/lib/request/list-work-requests-request.d.ts +1 -1
  42. package/lib/request/remove-auto-scaling-configuration-request.d.ts +1 -1
  43. package/lib/request/remove-cloud-sql-request.d.ts +1 -1
  44. package/lib/request/remove-kafka-request.d.ts +1 -1
  45. package/lib/request/remove-node-request.d.ts +1 -1
  46. package/lib/request/renew-certificate-request.d.ts +1 -1
  47. package/lib/request/restart-node-request.d.ts +1 -1
  48. package/lib/request/start-bds-instance-request.d.ts +1 -1
  49. package/lib/request/stop-bds-instance-request.d.ts +1 -1
  50. package/lib/request/test-bds-metastore-configuration-request.d.ts +1 -1
  51. package/lib/request/test-bds-object-storage-connection-request.d.ts +1 -1
  52. package/lib/request/update-auto-scaling-configuration-request.d.ts +1 -1
  53. package/lib/request/update-bds-instance-request.d.ts +1 -1
  54. package/lib/request/update-bds-metastore-configuration-request.d.ts +1 -1
  55. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -16,6 +16,7 @@ import * as requests from "./request";
16
16
  import * as model from "./model";
17
17
  import * as responses from "./response";
18
18
  import { BdsWaiter } from "./bds-waiter";
19
+ declare const Breaker: any;
19
20
  export declare enum BdsApiKeys {
20
21
  }
21
22
  /**
@@ -29,7 +30,7 @@ export declare class BdsClient {
29
30
  protected "_defaultHeaders": any;
30
31
  protected "_waiters": BdsWaiter;
31
32
  protected "_clientConfiguration": common.ClientConfiguration;
32
- protected _circuitBreaker: null;
33
+ protected _circuitBreaker: typeof Breaker | null;
33
34
  protected _httpOptions: any;
34
35
  protected _bodyDuplexMode: any;
35
36
  targetService: string;
@@ -82,6 +83,10 @@ export declare class BdsClient {
82
83
  * @return The service waiters.
83
84
  */
84
85
  getWaiters(): BdsWaiter;
86
+ /**
87
+ * Shutdown the circuit breaker used by the client when it is no longer needed
88
+ */
89
+ shutdownCircuitBreaker(): void;
85
90
  /**
86
91
  * Activate specified metastore configuration.
87
92
  *
@@ -89,7 +94,7 @@ export declare class BdsClient {
89
94
  * @param ActivateBdsMetastoreConfigurationRequest
90
95
  * @return ActivateBdsMetastoreConfigurationResponse
91
96
  * @throws OciError when an error occurs
92
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
97
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
93
98
  */
94
99
  activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest: requests.ActivateBdsMetastoreConfigurationRequest): Promise<responses.ActivateBdsMetastoreConfigurationResponse>;
95
100
  /**
@@ -99,7 +104,7 @@ export declare class BdsClient {
99
104
  * @param AddAutoScalingConfigurationRequest
100
105
  * @return AddAutoScalingConfigurationResponse
101
106
  * @throws OciError when an error occurs
102
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
107
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
103
108
  */
104
109
  addAutoScalingConfiguration(addAutoScalingConfigurationRequest: requests.AddAutoScalingConfigurationRequest): Promise<responses.AddAutoScalingConfigurationResponse>;
105
110
  /**
@@ -109,7 +114,7 @@ export declare class BdsClient {
109
114
  * @param AddBlockStorageRequest
110
115
  * @return AddBlockStorageResponse
111
116
  * @throws OciError when an error occurs
112
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
117
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
113
118
  */
114
119
  addBlockStorage(addBlockStorageRequest: requests.AddBlockStorageRequest): Promise<responses.AddBlockStorageResponse>;
115
120
  /**
@@ -119,7 +124,7 @@ export declare class BdsClient {
119
124
  * @param AddCloudSqlRequest
120
125
  * @return AddCloudSqlResponse
121
126
  * @throws OciError when an error occurs
122
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
127
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
123
128
  */
124
129
  addCloudSql(addCloudSqlRequest: requests.AddCloudSqlRequest): Promise<responses.AddCloudSqlResponse>;
125
130
  /**
@@ -129,7 +134,7 @@ export declare class BdsClient {
129
134
  * @param AddKafkaRequest
130
135
  * @return AddKafkaResponse
131
136
  * @throws OciError when an error occurs
132
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/AddKafka.ts.html |here} to see how to use AddKafka API.
137
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddKafka.ts.html |here} to see how to use AddKafka API.
133
138
  */
134
139
  addKafka(addKafkaRequest: requests.AddKafkaRequest): Promise<responses.AddKafkaResponse>;
135
140
  /**
@@ -139,7 +144,7 @@ export declare class BdsClient {
139
144
  * @param AddMasterNodesRequest
140
145
  * @return AddMasterNodesResponse
141
146
  * @throws OciError when an error occurs
142
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/AddMasterNodes.ts.html |here} to see how to use AddMasterNodes API.
147
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddMasterNodes.ts.html |here} to see how to use AddMasterNodes API.
143
148
  */
144
149
  addMasterNodes(addMasterNodesRequest: requests.AddMasterNodesRequest): Promise<responses.AddMasterNodesResponse>;
145
150
  /**
@@ -149,7 +154,7 @@ export declare class BdsClient {
149
154
  * @param AddUtilityNodesRequest
150
155
  * @return AddUtilityNodesResponse
151
156
  * @throws OciError when an error occurs
152
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/AddUtilityNodes.ts.html |here} to see how to use AddUtilityNodes API.
157
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddUtilityNodes.ts.html |here} to see how to use AddUtilityNodes API.
153
158
  */
154
159
  addUtilityNodes(addUtilityNodesRequest: requests.AddUtilityNodesRequest): Promise<responses.AddUtilityNodesResponse>;
155
160
  /**
@@ -159,7 +164,7 @@ export declare class BdsClient {
159
164
  * @param AddWorkerNodesRequest
160
165
  * @return AddWorkerNodesResponse
161
166
  * @throws OciError when an error occurs
162
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
163
168
  */
164
169
  addWorkerNodes(addWorkerNodesRequest: requests.AddWorkerNodesRequest): Promise<responses.AddWorkerNodesResponse>;
165
170
  /**
@@ -169,7 +174,7 @@ export declare class BdsClient {
169
174
  * @param CertificateServiceInfoRequest
170
175
  * @return CertificateServiceInfoResponse
171
176
  * @throws OciError when an error occurs
172
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/CertificateServiceInfo.ts.html |here} to see how to use CertificateServiceInfo API.
177
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/CertificateServiceInfo.ts.html |here} to see how to use CertificateServiceInfo API.
173
178
  */
174
179
  certificateServiceInfo(certificateServiceInfoRequest: requests.CertificateServiceInfoRequest): Promise<responses.CertificateServiceInfoResponse>;
175
180
  /**
@@ -179,7 +184,7 @@ export declare class BdsClient {
179
184
  * @param ChangeBdsInstanceCompartmentRequest
180
185
  * @return ChangeBdsInstanceCompartmentResponse
181
186
  * @throws OciError when an error occurs
182
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
187
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
183
188
  */
184
189
  changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest: requests.ChangeBdsInstanceCompartmentRequest): Promise<responses.ChangeBdsInstanceCompartmentResponse>;
185
190
  /**
@@ -189,7 +194,7 @@ export declare class BdsClient {
189
194
  * @param ChangeShapeRequest
190
195
  * @return ChangeShapeResponse
191
196
  * @throws OciError when an error occurs
192
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
197
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
193
198
  */
194
199
  changeShape(changeShapeRequest: requests.ChangeShapeRequest): Promise<responses.ChangeShapeResponse>;
195
200
  /**
@@ -199,7 +204,7 @@ export declare class BdsClient {
199
204
  * @param CreateBdsApiKeyRequest
200
205
  * @return CreateBdsApiKeyResponse
201
206
  * @throws OciError when an error occurs
202
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
207
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
203
208
  */
204
209
  createBdsApiKey(createBdsApiKeyRequest: requests.CreateBdsApiKeyRequest): Promise<responses.CreateBdsApiKeyResponse>;
205
210
  /**
@@ -209,7 +214,7 @@ export declare class BdsClient {
209
214
  * @param CreateBdsInstanceRequest
210
215
  * @return CreateBdsInstanceResponse
211
216
  * @throws OciError when an error occurs
212
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
217
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
213
218
  */
214
219
  createBdsInstance(createBdsInstanceRequest: requests.CreateBdsInstanceRequest): Promise<responses.CreateBdsInstanceResponse>;
215
220
  /**
@@ -219,7 +224,7 @@ export declare class BdsClient {
219
224
  * @param CreateBdsMetastoreConfigurationRequest
220
225
  * @return CreateBdsMetastoreConfigurationResponse
221
226
  * @throws OciError when an error occurs
222
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
227
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
223
228
  */
224
229
  createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest: requests.CreateBdsMetastoreConfigurationRequest): Promise<responses.CreateBdsMetastoreConfigurationResponse>;
225
230
  /**
@@ -228,7 +233,7 @@ export declare class BdsClient {
228
233
  * @param DeleteBdsApiKeyRequest
229
234
  * @return DeleteBdsApiKeyResponse
230
235
  * @throws OciError when an error occurs
231
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
236
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
232
237
  */
233
238
  deleteBdsApiKey(deleteBdsApiKeyRequest: requests.DeleteBdsApiKeyRequest): Promise<responses.DeleteBdsApiKeyResponse>;
234
239
  /**
@@ -237,7 +242,7 @@ export declare class BdsClient {
237
242
  * @param DeleteBdsInstanceRequest
238
243
  * @return DeleteBdsInstanceResponse
239
244
  * @throws OciError when an error occurs
240
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
245
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
241
246
  */
242
247
  deleteBdsInstance(deleteBdsInstanceRequest: requests.DeleteBdsInstanceRequest): Promise<responses.DeleteBdsInstanceResponse>;
243
248
  /**
@@ -246,7 +251,7 @@ export declare class BdsClient {
246
251
  * @param DeleteBdsMetastoreConfigurationRequest
247
252
  * @return DeleteBdsMetastoreConfigurationResponse
248
253
  * @throws OciError when an error occurs
249
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
254
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
250
255
  */
251
256
  deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest: requests.DeleteBdsMetastoreConfigurationRequest): Promise<responses.DeleteBdsMetastoreConfigurationResponse>;
252
257
  /**
@@ -256,7 +261,7 @@ export declare class BdsClient {
256
261
  * @param DisableCertificateRequest
257
262
  * @return DisableCertificateResponse
258
263
  * @throws OciError when an error occurs
259
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/DisableCertificate.ts.html |here} to see how to use DisableCertificate API.
264
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/DisableCertificate.ts.html |here} to see how to use DisableCertificate API.
260
265
  */
261
266
  disableCertificate(disableCertificateRequest: requests.DisableCertificateRequest): Promise<responses.DisableCertificateResponse>;
262
267
  /**
@@ -266,7 +271,7 @@ export declare class BdsClient {
266
271
  * @param EnableCertificateRequest
267
272
  * @return EnableCertificateResponse
268
273
  * @throws OciError when an error occurs
269
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/EnableCertificate.ts.html |here} to see how to use EnableCertificate API.
274
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/EnableCertificate.ts.html |here} to see how to use EnableCertificate API.
270
275
  */
271
276
  enableCertificate(enableCertificateRequest: requests.EnableCertificateRequest): Promise<responses.EnableCertificateResponse>;
272
277
  /**
@@ -276,7 +281,7 @@ export declare class BdsClient {
276
281
  * @param ExecuteBootstrapScriptRequest
277
282
  * @return ExecuteBootstrapScriptResponse
278
283
  * @throws OciError when an error occurs
279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
284
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
280
285
  */
281
286
  executeBootstrapScript(executeBootstrapScriptRequest: requests.ExecuteBootstrapScriptRequest): Promise<responses.ExecuteBootstrapScriptResponse>;
282
287
  /**
@@ -286,7 +291,7 @@ export declare class BdsClient {
286
291
  * @param GetAutoScalingConfigurationRequest
287
292
  * @return GetAutoScalingConfigurationResponse
288
293
  * @throws OciError when an error occurs
289
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
294
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
290
295
  */
291
296
  getAutoScalingConfiguration(getAutoScalingConfigurationRequest: requests.GetAutoScalingConfigurationRequest): Promise<responses.GetAutoScalingConfigurationResponse>;
292
297
  /**
@@ -295,7 +300,7 @@ export declare class BdsClient {
295
300
  * @param GetBdsApiKeyRequest
296
301
  * @return GetBdsApiKeyResponse
297
302
  * @throws OciError when an error occurs
298
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
303
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
299
304
  */
300
305
  getBdsApiKey(getBdsApiKeyRequest: requests.GetBdsApiKeyRequest): Promise<responses.GetBdsApiKeyResponse>;
301
306
  /**
@@ -304,7 +309,7 @@ export declare class BdsClient {
304
309
  * @param GetBdsInstanceRequest
305
310
  * @return GetBdsInstanceResponse
306
311
  * @throws OciError when an error occurs
307
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
312
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
308
313
  */
309
314
  getBdsInstance(getBdsInstanceRequest: requests.GetBdsInstanceRequest): Promise<responses.GetBdsInstanceResponse>;
310
315
  /**
@@ -313,7 +318,7 @@ export declare class BdsClient {
313
318
  * @param GetBdsMetastoreConfigurationRequest
314
319
  * @return GetBdsMetastoreConfigurationResponse
315
320
  * @throws OciError when an error occurs
316
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
321
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
317
322
  */
318
323
  getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest: requests.GetBdsMetastoreConfigurationRequest): Promise<responses.GetBdsMetastoreConfigurationResponse>;
319
324
  /**
@@ -322,7 +327,7 @@ export declare class BdsClient {
322
327
  * @param GetOsPatchDetailsRequest
323
328
  * @return GetOsPatchDetailsResponse
324
329
  * @throws OciError when an error occurs
325
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/GetOsPatchDetails.ts.html |here} to see how to use GetOsPatchDetails API.
330
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetOsPatchDetails.ts.html |here} to see how to use GetOsPatchDetails API.
326
331
  */
327
332
  getOsPatchDetails(getOsPatchDetailsRequest: requests.GetOsPatchDetailsRequest): Promise<responses.GetOsPatchDetailsResponse>;
328
333
  /**
@@ -331,7 +336,7 @@ export declare class BdsClient {
331
336
  * @param GetWorkRequestRequest
332
337
  * @return GetWorkRequestResponse
333
338
  * @throws OciError when an error occurs
334
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
339
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
335
340
  */
336
341
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
337
342
  /**
@@ -341,7 +346,7 @@ export declare class BdsClient {
341
346
  * @param InstallOsPatchRequest
342
347
  * @return InstallOsPatchResponse
343
348
  * @throws OciError when an error occurs
344
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/InstallOsPatch.ts.html |here} to see how to use InstallOsPatch API.
349
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/InstallOsPatch.ts.html |here} to see how to use InstallOsPatch API.
345
350
  */
346
351
  installOsPatch(installOsPatchRequest: requests.InstallOsPatchRequest): Promise<responses.InstallOsPatchResponse>;
347
352
  /**
@@ -351,7 +356,7 @@ export declare class BdsClient {
351
356
  * @param InstallPatchRequest
352
357
  * @return InstallPatchResponse
353
358
  * @throws OciError when an error occurs
354
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
359
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
355
360
  */
356
361
  installPatch(installPatchRequest: requests.InstallPatchRequest): Promise<responses.InstallPatchResponse>;
357
362
  /**
@@ -361,7 +366,7 @@ export declare class BdsClient {
361
366
  * @param ListAutoScalingConfigurationsRequest
362
367
  * @return ListAutoScalingConfigurationsResponse
363
368
  * @throws OciError when an error occurs
364
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
369
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
365
370
  */
366
371
  listAutoScalingConfigurations(listAutoScalingConfigurationsRequest: requests.ListAutoScalingConfigurationsRequest): Promise<responses.ListAutoScalingConfigurationsResponse>;
367
372
  /**
@@ -403,7 +408,7 @@ export declare class BdsClient {
403
408
  * @param ListBdsApiKeysRequest
404
409
  * @return ListBdsApiKeysResponse
405
410
  * @throws OciError when an error occurs
406
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
411
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
407
412
  */
408
413
  listBdsApiKeys(listBdsApiKeysRequest: requests.ListBdsApiKeysRequest): Promise<responses.ListBdsApiKeysResponse>;
409
414
  /**
@@ -445,7 +450,7 @@ export declare class BdsClient {
445
450
  * @param ListBdsInstancesRequest
446
451
  * @return ListBdsInstancesResponse
447
452
  * @throws OciError when an error occurs
448
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
453
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
449
454
  */
450
455
  listBdsInstances(listBdsInstancesRequest: requests.ListBdsInstancesRequest): Promise<responses.ListBdsInstancesResponse>;
451
456
  /**
@@ -487,7 +492,7 @@ export declare class BdsClient {
487
492
  * @param ListBdsMetastoreConfigurationsRequest
488
493
  * @return ListBdsMetastoreConfigurationsResponse
489
494
  * @throws OciError when an error occurs
490
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
495
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
491
496
  */
492
497
  listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest: requests.ListBdsMetastoreConfigurationsRequest): Promise<responses.ListBdsMetastoreConfigurationsResponse>;
493
498
  /**
@@ -528,7 +533,7 @@ export declare class BdsClient {
528
533
  * @param ListOsPatchesRequest
529
534
  * @return ListOsPatchesResponse
530
535
  * @throws OciError when an error occurs
531
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListOsPatches.ts.html |here} to see how to use ListOsPatches API.
536
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListOsPatches.ts.html |here} to see how to use ListOsPatches API.
532
537
  */
533
538
  listOsPatches(listOsPatchesRequest: requests.ListOsPatchesRequest): Promise<responses.ListOsPatchesResponse>;
534
539
  /**
@@ -570,7 +575,7 @@ export declare class BdsClient {
570
575
  * @param ListPatchHistoriesRequest
571
576
  * @return ListPatchHistoriesResponse
572
577
  * @throws OciError when an error occurs
573
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
578
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
574
579
  */
575
580
  listPatchHistories(listPatchHistoriesRequest: requests.ListPatchHistoriesRequest): Promise<responses.ListPatchHistoriesResponse>;
576
581
  /**
@@ -612,7 +617,7 @@ export declare class BdsClient {
612
617
  * @param ListPatchesRequest
613
618
  * @return ListPatchesResponse
614
619
  * @throws OciError when an error occurs
615
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
620
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
616
621
  */
617
622
  listPatches(listPatchesRequest: requests.ListPatchesRequest): Promise<responses.ListPatchesResponse>;
618
623
  /**
@@ -654,7 +659,7 @@ export declare class BdsClient {
654
659
  * @param ListWorkRequestErrorsRequest
655
660
  * @return ListWorkRequestErrorsResponse
656
661
  * @throws OciError when an error occurs
657
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
662
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
658
663
  */
659
664
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
660
665
  /**
@@ -696,7 +701,7 @@ export declare class BdsClient {
696
701
  * @param ListWorkRequestLogsRequest
697
702
  * @return ListWorkRequestLogsResponse
698
703
  * @throws OciError when an error occurs
699
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
704
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
700
705
  */
701
706
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
702
707
  /**
@@ -738,7 +743,7 @@ export declare class BdsClient {
738
743
  * @param ListWorkRequestsRequest
739
744
  * @return ListWorkRequestsResponse
740
745
  * @throws OciError when an error occurs
741
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
746
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
742
747
  */
743
748
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
744
749
  /**
@@ -780,7 +785,7 @@ export declare class BdsClient {
780
785
  * @param RemoveAutoScalingConfigurationRequest
781
786
  * @return RemoveAutoScalingConfigurationResponse
782
787
  * @throws OciError when an error occurs
783
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
788
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
784
789
  */
785
790
  removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest: requests.RemoveAutoScalingConfigurationRequest): Promise<responses.RemoveAutoScalingConfigurationResponse>;
786
791
  /**
@@ -790,7 +795,7 @@ export declare class BdsClient {
790
795
  * @param RemoveCloudSqlRequest
791
796
  * @return RemoveCloudSqlResponse
792
797
  * @throws OciError when an error occurs
793
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
798
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
794
799
  */
795
800
  removeCloudSql(removeCloudSqlRequest: requests.RemoveCloudSqlRequest): Promise<responses.RemoveCloudSqlResponse>;
796
801
  /**
@@ -800,7 +805,7 @@ export declare class BdsClient {
800
805
  * @param RemoveKafkaRequest
801
806
  * @return RemoveKafkaResponse
802
807
  * @throws OciError when an error occurs
803
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/RemoveKafka.ts.html |here} to see how to use RemoveKafka API.
808
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RemoveKafka.ts.html |here} to see how to use RemoveKafka API.
804
809
  */
805
810
  removeKafka(removeKafkaRequest: requests.RemoveKafkaRequest): Promise<responses.RemoveKafkaResponse>;
806
811
  /**
@@ -810,7 +815,7 @@ export declare class BdsClient {
810
815
  * @param RemoveNodeRequest
811
816
  * @return RemoveNodeResponse
812
817
  * @throws OciError when an error occurs
813
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
818
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
814
819
  */
815
820
  removeNode(removeNodeRequest: requests.RemoveNodeRequest): Promise<responses.RemoveNodeResponse>;
816
821
  /**
@@ -820,7 +825,7 @@ export declare class BdsClient {
820
825
  * @param RenewCertificateRequest
821
826
  * @return RenewCertificateResponse
822
827
  * @throws OciError when an error occurs
823
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/RenewCertificate.ts.html |here} to see how to use RenewCertificate API.
828
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RenewCertificate.ts.html |here} to see how to use RenewCertificate API.
824
829
  */
825
830
  renewCertificate(renewCertificateRequest: requests.RenewCertificateRequest): Promise<responses.RenewCertificateResponse>;
826
831
  /**
@@ -830,7 +835,7 @@ export declare class BdsClient {
830
835
  * @param RestartNodeRequest
831
836
  * @return RestartNodeResponse
832
837
  * @throws OciError when an error occurs
833
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
838
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
834
839
  */
835
840
  restartNode(restartNodeRequest: requests.RestartNodeRequest): Promise<responses.RestartNodeResponse>;
836
841
  /**
@@ -840,7 +845,7 @@ export declare class BdsClient {
840
845
  * @param StartBdsInstanceRequest
841
846
  * @return StartBdsInstanceResponse
842
847
  * @throws OciError when an error occurs
843
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
848
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
844
849
  */
845
850
  startBdsInstance(startBdsInstanceRequest: requests.StartBdsInstanceRequest): Promise<responses.StartBdsInstanceResponse>;
846
851
  /**
@@ -850,7 +855,7 @@ export declare class BdsClient {
850
855
  * @param StopBdsInstanceRequest
851
856
  * @return StopBdsInstanceResponse
852
857
  * @throws OciError when an error occurs
853
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
858
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
854
859
  */
855
860
  stopBdsInstance(stopBdsInstanceRequest: requests.StopBdsInstanceRequest): Promise<responses.StopBdsInstanceResponse>;
856
861
  /**
@@ -860,7 +865,7 @@ export declare class BdsClient {
860
865
  * @param TestBdsMetastoreConfigurationRequest
861
866
  * @return TestBdsMetastoreConfigurationResponse
862
867
  * @throws OciError when an error occurs
863
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
868
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
864
869
  */
865
870
  testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest: requests.TestBdsMetastoreConfigurationRequest): Promise<responses.TestBdsMetastoreConfigurationResponse>;
866
871
  /**
@@ -869,7 +874,7 @@ export declare class BdsClient {
869
874
  * @param TestBdsObjectStorageConnectionRequest
870
875
  * @return TestBdsObjectStorageConnectionResponse
871
876
  * @throws OciError when an error occurs
872
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
877
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
873
878
  */
874
879
  testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest: requests.TestBdsObjectStorageConnectionRequest): Promise<responses.TestBdsObjectStorageConnectionResponse>;
875
880
  /**
@@ -879,7 +884,7 @@ export declare class BdsClient {
879
884
  * @param UpdateAutoScalingConfigurationRequest
880
885
  * @return UpdateAutoScalingConfigurationResponse
881
886
  * @throws OciError when an error occurs
882
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
887
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
883
888
  */
884
889
  updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest: requests.UpdateAutoScalingConfigurationRequest): Promise<responses.UpdateAutoScalingConfigurationResponse>;
885
890
  /**
@@ -888,7 +893,7 @@ export declare class BdsClient {
888
893
  * @param UpdateBdsInstanceRequest
889
894
  * @return UpdateBdsInstanceResponse
890
895
  * @throws OciError when an error occurs
891
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
896
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
892
897
  */
893
898
  updateBdsInstance(updateBdsInstanceRequest: requests.UpdateBdsInstanceRequest): Promise<responses.UpdateBdsInstanceResponse>;
894
899
  /**
@@ -897,7 +902,8 @@ export declare class BdsClient {
897
902
  * @param UpdateBdsMetastoreConfigurationRequest
898
903
  * @return UpdateBdsMetastoreConfigurationResponse
899
904
  * @throws OciError when an error occurs
900
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
905
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
901
906
  */
902
907
  updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest: requests.UpdateBdsMetastoreConfigurationRequest): Promise<responses.UpdateBdsMetastoreConfigurationResponse>;
903
908
  }
909
+ export {};