oci-mysql 2.102.2 → 2.103.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 (71) hide show
  1. package/lib/client.d.ts +47 -47
  2. package/lib/client.js +47 -47
  3. package/lib/model/backup-summary.d.ts +11 -1
  4. package/lib/model/backup-summary.js.map +1 -1
  5. package/lib/model/backup.d.ts +11 -1
  6. package/lib/model/backup.js.map +1 -1
  7. package/lib/model/channel-summary.d.ts +10 -0
  8. package/lib/model/channel-summary.js.map +1 -1
  9. package/lib/model/channel.d.ts +10 -0
  10. package/lib/model/channel.js.map +1 -1
  11. package/lib/model/configuration-summary.d.ts +10 -0
  12. package/lib/model/configuration-summary.js.map +1 -1
  13. package/lib/model/configuration-variables.d.ts +751 -5
  14. package/lib/model/configuration-variables.js +354 -0
  15. package/lib/model/configuration-variables.js.map +1 -1
  16. package/lib/model/configuration.d.ts +10 -0
  17. package/lib/model/configuration.js.map +1 -1
  18. package/lib/model/db-system-summary.d.ts +10 -0
  19. package/lib/model/db-system-summary.js.map +1 -1
  20. package/lib/model/db-system.d.ts +10 -0
  21. package/lib/model/db-system.js.map +1 -1
  22. package/lib/model/shape-summary.d.ts +1 -1
  23. package/lib/model/work-request-error.d.ts +1 -1
  24. package/lib/request/add-heat-wave-cluster-request.d.ts +2 -2
  25. package/lib/request/change-backup-compartment-request.d.ts +1 -1
  26. package/lib/request/copy-backup-request.d.ts +1 -1
  27. package/lib/request/create-backup-request.d.ts +1 -1
  28. package/lib/request/create-channel-request.d.ts +1 -1
  29. package/lib/request/create-configuration-request.d.ts +1 -1
  30. package/lib/request/create-db-system-request.d.ts +1 -1
  31. package/lib/request/create-replica-request.d.ts +1 -1
  32. package/lib/request/delete-backup-request.d.ts +1 -1
  33. package/lib/request/delete-channel-request.d.ts +2 -2
  34. package/lib/request/delete-configuration-request.d.ts +1 -1
  35. package/lib/request/delete-db-system-request.d.ts +2 -2
  36. package/lib/request/delete-heat-wave-cluster-request.d.ts +2 -2
  37. package/lib/request/delete-replica-request.d.ts +2 -2
  38. package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +2 -2
  39. package/lib/request/get-backup-request.d.ts +1 -1
  40. package/lib/request/get-channel-request.d.ts +2 -2
  41. package/lib/request/get-configuration-request.d.ts +1 -1
  42. package/lib/request/get-db-system-request.d.ts +2 -2
  43. package/lib/request/get-heat-wave-cluster-memory-estimate-request.d.ts +2 -2
  44. package/lib/request/get-heat-wave-cluster-request.d.ts +2 -2
  45. package/lib/request/get-replica-request.d.ts +2 -2
  46. package/lib/request/get-work-request-request.d.ts +1 -1
  47. package/lib/request/list-backups-request.d.ts +5 -5
  48. package/lib/request/list-channels-request.d.ts +5 -5
  49. package/lib/request/list-configurations-request.d.ts +4 -4
  50. package/lib/request/list-db-systems-request.d.ts +5 -5
  51. package/lib/request/list-replicas-request.d.ts +6 -6
  52. package/lib/request/list-shapes-request.d.ts +2 -2
  53. package/lib/request/list-versions-request.d.ts +2 -2
  54. package/lib/request/list-work-request-errors-request.d.ts +3 -3
  55. package/lib/request/list-work-request-logs-request.d.ts +3 -3
  56. package/lib/request/list-work-requests-request.d.ts +4 -4
  57. package/lib/request/reset-channel-request.d.ts +2 -2
  58. package/lib/request/restart-db-system-request.d.ts +2 -2
  59. package/lib/request/restart-heat-wave-cluster-request.d.ts +2 -2
  60. package/lib/request/resume-channel-request.d.ts +2 -2
  61. package/lib/request/start-db-system-request.d.ts +2 -2
  62. package/lib/request/start-heat-wave-cluster-request.d.ts +2 -2
  63. package/lib/request/stop-db-system-request.d.ts +2 -2
  64. package/lib/request/stop-heat-wave-cluster-request.d.ts +2 -2
  65. package/lib/request/update-backup-request.d.ts +1 -1
  66. package/lib/request/update-channel-request.d.ts +2 -2
  67. package/lib/request/update-configuration-request.d.ts +1 -1
  68. package/lib/request/update-db-system-request.d.ts +2 -2
  69. package/lib/request/update-heat-wave-cluster-request.d.ts +2 -2
  70. package/lib/request/update-replica-request.d.ts +2 -2
  71. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -107,7 +107,7 @@ export declare class ChannelsClient {
107
107
  * @param CreateChannelRequest
108
108
  * @return CreateChannelResponse
109
109
  * @throws OciError when an error occurs
110
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
110
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
111
111
  */
112
112
  createChannel(createChannelRequest: requests.CreateChannelRequest): Promise<responses.CreateChannelResponse>;
113
113
  /**
@@ -116,7 +116,7 @@ export declare class ChannelsClient {
116
116
  * @param DeleteChannelRequest
117
117
  * @return DeleteChannelResponse
118
118
  * @throws OciError when an error occurs
119
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
119
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
120
120
  */
121
121
  deleteChannel(deleteChannelRequest: requests.DeleteChannelRequest): Promise<responses.DeleteChannelResponse>;
122
122
  /**
@@ -128,7 +128,7 @@ export declare class ChannelsClient {
128
128
  * @param GetChannelRequest
129
129
  * @return GetChannelResponse
130
130
  * @throws OciError when an error occurs
131
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
131
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
132
132
  */
133
133
  getChannel(getChannelRequest: requests.GetChannelRequest): Promise<responses.GetChannelResponse>;
134
134
  /**
@@ -137,7 +137,7 @@ export declare class ChannelsClient {
137
137
  * @param ListChannelsRequest
138
138
  * @return ListChannelsResponse
139
139
  * @throws OciError when an error occurs
140
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
140
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
141
141
  */
142
142
  listChannels(listChannelsRequest: requests.ListChannelsRequest): Promise<responses.ListChannelsResponse>;
143
143
  /**
@@ -180,7 +180,7 @@ export declare class ChannelsClient {
180
180
  * @param ResetChannelRequest
181
181
  * @return ResetChannelResponse
182
182
  * @throws OciError when an error occurs
183
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
183
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
184
184
  */
185
185
  resetChannel(resetChannelRequest: requests.ResetChannelRequest): Promise<responses.ResetChannelResponse>;
186
186
  /**
@@ -192,7 +192,7 @@ export declare class ChannelsClient {
192
192
  * @param ResumeChannelRequest
193
193
  * @return ResumeChannelResponse
194
194
  * @throws OciError when an error occurs
195
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
195
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
196
196
  */
197
197
  resumeChannel(resumeChannelRequest: requests.ResumeChannelRequest): Promise<responses.ResumeChannelResponse>;
198
198
  /**
@@ -205,7 +205,7 @@ export declare class ChannelsClient {
205
205
  * @param UpdateChannelRequest
206
206
  * @return UpdateChannelResponse
207
207
  * @throws OciError when an error occurs
208
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
208
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
209
209
  */
210
210
  updateChannel(updateChannelRequest: requests.UpdateChannelRequest): Promise<responses.UpdateChannelResponse>;
211
211
  }
