oci-mysql 2.5.2 → 2.8.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 (54) hide show
  1. package/lib/client.d.ts +115 -50
  2. package/lib/client.js +250 -100
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/add-analytics-cluster-request.d.ts +1 -1
  5. package/lib/request/add-heat-wave-cluster-request.d.ts +1 -1
  6. package/lib/request/change-backup-compartment-request.d.ts +1 -1
  7. package/lib/request/create-backup-request.d.ts +1 -1
  8. package/lib/request/create-channel-request.d.ts +1 -1
  9. package/lib/request/create-configuration-request.d.ts +1 -1
  10. package/lib/request/create-db-system-request.d.ts +1 -1
  11. package/lib/request/delete-analytics-cluster-request.d.ts +1 -1
  12. package/lib/request/delete-backup-request.d.ts +1 -1
  13. package/lib/request/delete-channel-request.d.ts +1 -1
  14. package/lib/request/delete-configuration-request.d.ts +1 -1
  15. package/lib/request/delete-db-system-request.d.ts +1 -1
  16. package/lib/request/delete-heat-wave-cluster-request.d.ts +1 -1
  17. package/lib/request/generate-analytics-cluster-memory-estimate-request.d.ts +1 -1
  18. package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
  19. package/lib/request/get-analytics-cluster-memory-estimate-request.d.ts +1 -1
  20. package/lib/request/get-analytics-cluster-request.d.ts +1 -1
  21. package/lib/request/get-backup-request.d.ts +1 -1
  22. package/lib/request/get-channel-request.d.ts +1 -1
  23. package/lib/request/get-configuration-request.d.ts +1 -1
  24. package/lib/request/get-db-system-request.d.ts +1 -1
  25. package/lib/request/get-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
  26. package/lib/request/get-heat-wave-cluster-request.d.ts +1 -1
  27. package/lib/request/get-work-request-request.d.ts +1 -1
  28. package/lib/request/list-backups-request.d.ts +1 -1
  29. package/lib/request/list-channels-request.d.ts +1 -1
  30. package/lib/request/list-configurations-request.d.ts +1 -1
  31. package/lib/request/list-db-systems-request.d.ts +1 -1
  32. package/lib/request/list-shapes-request.d.ts +1 -1
  33. package/lib/request/list-versions-request.d.ts +1 -1
  34. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  35. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  36. package/lib/request/list-work-requests-request.d.ts +1 -1
  37. package/lib/request/reset-channel-request.d.ts +1 -1
  38. package/lib/request/restart-analytics-cluster-request.d.ts +1 -1
  39. package/lib/request/restart-db-system-request.d.ts +1 -1
  40. package/lib/request/restart-heat-wave-cluster-request.d.ts +1 -1
  41. package/lib/request/resume-channel-request.d.ts +1 -1
  42. package/lib/request/start-analytics-cluster-request.d.ts +1 -1
  43. package/lib/request/start-db-system-request.d.ts +1 -1
  44. package/lib/request/start-heat-wave-cluster-request.d.ts +1 -1
  45. package/lib/request/stop-analytics-cluster-request.d.ts +1 -1
  46. package/lib/request/stop-db-system-request.d.ts +1 -1
  47. package/lib/request/stop-heat-wave-cluster-request.d.ts +1 -1
  48. package/lib/request/update-analytics-cluster-request.d.ts +1 -1
  49. package/lib/request/update-backup-request.d.ts +1 -1
  50. package/lib/request/update-channel-request.d.ts +1 -1
  51. package/lib/request/update-configuration-request.d.ts +1 -1
  52. package/lib/request/update-db-system-request.d.ts +1 -1
  53. package/lib/request/update-heat-wave-cluster-request.d.ts +1 -1
  54. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -21,6 +21,9 @@ import { MysqlaasWaiter } from "./mysqlaas-waiter";
21
21
  import { WorkRequestsWaiter } from "./workrequests-waiter";
22
22
  export declare enum ChannelsApiKeys {
23
23
  }
