oci-mysql 2.27.0 → 2.28.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.
- package/lib/client.d.ts +55 -50
- package/lib/client.js +205 -100
- package/lib/client.js.map +1 -1
- package/lib/request/add-analytics-cluster-request.d.ts +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/delete-analytics-cluster-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/generate-analytics-cluster-memory-estimate-request.d.ts +1 -1
- package/lib/request/generate-heat-wave-cluster-memory-estimate-request.d.ts +1 -1
- package/lib/request/get-analytics-cluster-memory-estimate-request.d.ts +1 -1
- package/lib/request/get-analytics-cluster-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-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-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-analytics-cluster-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-analytics-cluster-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-analytics-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-analytics-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/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare class ChannelsClient {
|
|
|
33
33
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
34
34
|
protected _circuitBreaker: null;
|
|
35
35
|
protected _httpOptions: any;
|
|
36
|
+
targetService: string;
|
|
36
37
|
protected _httpClient: common.HttpClient;
|
|
37
38
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
38
39
|
/**
|
|
@@ -80,7 +81,7 @@ export declare class ChannelsClient {
|
|
|
80
81
|
* @param CreateChannelRequest
|
|
81
82
|
* @return CreateChannelResponse
|
|
82
83
|
* @throws OciError when an error occurs
|
|
83
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
84
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
|
|
84
85
|
*/
|
|
85
86
|
createChannel(createChannelRequest: requests.CreateChannelRequest): Promise<responses.CreateChannelResponse>;
|
|
86
87
|
/**
|
|
@@ -89,7 +90,7 @@ export declare class ChannelsClient {
|
|
|
89
90
|
* @param DeleteChannelRequest
|
|
90
91
|
* @return DeleteChannelResponse
|
|
91
92
|
* @throws OciError when an error occurs
|
|
92
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
93
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
|
|
93
94
|
*/
|
|
94
95
|
deleteChannel(deleteChannelRequest: requests.DeleteChannelRequest): Promise<responses.DeleteChannelResponse>;
|
|
95
96
|
/**
|
|
@@ -101,7 +102,7 @@ export declare class ChannelsClient {
|
|
|
101
102
|
* @param GetChannelRequest
|
|
102
103
|
* @return GetChannelResponse
|
|
103
104
|
* @throws OciError when an error occurs
|
|
104
|
-
* @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.28.0/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
|
|
105
106
|
*/
|
|
106
107
|
getChannel(getChannelRequest: requests.GetChannelRequest): Promise<responses.GetChannelResponse>;
|
|
107
108
|
/**
|
|
@@ -110,7 +111,7 @@ export declare class ChannelsClient {
|
|
|
110
111
|
* @param ListChannelsRequest
|
|
111
112
|
* @return ListChannelsResponse
|
|
112
113
|
* @throws OciError when an error occurs
|
|
113
|
-
* @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.28.0/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
|
|
114
115
|
*/
|
|
115
116
|
listChannels(listChannelsRequest: requests.ListChannelsRequest): Promise<responses.ListChannelsResponse>;
|
|
116
117
|
/**
|
|
@@ -153,7 +154,7 @@ export declare class ChannelsClient {
|
|
|
153
154
|
* @param ResetChannelRequest
|
|
154
155
|
* @return ResetChannelResponse
|
|
155
156
|
* @throws OciError when an error occurs
|
|
156
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
157
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
|
|
157
158
|
*/
|
|
158
159
|
resetChannel(resetChannelRequest: requests.ResetChannelRequest): Promise<responses.ResetChannelResponse>;
|
|
159
160
|
/**
|
|
@@ -165,7 +166,7 @@ export declare class ChannelsClient {
|
|
|
165
166
|
* @param ResumeChannelRequest
|
|
166
167
|
* @return ResumeChannelResponse
|
|
167
168
|
* @throws OciError when an error occurs
|
|
168
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
169
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
|
|
169
170
|
*/
|
|
170
171
|
resumeChannel(resumeChannelRequest: requests.ResumeChannelRequest): Promise<responses.ResumeChannelResponse>;
|
|
171
172
|
/**
|
|
@@ -178,7 +179,7 @@ export declare class ChannelsClient {
|
|
|
178
179
|
* @param UpdateChannelRequest
|
|
179
180
|
* @return UpdateChannelResponse
|
|
180
181
|
* @throws OciError when an error occurs
|
|
181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
182
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
|
|
182
183
|
*/
|
|
183
184
|
updateChannel(updateChannelRequest: requests.UpdateChannelRequest): Promise<responses.UpdateChannelResponse>;
|
|
184
185
|
}
|
|
@@ -196,6 +197,7 @@ export declare class DbBackupsClient {
|
|
|
196
197
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
197
198
|
protected _circuitBreaker: null;
|
|
198
199
|
protected _httpOptions: any;
|
|
200
|
+
targetService: string;
|
|
199
201
|
protected _httpClient: common.HttpClient;
|
|
200
202
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
201
203
|
/**
|
|
@@ -244,7 +246,7 @@ export declare class DbBackupsClient {
|
|
|
244
246
|
* @param ChangeBackupCompartmentRequest
|
|
245
247
|
* @return ChangeBackupCompartmentResponse
|
|
246
248
|
* @throws OciError when an error occurs
|
|
247
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
|
|
248
250
|
*/
|
|
249
251
|
changeBackupCompartment(changeBackupCompartmentRequest: requests.ChangeBackupCompartmentRequest): Promise<responses.ChangeBackupCompartmentResponse>;
|
|
250
252
|
/**
|
|
@@ -254,7 +256,7 @@ export declare class DbBackupsClient {
|
|
|
254
256
|
* @param CreateBackupRequest
|
|
255
257
|
* @return CreateBackupResponse
|
|
256
258
|
* @throws OciError when an error occurs
|
|
257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
|
|
258
260
|
*/
|
|
259
261
|
createBackup(createBackupRequest: requests.CreateBackupRequest): Promise<responses.CreateBackupResponse>;
|
|
260
262
|
/**
|
|
@@ -264,7 +266,7 @@ export declare class DbBackupsClient {
|
|
|
264
266
|
* @param DeleteBackupRequest
|
|
265
267
|
* @return DeleteBackupResponse
|
|
266
268
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
269
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
|
|
268
270
|
*/
|
|
269
271
|
deleteBackup(deleteBackupRequest: requests.DeleteBackupRequest): Promise<responses.DeleteBackupResponse>;
|
|
270
272
|
/**
|
|
@@ -273,7 +275,7 @@ export declare class DbBackupsClient {
|
|
|
273
275
|
* @param GetBackupRequest
|
|
274
276
|
* @return GetBackupResponse
|
|
275
277
|
* @throws OciError when an error occurs
|
|
276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
278
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
|
|
277
279
|
*/
|
|
278
280
|
getBackup(getBackupRequest: requests.GetBackupRequest): Promise<responses.GetBackupResponse>;
|
|
279
281
|
/**
|
|
@@ -283,7 +285,7 @@ export declare class DbBackupsClient {
|
|
|
283
285
|
* @param ListBackupsRequest
|
|
284
286
|
* @return ListBackupsResponse
|
|
285
287
|
* @throws OciError when an error occurs
|
|
286
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
288
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
|
|
287
289
|
*/
|
|
288
290
|
listBackups(listBackupsRequest: requests.ListBackupsRequest): Promise<responses.ListBackupsResponse>;
|
|
289
291
|
/**
|
|
@@ -324,7 +326,7 @@ export declare class DbBackupsClient {
|
|
|
324
326
|
* @param UpdateBackupRequest
|
|
325
327
|
* @return UpdateBackupResponse
|
|
326
328
|
* @throws OciError when an error occurs
|
|
327
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
|
|
328
330
|
*/
|
|
329
331
|
updateBackup(updateBackupRequest: requests.UpdateBackupRequest): Promise<responses.UpdateBackupResponse>;
|
|
330
332
|
}
|
|
@@ -342,6 +344,7 @@ export declare class DbSystemClient {
|
|
|
342
344
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
343
345
|
protected _circuitBreaker: null;
|
|
344
346
|
protected _httpOptions: any;
|
|
347
|
+
targetService: string;
|
|
345
348
|
protected _httpClient: common.HttpClient;
|
|
346
349
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
347
350
|
/**
|
|
@@ -390,7 +393,7 @@ export declare class DbSystemClient {
|
|
|
390
393
|
* @param AddAnalyticsClusterRequest
|
|
391
394
|
* @return AddAnalyticsClusterResponse
|
|
392
395
|
* @throws OciError when an error occurs
|
|
393
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
396
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/AddAnalyticsCluster.ts.html |here} to see how to use AddAnalyticsCluster API.
|
|
394
397
|
*/
|
|
395
398
|
addAnalyticsCluster(addAnalyticsClusterRequest: requests.AddAnalyticsClusterRequest): Promise<responses.AddAnalyticsClusterResponse>;
|
|
396
399
|
/**
|
|
@@ -400,7 +403,7 @@ export declare class DbSystemClient {
|
|
|
400
403
|
* @param AddHeatWaveClusterRequest
|
|
401
404
|
* @return AddHeatWaveClusterResponse
|
|
402
405
|
* @throws OciError when an error occurs
|
|
403
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
406
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
|
|
404
407
|
*/
|
|
405
408
|
addHeatWaveCluster(addHeatWaveClusterRequest: requests.AddHeatWaveClusterRequest): Promise<responses.AddHeatWaveClusterResponse>;
|
|
406
409
|
/**
|
|
@@ -410,7 +413,7 @@ export declare class DbSystemClient {
|
|
|
410
413
|
* @param CreateDbSystemRequest
|
|
411
414
|
* @return CreateDbSystemResponse
|
|
412
415
|
* @throws OciError when an error occurs
|
|
413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
416
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
|
|
414
417
|
*/
|
|
415
418
|
createDbSystem(createDbSystemRequest: requests.CreateDbSystemRequest): Promise<responses.CreateDbSystemResponse>;
|
|
416
419
|
/**
|
|
@@ -422,7 +425,7 @@ export declare class DbSystemClient {
|
|
|
422
425
|
* @param DeleteAnalyticsClusterRequest
|
|
423
426
|
* @return DeleteAnalyticsClusterResponse
|
|
424
427
|
* @throws OciError when an error occurs
|
|
425
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
428
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/DeleteAnalyticsCluster.ts.html |here} to see how to use DeleteAnalyticsCluster API.
|
|
426
429
|
*/
|
|
427
430
|
deleteAnalyticsCluster(deleteAnalyticsClusterRequest: requests.DeleteAnalyticsClusterRequest): Promise<responses.DeleteAnalyticsClusterResponse>;
|
|
428
431
|
/**
|
|
@@ -433,7 +436,7 @@ export declare class DbSystemClient {
|
|
|
433
436
|
* @param DeleteDbSystemRequest
|
|
434
437
|
* @return DeleteDbSystemResponse
|
|
435
438
|
* @throws OciError when an error occurs
|
|
436
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
439
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
|
|
437
440
|
*/
|
|
438
441
|
deleteDbSystem(deleteDbSystemRequest: requests.DeleteDbSystemRequest): Promise<responses.DeleteDbSystemResponse>;
|
|
439
442
|
/**
|
|
@@ -444,7 +447,7 @@ export declare class DbSystemClient {
|
|
|
444
447
|
* @param DeleteHeatWaveClusterRequest
|
|
445
448
|
* @return DeleteHeatWaveClusterResponse
|
|
446
449
|
* @throws OciError when an error occurs
|
|
447
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
450
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
|
|
448
451
|
*/
|
|
449
452
|
deleteHeatWaveCluster(deleteHeatWaveClusterRequest: requests.DeleteHeatWaveClusterRequest): Promise<responses.DeleteHeatWaveClusterResponse>;
|
|
450
453
|
/**
|
|
@@ -455,7 +458,7 @@ export declare class DbSystemClient {
|
|
|
455
458
|
* @param GenerateAnalyticsClusterMemoryEstimateRequest
|
|
456
459
|
* @return GenerateAnalyticsClusterMemoryEstimateResponse
|
|
457
460
|
* @throws OciError when an error occurs
|
|
458
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
461
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GenerateAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GenerateAnalyticsClusterMemoryEstimate API.
|
|
459
462
|
*/
|
|
460
463
|
generateAnalyticsClusterMemoryEstimate(generateAnalyticsClusterMemoryEstimateRequest: requests.GenerateAnalyticsClusterMemoryEstimateRequest): Promise<responses.GenerateAnalyticsClusterMemoryEstimateResponse>;
|
|
461
464
|
/**
|
|
@@ -465,7 +468,7 @@ export declare class DbSystemClient {
|
|
|
465
468
|
* @param GenerateHeatWaveClusterMemoryEstimateRequest
|
|
466
469
|
* @return GenerateHeatWaveClusterMemoryEstimateResponse
|
|
467
470
|
* @throws OciError when an error occurs
|
|
468
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
471
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
|
|
469
472
|
*/
|
|
470
473
|
generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest: requests.GenerateHeatWaveClusterMemoryEstimateRequest): Promise<responses.GenerateHeatWaveClusterMemoryEstimateResponse>;
|
|
471
474
|
/**
|
|
@@ -476,7 +479,7 @@ export declare class DbSystemClient {
|
|
|
476
479
|
* @param GetAnalyticsClusterRequest
|
|
477
480
|
* @return GetAnalyticsClusterResponse
|
|
478
481
|
* @throws OciError when an error occurs
|
|
479
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
482
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GetAnalyticsCluster.ts.html |here} to see how to use GetAnalyticsCluster API.
|
|
480
483
|
*/
|
|
481
484
|
getAnalyticsCluster(getAnalyticsClusterRequest: requests.GetAnalyticsClusterRequest): Promise<responses.GetAnalyticsClusterResponse>;
|
|
482
485
|
/**
|
|
@@ -488,7 +491,7 @@ export declare class DbSystemClient {
|
|
|
488
491
|
* @param GetAnalyticsClusterMemoryEstimateRequest
|
|
489
492
|
* @return GetAnalyticsClusterMemoryEstimateResponse
|
|
490
493
|
* @throws OciError when an error occurs
|
|
491
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
494
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GetAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GetAnalyticsClusterMemoryEstimate API.
|
|
492
495
|
*/
|
|
493
496
|
getAnalyticsClusterMemoryEstimate(getAnalyticsClusterMemoryEstimateRequest: requests.GetAnalyticsClusterMemoryEstimateRequest): Promise<responses.GetAnalyticsClusterMemoryEstimateResponse>;
|
|
494
497
|
/**
|
|
@@ -497,7 +500,7 @@ export declare class DbSystemClient {
|
|
|
497
500
|
* @param GetDbSystemRequest
|
|
498
501
|
* @return GetDbSystemResponse
|
|
499
502
|
* @throws OciError when an error occurs
|
|
500
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
503
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
|
|
501
504
|
*/
|
|
502
505
|
getDbSystem(getDbSystemRequest: requests.GetDbSystemRequest): Promise<responses.GetDbSystemResponse>;
|
|
503
506
|
/**
|
|
@@ -506,7 +509,7 @@ export declare class DbSystemClient {
|
|
|
506
509
|
* @param GetHeatWaveClusterRequest
|
|
507
510
|
* @return GetHeatWaveClusterResponse
|
|
508
511
|
* @throws OciError when an error occurs
|
|
509
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
512
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
|
|
510
513
|
*/
|
|
511
514
|
getHeatWaveCluster(getHeatWaveClusterRequest: requests.GetHeatWaveClusterRequest): Promise<responses.GetHeatWaveClusterResponse>;
|
|
512
515
|
/**
|
|
@@ -517,7 +520,7 @@ export declare class DbSystemClient {
|
|
|
517
520
|
* @param GetHeatWaveClusterMemoryEstimateRequest
|
|
518
521
|
* @return GetHeatWaveClusterMemoryEstimateResponse
|
|
519
522
|
* @throws OciError when an error occurs
|
|
520
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
523
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
|
|
521
524
|
*/
|
|
522
525
|
getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest: requests.GetHeatWaveClusterMemoryEstimateRequest): Promise<responses.GetHeatWaveClusterMemoryEstimateResponse>;
|
|
523
526
|
/**
|
|
@@ -528,7 +531,7 @@ export declare class DbSystemClient {
|
|
|
528
531
|
* @param ListDbSystemsRequest
|
|
529
532
|
* @return ListDbSystemsResponse
|
|
530
533
|
* @throws OciError when an error occurs
|
|
531
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
534
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
|
|
532
535
|
*/
|
|
533
536
|
listDbSystems(listDbSystemsRequest: requests.ListDbSystemsRequest): Promise<responses.ListDbSystemsResponse>;
|
|
534
537
|
/**
|
|
@@ -571,7 +574,7 @@ export declare class DbSystemClient {
|
|
|
571
574
|
* @param RestartAnalyticsClusterRequest
|
|
572
575
|
* @return RestartAnalyticsClusterResponse
|
|
573
576
|
* @throws OciError when an error occurs
|
|
574
|
-
* @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.28.0/mysql/RestartAnalyticsCluster.ts.html |here} to see how to use RestartAnalyticsCluster API.
|
|
575
578
|
*/
|
|
576
579
|
restartAnalyticsCluster(restartAnalyticsClusterRequest: requests.RestartAnalyticsClusterRequest): Promise<responses.RestartAnalyticsClusterResponse>;
|
|
577
580
|
/**
|
|
@@ -580,7 +583,7 @@ export declare class DbSystemClient {
|
|
|
580
583
|
* @param RestartDbSystemRequest
|
|
581
584
|
* @return RestartDbSystemResponse
|
|
582
585
|
* @throws OciError when an error occurs
|
|
583
|
-
* @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.28.0/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
|
|
584
587
|
*/
|
|
585
588
|
restartDbSystem(restartDbSystemRequest: requests.RestartDbSystemRequest): Promise<responses.RestartDbSystemResponse>;
|
|
586
589
|
/**
|
|
@@ -589,7 +592,7 @@ export declare class DbSystemClient {
|
|
|
589
592
|
* @param RestartHeatWaveClusterRequest
|
|
590
593
|
* @return RestartHeatWaveClusterResponse
|
|
591
594
|
* @throws OciError when an error occurs
|
|
592
|
-
* @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.28.0/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
|
|
593
596
|
*/
|
|
594
597
|
restartHeatWaveCluster(restartHeatWaveClusterRequest: requests.RestartHeatWaveClusterRequest): Promise<responses.RestartHeatWaveClusterResponse>;
|
|
595
598
|
/**
|
|
@@ -600,7 +603,7 @@ export declare class DbSystemClient {
|
|
|
600
603
|
* @param StartAnalyticsClusterRequest
|
|
601
604
|
* @return StartAnalyticsClusterResponse
|
|
602
605
|
* @throws OciError when an error occurs
|
|
603
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
606
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/StartAnalyticsCluster.ts.html |here} to see how to use StartAnalyticsCluster API.
|
|
604
607
|
*/
|
|
605
608
|
startAnalyticsCluster(startAnalyticsClusterRequest: requests.StartAnalyticsClusterRequest): Promise<responses.StartAnalyticsClusterResponse>;
|
|
606
609
|
/**
|
|
@@ -609,7 +612,7 @@ export declare class DbSystemClient {
|
|
|
609
612
|
* @param StartDbSystemRequest
|
|
610
613
|
* @return StartDbSystemResponse
|
|
611
614
|
* @throws OciError when an error occurs
|
|
612
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
615
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
|
|
613
616
|
*/
|
|
614
617
|
startDbSystem(startDbSystemRequest: requests.StartDbSystemRequest): Promise<responses.StartDbSystemResponse>;
|
|
615
618
|
/**
|
|
@@ -618,7 +621,7 @@ export declare class DbSystemClient {
|
|
|
618
621
|
* @param StartHeatWaveClusterRequest
|
|
619
622
|
* @return StartHeatWaveClusterResponse
|
|
620
623
|
* @throws OciError when an error occurs
|
|
621
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
624
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
|
|
622
625
|
*/
|
|
623
626
|
startHeatWaveCluster(startHeatWaveClusterRequest: requests.StartHeatWaveClusterRequest): Promise<responses.StartHeatWaveClusterResponse>;
|
|
624
627
|
/**
|
|
@@ -629,7 +632,7 @@ export declare class DbSystemClient {
|
|
|
629
632
|
* @param StopAnalyticsClusterRequest
|
|
630
633
|
* @return StopAnalyticsClusterResponse
|
|
631
634
|
* @throws OciError when an error occurs
|
|
632
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
635
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/StopAnalyticsCluster.ts.html |here} to see how to use StopAnalyticsCluster API.
|
|
633
636
|
*/
|
|
634
637
|
stopAnalyticsCluster(stopAnalyticsClusterRequest: requests.StopAnalyticsClusterRequest): Promise<responses.StopAnalyticsClusterResponse>;
|
|
635
638
|
/**
|
|
@@ -641,7 +644,7 @@ export declare class DbSystemClient {
|
|
|
641
644
|
* @param StopDbSystemRequest
|
|
642
645
|
* @return StopDbSystemResponse
|
|
643
646
|
* @throws OciError when an error occurs
|
|
644
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
647
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
|
|
645
648
|
*/
|
|
646
649
|
stopDbSystem(stopDbSystemRequest: requests.StopDbSystemRequest): Promise<responses.StopDbSystemResponse>;
|
|
647
650
|
/**
|
|
@@ -650,7 +653,7 @@ export declare class DbSystemClient {
|
|
|
650
653
|
* @param StopHeatWaveClusterRequest
|
|
651
654
|
* @return StopHeatWaveClusterResponse
|
|
652
655
|
* @throws OciError when an error occurs
|
|
653
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
656
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
|
|
654
657
|
*/
|
|
655
658
|
stopHeatWaveCluster(stopHeatWaveClusterRequest: requests.StopHeatWaveClusterRequest): Promise<responses.StopHeatWaveClusterResponse>;
|
|
656
659
|
/**
|
|
@@ -661,7 +664,7 @@ export declare class DbSystemClient {
|
|
|
661
664
|
* @param UpdateAnalyticsClusterRequest
|
|
662
665
|
* @return UpdateAnalyticsClusterResponse
|
|
663
666
|
* @throws OciError when an error occurs
|
|
664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
667
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/UpdateAnalyticsCluster.ts.html |here} to see how to use UpdateAnalyticsCluster API.
|
|
665
668
|
*/
|
|
666
669
|
updateAnalyticsCluster(updateAnalyticsClusterRequest: requests.UpdateAnalyticsClusterRequest): Promise<responses.UpdateAnalyticsClusterResponse>;
|
|
667
670
|
/**
|
|
@@ -678,7 +681,7 @@ export declare class DbSystemClient {
|
|
|
678
681
|
* @param UpdateDbSystemRequest
|
|
679
682
|
* @return UpdateDbSystemResponse
|
|
680
683
|
* @throws OciError when an error occurs
|
|
681
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
684
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
|
|
682
685
|
*/
|
|
683
686
|
updateDbSystem(updateDbSystemRequest: requests.UpdateDbSystemRequest): Promise<responses.UpdateDbSystemResponse>;
|
|
684
687
|
/**
|
|
@@ -688,7 +691,7 @@ export declare class DbSystemClient {
|
|
|
688
691
|
* @param UpdateHeatWaveClusterRequest
|
|
689
692
|
* @return UpdateHeatWaveClusterResponse
|
|
690
693
|
* @throws OciError when an error occurs
|
|
691
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
694
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
|
|
692
695
|
*/
|
|
693
696
|
updateHeatWaveCluster(updateHeatWaveClusterRequest: requests.UpdateHeatWaveClusterRequest): Promise<responses.UpdateHeatWaveClusterResponse>;
|
|
694
697
|
}
|
|
@@ -706,6 +709,7 @@ export declare class MysqlaasClient {
|
|
|
706
709
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
707
710
|
protected _circuitBreaker: null;
|
|
708
711
|
protected _httpOptions: any;
|
|
712
|
+
targetService: string;
|
|
709
713
|
protected _httpClient: common.HttpClient;
|
|
710
714
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
711
715
|
/**
|
|
@@ -752,7 +756,7 @@ export declare class MysqlaasClient {
|
|
|
752
756
|
* @param CreateConfigurationRequest
|
|
753
757
|
* @return CreateConfigurationResponse
|
|
754
758
|
* @throws OciError when an error occurs
|
|
755
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
759
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
|
|
756
760
|
*/
|
|
757
761
|
createConfiguration(createConfigurationRequest: requests.CreateConfigurationRequest): Promise<responses.CreateConfigurationResponse>;
|
|
758
762
|
/**
|
|
@@ -763,7 +767,7 @@ export declare class MysqlaasClient {
|
|
|
763
767
|
* @param DeleteConfigurationRequest
|
|
764
768
|
* @return DeleteConfigurationResponse
|
|
765
769
|
* @throws OciError when an error occurs
|
|
766
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
770
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
|
|
767
771
|
*/
|
|
768
772
|
deleteConfiguration(deleteConfigurationRequest: requests.DeleteConfigurationRequest): Promise<responses.DeleteConfigurationResponse>;
|
|
769
773
|
/**
|
|
@@ -773,7 +777,7 @@ export declare class MysqlaasClient {
|
|
|
773
777
|
* @param GetConfigurationRequest
|
|
774
778
|
* @return GetConfigurationResponse
|
|
775
779
|
* @throws OciError when an error occurs
|
|
776
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
780
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
|
|
777
781
|
*/
|
|
778
782
|
getConfiguration(getConfigurationRequest: requests.GetConfigurationRequest): Promise<responses.GetConfigurationResponse>;
|
|
779
783
|
/**
|
|
@@ -790,7 +794,7 @@ export declare class MysqlaasClient {
|
|
|
790
794
|
* @param ListConfigurationsRequest
|
|
791
795
|
* @return ListConfigurationsResponse
|
|
792
796
|
* @throws OciError when an error occurs
|
|
793
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
797
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
|
|
794
798
|
*/
|
|
795
799
|
listConfigurations(listConfigurationsRequest: requests.ListConfigurationsRequest): Promise<responses.ListConfigurationsResponse>;
|
|
796
800
|
/**
|
|
@@ -835,7 +839,7 @@ export declare class MysqlaasClient {
|
|
|
835
839
|
* @param ListShapesRequest
|
|
836
840
|
* @return ListShapesResponse
|
|
837
841
|
* @throws OciError when an error occurs
|
|
838
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
842
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
839
843
|
*/
|
|
840
844
|
listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
|
|
841
845
|
/**
|
|
@@ -847,7 +851,7 @@ export declare class MysqlaasClient {
|
|
|
847
851
|
* @param ListVersionsRequest
|
|
848
852
|
* @return ListVersionsResponse
|
|
849
853
|
* @throws OciError when an error occurs
|
|
850
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
854
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
|
|
851
855
|
*/
|
|
852
856
|
listVersions(listVersionsRequest: requests.ListVersionsRequest): Promise<responses.ListVersionsResponse>;
|
|
853
857
|
/**
|
|
@@ -856,7 +860,7 @@ export declare class MysqlaasClient {
|
|
|
856
860
|
* @param UpdateConfigurationRequest
|
|
857
861
|
* @return UpdateConfigurationResponse
|
|
858
862
|
* @throws OciError when an error occurs
|
|
859
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
863
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
|
|
860
864
|
*/
|
|
861
865
|
updateConfiguration(updateConfigurationRequest: requests.UpdateConfigurationRequest): Promise<responses.UpdateConfigurationResponse>;
|
|
862
866
|
}
|
|
@@ -874,6 +878,7 @@ export declare class WorkRequestsClient {
|
|
|
874
878
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
875
879
|
protected _circuitBreaker: null;
|
|
876
880
|
protected _httpOptions: any;
|
|
881
|
+
targetService: string;
|
|
877
882
|
protected _httpClient: common.HttpClient;
|
|
878
883
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
879
884
|
/**
|
|
@@ -920,7 +925,7 @@ export declare class WorkRequestsClient {
|
|
|
920
925
|
* @param GetWorkRequestRequest
|
|
921
926
|
* @return GetWorkRequestResponse
|
|
922
927
|
* @throws OciError when an error occurs
|
|
923
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
928
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
924
929
|
*/
|
|
925
930
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
926
931
|
/**
|
|
@@ -930,7 +935,7 @@ export declare class WorkRequestsClient {
|
|
|
930
935
|
* @param ListWorkRequestErrorsRequest
|
|
931
936
|
* @return ListWorkRequestErrorsResponse
|
|
932
937
|
* @throws OciError when an error occurs
|
|
933
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
938
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
934
939
|
*/
|
|
935
940
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
936
941
|
/**
|
|
@@ -972,7 +977,7 @@ export declare class WorkRequestsClient {
|
|
|
972
977
|
* @param ListWorkRequestLogsRequest
|
|
973
978
|
* @return ListWorkRequestLogsResponse
|
|
974
979
|
* @throws OciError when an error occurs
|
|
975
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
980
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
976
981
|
*/
|
|
977
982
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
978
983
|
/**
|
|
@@ -1014,7 +1019,7 @@ export declare class WorkRequestsClient {
|
|
|
1014
1019
|
* @param ListWorkRequestsRequest
|
|
1015
1020
|
* @return ListWorkRequestsResponse
|
|
1016
1021
|
* @throws OciError when an error occurs
|
|
1017
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1022
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1018
1023
|
*/
|
|
1019
1024
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
1020
1025
|
/**
|