@@ -296,7 +296,7 @@ export declare class DbBackupsClient {
296
296
  * @param ChangeBackupCompartmentRequest
297
297
  * @return ChangeBackupCompartmentResponse
298
298
  * @throws OciError when an error occurs
299
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
299
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
300
300
  */
301
301
  changeBackupCompartment(changeBackupCompartmentRequest: requests.ChangeBackupCompartmentRequest): Promise<responses.ChangeBackupCompartmentResponse>;
302
302
  /**
@@ -306,7 +306,7 @@ export declare class DbBackupsClient {
306
306
  * @param CopyBackupRequest
307
307
  * @return CopyBackupResponse
308
308
  * @throws OciError when an error occurs
309
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CopyBackup.ts.html |here} to see how to use CopyBackup API.
309
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CopyBackup.ts.html |here} to see how to use CopyBackup API.
310
310
  */
311
311
  copyBackup(copyBackupRequest: requests.CopyBackupRequest): Promise<responses.CopyBackupResponse>;
312
312
  /**
@@ -316,7 +316,7 @@ export declare class DbBackupsClient {
316
316
  * @param CreateBackupRequest
317
317
  * @return CreateBackupResponse
318
318
  * @throws OciError when an error occurs
319
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
319
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
320
320
  */
321
321
  createBackup(createBackupRequest: requests.CreateBackupRequest): Promise<responses.CreateBackupResponse>;
322
322
  /**
@@ -326,7 +326,7 @@ export declare class DbBackupsClient {
326
326
  * @param DeleteBackupRequest
327
327
  * @return DeleteBackupResponse
328
328
  * @throws OciError when an error occurs
329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
329
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
330
330
  */
331
331
  deleteBackup(deleteBackupRequest: requests.DeleteBackupRequest): Promise<responses.DeleteBackupResponse>;
332
332
  /**
@@ -335,7 +335,7 @@ export declare class DbBackupsClient {
335
335
  * @param GetBackupRequest
336
336
  * @return GetBackupResponse
337
337
  * @throws OciError when an error occurs
338
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
338
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
339
339
  */
340
340
  getBackup(getBackupRequest: requests.GetBackupRequest): Promise<responses.GetBackupResponse>;
341
341
  /**
@@ -345,7 +345,7 @@ export declare class DbBackupsClient {
345
345
  * @param ListBackupsRequest
346
346
  * @return ListBackupsResponse
347
347
  * @throws OciError when an error occurs
348
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
348
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
349
349
  */
350
350
  listBackups(listBackupsRequest: requests.ListBackupsRequest): Promise<responses.ListBackupsResponse>;
351
351
  /**
@@ -386,7 +386,7 @@ export declare class DbBackupsClient {
386
386
  * @param UpdateBackupRequest
387
387
  * @return UpdateBackupResponse
388
388
  * @throws OciError when an error occurs
389
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
389
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
390
390
  */
391
391
  updateBackup(updateBackupRequest: requests.UpdateBackupRequest): Promise<responses.UpdateBackupResponse>;
392
392
  }