24
+ /**
25
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
26
+ */
24
27
  export declare class ChannelsClient {
25
28
  protected static serviceEndpointTemplate: string;
26
29
  protected "_endpoint": string;
@@ -71,18 +74,20 @@ export declare class ChannelsClient {
71
74
  /**
72
75
  * Creates a Channel to establish replication from a source to a target.
73
76
  *
77
+ * This operation does not retry by default if the user has not defined a retry configuration.
74
78
  * @param CreateChannelRequest
75
79
  * @return CreateChannelResponse
76
80
  * @throws OciError when an error occurs
77
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
81
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
78
82
  */
79
83
  createChannel(createChannelRequest: requests.CreateChannelRequest): Promise<responses.CreateChannelResponse>;
80
84
  /**
81
85
  * Deletes the specified Channel.
86
+ * This operation does not retry by default if the user has not defined a retry configuration.
82
87
  * @param DeleteChannelRequest
83
88
  * @return DeleteChannelResponse
84
89
  * @throws OciError when an error occurs
85
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
90
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
86
91
  */
87
92
  deleteChannel(deleteChannelRequest: requests.DeleteChannelRequest): Promise<responses.DeleteChannelResponse>;
88
93
  /**
@@ -90,18 +95,20 @@ export declare class ChannelsClient {
90
95
  * configuration parameters (passwords are omitted), as well as information about
91
96
  * the state of the Channel, its sources and targets.
92
97
  *
98
+ * This operation does not retry by default if the user has not defined a retry configuration.
93
99
  * @param GetChannelRequest
94
100
  * @return GetChannelResponse
95
101
  * @throws OciError when an error occurs
96
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
102
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
97
103
  */
98
104
  getChannel(getChannelRequest: requests.GetChannelRequest): Promise<responses.GetChannelResponse>;
99
105
  /**
100
106
  * Lists all the Channels that match the specified filters.
107
+ * This operation does not retry by default if the user has not defined a retry configuration.
101
108
  * @param ListChannelsRequest
102
109
  * @return ListChannelsResponse
103
110
  * @throws OciError when an error occurs
104
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
111
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
105
112
  */
106
113
  listChannels(listChannelsRequest: requests.ListChannelsRequest): Promise<responses.ListChannelsResponse>;
107
114
  /**
@@ -140,10 +147,11 @@ export declare class ChannelsClient {
140
147
  * Resets the specified Channel by purging its cached information, leaving the Channel
141
148
  * as if it had just been created. This operation is only accepted in Inactive Channels.
142
149
  *
150
+ * This operation does not retry by default if the user has not defined a retry configuration.
143
151
  * @param ResetChannelRequest
144
152
  * @return ResetChannelResponse
145
153
  * @throws OciError when an error occurs
146
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
154
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
147
155
  */
148
156
  resetChannel(resetChannelRequest: requests.ResetChannelRequest): Promise<responses.ResetChannelResponse>;
149
157
  /**
@@ -151,10 +159,11 @@ export declare class ChannelsClient {
151
159
  * requires that the error that cause the Channel to become Inactive has already been fixed,
152
160
  * otherwise the operation may fail.
153
161
  *
162
+ * This operation does not retry by default if the user has not defined a retry configuration.
154
163
  * @param ResumeChannelRequest
155
164
  * @return ResumeChannelResponse
156
165
  * @throws OciError when an error occurs
157
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
166
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
158
167
  */
159
168
  resumeChannel(resumeChannelRequest: requests.ResumeChannelRequest): Promise<responses.ResumeChannelResponse>;
160
169
  /**
@@ -163,15 +172,19 @@ export declare class ChannelsClient {
163
172
  * parameters to the Channel and the Channel may become temporarily unavailable. Otherwise, the
164
173
  * new configuration will be applied the next time the Channel becomes Active.
165
174
  *
175
+ * This operation does not retry by default if the user has not defined a retry configuration.
166
176
  * @param UpdateChannelRequest
167
177
  * @return UpdateChannelResponse
168
178
  * @throws OciError when an error occurs
169
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
179
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
170
180
  */
171
181
  updateChannel(updateChannelRequest: requests.UpdateChannelRequest): Promise<responses.UpdateChannelResponse>;
172
182
  }
173
183
  export declare enum DbBackupsApiKeys {
174
184
  }
185
+ /**
186
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
187
+ */
175
188
  export declare class DbBackupsClient {
176
189
  protected static serviceEndpointTemplate: string;
177
190
  protected "_endpoint": string;
@@ -223,45 +236,50 @@ export declare class DbBackupsClient {
223
236
  * Moves a DB System Backup into a different compartment.
224
237
  * When provided, If-Match is checked against ETag values of the Backup.
225
238
  *
239
+ * This operation does not retry by default if the user has not defined a retry configuration.
226
240
  * @param ChangeBackupCompartmentRequest
227
241
  * @return ChangeBackupCompartmentResponse
228
242
  * @throws OciError when an error occurs
229
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
243
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
230
244
  */
231
245
  changeBackupCompartment(changeBackupCompartmentRequest: requests.ChangeBackupCompartmentRequest): Promise<responses.ChangeBackupCompartmentResponse>;
232
246
  /**
233
247
  * Create a backup of a DB System.
234
248
  *
249
+ * This operation does not retry by default if the user has not defined a retry configuration.
235
250
  * @param CreateBackupRequest
236
251
  * @return CreateBackupResponse
237
252
  * @throws OciError when an error occurs
238
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
253
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
239
254
  */
240
255
  createBackup(createBackupRequest: requests.CreateBackupRequest): Promise<responses.CreateBackupResponse>;
241
256
  /**
242
257
  * Delete a Backup.
243
258
  *
259
+ * This operation does not retry by default if the user has not defined a retry configuration.
244
260
  * @param DeleteBackupRequest
245
261
  * @return DeleteBackupResponse
246
262
  * @throws OciError when an error occurs
247
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
263
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
248
264
  */
249
265
  deleteBackup(deleteBackupRequest: requests.DeleteBackupRequest): Promise<responses.DeleteBackupResponse>;
250
266
  /**
251
267
  * Get information about the specified Backup
268
+ * This operation does not retry by default if the user has not defined a retry configuration.
252
269
  * @param GetBackupRequest
253
270
  * @return GetBackupResponse
254
271
  * @throws OciError when an error occurs
255
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
272
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
256
273
  */
257
274
  getBackup(getBackupRequest: requests.GetBackupRequest): Promise<responses.GetBackupResponse>;
258
275
  /**
259
276
  * Get a list of DB System backups.
260
277
  *
278
+ * This operation does not retry by default if the user has not defined a retry configuration.
261
279
  * @param ListBackupsRequest
262
280
  * @return ListBackupsResponse
263
281
  * @throws OciError when an error occurs
264
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
282
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
265
283
  */
266
284
  listBackups(listBackupsRequest: requests.ListBackupsRequest): Promise<responses.ListBackupsResponse>;
267
285
  /**
@@ -298,15 +316,19 @@ export declare class DbBackupsClient {
298
316
  listBackupsResponseIterator(request: requests.ListBackupsRequest): AsyncIterableIterator<responses.ListBackupsResponse>;
299
317
  /**
300
318
  * Update the metadata of a Backup. Metadata such as the displayName or description
319
+ * This operation does not retry by default if the user has not defined a retry configuration.
301
320
  * @param UpdateBackupRequest
302
321
  * @return UpdateBackupResponse
303
322
  * @throws OciError when an error occurs
304
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
323
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
305
324
  */
306
325
  updateBackup(updateBackupRequest: requests.UpdateBackupRequest): Promise<responses.UpdateBackupResponse>;
307
326
  }
308
327
  export declare enum DbSystemApiKeys {
309
328
  }
329
+ /**
330
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
331
+ */
310
332
  export declare class DbSystemClient {
311
333
  protected static serviceEndpointTemplate: string;
312
334
  protected "_endpoint": string;
@@ -358,28 +380,31 @@ export declare class DbSystemClient {
358
380
  * DEPRECATED -- please use HeatWave API instead.
359
381
  * Adds an Analytics Cluster to the DB System.
360
382
  *
383
+ * This operation does not retry by default if the user has not defined a retry configuration.
361
384
  * @param AddAnalyticsClusterRequest
362
385
  * @return AddAnalyticsClusterResponse
363
386
  * @throws OciError when an error occurs
364
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/AddAnalyticsCluster.ts.html |here} to see how to use AddAnalyticsCluster API.
387
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/AddAnalyticsCluster.ts.html |here} to see how to use AddAnalyticsCluster API.
365
388
  */
366
389
  addAnalyticsCluster(addAnalyticsClusterRequest: requests.AddAnalyticsClusterRequest): Promise<responses.AddAnalyticsClusterResponse>;
367
390
  /**
368
391
  * Adds a HeatWave cluster to the DB System.
369
392
  *
393
+ * This operation does not retry by default if the user has not defined a retry configuration.
370
394
  * @param AddHeatWaveClusterRequest
371
395
  * @return AddHeatWaveClusterResponse
372
396
  * @throws OciError when an error occurs
373
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
397
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
374
398
  */
375
399
  addHeatWaveCluster(addHeatWaveClusterRequest: requests.AddHeatWaveClusterRequest): Promise<responses.AddHeatWaveClusterResponse>;
376
400
  /**
377
401
  * Creates and launches a DB System.
378
402
  *
403
+ * This operation does not retry by default if the user has not defined a retry configuration.
379
404
  * @param CreateDbSystemRequest
380
405
  * @return CreateDbSystemResponse
381
406
  * @throws OciError when an error occurs
382
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
407
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
383
408
  */
384
409
  createDbSystem(createDbSystemRequest: requests.CreateDbSystemRequest): Promise<responses.CreateDbSystemResponse>;
385
410
  /**
@@ -387,59 +412,65 @@ export declare class DbSystemClient {
387
412
  * Deletes the Analytics Cluster including terminating, detaching, removing, finalizing and
388
413
  * otherwise deleting all related resources.
389
414
  *
415
+ * This operation does not retry by default if the user has not defined a retry configuration.
390
416
  * @param DeleteAnalyticsClusterRequest
391
417
  * @return DeleteAnalyticsClusterResponse
392
418
  * @throws OciError when an error occurs
393
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteAnalyticsCluster.ts.html |here} to see how to use DeleteAnalyticsCluster API.
419
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/DeleteAnalyticsCluster.ts.html |here} to see how to use DeleteAnalyticsCluster API.
394
420
  */
395
421
  deleteAnalyticsCluster(deleteAnalyticsClusterRequest: requests.DeleteAnalyticsClusterRequest): Promise<responses.DeleteAnalyticsClusterResponse>;
396
422
  /**
397
423
  * Delete a DB System, including terminating, detaching,
398
424
  * removing, finalizing and otherwise deleting all related resources.
399
425
  *
426
+ * This operation does not retry by default if the user has not defined a retry configuration.
400
427
  * @param DeleteDbSystemRequest
401
428
  * @return DeleteDbSystemResponse
402
429
  * @throws OciError when an error occurs
403
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
430
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
404
431
  */
405
432
  deleteDbSystem(deleteDbSystemRequest: requests.DeleteDbSystemRequest): Promise<responses.DeleteDbSystemResponse>;
406
433
  /**
407
434
  * Deletes the HeatWave cluster including terminating, detaching, removing, finalizing and
408
435
  * otherwise deleting all related resources.
409
436
  *
437
+ * This operation does not retry by default if the user has not defined a retry configuration.
410
438
  * @param DeleteHeatWaveClusterRequest
411
439
  * @return DeleteHeatWaveClusterResponse
412
440
  * @throws OciError when an error occurs
413
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
441
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
414
442
  */
415
443
  deleteHeatWaveCluster(deleteHeatWaveClusterRequest: requests.DeleteHeatWaveClusterRequest): Promise<responses.DeleteHeatWaveClusterResponse>;
416
444
  /**
417
445
  * DEPRECATED -- please use HeatWave API instead.
418
446
  * Sends a request to estimate the memory footprints of user tables when loaded to Analytics Cluster memory.
419
447
  *
448
+ * This operation does not retry by default if the user has not defined a retry configuration.
420
449
  * @param GenerateAnalyticsClusterMemoryEstimateRequest
421
450
  * @return GenerateAnalyticsClusterMemoryEstimateResponse
422
451
  * @throws OciError when an error occurs
423
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GenerateAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GenerateAnalyticsClusterMemoryEstimate API.
452
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GenerateAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GenerateAnalyticsClusterMemoryEstimate API.
424
453
  */
425
454
  generateAnalyticsClusterMemoryEstimate(generateAnalyticsClusterMemoryEstimateRequest: requests.GenerateAnalyticsClusterMemoryEstimateRequest): Promise<responses.GenerateAnalyticsClusterMemoryEstimateResponse>;
426
455
  /**
427
456
  * Sends a request to estimate the memory footprints of user tables when loaded to HeatWave cluster memory.
428
457
  *
458
+ * This operation does not retry by default if the user has not defined a retry configuration.
429
459
  * @param GenerateHeatWaveClusterMemoryEstimateRequest
430
460
  * @return GenerateHeatWaveClusterMemoryEstimateResponse
431
461
  * @throws OciError when an error occurs
432
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
462
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
433
463
  */
434
464
  generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest: requests.GenerateHeatWaveClusterMemoryEstimateRequest): Promise<responses.GenerateHeatWaveClusterMemoryEstimateResponse>;
435
465
  /**
436
466
  * DEPRECATED -- please use HeatWave API instead.
437
467
  * Gets information about the Analytics Cluster.
438
468
  *
469
+ * This operation does not retry by default if the user has not defined a retry configuration.
439
470
  * @param GetAnalyticsClusterRequest
440
471
  * @return GetAnalyticsClusterResponse
441
472
  * @throws OciError when an error occurs
442
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetAnalyticsCluster.ts.html |here} to see how to use GetAnalyticsCluster API.
473
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetAnalyticsCluster.ts.html |here} to see how to use GetAnalyticsCluster API.
443
474
  */
444
475
  getAnalyticsCluster(getAnalyticsClusterRequest: requests.GetAnalyticsClusterRequest): Promise<responses.GetAnalyticsClusterResponse>;
445
476
  /**
@@ -447,46 +478,51 @@ export declare class DbSystemClient {
447
478
  * Gets the most recent Analytics Cluster memory estimate that can be used to determine a suitable
448
479
  * Analytics Cluster size.
449
480
  *
481
+ * This operation does not retry by default if the user has not defined a retry configuration.
450
482
  * @param GetAnalyticsClusterMemoryEstimateRequest
451
483
  * @return GetAnalyticsClusterMemoryEstimateResponse
452
484
  * @throws OciError when an error occurs
453
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GetAnalyticsClusterMemoryEstimate API.
485
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GetAnalyticsClusterMemoryEstimate API.
454
486
  */
455
487
  getAnalyticsClusterMemoryEstimate(getAnalyticsClusterMemoryEstimateRequest: requests.GetAnalyticsClusterMemoryEstimateRequest): Promise<responses.GetAnalyticsClusterMemoryEstimateResponse>;
456
488
  /**
457
489
  * Get information about the specified DB System.
490
+ * This operation does not retry by default if the user has not defined a retry configuration.
458
491
  * @param GetDbSystemRequest
459
492
  * @return GetDbSystemResponse
460
493
  * @throws OciError when an error occurs
461
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
494
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
462
495
  */
463
496
  getDbSystem(getDbSystemRequest: requests.GetDbSystemRequest): Promise<responses.GetDbSystemResponse>;
464
497
  /**
465
498
  * Gets information about the HeatWave cluster.
499
+ * This operation does not retry by default if the user has not defined a retry configuration.
466
500
  * @param GetHeatWaveClusterRequest
467
501
  * @return GetHeatWaveClusterResponse
468
502
  * @throws OciError when an error occurs
469
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
503
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
470
504
  */
471
505
  getHeatWaveCluster(getHeatWaveClusterRequest: requests.GetHeatWaveClusterRequest): Promise<responses.GetHeatWaveClusterResponse>;
472
506
  /**
473
507
  * Gets the most recent HeatWave cluster memory estimate that can be used to determine a suitable
474
508
  * HeatWave cluster size.
475
509
  *
510
+ * This operation does not retry by default if the user has not defined a retry configuration.
476
511
  * @param GetHeatWaveClusterMemoryEstimateRequest
477
512
  * @return GetHeatWaveClusterMemoryEstimateResponse
478
513
  * @throws OciError when an error occurs
479
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
514
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
480
515
  */
481
516
  getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest: requests.GetHeatWaveClusterMemoryEstimateRequest): Promise<responses.GetHeatWaveClusterMemoryEstimateResponse>;
