oci-mysql 2.83.0 → 2.84.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +70 -46
- package/lib/client.js +82 -46
- package/lib/client.js.map +1 -1
- package/lib/request/add-heat-wave-cluster-request.d.ts +1 -1
- package/lib/request/change-backup-compartment-request.d.ts +1 -1
- package/lib/request/create-backup-request.d.ts +1 -1
- package/lib/request/create-channel-request.d.ts +1 -1
- package/lib/request/create-configuration-request.d.ts +1 -1
- package/lib/request/create-db-system-request.d.ts +1 -1
- package/lib/request/create-replica-request.d.ts +1 -1
- package/lib/request/delete-backup-request.d.ts +1 -1
- package/lib/request/delete-channel-request.d.ts +1 -1
- package/lib/request/delete-configuration-request.d.ts +1 -1
- package/lib/request/delete-db-system-request.d.ts +1 -1
- package/lib/request/delete-heat-wave-cluster-request.d.ts +1 -1
- package/lib/request/delete-replica-request.d.ts +1 -1
- package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
- package/lib/request/get-backup-request.d.ts +1 -1
- package/lib/request/get-channel-request.d.ts +1 -1
- package/lib/request/get-configuration-request.d.ts +1 -1
- package/lib/request/get-db-system-request.d.ts +1 -1
- package/lib/request/get-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
- package/lib/request/get-heat-wave-cluster-request.d.ts +1 -1
- package/lib/request/get-replica-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-backups-request.d.ts +1 -1
- package/lib/request/list-channels-request.d.ts +1 -1
- package/lib/request/list-configurations-request.d.ts +1 -1
- package/lib/request/list-db-systems-request.d.ts +1 -1
- package/lib/request/list-replicas-request.d.ts +1 -1
- package/lib/request/list-shapes-request.d.ts +1 -1
- package/lib/request/list-versions-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/reset-channel-request.d.ts +1 -1
- package/lib/request/restart-db-system-request.d.ts +1 -1
- package/lib/request/restart-heat-wave-cluster-request.d.ts +1 -1
- package/lib/request/resume-channel-request.d.ts +1 -1
- package/lib/request/start-db-system-request.d.ts +1 -1
- package/lib/request/start-heat-wave-cluster-request.d.ts +1 -1
- package/lib/request/stop-db-system-request.d.ts +1 -1
- package/lib/request/stop-heat-wave-cluster-request.d.ts +1 -1
- package/lib/request/update-backup-request.d.ts +1 -1
- package/lib/request/update-channel-request.d.ts +1 -1
- package/lib/request/update-configuration-request.d.ts +1 -1
- package/lib/request/update-db-system-request.d.ts +1 -1
- package/lib/request/update-heat-wave-cluster-request.d.ts +1 -1
- package/lib/request/update-replica-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -91,6 +91,10 @@ export declare class ChannelsClient {
|
|
|
91
91
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
92
92
|
*/
|
|
93
93
|
shutdownCircuitBreaker(): void;
|
|
94
|
+
/**
|
|
95
|
+
* Close the client once it is no longer needed
|
|
96
|
+
*/
|
|
97
|
+
close(): void;
|
|
94
98
|
/**
|
|
95
99
|
* Creates a Channel to establish replication from a source to a target.
|
|
96
100
|
*
|
|
@@ -98,7 +102,7 @@ export declare class ChannelsClient {
|
|
|
98
102
|
* @param CreateChannelRequest
|
|
99
103
|
* @return CreateChannelResponse
|
|
100
104
|
* @throws OciError when an error occurs
|
|
101
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
105
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
|
|
102
106
|
*/
|
|
103
107
|
createChannel(createChannelRequest: requests.CreateChannelRequest): Promise<responses.CreateChannelResponse>;
|
|
104
108
|
/**
|
|
@@ -107,7 +111,7 @@ export declare class ChannelsClient {
|
|
|
107
111
|
* @param DeleteChannelRequest
|
|
108
112
|
* @return DeleteChannelResponse
|
|
109
113
|
* @throws OciError when an error occurs
|
|
110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
114
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
|
|
111
115
|
*/
|
|
112
116
|
deleteChannel(deleteChannelRequest: requests.DeleteChannelRequest): Promise<responses.DeleteChannelResponse>;
|
|
113
117
|
/**
|
|
@@ -119,7 +123,7 @@ export declare class ChannelsClient {
|
|
|
119
123
|
* @param GetChannelRequest
|
|
120
124
|
* @return GetChannelResponse
|
|
121
125
|
* @throws OciError when an error occurs
|
|
122
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
126
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
|
|
123
127
|
*/
|
|
124
128
|
getChannel(getChannelRequest: requests.GetChannelRequest): Promise<responses.GetChannelResponse>;
|
|
125
129
|
/**
|
|
@@ -128,7 +132,7 @@ export declare class ChannelsClient {
|
|
|
128
132
|
* @param ListChannelsRequest
|
|
129
133
|
* @return ListChannelsResponse
|
|
130
134
|
* @throws OciError when an error occurs
|
|
131
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
135
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
|
|
132
136
|
*/
|
|
133
137
|
listChannels(listChannelsRequest: requests.ListChannelsRequest): Promise<responses.ListChannelsResponse>;
|
|
134
138
|
/**
|
|
@@ -171,7 +175,7 @@ export declare class ChannelsClient {
|
|
|
171
175
|
* @param ResetChannelRequest
|
|
172
176
|
* @return ResetChannelResponse
|
|
173
177
|
* @throws OciError when an error occurs
|
|
174
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
178
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
|
|
175
179
|
*/
|
|
176
180
|
resetChannel(resetChannelRequest: requests.ResetChannelRequest): Promise<responses.ResetChannelResponse>;
|
|
177
181
|
/**
|
|
@@ -183,7 +187,7 @@ export declare class ChannelsClient {
|
|
|
183
187
|
* @param ResumeChannelRequest
|
|
184
188
|
* @return ResumeChannelResponse
|
|
185
189
|
* @throws OciError when an error occurs
|
|
186
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
190
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
|
|
187
191
|
*/
|
|
188
192
|
resumeChannel(resumeChannelRequest: requests.ResumeChannelRequest): Promise<responses.ResumeChannelResponse>;
|
|
189
193
|
/**
|
|
@@ -196,7 +200,7 @@ export declare class ChannelsClient {
|
|
|
196
200
|
* @param UpdateChannelRequest
|
|
197
201
|
* @return UpdateChannelResponse
|
|
198
202
|
* @throws OciError when an error occurs
|
|
199
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
203
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
|
|
200
204
|
*/
|
|
201
205
|
updateChannel(updateChannelRequest: requests.UpdateChannelRequest): Promise<responses.UpdateChannelResponse>;
|
|
202
206
|
}
|
|
@@ -270,6 +274,10 @@ export declare class DbBackupsClient {
|
|
|
270
274
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
271
275
|
*/
|
|
272
276
|
shutdownCircuitBreaker(): void;
|
|
277
|
+
/**
|
|
278
|
+
* Close the client once it is no longer needed
|
|
279
|
+
*/
|
|
280
|
+
close(): void;
|
|
273
281
|
/**
|
|
274
282
|
* Moves a DB System Backup into a different compartment.
|
|
275
283
|
* When provided, If-Match is checked against ETag values of the Backup.
|
|
@@ -278,7 +286,7 @@ export declare class DbBackupsClient {
|
|
|
278
286
|
* @param ChangeBackupCompartmentRequest
|
|
279
287
|
* @return ChangeBackupCompartmentResponse
|
|
280
288
|
* @throws OciError when an error occurs
|
|
281
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
289
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
|
|
282
290
|
*/
|
|
283
291
|
changeBackupCompartment(changeBackupCompartmentRequest: requests.ChangeBackupCompartmentRequest): Promise<responses.ChangeBackupCompartmentResponse>;
|
|
284
292
|
/**
|
|
@@ -288,7 +296,7 @@ export declare class DbBackupsClient {
|
|
|
288
296
|
* @param CreateBackupRequest
|
|
289
297
|
* @return CreateBackupResponse
|
|
290
298
|
* @throws OciError when an error occurs
|
|
291
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
299
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
|
|
292
300
|
*/
|
|
293
301
|
createBackup(createBackupRequest: requests.CreateBackupRequest): Promise<responses.CreateBackupResponse>;
|
|
294
302
|
/**
|
|
@@ -298,7 +306,7 @@ export declare class DbBackupsClient {
|
|
|
298
306
|
* @param DeleteBackupRequest
|
|
299
307
|
* @return DeleteBackupResponse
|
|
300
308
|
* @throws OciError when an error occurs
|
|
301
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
309
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
|
|
302
310
|
*/
|
|
303
311
|
deleteBackup(deleteBackupRequest: requests.DeleteBackupRequest): Promise<responses.DeleteBackupResponse>;
|
|
304
312
|
/**
|
|
@@ -307,7 +315,7 @@ export declare class DbBackupsClient {
|
|
|
307
315
|
* @param GetBackupRequest
|
|
308
316
|
* @return GetBackupResponse
|
|
309
317
|
* @throws OciError when an error occurs
|
|
310
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
318
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
|
|
311
319
|
*/
|
|
312
320
|
getBackup(getBackupRequest: requests.GetBackupRequest): Promise<responses.GetBackupResponse>;
|
|
313
321
|
/**
|
|
@@ -317,7 +325,7 @@ export declare class DbBackupsClient {
|
|
|
317
325
|
* @param ListBackupsRequest
|
|
318
326
|
* @return ListBackupsResponse
|
|
319
327
|
* @throws OciError when an error occurs
|
|
320
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
328
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
|
|
321
329
|
*/
|
|
322
330
|
listBackups(listBackupsRequest: requests.ListBackupsRequest): Promise<responses.ListBackupsResponse>;
|
|
323
331
|
/**
|
|
@@ -358,7 +366,7 @@ export declare class DbBackupsClient {
|
|
|
358
366
|
* @param UpdateBackupRequest
|
|
359
367
|
* @return UpdateBackupResponse
|
|
360
368
|
* @throws OciError when an error occurs
|
|
361
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
369
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
|
|
362
370
|
*/
|
|
363
371
|
updateBackup(updateBackupRequest: requests.UpdateBackupRequest): Promise<responses.UpdateBackupResponse>;
|
|
364
372
|
}
|
|
@@ -432,6 +440,10 @@ export declare class DbSystemClient {
|
|
|
432
440
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
433
441
|
*/
|
|
434
442
|
shutdownCircuitBreaker(): void;
|
|
443
|
+
/**
|
|
444
|
+
* Close the client once it is no longer needed
|
|
445
|
+
*/
|
|
446
|
+
close(): void;
|
|
435
447
|
/**
|
|
436
448
|
* Adds a HeatWave cluster to the DB System.
|
|
437
449
|
*
|
|
@@ -439,7 +451,7 @@ export declare class DbSystemClient {
|
|
|
439
451
|
* @param AddHeatWaveClusterRequest
|
|
440
452
|
* @return AddHeatWaveClusterResponse
|
|
441
453
|
* @throws OciError when an error occurs
|
|
442
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
454
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
|
|
443
455
|
*/
|
|
444
456
|
addHeatWaveCluster(addHeatWaveClusterRequest: requests.AddHeatWaveClusterRequest): Promise<responses.AddHeatWaveClusterResponse>;
|
|
445
457
|
/**
|
|
@@ -449,7 +461,7 @@ export declare class DbSystemClient {
|
|
|
449
461
|
* @param CreateDbSystemRequest
|
|
450
462
|
* @return CreateDbSystemResponse
|
|
451
463
|
* @throws OciError when an error occurs
|
|
452
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
464
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
|
|
453
465
|
*/
|
|
454
466
|
createDbSystem(createDbSystemRequest: requests.CreateDbSystemRequest): Promise<responses.CreateDbSystemResponse>;
|
|
455
467
|
/**
|
|
@@ -460,7 +472,7 @@ export declare class DbSystemClient {
|
|
|
460
472
|
* @param DeleteDbSystemRequest
|
|
461
473
|
* @return DeleteDbSystemResponse
|
|
462
474
|
* @throws OciError when an error occurs
|
|
463
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
475
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
|
|
464
476
|
*/
|
|
465
477
|
deleteDbSystem(deleteDbSystemRequest: requests.DeleteDbSystemRequest): Promise<responses.DeleteDbSystemResponse>;
|
|
466
478
|
/**
|
|
@@ -471,7 +483,7 @@ export declare class DbSystemClient {
|
|
|
471
483
|
* @param DeleteHeatWaveClusterRequest
|
|
472
484
|
* @return DeleteHeatWaveClusterResponse
|
|
473
485
|
* @throws OciError when an error occurs
|
|
474
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
486
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
|
|
475
487
|
*/
|
|
476
488
|
deleteHeatWaveCluster(deleteHeatWaveClusterRequest: requests.DeleteHeatWaveClusterRequest): Promise<responses.DeleteHeatWaveClusterResponse>;
|
|
477
489
|
/**
|
|
@@ -481,7 +493,7 @@ export declare class DbSystemClient {
|
|
|
481
493
|
* @param GenerateHeatWaveClusterMemoryEstimateRequest
|
|
482
494
|
* @return GenerateHeatWaveClusterMemoryEstimateResponse
|
|
483
495
|
* @throws OciError when an error occurs
|
|
484
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
496
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
|
|
485
497
|
*/
|
|
486
498
|
generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest: requests.GenerateHeatWaveClusterMemoryEstimateRequest): Promise<responses.GenerateHeatWaveClusterMemoryEstimateResponse>;
|
|
487
499
|
/**
|
|
@@ -490,7 +502,7 @@ export declare class DbSystemClient {
|
|
|
490
502
|
* @param GetDbSystemRequest
|
|
491
503
|
* @return GetDbSystemResponse
|
|
492
504
|
* @throws OciError when an error occurs
|
|
493
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
505
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
|
|
494
506
|
*/
|
|
495
507
|
getDbSystem(getDbSystemRequest: requests.GetDbSystemRequest): Promise<responses.GetDbSystemResponse>;
|
|
496
508
|
/**
|
|
@@ -499,7 +511,7 @@ export declare class DbSystemClient {
|
|
|
499
511
|
* @param GetHeatWaveClusterRequest
|
|
500
512
|
* @return GetHeatWaveClusterResponse
|
|
501
513
|
* @throws OciError when an error occurs
|
|
502
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
514
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
|
|
503
515
|
*/
|
|
504
516
|
getHeatWaveCluster(getHeatWaveClusterRequest: requests.GetHeatWaveClusterRequest): Promise<responses.GetHeatWaveClusterResponse>;
|
|
505
517
|
/**
|
|
@@ -510,7 +522,7 @@ export declare class DbSystemClient {
|
|
|
510
522
|
* @param GetHeatWaveClusterMemoryEstimateRequest
|
|
511
523
|
* @return GetHeatWaveClusterMemoryEstimateResponse
|
|
512
524
|
* @throws OciError when an error occurs
|
|
513
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
525
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
|
|
514
526
|
*/
|
|
515
527
|
getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest: requests.GetHeatWaveClusterMemoryEstimateRequest): Promise<responses.GetHeatWaveClusterMemoryEstimateResponse>;
|
|
516
528
|
/**
|
|
@@ -521,7 +533,7 @@ export declare class DbSystemClient {
|
|
|
521
533
|
* @param ListDbSystemsRequest
|
|
522
534
|
* @return ListDbSystemsResponse
|
|
523
535
|
* @throws OciError when an error occurs
|
|
524
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
536
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
|
|
525
537
|
*/
|
|
526
538
|
listDbSystems(listDbSystemsRequest: requests.ListDbSystemsRequest): Promise<responses.ListDbSystemsResponse>;
|
|
527
539
|
/**
|
|
@@ -562,7 +574,7 @@ export declare class DbSystemClient {
|
|
|
562
574
|
* @param RestartDbSystemRequest
|
|
563
575
|
* @return RestartDbSystemResponse
|
|
564
576
|
* @throws OciError when an error occurs
|
|
565
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
577
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
|
|
566
578
|
*/
|
|
567
579
|
restartDbSystem(restartDbSystemRequest: requests.RestartDbSystemRequest): Promise<responses.RestartDbSystemResponse>;
|
|
568
580
|
/**
|
|
@@ -571,7 +583,7 @@ export declare class DbSystemClient {
|
|
|
571
583
|
* @param RestartHeatWaveClusterRequest
|
|
572
584
|
* @return RestartHeatWaveClusterResponse
|
|
573
585
|
* @throws OciError when an error occurs
|
|
574
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
586
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
|
|
575
587
|
*/
|
|
576
588
|
restartHeatWaveCluster(restartHeatWaveClusterRequest: requests.RestartHeatWaveClusterRequest): Promise<responses.RestartHeatWaveClusterResponse>;
|
|
577
589
|
/**
|
|
@@ -580,7 +592,7 @@ export declare class DbSystemClient {
|
|
|
580
592
|
* @param StartDbSystemRequest
|
|
581
593
|
* @return StartDbSystemResponse
|
|
582
594
|
* @throws OciError when an error occurs
|
|
583
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
595
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
|
|
584
596
|
*/
|
|
585
597
|
startDbSystem(startDbSystemRequest: requests.StartDbSystemRequest): Promise<responses.StartDbSystemResponse>;
|
|
586
598
|
/**
|
|
@@ -589,7 +601,7 @@ export declare class DbSystemClient {
|
|
|
589
601
|
* @param StartHeatWaveClusterRequest
|
|
590
602
|
* @return StartHeatWaveClusterResponse
|
|
591
603
|
* @throws OciError when an error occurs
|
|
592
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
604
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
|
|
593
605
|
*/
|
|
594
606
|
startHeatWaveCluster(startHeatWaveClusterRequest: requests.StartHeatWaveClusterRequest): Promise<responses.StartHeatWaveClusterResponse>;
|
|
595
607
|
/**
|
|
@@ -601,7 +613,7 @@ export declare class DbSystemClient {
|
|
|
601
613
|
* @param StopDbSystemRequest
|
|
602
614
|
* @return StopDbSystemResponse
|
|
603
615
|
* @throws OciError when an error occurs
|
|
604
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
616
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
|
|
605
617
|
*/
|
|
606
618
|
stopDbSystem(stopDbSystemRequest: requests.StopDbSystemRequest): Promise<responses.StopDbSystemResponse>;
|
|
607
619
|
/**
|
|
@@ -610,7 +622,7 @@ export declare class DbSystemClient {
|
|
|
610
622
|
* @param StopHeatWaveClusterRequest
|
|
611
623
|
* @return StopHeatWaveClusterResponse
|
|
612
624
|
* @throws OciError when an error occurs
|
|
613
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
625
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
|
|
614
626
|
*/
|
|
615
627
|
stopHeatWaveCluster(stopHeatWaveClusterRequest: requests.StopHeatWaveClusterRequest): Promise<responses.StopHeatWaveClusterResponse>;
|
|
616
628
|
/**
|
|
@@ -627,7 +639,7 @@ export declare class DbSystemClient {
|
|
|
627
639
|
* @param UpdateDbSystemRequest
|
|
628
640
|
* @return UpdateDbSystemResponse
|
|
629
641
|
* @throws OciError when an error occurs
|
|
630
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
642
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
|
|
631
643
|
*/
|
|
632
644
|
updateDbSystem(updateDbSystemRequest: requests.UpdateDbSystemRequest): Promise<responses.UpdateDbSystemResponse>;
|
|
633
645
|
/**
|
|
@@ -637,7 +649,7 @@ export declare class DbSystemClient {
|
|
|
637
649
|
* @param UpdateHeatWaveClusterRequest
|
|
638
650
|
* @return UpdateHeatWaveClusterResponse
|
|
639
651
|
* @throws OciError when an error occurs
|
|
640
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
652
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
|
|
641
653
|
*/
|
|
642
654
|
updateHeatWaveCluster(updateHeatWaveClusterRequest: requests.UpdateHeatWaveClusterRequest): Promise<responses.UpdateHeatWaveClusterResponse>;
|
|
643
655
|
}
|
|
@@ -711,13 +723,17 @@ export declare class MysqlaasClient {
|
|
|
711
723
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
712
724
|
*/
|
|
713
725
|
shutdownCircuitBreaker(): void;
|
|
726
|
+
/**
|
|
727
|
+
* Close the client once it is no longer needed
|
|
728
|
+
*/
|
|
729
|
+
close(): void;
|
|
714
730
|
/**
|
|
715
731
|
* Creates a new Configuration.
|
|
716
732
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
717
733
|
* @param CreateConfigurationRequest
|
|
718
734
|
* @return CreateConfigurationResponse
|
|
719
735
|
* @throws OciError when an error occurs
|
|
720
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
736
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
|
|
721
737
|
*/
|
|
722
738
|
createConfiguration(createConfigurationRequest: requests.CreateConfigurationRequest): Promise<responses.CreateConfigurationResponse>;
|
|
723
739
|
/**
|
|
@@ -728,7 +744,7 @@ export declare class MysqlaasClient {
|
|
|
728
744
|
* @param DeleteConfigurationRequest
|
|
729
745
|
* @return DeleteConfigurationResponse
|
|
730
746
|
* @throws OciError when an error occurs
|
|
731
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
747
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
|
|
732
748
|
*/
|
|
733
749
|
deleteConfiguration(deleteConfigurationRequest: requests.DeleteConfigurationRequest): Promise<responses.DeleteConfigurationResponse>;
|
|
734
750
|
/**
|
|
@@ -738,7 +754,7 @@ export declare class MysqlaasClient {
|
|
|
738
754
|
* @param GetConfigurationRequest
|
|
739
755
|
* @return GetConfigurationResponse
|
|
740
756
|
* @throws OciError when an error occurs
|
|
741
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
757
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
|
|
742
758
|
*/
|
|
743
759
|
getConfiguration(getConfigurationRequest: requests.GetConfigurationRequest): Promise<responses.GetConfigurationResponse>;
|
|
744
760
|
/**
|
|
@@ -755,7 +771,7 @@ export declare class MysqlaasClient {
|
|
|
755
771
|
* @param ListConfigurationsRequest
|
|
756
772
|
* @return ListConfigurationsResponse
|
|
757
773
|
* @throws OciError when an error occurs
|
|
758
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
774
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
|
|
759
775
|
*/
|
|
760
776
|
listConfigurations(listConfigurationsRequest: requests.ListConfigurationsRequest): Promise<responses.ListConfigurationsResponse>;
|
|
761
777
|
/**
|
|
@@ -800,7 +816,7 @@ export declare class MysqlaasClient {
|
|
|
800
816
|
* @param ListShapesRequest
|
|
801
817
|
* @return ListShapesResponse
|
|
802
818
|
* @throws OciError when an error occurs
|
|
803
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
819
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
804
820
|
*/
|
|
805
821
|
listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
|
|
806
822
|
/**
|
|
@@ -812,7 +828,7 @@ export declare class MysqlaasClient {
|
|
|
812
828
|
* @param ListVersionsRequest
|
|
813
829
|
* @return ListVersionsResponse
|
|
814
830
|
* @throws OciError when an error occurs
|
|
815
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
831
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
|
|
816
832
|
*/
|
|
817
833
|
listVersions(listVersionsRequest: requests.ListVersionsRequest): Promise<responses.ListVersionsResponse>;
|
|
818
834
|
/**
|
|
@@ -821,7 +837,7 @@ export declare class MysqlaasClient {
|
|
|
821
837
|
* @param UpdateConfigurationRequest
|
|
822
838
|
* @return UpdateConfigurationResponse
|
|
823
839
|
* @throws OciError when an error occurs
|
|
824
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
840
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
|
|
825
841
|
*/
|
|
826
842
|
updateConfiguration(updateConfigurationRequest: requests.UpdateConfigurationRequest): Promise<responses.UpdateConfigurationResponse>;
|
|
827
843
|
}
|
|
@@ -895,13 +911,17 @@ export declare class ReplicasClient {
|
|
|
895
911
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
896
912
|
*/
|
|
897
913
|
shutdownCircuitBreaker(): void;
|
|
914
|
+
/**
|
|
915
|
+
* Close the client once it is no longer needed
|
|
916
|
+
*/
|
|
917
|
+
close(): void;
|
|
898
918
|
/**
|
|
899
919
|
* Creates a DB System read replica.
|
|
900
920
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
901
921
|
* @param CreateReplicaRequest
|
|
902
922
|
* @return CreateReplicaResponse
|
|
903
923
|
* @throws OciError when an error occurs
|
|
904
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
924
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/CreateReplica.ts.html |here} to see how to use CreateReplica API.
|
|
905
925
|
*/
|
|
906
926
|
createReplica(createReplicaRequest: requests.CreateReplicaRequest): Promise<responses.CreateReplicaResponse>;
|
|
907
927
|
/**
|
|
@@ -910,7 +930,7 @@ export declare class ReplicasClient {
|
|
|
910
930
|
* @param DeleteReplicaRequest
|
|
911
931
|
* @return DeleteReplicaResponse
|
|
912
932
|
* @throws OciError when an error occurs
|
|
913
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
933
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplica API.
|
|
914
934
|
*/
|
|
915
935
|
deleteReplica(deleteReplicaRequest: requests.DeleteReplicaRequest): Promise<responses.DeleteReplicaResponse>;
|
|
916
936
|
/**
|
|
@@ -919,7 +939,7 @@ export declare class ReplicasClient {
|
|
|
919
939
|
* @param GetReplicaRequest
|
|
920
940
|
* @return GetReplicaResponse
|
|
921
941
|
* @throws OciError when an error occurs
|
|
922
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
942
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GetReplica.ts.html |here} to see how to use GetReplica API.
|
|
923
943
|
*/
|
|
924
944
|
getReplica(getReplicaRequest: requests.GetReplicaRequest): Promise<responses.GetReplicaResponse>;
|
|
925
945
|
/**
|
|
@@ -928,7 +948,7 @@ export declare class ReplicasClient {
|
|
|
928
948
|
* @param ListReplicasRequest
|
|
929
949
|
* @return ListReplicasResponse
|
|
930
950
|
* @throws OciError when an error occurs
|
|
931
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
951
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListReplicas.ts.html |here} to see how to use ListReplicas API.
|
|
932
952
|
*/
|
|
933
953
|
listReplicas(listReplicasRequest: requests.ListReplicasRequest): Promise<responses.ListReplicasResponse>;
|
|
934
954
|
/**
|
|
@@ -969,7 +989,7 @@ export declare class ReplicasClient {
|
|
|
969
989
|
* @param UpdateReplicaRequest
|
|
970
990
|
* @return UpdateReplicaResponse
|
|
971
991
|
* @throws OciError when an error occurs
|
|
972
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
992
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/UpdateReplica.ts.html |here} to see how to use UpdateReplica API.
|
|
973
993
|
*/
|
|
974
994
|
updateReplica(updateReplicaRequest: requests.UpdateReplicaRequest): Promise<responses.UpdateReplicaResponse>;
|
|
975
995
|
}
|
|
@@ -1043,13 +1063,17 @@ export declare class WorkRequestsClient {
|
|
|
1043
1063
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
1044
1064
|
*/
|
|
1045
1065
|
shutdownCircuitBreaker(): void;
|
|
1066
|
+
/**
|
|
1067
|
+
* Close the client once it is no longer needed
|
|
1068
|
+
*/
|
|
1069
|
+
close(): void;
|
|
1046
1070
|
/**
|
|
1047
1071
|
* Gets the status of the work request with the given ID.
|
|
1048
1072
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1049
1073
|
* @param GetWorkRequestRequest
|
|
1050
1074
|
* @return GetWorkRequestResponse
|
|
1051
1075
|
* @throws OciError when an error occurs
|
|
1052
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1076
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1053
1077
|
*/
|
|
1054
1078
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
1055
1079
|
/**
|
|
@@ -1059,7 +1083,7 @@ export declare class WorkRequestsClient {
|
|
|
1059
1083
|
* @param ListWorkRequestErrorsRequest
|
|
1060
1084
|
* @return ListWorkRequestErrorsResponse
|
|
1061
1085
|
* @throws OciError when an error occurs
|
|
1062
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1086
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1063
1087
|
*/
|
|
1064
1088
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
1065
1089
|
/**
|
|
@@ -1101,7 +1125,7 @@ export declare class WorkRequestsClient {
|
|
|
1101
1125
|
* @param ListWorkRequestLogsRequest
|
|
1102
1126
|
* @return ListWorkRequestLogsResponse
|
|
1103
1127
|
* @throws OciError when an error occurs
|
|
1104
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1128
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1105
1129
|
*/
|
|
1106
1130
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
1107
1131
|
/**
|
|
@@ -1143,7 +1167,7 @@ export declare class WorkRequestsClient {
|
|
|
1143
1167
|
* @param ListWorkRequestsRequest
|
|
1144
1168
|
* @return ListWorkRequestsResponse
|
|
1145
1169
|
* @throws OciError when an error occurs
|
|
1146
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1170
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1147
1171
|
*/
|
|
1148
1172
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
1149
1173
|
/**
|