@@ -476,7 +476,7 @@ export declare class DbSystemClient {
476
476
  * @param AddHeatWaveClusterRequest
477
477
  * @return AddHeatWaveClusterResponse
478
478
  * @throws OciError when an error occurs
479
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
479
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
480
480
  */
481
481
  addHeatWaveCluster(addHeatWaveClusterRequest: requests.AddHeatWaveClusterRequest): Promise<responses.AddHeatWaveClusterResponse>;
482
482
  /**
@@ -486,7 +486,7 @@ export declare class DbSystemClient {
486
486
  * @param CreateDbSystemRequest
487
487
  * @return CreateDbSystemResponse
488
488
  * @throws OciError when an error occurs
489
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
489
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
490
490
  */
491
491
  createDbSystem(createDbSystemRequest: requests.CreateDbSystemRequest): Promise<responses.CreateDbSystemResponse>;
492
492
  /**
@@ -497,7 +497,7 @@ export declare class DbSystemClient {
497
497
  * @param DeleteDbSystemRequest
498
498
  * @return DeleteDbSystemResponse
499
499
  * @throws OciError when an error occurs
500
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
500
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
501
501
  */
502
502
  deleteDbSystem(deleteDbSystemRequest: requests.DeleteDbSystemRequest): Promise<responses.DeleteDbSystemResponse>;
503
503
  /**
@@ -508,7 +508,7 @@ export declare class DbSystemClient {
508
508
  * @param DeleteHeatWaveClusterRequest
509
509
  * @return DeleteHeatWaveClusterResponse
510
510
  * @throws OciError when an error occurs
511
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
511
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
512
512
  */
513
513
  deleteHeatWaveCluster(deleteHeatWaveClusterRequest: requests.DeleteHeatWaveClusterRequest): Promise<responses.DeleteHeatWaveClusterResponse>;
514
514
  /**
@@ -518,7 +518,7 @@ export declare class DbSystemClient {
518
518
  * @param GenerateHeatWaveClusterMemoryEstimateRequest
519
519
  * @return GenerateHeatWaveClusterMemoryEstimateResponse
520
520
  * @throws OciError when an error occurs
521
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
521
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
522
522
  */
523
523
  generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest: requests.GenerateHeatWaveClusterMemoryEstimateRequest): Promise<responses.GenerateHeatWaveClusterMemoryEstimateResponse>;