482
517
  /**
483
518
  * Get a list of DB Systems in the specified compartment.
484
519
  * The default sort order is by timeUpdated, descending.
485
520
  *
521
+ * This operation does not retry by default if the user has not defined a retry configuration.
486
522
  * @param ListDbSystemsRequest
487
523
  * @return ListDbSystemsResponse
488
524
  * @throws OciError when an error occurs
489
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
525
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
490
526
  */
491
527
  listDbSystems(listDbSystemsRequest: requests.ListDbSystemsRequest): Promise<responses.ListDbSystemsResponse>;
492
528
  /**
@@ -525,62 +561,69 @@ export declare class DbSystemClient {
525
561
  * DEPRECATED -- please use HeatWave API instead.
526
562
  * Restarts the Analytics Cluster.
527
563
  *
564
+ * This operation does not retry by default if the user has not defined a retry configuration.
528
565
  * @param RestartAnalyticsClusterRequest
529
566
  * @return RestartAnalyticsClusterResponse
530
567
  * @throws OciError when an error occurs
531
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/RestartAnalyticsCluster.ts.html |here} to see how to use RestartAnalyticsCluster API.
568
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/RestartAnalyticsCluster.ts.html |here} to see how to use RestartAnalyticsCluster API.
532
569
  */
533
570
  restartAnalyticsCluster(restartAnalyticsClusterRequest: requests.RestartAnalyticsClusterRequest): Promise<responses.RestartAnalyticsClusterResponse>;
