oci-mysql 2.77.0 → 2.77.1
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 +78 -52
- package/lib/client.js +95 -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
|
@@ -20,6 +20,7 @@ import { DbSystemWaiter } from "./dbsystem-waiter";
|
|
|
20
20
|
import { MysqlaasWaiter } from "./mysqlaas-waiter";
|
|
21
21
|
import { ReplicasWaiter } from "./replicas-waiter";
|
|
22
22
|
import { WorkRequestsWaiter } from "./workrequests-waiter";
|
|
23
|
+
declare const Breaker: any;
|
|
23
24
|
export declare enum ChannelsApiKeys {
|
|
24
25
|
}
|
|
25
26
|
/**
|
|
@@ -33,7 +34,7 @@ export declare class ChannelsClient {
|
|
|
33
34
|
protected "_defaultHeaders": any;
|
|
34
35
|
protected "_waiters": ChannelsWaiter;
|
|
35
36
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
36
|
-
protected _circuitBreaker: null;
|
|
37
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
37
38
|
protected _httpOptions: any;
|
|
38
39
|
protected _bodyDuplexMode: any;
|
|
39
40
|
targetService: string;
|
|
@@ -86,6 +87,10 @@ export declare class ChannelsClient {
|
|
|
86
87
|
* @return The service waiters.
|
|
87
88
|
*/
|
|
88
89
|
getWaiters(): ChannelsWaiter;
|
|
90
|
+
/**
|
|
91
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
92
|
+
*/
|
|
93
|
+
shutdownCircuitBreaker(): void;
|
|
89
94
|
/**
|
|
90
95
|
* Creates a Channel to establish replication from a source to a target.
|
|
91
96
|
*
|
|
@@ -93,7 +98,7 @@ export declare class ChannelsClient {
|
|
|
93
98
|
* @param CreateChannelRequest
|
|
94
99
|
* @return CreateChannelResponse
|
|
95
100
|
* @throws OciError when an error occurs
|
|
96
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
|
|
97
102
|
*/
|
|
98
103
|
createChannel(createChannelRequest: requests.CreateChannelRequest): Promise<responses.CreateChannelResponse>;
|
|
99
104
|
/**
|
|
@@ -102,7 +107,7 @@ export declare class ChannelsClient {
|
|
|
102
107
|
* @param DeleteChannelRequest
|
|
103
108
|
* @return DeleteChannelResponse
|
|
104
109
|
* @throws OciError when an error occurs
|
|
105
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
|
|
106
111
|
*/
|
|
107
112
|
deleteChannel(deleteChannelRequest: requests.DeleteChannelRequest): Promise<responses.DeleteChannelResponse>;
|
|
108
113
|
/**
|
|
@@ -114,7 +119,7 @@ export declare class ChannelsClient {
|
|
|
114
119
|
* @param GetChannelRequest
|
|
115
120
|
* @return GetChannelResponse
|
|
116
121
|
* @throws OciError when an error occurs
|
|
117
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
122
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
|
|
118
123
|
*/
|
|
119
124
|
getChannel(getChannelRequest: requests.GetChannelRequest): Promise<responses.GetChannelResponse>;
|
|
120
125
|
/**
|
|
@@ -123,7 +128,7 @@ export declare class ChannelsClient {
|
|
|
123
128
|
* @param ListChannelsRequest
|
|
124
129
|
* @return ListChannelsResponse
|
|
125
130
|
* @throws OciError when an error occurs
|
|
126
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
131
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
|
|
127
132
|
*/
|
|
128
133
|
listChannels(listChannelsRequest: requests.ListChannelsRequest): Promise<responses.ListChannelsResponse>;
|
|
129
134
|
/**
|
|
@@ -166,7 +171,7 @@ export declare class ChannelsClient {
|
|
|
166
171
|
* @param ResetChannelRequest
|
|
167
172
|
* @return ResetChannelResponse
|
|
168
173
|
* @throws OciError when an error occurs
|
|
169
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
174
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
|
|
170
175
|
*/
|
|
171
176
|
resetChannel(resetChannelRequest: requests.ResetChannelRequest): Promise<responses.ResetChannelResponse>;
|
|
172
177
|
/**
|
|
@@ -178,7 +183,7 @@ export declare class ChannelsClient {
|
|
|
178
183
|
* @param ResumeChannelRequest
|
|
179
184
|
* @return ResumeChannelResponse
|
|
180
185
|
* @throws OciError when an error occurs
|
|
181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
186
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
|
|
182
187
|
*/
|
|
183
188
|
resumeChannel(resumeChannelRequest: requests.ResumeChannelRequest): Promise<responses.ResumeChannelResponse>;
|
|
184
189
|
/**
|
|
@@ -191,7 +196,7 @@ export declare class ChannelsClient {
|
|
|
191
196
|
* @param UpdateChannelRequest
|
|
192
197
|
* @return UpdateChannelResponse
|
|
193
198
|
* @throws OciError when an error occurs
|
|
194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
199
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
|
|
195
200
|
*/
|
|
196
201
|
updateChannel(updateChannelRequest: requests.UpdateChannelRequest): Promise<responses.UpdateChannelResponse>;
|
|
197
202
|
}
|
|
@@ -208,7 +213,7 @@ export declare class DbBackupsClient {
|
|
|
208
213
|
protected "_defaultHeaders": any;
|
|
209
214
|
protected "_waiters": DbBackupsWaiter;
|
|
210
215
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
211
|
-
protected _circuitBreaker: null;
|
|
216
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
212
217
|
protected _httpOptions: any;
|
|
213
218
|
protected _bodyDuplexMode: any;
|
|
214
219
|
targetService: string;
|
|
@@ -261,6 +266,10 @@ export declare class DbBackupsClient {
|
|
|
261
266
|
* @return The service waiters.
|
|
262
267
|
*/
|
|
263
268
|
getWaiters(): DbBackupsWaiter;
|
|
269
|
+
/**
|
|
270
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
271
|
+
*/
|
|
272
|
+
shutdownCircuitBreaker(): void;
|
|
264
273
|
/**
|
|
265
274
|
* Moves a DB System Backup into a different compartment.
|
|
266
275
|
* When provided, If-Match is checked against ETag values of the Backup.
|
|
@@ -269,7 +278,7 @@ export declare class DbBackupsClient {
|
|
|
269
278
|
* @param ChangeBackupCompartmentRequest
|
|
270
279
|
* @return ChangeBackupCompartmentResponse
|
|
271
280
|
* @throws OciError when an error occurs
|
|
272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
281
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
|
|
273
282
|
*/
|
|
274
283
|
changeBackupCompartment(changeBackupCompartmentRequest: requests.ChangeBackupCompartmentRequest): Promise<responses.ChangeBackupCompartmentResponse>;
|
|
275
284
|
/**
|
|
@@ -279,7 +288,7 @@ export declare class DbBackupsClient {
|
|
|
279
288
|
* @param CreateBackupRequest
|
|
280
289
|
* @return CreateBackupResponse
|
|
281
290
|
* @throws OciError when an error occurs
|
|
282
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
291
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
|
|
283
292
|
*/
|
|
284
293
|
createBackup(createBackupRequest: requests.CreateBackupRequest): Promise<responses.CreateBackupResponse>;
|
|
285
294
|
/**
|
|
@@ -289,7 +298,7 @@ export declare class DbBackupsClient {
|
|
|
289
298
|
* @param DeleteBackupRequest
|
|
290
299
|
* @return DeleteBackupResponse
|
|
291
300
|
* @throws OciError when an error occurs
|
|
292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
301
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
|
|
293
302
|
*/
|
|
294
303
|
deleteBackup(deleteBackupRequest: requests.DeleteBackupRequest): Promise<responses.DeleteBackupResponse>;
|
|
295
304
|
/**
|
|
@@ -298,7 +307,7 @@ export declare class DbBackupsClient {
|
|
|
298
307
|
* @param GetBackupRequest
|
|
299
308
|
* @return GetBackupResponse
|
|
300
309
|
* @throws OciError when an error occurs
|
|
301
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
310
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
|
|
302
311
|
*/
|
|
303
312
|
getBackup(getBackupRequest: requests.GetBackupRequest): Promise<responses.GetBackupResponse>;
|
|
304
313
|
/**
|
|
@@ -308,7 +317,7 @@ export declare class DbBackupsClient {
|
|
|
308
317
|
* @param ListBackupsRequest
|
|
309
318
|
* @return ListBackupsResponse
|
|
310
319
|
* @throws OciError when an error occurs
|
|
311
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
320
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
|
|
312
321
|
*/
|
|
313
322
|
listBackups(listBackupsRequest: requests.ListBackupsRequest): Promise<responses.ListBackupsResponse>;
|
|
314
323
|
/**
|
|
@@ -349,7 +358,7 @@ export declare class DbBackupsClient {
|
|
|
349
358
|
* @param UpdateBackupRequest
|
|
350
359
|
* @return UpdateBackupResponse
|
|
351
360
|
* @throws OciError when an error occurs
|
|
352
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
361
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
|
|
353
362
|
*/
|
|
354
363
|
updateBackup(updateBackupRequest: requests.UpdateBackupRequest): Promise<responses.UpdateBackupResponse>;
|
|
355
364
|
}
|
|
@@ -366,7 +375,7 @@ export declare class DbSystemClient {
|
|
|
366
375
|
protected "_defaultHeaders": any;
|
|
367
376
|
protected "_waiters": DbSystemWaiter;
|
|
368
377
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
369
|
-
protected _circuitBreaker: null;
|
|
378
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
370
379
|
protected _httpOptions: any;
|
|
371
380
|
protected _bodyDuplexMode: any;
|
|
372
381
|
targetService: string;
|
|
@@ -419,6 +428,10 @@ export declare class DbSystemClient {
|
|
|
419
428
|
* @return The service waiters.
|
|
420
429
|
*/
|
|
421
430
|
getWaiters(): DbSystemWaiter;
|
|
431
|
+
/**
|
|
432
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
433
|
+
*/
|
|
434
|
+
shutdownCircuitBreaker(): void;
|
|
422
435
|
/**
|
|
423
436
|
* Adds a HeatWave cluster to the DB System.
|
|
424
437
|
*
|
|
@@ -426,7 +439,7 @@ export declare class DbSystemClient {
|
|
|
426
439
|
* @param AddHeatWaveClusterRequest
|
|
427
440
|
* @return AddHeatWaveClusterResponse
|
|
428
441
|
* @throws OciError when an error occurs
|
|
429
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
|
|
430
443
|
*/
|
|
431
444
|
addHeatWaveCluster(addHeatWaveClusterRequest: requests.AddHeatWaveClusterRequest): Promise<responses.AddHeatWaveClusterResponse>;
|
|
432
445
|
/**
|
|
@@ -436,7 +449,7 @@ export declare class DbSystemClient {
|
|
|
436
449
|
* @param CreateDbSystemRequest
|
|
437
450
|
* @return CreateDbSystemResponse
|
|
438
451
|
* @throws OciError when an error occurs
|
|
439
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
452
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
|
|
440
453
|
*/
|
|
441
454
|
createDbSystem(createDbSystemRequest: requests.CreateDbSystemRequest): Promise<responses.CreateDbSystemResponse>;
|
|
442
455
|
/**
|
|
@@ -447,7 +460,7 @@ export declare class DbSystemClient {
|
|
|
447
460
|
* @param DeleteDbSystemRequest
|
|
448
461
|
* @return DeleteDbSystemResponse
|
|
449
462
|
* @throws OciError when an error occurs
|
|
450
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
463
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
|
|
451
464
|
*/
|
|
452
465
|
deleteDbSystem(deleteDbSystemRequest: requests.DeleteDbSystemRequest): Promise<responses.DeleteDbSystemResponse>;
|
|
453
466
|
/**
|
|
@@ -458,7 +471,7 @@ export declare class DbSystemClient {
|
|
|
458
471
|
* @param DeleteHeatWaveClusterRequest
|
|
459
472
|
* @return DeleteHeatWaveClusterResponse
|
|
460
473
|
* @throws OciError when an error occurs
|
|
461
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
474
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
|
|
462
475
|
*/
|
|
463
476
|
deleteHeatWaveCluster(deleteHeatWaveClusterRequest: requests.DeleteHeatWaveClusterRequest): Promise<responses.DeleteHeatWaveClusterResponse>;
|
|
464
477
|
/**
|
|
@@ -468,7 +481,7 @@ export declare class DbSystemClient {
|
|
|
468
481
|
* @param GenerateHeatWaveClusterMemoryEstimateRequest
|
|
469
482
|
* @return GenerateHeatWaveClusterMemoryEstimateResponse
|
|
470
483
|
* @throws OciError when an error occurs
|
|
471
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
484
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
|
|
472
485
|
*/
|
|
473
486
|
generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest: requests.GenerateHeatWaveClusterMemoryEstimateRequest): Promise<responses.GenerateHeatWaveClusterMemoryEstimateResponse>;
|
|
474
487
|
/**
|
|
@@ -477,7 +490,7 @@ export declare class DbSystemClient {
|
|
|
477
490
|
* @param GetDbSystemRequest
|
|
478
491
|
* @return GetDbSystemResponse
|
|
479
492
|
* @throws OciError when an error occurs
|
|
480
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
493
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
|
|
481
494
|
*/
|
|
482
495
|
getDbSystem(getDbSystemRequest: requests.GetDbSystemRequest): Promise<responses.GetDbSystemResponse>;
|
|
483
496
|
/**
|
|
@@ -486,7 +499,7 @@ export declare class DbSystemClient {
|
|
|
486
499
|
* @param GetHeatWaveClusterRequest
|
|
487
500
|
* @return GetHeatWaveClusterResponse
|
|
488
501
|
* @throws OciError when an error occurs
|
|
489
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
502
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
|
|
490
503
|
*/
|
|
491
504
|
getHeatWaveCluster(getHeatWaveClusterRequest: requests.GetHeatWaveClusterRequest): Promise<responses.GetHeatWaveClusterResponse>;
|
|
492
505
|
/**
|
|
@@ -497,7 +510,7 @@ export declare class DbSystemClient {
|
|
|
497
510
|
* @param GetHeatWaveClusterMemoryEstimateRequest
|
|
498
511
|
* @return GetHeatWaveClusterMemoryEstimateResponse
|
|
499
512
|
* @throws OciError when an error occurs
|
|
500
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
513
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
|
|
501
514
|
*/
|
|
502
515
|
getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest: requests.GetHeatWaveClusterMemoryEstimateRequest): Promise<responses.GetHeatWaveClusterMemoryEstimateResponse>;
|
|
503
516
|
/**
|
|
@@ -508,7 +521,7 @@ export declare class DbSystemClient {
|
|
|
508
521
|
* @param ListDbSystemsRequest
|
|
509
522
|
* @return ListDbSystemsResponse
|
|
510
523
|
* @throws OciError when an error occurs
|
|
511
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
|
|
512
525
|
*/
|
|
513
526
|
listDbSystems(listDbSystemsRequest: requests.ListDbSystemsRequest): Promise<responses.ListDbSystemsResponse>;
|
|
514
527
|
/**
|
|
@@ -549,7 +562,7 @@ export declare class DbSystemClient {
|
|
|
549
562
|
* @param RestartDbSystemRequest
|
|
550
563
|
* @return RestartDbSystemResponse
|
|
551
564
|
* @throws OciError when an error occurs
|
|
552
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
565
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
|
|
553
566
|
*/
|
|
554
567
|
restartDbSystem(restartDbSystemRequest: requests.RestartDbSystemRequest): Promise<responses.RestartDbSystemResponse>;
|
|
555
568
|
/**
|
|
@@ -558,7 +571,7 @@ export declare class DbSystemClient {
|
|
|
558
571
|
* @param RestartHeatWaveClusterRequest
|
|
559
572
|
* @return RestartHeatWaveClusterResponse
|
|
560
573
|
* @throws OciError when an error occurs
|
|
561
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
574
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
|
|
562
575
|
*/
|
|
563
576
|
restartHeatWaveCluster(restartHeatWaveClusterRequest: requests.RestartHeatWaveClusterRequest): Promise<responses.RestartHeatWaveClusterResponse>;
|
|
564
577
|
/**
|
|
@@ -567,7 +580,7 @@ export declare class DbSystemClient {
|
|
|
567
580
|
* @param StartDbSystemRequest
|
|
568
581
|
* @return StartDbSystemResponse
|
|
569
582
|
* @throws OciError when an error occurs
|
|
570
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
583
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
|
|
571
584
|
*/
|
|
572
585
|
startDbSystem(startDbSystemRequest: requests.StartDbSystemRequest): Promise<responses.StartDbSystemResponse>;
|
|
573
586
|
/**
|
|
@@ -576,7 +589,7 @@ export declare class DbSystemClient {
|
|
|
576
589
|
* @param StartHeatWaveClusterRequest
|
|
577
590
|
* @return StartHeatWaveClusterResponse
|
|
578
591
|
* @throws OciError when an error occurs
|
|
579
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
592
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
|
|
580
593
|
*/
|
|
581
594
|
startHeatWaveCluster(startHeatWaveClusterRequest: requests.StartHeatWaveClusterRequest): Promise<responses.StartHeatWaveClusterResponse>;
|
|
582
595
|
/**
|
|
@@ -588,7 +601,7 @@ export declare class DbSystemClient {
|
|
|
588
601
|
* @param StopDbSystemRequest
|
|
589
602
|
* @return StopDbSystemResponse
|
|
590
603
|
* @throws OciError when an error occurs
|
|
591
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
604
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
|
|
592
605
|
*/
|
|
593
606
|
stopDbSystem(stopDbSystemRequest: requests.StopDbSystemRequest): Promise<responses.StopDbSystemResponse>;
|
|
594
607
|
/**
|
|
@@ -597,7 +610,7 @@ export declare class DbSystemClient {
|
|
|
597
610
|
* @param StopHeatWaveClusterRequest
|
|
598
611
|
* @return StopHeatWaveClusterResponse
|
|
599
612
|
* @throws OciError when an error occurs
|
|
600
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
613
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
|
|
601
614
|
*/
|
|
602
615
|
stopHeatWaveCluster(stopHeatWaveClusterRequest: requests.StopHeatWaveClusterRequest): Promise<responses.StopHeatWaveClusterResponse>;
|
|
603
616
|
/**
|
|
@@ -614,7 +627,7 @@ export declare class DbSystemClient {
|
|
|
614
627
|
* @param UpdateDbSystemRequest
|
|
615
628
|
* @return UpdateDbSystemResponse
|
|
616
629
|
* @throws OciError when an error occurs
|
|
617
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
630
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
|
|
618
631
|
*/
|
|
619
632
|
updateDbSystem(updateDbSystemRequest: requests.UpdateDbSystemRequest): Promise<responses.UpdateDbSystemResponse>;
|
|
620
633
|
/**
|
|
@@ -624,7 +637,7 @@ export declare class DbSystemClient {
|
|
|
624
637
|
* @param UpdateHeatWaveClusterRequest
|
|
625
638
|
* @return UpdateHeatWaveClusterResponse
|
|
626
639
|
* @throws OciError when an error occurs
|
|
627
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
640
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
|
|
628
641
|
*/
|
|
629
642
|
updateHeatWaveCluster(updateHeatWaveClusterRequest: requests.UpdateHeatWaveClusterRequest): Promise<responses.UpdateHeatWaveClusterResponse>;
|
|
630
643
|
}
|
|
@@ -641,7 +654,7 @@ export declare class MysqlaasClient {
|
|
|
641
654
|
protected "_defaultHeaders": any;
|
|
642
655
|
protected "_waiters": MysqlaasWaiter;
|
|
643
656
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
644
|
-
protected _circuitBreaker: null;
|
|
657
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
645
658
|
protected _httpOptions: any;
|
|
646
659
|
protected _bodyDuplexMode: any;
|
|
647
660
|
targetService: string;
|
|
@@ -694,13 +707,17 @@ export declare class MysqlaasClient {
|
|
|
694
707
|
* @return The service waiters.
|
|
695
708
|
*/
|
|
696
709
|
getWaiters(): MysqlaasWaiter;
|
|
710
|
+
/**
|
|
711
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
712
|
+
*/
|
|
713
|
+
shutdownCircuitBreaker(): void;
|
|
697
714
|
/**
|
|
698
715
|
* Creates a new Configuration.
|
|
699
716
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
700
717
|
* @param CreateConfigurationRequest
|
|
701
718
|
* @return CreateConfigurationResponse
|
|
702
719
|
* @throws OciError when an error occurs
|
|
703
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
720
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
|
|
704
721
|
*/
|
|
705
722
|
createConfiguration(createConfigurationRequest: requests.CreateConfigurationRequest): Promise<responses.CreateConfigurationResponse>;
|
|
706
723
|
/**
|
|
@@ -711,7 +728,7 @@ export declare class MysqlaasClient {
|
|
|
711
728
|
* @param DeleteConfigurationRequest
|
|
712
729
|
* @return DeleteConfigurationResponse
|
|
713
730
|
* @throws OciError when an error occurs
|
|
714
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
731
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
|
|
715
732
|
*/
|
|
716
733
|
deleteConfiguration(deleteConfigurationRequest: requests.DeleteConfigurationRequest): Promise<responses.DeleteConfigurationResponse>;
|
|
717
734
|
/**
|
|
@@ -721,7 +738,7 @@ export declare class MysqlaasClient {
|
|
|
721
738
|
* @param GetConfigurationRequest
|
|
722
739
|
* @return GetConfigurationResponse
|
|
723
740
|
* @throws OciError when an error occurs
|
|
724
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
741
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
|
|
725
742
|
*/
|
|
726
743
|
getConfiguration(getConfigurationRequest: requests.GetConfigurationRequest): Promise<responses.GetConfigurationResponse>;
|
|
727
744
|
/**
|
|
@@ -738,7 +755,7 @@ export declare class MysqlaasClient {
|
|
|
738
755
|
* @param ListConfigurationsRequest
|
|
739
756
|
* @return ListConfigurationsResponse
|
|
740
757
|
* @throws OciError when an error occurs
|
|
741
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
758
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
|
|
742
759
|
*/
|
|
743
760
|
listConfigurations(listConfigurationsRequest: requests.ListConfigurationsRequest): Promise<responses.ListConfigurationsResponse>;
|
|
744
761
|
/**
|
|
@@ -783,7 +800,7 @@ export declare class MysqlaasClient {
|
|
|
783
800
|
* @param ListShapesRequest
|
|
784
801
|
* @return ListShapesResponse
|
|
785
802
|
* @throws OciError when an error occurs
|
|
786
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
803
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
787
804
|
*/
|
|
788
805
|
listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
|
|
789
806
|
/**
|
|
@@ -795,7 +812,7 @@ export declare class MysqlaasClient {
|
|
|
795
812
|
* @param ListVersionsRequest
|
|
796
813
|
* @return ListVersionsResponse
|
|
797
814
|
* @throws OciError when an error occurs
|
|
798
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
815
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
|
|
799
816
|
*/
|
|
800
817
|
listVersions(listVersionsRequest: requests.ListVersionsRequest): Promise<responses.ListVersionsResponse>;
|
|
801
818
|
/**
|
|
@@ -804,7 +821,7 @@ export declare class MysqlaasClient {
|
|
|
804
821
|
* @param UpdateConfigurationRequest
|
|
805
822
|
* @return UpdateConfigurationResponse
|
|
806
823
|
* @throws OciError when an error occurs
|
|
807
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
824
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
|
|
808
825
|
*/
|
|
809
826
|
updateConfiguration(updateConfigurationRequest: requests.UpdateConfigurationRequest): Promise<responses.UpdateConfigurationResponse>;
|
|
810
827
|
}
|
|
@@ -821,7 +838,7 @@ export declare class ReplicasClient {
|
|
|
821
838
|
protected "_defaultHeaders": any;
|
|
822
839
|
protected "_waiters": ReplicasWaiter;
|
|
823
840
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
824
|
-
protected _circuitBreaker: null;
|
|
841
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
825
842
|
protected _httpOptions: any;
|
|
826
843
|
protected _bodyDuplexMode: any;
|
|
827
844
|
targetService: string;
|
|
@@ -874,13 +891,17 @@ export declare class ReplicasClient {
|
|
|
874
891
|
* @return The service waiters.
|
|
875
892
|
*/
|
|
876
893
|
getWaiters(): ReplicasWaiter;
|
|
894
|
+
/**
|
|
895
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
896
|
+
*/
|
|
897
|
+
shutdownCircuitBreaker(): void;
|
|
877
898
|
/**
|
|
878
899
|
* Creates a DB System read replica.
|
|
879
900
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
880
901
|
* @param CreateReplicaRequest
|
|
881
902
|
* @return CreateReplicaResponse
|
|
882
903
|
* @throws OciError when an error occurs
|
|
883
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
904
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/CreateReplica.ts.html |here} to see how to use CreateReplica API.
|
|
884
905
|
*/
|
|
885
906
|
createReplica(createReplicaRequest: requests.CreateReplicaRequest): Promise<responses.CreateReplicaResponse>;
|
|
886
907
|
/**
|
|
@@ -889,7 +910,7 @@ export declare class ReplicasClient {
|
|
|
889
910
|
* @param DeleteReplicaRequest
|
|
890
911
|
* @return DeleteReplicaResponse
|
|
891
912
|
* @throws OciError when an error occurs
|
|
892
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
913
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/DeleteReplica.ts.html |here} to see how to use DeleteReplica API.
|
|
893
914
|
*/
|
|
894
915
|
deleteReplica(deleteReplicaRequest: requests.DeleteReplicaRequest): Promise<responses.DeleteReplicaResponse>;
|
|
895
916
|
/**
|
|
@@ -898,7 +919,7 @@ export declare class ReplicasClient {
|
|
|
898
919
|
* @param GetReplicaRequest
|
|
899
920
|
* @return GetReplicaResponse
|
|
900
921
|
* @throws OciError when an error occurs
|
|
901
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
922
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GetReplica.ts.html |here} to see how to use GetReplica API.
|
|
902
923
|
*/
|
|
903
924
|
getReplica(getReplicaRequest: requests.GetReplicaRequest): Promise<responses.GetReplicaResponse>;
|
|
904
925
|
/**
|
|
@@ -907,7 +928,7 @@ export declare class ReplicasClient {
|
|
|
907
928
|
* @param ListReplicasRequest
|
|
908
929
|
* @return ListReplicasResponse
|
|
909
930
|
* @throws OciError when an error occurs
|
|
910
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
931
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListReplicas.ts.html |here} to see how to use ListReplicas API.
|
|
911
932
|
*/
|
|
912
933
|
listReplicas(listReplicasRequest: requests.ListReplicasRequest): Promise<responses.ListReplicasResponse>;
|
|
913
934
|
/**
|
|
@@ -948,7 +969,7 @@ export declare class ReplicasClient {
|
|
|
948
969
|
* @param UpdateReplicaRequest
|
|
949
970
|
* @return UpdateReplicaResponse
|
|
950
971
|
* @throws OciError when an error occurs
|
|
951
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
972
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/UpdateReplica.ts.html |here} to see how to use UpdateReplica API.
|
|
952
973
|
*/
|
|
953
974
|
updateReplica(updateReplicaRequest: requests.UpdateReplicaRequest): Promise<responses.UpdateReplicaResponse>;
|
|
954
975
|
}
|
|
@@ -965,7 +986,7 @@ export declare class WorkRequestsClient {
|
|
|
965
986
|
protected "_defaultHeaders": any;
|
|
966
987
|
protected "_waiters": WorkRequestsWaiter;
|
|
967
988
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
968
|
-
protected _circuitBreaker: null;
|
|
989
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
969
990
|
protected _httpOptions: any;
|
|
970
991
|
protected _bodyDuplexMode: any;
|
|
971
992
|
targetService: string;
|
|
@@ -1018,13 +1039,17 @@ export declare class WorkRequestsClient {
|
|
|
1018
1039
|
* @return The service waiters.
|
|
1019
1040
|
*/
|
|
1020
1041
|
getWaiters(): WorkRequestsWaiter;
|
|
1042
|
+
/**
|
|
1043
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
1044
|
+
*/
|
|
1045
|
+
shutdownCircuitBreaker(): void;
|
|
1021
1046
|
/**
|
|
1022
1047
|
* Gets the status of the work request with the given ID.
|
|
1023
1048
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1024
1049
|
* @param GetWorkRequestRequest
|
|
1025
1050
|
* @return GetWorkRequestResponse
|
|
1026
1051
|
* @throws OciError when an error occurs
|
|
1027
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1052
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1028
1053
|
*/
|
|
1029
1054
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
1030
1055
|
/**
|
|
@@ -1034,7 +1059,7 @@ export declare class WorkRequestsClient {
|
|
|
1034
1059
|
* @param ListWorkRequestErrorsRequest
|
|
1035
1060
|
* @return ListWorkRequestErrorsResponse
|
|
1036
1061
|
* @throws OciError when an error occurs
|
|
1037
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1062
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1038
1063
|
*/
|
|
1039
1064
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
1040
1065
|
/**
|
|
@@ -1076,7 +1101,7 @@ export declare class WorkRequestsClient {
|
|
|
1076
1101
|
* @param ListWorkRequestLogsRequest
|
|
1077
1102
|
* @return ListWorkRequestLogsResponse
|
|
1078
1103
|
* @throws OciError when an error occurs
|
|
1079
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1104
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1080
1105
|
*/
|
|
1081
1106
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
1082
1107
|
/**
|
|
@@ -1118,7 +1143,7 @@ export declare class WorkRequestsClient {
|
|
|
1118
1143
|
* @param ListWorkRequestsRequest
|
|
1119
1144
|
* @return ListWorkRequestsResponse
|
|
1120
1145
|
* @throws OciError when an error occurs
|
|
1121
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1146
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1122
1147
|
*/
|
|
1123
1148
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
1124
1149
|
/**
|
|
@@ -1154,3 +1179,4 @@ export declare class WorkRequestsClient {
|
|
|
1154
1179
|
*/
|
|
1155
1180
|
listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
1156
1181
|
}
|
|
1182
|
+
export {};
|