524
524
  /**
@@ -527,7 +527,7 @@ export declare class DbSystemClient {
527
527
  * @param GetDbSystemRequest
528
528
  * @return GetDbSystemResponse
529
529
  * @throws OciError when an error occurs
530
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
530
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
531
531
  */
532
532
  getDbSystem(getDbSystemRequest: requests.GetDbSystemRequest): Promise<responses.GetDbSystemResponse>;
533
533
  /**
@@ -536,7 +536,7 @@ export declare class DbSystemClient {
536
536
  * @param GetHeatWaveClusterRequest
537
537
  * @return GetHeatWaveClusterResponse
538
538
  * @throws OciError when an error occurs
539
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
539
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
540
540
  */
541
541
  getHeatWaveCluster(getHeatWaveClusterRequest: requests.GetHeatWaveClusterRequest): Promise<responses.GetHeatWaveClusterResponse>;
542
542
  /**
@@ -547,7 +547,7 @@ export declare class DbSystemClient {
547
547
  * @param GetHeatWaveClusterMemoryEstimateRequest
548
548
  * @return GetHeatWaveClusterMemoryEstimateResponse
549
549
  * @throws OciError when an error occurs
550
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
550
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
551
551
  */
552
552
  getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest: requests.GetHeatWaveClusterMemoryEstimateRequest): Promise<responses.GetHeatWaveClusterMemoryEstimateResponse>;
553
553
  /**
@@ -558,7 +558,7 @@ export declare class DbSystemClient {
558
558
  * @param ListDbSystemsRequest
559
559
  * @return ListDbSystemsResponse
560
560
  * @throws OciError when an error occurs
561
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
561
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
562
562
  */
563
563
  listDbSystems(listDbSystemsRequest: requests.ListDbSystemsRequest): Promise<responses.ListDbSystemsResponse>;
564
564
  /**
@@ -599,7 +599,7 @@ export declare class DbSystemClient {
599
599
  * @param RestartDbSystemRequest
600
600
  * @return RestartDbSystemResponse
601
601
  * @throws OciError when an error occurs
602
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
602
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
603
603
  */
604
604
  restartDbSystem(restartDbSystemRequest: requests.RestartDbSystemRequest): Promise<responses.RestartDbSystemResponse>;
605
605
  /**
@@ -608,7 +608,7 @@ export declare class DbSystemClient {
608
608
  * @param RestartHeatWaveClusterRequest
609
609
  * @return RestartHeatWaveClusterResponse
610
610
  * @throws OciError when an error occurs
611
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
611
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
612
612
  */
613
613
  restartHeatWaveCluster(restartHeatWaveClusterRequest: requests.RestartHeatWaveClusterRequest): Promise<responses.RestartHeatWaveClusterResponse>;
614
614
  /**
@@ -617,7 +617,7 @@ export declare class DbSystemClient {
617
617
  * @param StartDbSystemRequest
618
618
  * @return StartDbSystemResponse
619
619
  * @throws OciError when an error occurs
620
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
620
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
621
621
  */
622
622
  startDbSystem(startDbSystemRequest: requests.StartDbSystemRequest): Promise<responses.StartDbSystemResponse>;
623
623
  /**
@@ -626,7 +626,7 @@ export declare class DbSystemClient {
626
626
  * @param StartHeatWaveClusterRequest
627
627
  * @return StartHeatWaveClusterResponse
628
628
  * @throws OciError when an error occurs
629
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
629
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
630
630
  */
631
631
  startHeatWaveCluster(startHeatWaveClusterRequest: requests.StartHeatWaveClusterRequest): Promise<responses.StartHeatWaveClusterResponse>;
632
632
  /**
@@ -638,7 +638,7 @@ export declare class DbSystemClient {
638
638
  * @param StopDbSystemRequest
639
639
  * @return StopDbSystemResponse
640
640
  * @throws OciError when an error occurs
641
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
641
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
642
642
  */