534
571
  /**
535
572
  * Restarts the specified DB System.
573
+ * This operation does not retry by default if the user has not defined a retry configuration.
536
574
  * @param RestartDbSystemRequest
537
575
  * @return RestartDbSystemResponse
538
576
  * @throws OciError when an error occurs
539
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
577
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
540
578
  */
541
579
  restartDbSystem(restartDbSystemRequest: requests.RestartDbSystemRequest): Promise<responses.RestartDbSystemResponse>;
542
580
  /**
543
581
  * Restarts the HeatWave cluster.
582
+ * This operation does not retry by default if the user has not defined a retry configuration.
544
583
  * @param RestartHeatWaveClusterRequest
545
584
  * @return RestartHeatWaveClusterResponse
546
585
  * @throws OciError when an error occurs
547
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
586
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
548
587
  */
549
588
  restartHeatWaveCluster(restartHeatWaveClusterRequest: requests.RestartHeatWaveClusterRequest): Promise<responses.RestartHeatWaveClusterResponse>;
550
589
  /**
551
590
  * DEPRECATED -- please use HeatWave API instead.
552
591
  * Starts the Analytics Cluster.
553
592
  *
593
+ * This operation does not retry by default if the user has not defined a retry configuration.
554
594
  * @param StartAnalyticsClusterRequest
555
595
  * @return StartAnalyticsClusterResponse
556
596
  * @throws OciError when an error occurs
557
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StartAnalyticsCluster.ts.html |here} to see how to use StartAnalyticsCluster API.
597
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/StartAnalyticsCluster.ts.html |here} to see how to use StartAnalyticsCluster API.
558
598
  */