643
643
  stopDbSystem(stopDbSystemRequest: requests.StopDbSystemRequest): Promise<responses.StopDbSystemResponse>;
644
644
  /**
@@ -647,7 +647,7 @@ export declare class DbSystemClient {
647
647
  * @param StopHeatWaveClusterRequest
648
648
  * @return StopHeatWaveClusterResponse
649
649
  * @throws OciError when an error occurs
650
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
650
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
651
651
  */
652
652
  stopHeatWaveCluster(stopHeatWaveClusterRequest: requests.StopHeatWaveClusterRequest): Promise<responses.StopHeatWaveClusterResponse>;
653
653
  /**
@@ -664,7 +664,7 @@ export declare class DbSystemClient {
664
664
  * @param UpdateDbSystemRequest
665
665
  * @return UpdateDbSystemResponse
666
666
  * @throws OciError when an error occurs
667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
667
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
668
668
  */
669
669
  updateDbSystem(updateDbSystemRequest: requests.UpdateDbSystemRequest): Promise<responses.UpdateDbSystemResponse>;
670
670
  /**
@@ -674,7 +674,7 @@ export declare class DbSystemClient {
674
674
  * @param UpdateHeatWaveClusterRequest
675
675
  * @return UpdateHeatWaveClusterResponse
676
676
  * @throws OciError when an error occurs
677
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
677
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
678
678
  */
679
679
  updateHeatWaveCluster(updateHeatWaveClusterRequest: requests.UpdateHeatWaveClusterRequest): Promise<responses.UpdateHeatWaveClusterResponse>;
680
680
  }
@@ -763,7 +763,7 @@ export declare class MysqlaasClient {
763
763
  * @param CreateConfigurationRequest
764
764
  * @return CreateConfigurationResponse
765
765
  * @throws OciError when an error occurs
766
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
766
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
767
767
  */
768
768
  createConfiguration(createConfigurationRequest: requests.CreateConfigurationRequest): Promise<responses.CreateConfigurationResponse>;
769
769
  /**
@@ -774,7 +774,7 @@ export declare class MysqlaasClient {
774
774
  * @param DeleteConfigurationRequest
775
775
  * @return DeleteConfigurationResponse
776
776
  * @throws OciError when an error occurs
777
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
777
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
778
778
  */
779
779
  deleteConfiguration(deleteConfigurationRequest: requests.DeleteConfigurationRequest): Promise<responses.DeleteConfigurationResponse>;
780
780
  /**
@@ -784,7 +784,7 @@ export declare class MysqlaasClient {
784
784
  * @param GetConfigurationRequest
785
785
  * @return GetConfigurationResponse
786
786
  * @throws OciError when an error occurs
787
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
787
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
788
788
  */
789
789
  getConfiguration(getConfigurationRequest: requests.GetConfigurationRequest): Promise<responses.GetConfigurationResponse>;
790
790
  /**
@@ -801,7 +801,7 @@ export declare class MysqlaasClient {
801
801
  * @param ListConfigurationsRequest
802
802
  * @return ListConfigurationsResponse
803
803
  * @throws OciError when an error occurs
804
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
804
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
805
805
  */
806
806
  listConfigurations(listConfigurationsRequest: requests.ListConfigurationsRequest): Promise<responses.ListConfigurationsResponse>;
807
807
  /**
@@ -846,7 +846,7 @@ export declare class MysqlaasClient {
846
846
  * @param ListShapesRequest
847
847
  * @return ListShapesResponse
848
848
  * @throws OciError when an error occurs
849
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
849
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
850
850
  */
851
851
  listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
852
852
  /**
@@ -858,7 +858,7 @@ export declare class MysqlaasClient {
858
858
  * @param ListVersionsRequest
859
859
  * @return ListVersionsResponse
860
860
  * @throws OciError when an error occurs
861
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
861
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
862
862
  */
863
863
  listVersions(listVersionsRequest: requests.ListVersionsRequest): Promise<responses.ListVersionsResponse>;
864
864
  /**
@@ -867,7 +867,7 @@ export declare class MysqlaasClient {
867
867
  * @param UpdateConfigurationRequest
868
868
  * @return UpdateConfigurationResponse
869
869
  * @throws OciError when an error occurs
870
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
870
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
871
871
  */
872
872
  updateConfiguration(updateConfigurationRequest: requests.UpdateConfigurationRequest): Promise<responses.UpdateConfigurationResponse>;
873
873
  }
@@ -956,7 +956,7 @@ export declare class ReplicasClient {
956
956
  * @param CreateReplicaRequest
957
957
  * @return CreateReplicaResponse
958
958
  * @throws OciError when an error occurs
959
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateReplica.ts.html |here} to see how to use CreateReplica API.
959
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CreateReplica.ts.html |here} to see how to use CreateReplica API.
960
960
  */
961
961
  createReplica(createReplicaRequest: requests.CreateReplicaRequest): Promise<responses.CreateReplicaResponse>;
962
962
  /**
@@ -965,7 +965,7 @@ export declare class ReplicasClient {
965
965
  * @param DeleteReplicaRequest
966
966
  * @return DeleteReplicaResponse
967
967
  * @throws OciError when an error occurs
968
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplica API.
968
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplica API.
969
969
  */
970
970
  deleteReplica(deleteReplicaRequest: requests.DeleteReplicaRequest): Promise<responses.DeleteReplicaResponse>;
971
971
  /**
@@ -974,7 +974,7 @@ export declare class ReplicasClient {
974
974
  * @param GetReplicaRequest
975
975
  * @return GetReplicaResponse
976
976
  * @throws OciError when an error occurs
977
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetReplica.ts.html |here} to see how to use GetReplica API.
977
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetReplica.ts.html |here} to see how to use GetReplica API.
978
978
  */
979
979
  getReplica(getReplicaRequest: requests.GetReplicaRequest): Promise<responses.GetReplicaResponse>;
980
980
  /**
@@ -983,7 +983,7 @@ export declare class ReplicasClient {
983
983
  * @param ListReplicasRequest
984
984
  * @return ListReplicasResponse
985
985
  * @throws OciError when an error occurs
986
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListReplicas.ts.html |here} to see how to use ListReplicas API.
986
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListReplicas.ts.html |here} to see how to use ListReplicas API.
987
987
  */
988
988
  listReplicas(listReplicasRequest: requests.ListReplicasRequest): Promise<responses.ListReplicasResponse>;
989
989
  /**
@@ -1024,7 +1024,7 @@ export declare class ReplicasClient {
1024
1024
  * @param UpdateReplicaRequest
1025
1025
  * @return UpdateReplicaResponse
1026
1026
  * @throws OciError when an error occurs
1027
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateReplica.ts.html |here} to see how to use UpdateReplica API.
1027
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/UpdateReplica.ts.html |here} to see how to use UpdateReplica API.
1028
1028
  */
1029
1029
  updateReplica(updateReplicaRequest: requests.UpdateReplicaRequest): Promise<responses.UpdateReplicaResponse>;
1030
1030
  }
@@ -1113,7 +1113,7 @@ export declare class WorkRequestsClient {
1113
1113
  * @param GetWorkRequestRequest
1114
1114
  * @return GetWorkRequestResponse
1115
1115
  * @throws OciError when an error occurs
1116
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1116
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1117
1117
  */
1118
1118
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
1119
1119
  /**
@@ -1123,7 +1123,7 @@ export declare class WorkRequestsClient {
1123
1123
  * @param ListWorkRequestErrorsRequest
1124
1124
  * @return ListWorkRequestErrorsResponse
1125
1125
  * @throws OciError when an error occurs
1126
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1126
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1127
1127
  */
1128
1128
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
1129
1129
  /**
@@ -1165,7 +1165,7 @@ export declare class WorkRequestsClient {
1165
1165
  * @param ListWorkRequestLogsRequest
1166
1166
  * @return ListWorkRequestLogsResponse
1167
1167
  * @throws OciError when an error occurs
1168
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1168
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1169
1169
  */
1170
1170
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
1171
1171
  /**
@@ -1207,7 +1207,7 @@ export declare class WorkRequestsClient {
1207
1207
  * @param ListWorkRequestsRequest
1208
1208
  * @return ListWorkRequestsResponse
1209
1209
  * @throws OciError when an error occurs
1210
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1210
+ * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1211
1211
  */
1212
1212
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
1213
1213
  /**