559
599
  startAnalyticsCluster(startAnalyticsClusterRequest: requests.StartAnalyticsClusterRequest): Promise<responses.StartAnalyticsClusterResponse>;
560
600
  /**
561
601
  * Start the specified DB System.
602
+ * This operation does not retry by default if the user has not defined a retry configuration.
562
603
  * @param StartDbSystemRequest
563
604
  * @return StartDbSystemResponse
564
605
  * @throws OciError when an error occurs
565
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
606
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
566
607
  */
567
608
  startDbSystem(startDbSystemRequest: requests.StartDbSystemRequest): Promise<responses.StartDbSystemResponse>;
568
609
  /**
569
610
  * Starts the HeatWave cluster.
611
+ * This operation does not retry by default if the user has not defined a retry configuration.
570
612
  * @param StartHeatWaveClusterRequest
571
613
  * @return StartHeatWaveClusterResponse
572
614
  * @throws OciError when an error occurs
573
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
615
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
574
616
  */
575
617
  startHeatWaveCluster(startHeatWaveClusterRequest: requests.StartHeatWaveClusterRequest): Promise<responses.StartHeatWaveClusterResponse>;
576
618
  /**
577
619
  * DEPRECATED -- please use HeatWave API instead.
578
620
  * Stops the Analytics Cluster.
579
621
  *
622
+ * This operation does not retry by default if the user has not defined a retry configuration.
580
623
  * @param StopAnalyticsClusterRequest
581
624
  * @return StopAnalyticsClusterResponse
582
625
  * @throws OciError when an error occurs
583
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StopAnalyticsCluster.ts.html |here} to see how to use StopAnalyticsCluster API.
626
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/StopAnalyticsCluster.ts.html |here} to see how to use StopAnalyticsCluster API.
584
627
  */
585
628
  stopAnalyticsCluster(stopAnalyticsClusterRequest: requests.StopAnalyticsClusterRequest): Promise<responses.StopAnalyticsClusterResponse>;
586
629
  /**
@@ -588,28 +631,31 @@ export declare class DbSystemClient {
588
631
  * <p>
589
632
  A stopped DB System is not billed.
590
633
  *
634
+ * This operation does not retry by default if the user has not defined a retry configuration.
591
635
  * @param StopDbSystemRequest
592
636
  * @return StopDbSystemResponse
593
637
  * @throws OciError when an error occurs
594
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
638
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
595
639
  */
596
640
  stopDbSystem(stopDbSystemRequest: requests.StopDbSystemRequest): Promise<responses.StopDbSystemResponse>;
597
641
  /**
598
642
  * Stops the HeatWave cluster.
643
+ * This operation does not retry by default if the user has not defined a retry configuration.
599
644
  * @param StopHeatWaveClusterRequest
600
645
  * @return StopHeatWaveClusterResponse
601
646
  * @throws OciError when an error occurs
602
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
647
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
603
648
  */
604
649
  stopHeatWaveCluster(stopHeatWaveClusterRequest: requests.StopHeatWaveClusterRequest): Promise<responses.StopHeatWaveClusterResponse>;
605
650
  /**
606
651
  * DEPRECATED -- please use HeatWave API instead.
607
652
  * Updates the Analytics Cluster.
608
653
  *
654
+ * This operation does not retry by default if the user has not defined a retry configuration.
609
655
  * @param UpdateAnalyticsClusterRequest
610
656
  * @return UpdateAnalyticsClusterResponse
611
657
  * @throws OciError when an error occurs
612
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateAnalyticsCluster.ts.html |here} to see how to use UpdateAnalyticsCluster API.
658
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/UpdateAnalyticsCluster.ts.html |here} to see how to use UpdateAnalyticsCluster API.
613
659
  */
614
660
  updateAnalyticsCluster(updateAnalyticsClusterRequest: requests.UpdateAnalyticsClusterRequest): Promise<responses.UpdateAnalyticsClusterResponse>;
615
661
  /**
@@ -622,24 +668,29 @@ export declare class DbSystemClient {
622
668
  * Compute resources, pausing the DB System and migrating storage
623
669
  * before making the DB System available again.
624
670
  *
671
+ * This operation does not retry by default if the user has not defined a retry configuration.
625
672
  * @param UpdateDbSystemRequest
626
673
  * @return UpdateDbSystemResponse
627
674
  * @throws OciError when an error occurs
628
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
675
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
629
676
  */
630
677
  updateDbSystem(updateDbSystemRequest: requests.UpdateDbSystemRequest): Promise<responses.UpdateDbSystemResponse>;
631
678
  /**
632
679
  * Updates the HeatWave cluster.
633
680
  *
681
+ * This operation does not retry by default if the user has not defined a retry configuration.
634
682
  * @param UpdateHeatWaveClusterRequest
635
683
  * @return UpdateHeatWaveClusterResponse
636
684
  * @throws OciError when an error occurs
637
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
685
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
638
686
  */
639
687
  updateHeatWaveCluster(updateHeatWaveClusterRequest: requests.UpdateHeatWaveClusterRequest): Promise<responses.UpdateHeatWaveClusterResponse>;
640
688
  }
641
689
  export declare enum MysqlaasApiKeys {
642
690
  }
691
+ /**
692
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
693
+ */
643
694
  export declare class MysqlaasClient {
644
695
  protected static serviceEndpointTemplate: string;
645
696
  protected "_endpoint": string;
@@ -689,29 +740,32 @@ export declare class MysqlaasClient {
689
740
  getWaiters(): MysqlaasWaiter;
690
741
  /**
691
742
  * Creates a new Configuration.
743
+ * This operation does not retry by default if the user has not defined a retry configuration.
692
744
  * @param CreateConfigurationRequest
693
745
  * @return CreateConfigurationResponse
694
746
  * @throws OciError when an error occurs
695
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
747
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
696
748
  */
697
749
  createConfiguration(createConfigurationRequest: requests.CreateConfigurationRequest): Promise<responses.CreateConfigurationResponse>;
698
750
  /**
699
751
  * Deletes a Configuration.
700
752
  * The Configuration must not be in use by any DB Systems.
701
753
  *
754
+ * This operation does not retry by default if the user has not defined a retry configuration.
702
755
  * @param DeleteConfigurationRequest
703
756
  * @return DeleteConfigurationResponse
704
757
  * @throws OciError when an error occurs
705
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
758
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
706
759
  */
707
760
  deleteConfiguration(deleteConfigurationRequest: requests.DeleteConfigurationRequest): Promise<responses.DeleteConfigurationResponse>;
708
761
  /**
709
762
  * Get the full details of the specified Configuration, including the list of MySQL Variables and their values.
710
763
  *
764
+ * This operation does not retry by default if the user has not defined a retry configuration.
711
765
  * @param GetConfigurationRequest
712
766
  * @return GetConfigurationResponse
713
767
  * @throws OciError when an error occurs
714
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
768
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
715
769
  */
716
770
  getConfiguration(getConfigurationRequest: requests.GetConfigurationRequest): Promise<responses.GetConfigurationResponse>;
717
771
  /**
@@ -724,10 +778,11 @@ export declare class MysqlaasClient {
724
778
  * - DEFAULT-before-CUSTOM
725
779
  * - displayName ascending
726
780
  *
781
+ * This operation does not retry by default if the user has not defined a retry configuration.
727
782
  * @param ListConfigurationsRequest
728
783
  * @return ListConfigurationsResponse
729
784
  * @throws OciError when an error occurs
730
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
785
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
731
786
  */
732
787
  listConfigurations(listConfigurationsRequest: requests.ListConfigurationsRequest): Promise<responses.ListConfigurationsResponse>;
733
788
  /**
@@ -768,10 +823,11 @@ export declare class MysqlaasClient {
768
823
  * CPU cores and memory for VM shapes; CPU cores, memory and
769
824
  * storage for non-VM (or bare metal) shapes.
770
825
  *
826
+ * This operation does not retry by default if the user has not defined a retry configuration.
771
827
  * @param ListShapesRequest
772
828
  * @return ListShapesResponse
773
829
  * @throws OciError when an error occurs
774
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
830
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
775
831
  */
776
832
  listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
777
833
  /**
@@ -779,23 +835,28 @@ export declare class MysqlaasClient {
779
835
  * <p>
780
836
  The list is sorted by version family.
781
837
  *
838
+ * This operation does not retry by default if the user has not defined a retry configuration.
782
839
  * @param ListVersionsRequest
783
840
  * @return ListVersionsResponse
784
841
  * @throws OciError when an error occurs
785
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
842
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
786
843
  */
787
844
  listVersions(listVersionsRequest: requests.ListVersionsRequest): Promise<responses.ListVersionsResponse>;
788
845
  /**
789
846
  * Updates the Configuration details.
847
+ * This operation does not retry by default if the user has not defined a retry configuration.
790
848
  * @param UpdateConfigurationRequest
791
849
  * @return UpdateConfigurationResponse
792
850
  * @throws OciError when an error occurs
793
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
851
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
794
852
  */
795
853
  updateConfiguration(updateConfigurationRequest: requests.UpdateConfigurationRequest): Promise<responses.UpdateConfigurationResponse>;
796
854
  }
797
855
  export declare enum WorkRequestsApiKeys {
798
856
  }
857
+ /**
858
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
859
+ */
799
860
  export declare class WorkRequestsClient {
800
861
  protected static serviceEndpointTemplate: string;
801
862
  protected "_endpoint": string;
@@ -845,19 +906,21 @@ export declare class WorkRequestsClient {
845
906
  getWaiters(): WorkRequestsWaiter;
846
907
  /**
847
908
  * Gets the status of the work request with the given ID.
909
+ * This operation does not retry by default if the user has not defined a retry configuration.
848
910
  * @param GetWorkRequestRequest
849
911
  * @return GetWorkRequestResponse
850
912
  * @throws OciError when an error occurs
851
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
913
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
852
914
  */
853
915
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
854
916
  /**
855
917
  * Return a (paginated) list of errors for a given work request.
856
918
  *
919
+ * This operation does not retry by default if the user has not defined a retry configuration.
857
920
  * @param ListWorkRequestErrorsRequest
858
921
  * @return ListWorkRequestErrorsResponse
859
922
  * @throws OciError when an error occurs
860
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
923
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
861
924
  */
862
925
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
863
926
  /**
@@ -895,10 +958,11 @@ export declare class WorkRequestsClient {
895
958
  /**
896
959
  * Return a (paginated) list of logs for a given work request.
897
960
  *
961
+ * This operation does not retry by default if the user has not defined a retry configuration.
898
962
  * @param ListWorkRequestLogsRequest
899
963
  * @return ListWorkRequestLogsResponse
900
964
  * @throws OciError when an error occurs
901
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
965
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
902
966
  */
903
967
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
904
968
  /**
@@ -936,10 +1000,11 @@ export declare class WorkRequestsClient {
936
1000
  /**
937
1001
  * Lists the work requests in a specified compartment.
938
1002
  *
1003
+ * This operation does not retry by default if the user has not defined a retry configuration.
939
1004
  * @param ListWorkRequestsRequest
940
1005
  * @return ListWorkRequestsResponse
941
1006
  * @throws OciError when an error occurs
942
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1007
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.8.0/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
943
1008
  */
944
1009
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
945
1010
  /**