oci-mysql 2.11.0 → 2.13.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 +65 -60
- 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
|
@@ -26,6 +26,7 @@ export declare enum ChannelsApiKeys {
|
|
|
26
26
|
*/
|
|
27
27
|
export declare class ChannelsClient {
|
|
28
28
|
protected static serviceEndpointTemplate: string;
|
|
29
|
+
protected static endpointServiceName: string;
|
|
29
30
|
protected "_endpoint": string;
|
|
30
31
|
protected "_defaultHeaders": any;
|
|
31
32
|
protected "_waiters": ChannelsWaiter;
|
|
@@ -78,7 +79,7 @@ export declare class ChannelsClient {
|
|
|
78
79
|
* @param CreateChannelRequest
|
|
79
80
|
* @return CreateChannelResponse
|
|
80
81
|
* @throws OciError when an error occurs
|
|
81
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
82
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
|
|
82
83
|
*/
|
|
83
84
|
createChannel(createChannelRequest: requests.CreateChannelRequest): Promise<responses.CreateChannelResponse>;
|
|
84
85
|
/**
|
|
@@ -87,7 +88,7 @@ export declare class ChannelsClient {
|
|
|
87
88
|
* @param DeleteChannelRequest
|
|
88
89
|
* @return DeleteChannelResponse
|
|
89
90
|
* @throws OciError when an error occurs
|
|
90
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
91
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
|
|
91
92
|
*/
|
|
92
93
|
deleteChannel(deleteChannelRequest: requests.DeleteChannelRequest): Promise<responses.DeleteChannelResponse>;
|
|
93
94
|
/**
|
|
@@ -99,7 +100,7 @@ export declare class ChannelsClient {
|
|
|
99
100
|
* @param GetChannelRequest
|
|
100
101
|
* @return GetChannelResponse
|
|
101
102
|
* @throws OciError when an error occurs
|
|
102
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
|
|
103
104
|
*/
|
|
104
105
|
getChannel(getChannelRequest: requests.GetChannelRequest): Promise<responses.GetChannelResponse>;
|
|
105
106
|
/**
|
|
@@ -108,7 +109,7 @@ export declare class ChannelsClient {
|
|
|
108
109
|
* @param ListChannelsRequest
|
|
109
110
|
* @return ListChannelsResponse
|
|
110
111
|
* @throws OciError when an error occurs
|
|
111
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
112
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
|
|
112
113
|
*/
|
|
113
114
|
listChannels(listChannelsRequest: requests.ListChannelsRequest): Promise<responses.ListChannelsResponse>;
|
|
114
115
|
/**
|
|
@@ -151,7 +152,7 @@ export declare class ChannelsClient {
|
|
|
151
152
|
* @param ResetChannelRequest
|
|
152
153
|
* @return ResetChannelResponse
|
|
153
154
|
* @throws OciError when an error occurs
|
|
154
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
155
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
|
|
155
156
|
*/
|
|
156
157
|
resetChannel(resetChannelRequest: requests.ResetChannelRequest): Promise<responses.ResetChannelResponse>;
|
|
157
158
|
/**
|
|
@@ -163,7 +164,7 @@ export declare class ChannelsClient {
|
|
|
163
164
|
* @param ResumeChannelRequest
|
|
164
165
|
* @return ResumeChannelResponse
|
|
165
166
|
* @throws OciError when an error occurs
|
|
166
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
167
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
|
|
167
168
|
*/
|
|
168
169
|
resumeChannel(resumeChannelRequest: requests.ResumeChannelRequest): Promise<responses.ResumeChannelResponse>;
|
|
169
170
|
/**
|
|
@@ -176,7 +177,7 @@ export declare class ChannelsClient {
|
|
|
176
177
|
* @param UpdateChannelRequest
|
|
177
178
|
* @return UpdateChannelResponse
|
|
178
179
|
* @throws OciError when an error occurs
|
|
179
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
180
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
|
|
180
181
|
*/
|
|
181
182
|
updateChannel(updateChannelRequest: requests.UpdateChannelRequest): Promise<responses.UpdateChannelResponse>;
|
|
182
183
|
}
|
|
@@ -187,6 +188,7 @@ export declare enum DbBackupsApiKeys {
|
|
|
187
188
|
*/
|
|
188
189
|
export declare class DbBackupsClient {
|
|
189
190
|
protected static serviceEndpointTemplate: string;
|
|
191
|
+
protected static endpointServiceName: string;
|
|
190
192
|
protected "_endpoint": string;
|
|
191
193
|
protected "_defaultHeaders": any;
|
|
192
194
|
protected "_waiters": DbBackupsWaiter;
|
|
@@ -240,7 +242,7 @@ export declare class DbBackupsClient {
|
|
|
240
242
|
* @param ChangeBackupCompartmentRequest
|
|
241
243
|
* @return ChangeBackupCompartmentResponse
|
|
242
244
|
* @throws OciError when an error occurs
|
|
243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
245
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
|
|
244
246
|
*/
|
|
245
247
|
changeBackupCompartment(changeBackupCompartmentRequest: requests.ChangeBackupCompartmentRequest): Promise<responses.ChangeBackupCompartmentResponse>;
|
|
246
248
|
/**
|
|
@@ -250,7 +252,7 @@ export declare class DbBackupsClient {
|
|
|
250
252
|
* @param CreateBackupRequest
|
|
251
253
|
* @return CreateBackupResponse
|
|
252
254
|
* @throws OciError when an error occurs
|
|
253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
255
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
|
|
254
256
|
*/
|
|
255
257
|
createBackup(createBackupRequest: requests.CreateBackupRequest): Promise<responses.CreateBackupResponse>;
|
|
256
258
|
/**
|
|
@@ -260,7 +262,7 @@ export declare class DbBackupsClient {
|
|
|
260
262
|
* @param DeleteBackupRequest
|
|
261
263
|
* @return DeleteBackupResponse
|
|
262
264
|
* @throws OciError when an error occurs
|
|
263
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
265
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
|
|
264
266
|
*/
|
|
265
267
|
deleteBackup(deleteBackupRequest: requests.DeleteBackupRequest): Promise<responses.DeleteBackupResponse>;
|
|
266
268
|
/**
|
|
@@ -269,7 +271,7 @@ export declare class DbBackupsClient {
|
|
|
269
271
|
* @param GetBackupRequest
|
|
270
272
|
* @return GetBackupResponse
|
|
271
273
|
* @throws OciError when an error occurs
|
|
272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
274
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
|
|
273
275
|
*/
|
|
274
276
|
getBackup(getBackupRequest: requests.GetBackupRequest): Promise<responses.GetBackupResponse>;
|
|
275
277
|
/**
|
|
@@ -279,7 +281,7 @@ export declare class DbBackupsClient {
|
|
|
279
281
|
* @param ListBackupsRequest
|
|
280
282
|
* @return ListBackupsResponse
|
|
281
283
|
* @throws OciError when an error occurs
|
|
282
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
284
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
|
|
283
285
|
*/
|
|
284
286
|
listBackups(listBackupsRequest: requests.ListBackupsRequest): Promise<responses.ListBackupsResponse>;
|
|
285
287
|
/**
|
|
@@ -320,7 +322,7 @@ export declare class DbBackupsClient {
|
|
|
320
322
|
* @param UpdateBackupRequest
|
|
321
323
|
* @return UpdateBackupResponse
|
|
322
324
|
* @throws OciError when an error occurs
|
|
323
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
325
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
|
|
324
326
|
*/
|
|
325
327
|
updateBackup(updateBackupRequest: requests.UpdateBackupRequest): Promise<responses.UpdateBackupResponse>;
|
|
326
328
|
}
|
|
@@ -331,6 +333,7 @@ export declare enum DbSystemApiKeys {
|
|
|
331
333
|
*/
|
|
332
334
|
export declare class DbSystemClient {
|
|
333
335
|
protected static serviceEndpointTemplate: string;
|
|
336
|
+
protected static endpointServiceName: string;
|
|
334
337
|
protected "_endpoint": string;
|
|
335
338
|
protected "_defaultHeaders": any;
|
|
336
339
|
protected "_waiters": DbSystemWaiter;
|
|
@@ -384,7 +387,7 @@ export declare class DbSystemClient {
|
|
|
384
387
|
* @param AddAnalyticsClusterRequest
|
|
385
388
|
* @return AddAnalyticsClusterResponse
|
|
386
389
|
* @throws OciError when an error occurs
|
|
387
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
390
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/AddAnalyticsCluster.ts.html |here} to see how to use AddAnalyticsCluster API.
|
|
388
391
|
*/
|
|
389
392
|
addAnalyticsCluster(addAnalyticsClusterRequest: requests.AddAnalyticsClusterRequest): Promise<responses.AddAnalyticsClusterResponse>;
|
|
390
393
|
/**
|
|
@@ -394,7 +397,7 @@ export declare class DbSystemClient {
|
|
|
394
397
|
* @param AddHeatWaveClusterRequest
|
|
395
398
|
* @return AddHeatWaveClusterResponse
|
|
396
399
|
* @throws OciError when an error occurs
|
|
397
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
400
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
|
|
398
401
|
*/
|
|
399
402
|
addHeatWaveCluster(addHeatWaveClusterRequest: requests.AddHeatWaveClusterRequest): Promise<responses.AddHeatWaveClusterResponse>;
|
|
400
403
|
/**
|
|
@@ -404,7 +407,7 @@ export declare class DbSystemClient {
|
|
|
404
407
|
* @param CreateDbSystemRequest
|
|
405
408
|
* @return CreateDbSystemResponse
|
|
406
409
|
* @throws OciError when an error occurs
|
|
407
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
|
|
408
411
|
*/
|
|
409
412
|
createDbSystem(createDbSystemRequest: requests.CreateDbSystemRequest): Promise<responses.CreateDbSystemResponse>;
|
|
410
413
|
/**
|
|
@@ -416,7 +419,7 @@ export declare class DbSystemClient {
|
|
|
416
419
|
* @param DeleteAnalyticsClusterRequest
|
|
417
420
|
* @return DeleteAnalyticsClusterResponse
|
|
418
421
|
* @throws OciError when an error occurs
|
|
419
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
422
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/DeleteAnalyticsCluster.ts.html |here} to see how to use DeleteAnalyticsCluster API.
|
|
420
423
|
*/
|
|
421
424
|
deleteAnalyticsCluster(deleteAnalyticsClusterRequest: requests.DeleteAnalyticsClusterRequest): Promise<responses.DeleteAnalyticsClusterResponse>;
|
|
422
425
|
/**
|
|
@@ -427,7 +430,7 @@ export declare class DbSystemClient {
|
|
|
427
430
|
* @param DeleteDbSystemRequest
|
|
428
431
|
* @return DeleteDbSystemResponse
|
|
429
432
|
* @throws OciError when an error occurs
|
|
430
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
433
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
|
|
431
434
|
*/
|
|
432
435
|
deleteDbSystem(deleteDbSystemRequest: requests.DeleteDbSystemRequest): Promise<responses.DeleteDbSystemResponse>;
|
|
433
436
|
/**
|
|
@@ -438,7 +441,7 @@ export declare class DbSystemClient {
|
|
|
438
441
|
* @param DeleteHeatWaveClusterRequest
|
|
439
442
|
* @return DeleteHeatWaveClusterResponse
|
|
440
443
|
* @throws OciError when an error occurs
|
|
441
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
444
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
|
|
442
445
|
*/
|
|
443
446
|
deleteHeatWaveCluster(deleteHeatWaveClusterRequest: requests.DeleteHeatWaveClusterRequest): Promise<responses.DeleteHeatWaveClusterResponse>;
|
|
444
447
|
/**
|
|
@@ -449,7 +452,7 @@ export declare class DbSystemClient {
|
|
|
449
452
|
* @param GenerateAnalyticsClusterMemoryEstimateRequest
|
|
450
453
|
* @return GenerateAnalyticsClusterMemoryEstimateResponse
|
|
451
454
|
* @throws OciError when an error occurs
|
|
452
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GenerateAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GenerateAnalyticsClusterMemoryEstimate API.
|
|
453
456
|
*/
|
|
454
457
|
generateAnalyticsClusterMemoryEstimate(generateAnalyticsClusterMemoryEstimateRequest: requests.GenerateAnalyticsClusterMemoryEstimateRequest): Promise<responses.GenerateAnalyticsClusterMemoryEstimateResponse>;
|
|
455
458
|
/**
|
|
@@ -459,7 +462,7 @@ export declare class DbSystemClient {
|
|
|
459
462
|
* @param GenerateHeatWaveClusterMemoryEstimateRequest
|
|
460
463
|
* @return GenerateHeatWaveClusterMemoryEstimateResponse
|
|
461
464
|
* @throws OciError when an error occurs
|
|
462
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
465
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
|
|
463
466
|
*/
|
|
464
467
|
generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest: requests.GenerateHeatWaveClusterMemoryEstimateRequest): Promise<responses.GenerateHeatWaveClusterMemoryEstimateResponse>;
|
|
465
468
|
/**
|
|
@@ -470,7 +473,7 @@ export declare class DbSystemClient {
|
|
|
470
473
|
* @param GetAnalyticsClusterRequest
|
|
471
474
|
* @return GetAnalyticsClusterResponse
|
|
472
475
|
* @throws OciError when an error occurs
|
|
473
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
476
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetAnalyticsCluster.ts.html |here} to see how to use GetAnalyticsCluster API.
|
|
474
477
|
*/
|
|
475
478
|
getAnalyticsCluster(getAnalyticsClusterRequest: requests.GetAnalyticsClusterRequest): Promise<responses.GetAnalyticsClusterResponse>;
|
|
476
479
|
/**
|
|
@@ -482,7 +485,7 @@ export declare class DbSystemClient {
|
|
|
482
485
|
* @param GetAnalyticsClusterMemoryEstimateRequest
|
|
483
486
|
* @return GetAnalyticsClusterMemoryEstimateResponse
|
|
484
487
|
* @throws OciError when an error occurs
|
|
485
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
488
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GetAnalyticsClusterMemoryEstimate API.
|
|
486
489
|
*/
|
|
487
490
|
getAnalyticsClusterMemoryEstimate(getAnalyticsClusterMemoryEstimateRequest: requests.GetAnalyticsClusterMemoryEstimateRequest): Promise<responses.GetAnalyticsClusterMemoryEstimateResponse>;
|
|
488
491
|
/**
|
|
@@ -491,7 +494,7 @@ export declare class DbSystemClient {
|
|
|
491
494
|
* @param GetDbSystemRequest
|
|
492
495
|
* @return GetDbSystemResponse
|
|
493
496
|
* @throws OciError when an error occurs
|
|
494
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
497
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
|
|
495
498
|
*/
|
|
496
499
|
getDbSystem(getDbSystemRequest: requests.GetDbSystemRequest): Promise<responses.GetDbSystemResponse>;
|
|
497
500
|
/**
|
|
@@ -500,7 +503,7 @@ export declare class DbSystemClient {
|
|
|
500
503
|
* @param GetHeatWaveClusterRequest
|
|
501
504
|
* @return GetHeatWaveClusterResponse
|
|
502
505
|
* @throws OciError when an error occurs
|
|
503
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
506
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
|
|
504
507
|
*/
|
|
505
508
|
getHeatWaveCluster(getHeatWaveClusterRequest: requests.GetHeatWaveClusterRequest): Promise<responses.GetHeatWaveClusterResponse>;
|
|
506
509
|
/**
|
|
@@ -511,7 +514,7 @@ export declare class DbSystemClient {
|
|
|
511
514
|
* @param GetHeatWaveClusterMemoryEstimateRequest
|
|
512
515
|
* @return GetHeatWaveClusterMemoryEstimateResponse
|
|
513
516
|
* @throws OciError when an error occurs
|
|
514
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
517
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
|
|
515
518
|
*/
|
|
516
519
|
getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest: requests.GetHeatWaveClusterMemoryEstimateRequest): Promise<responses.GetHeatWaveClusterMemoryEstimateResponse>;
|
|
517
520
|
/**
|
|
@@ -522,7 +525,7 @@ export declare class DbSystemClient {
|
|
|
522
525
|
* @param ListDbSystemsRequest
|
|
523
526
|
* @return ListDbSystemsResponse
|
|
524
527
|
* @throws OciError when an error occurs
|
|
525
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
528
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
|
|
526
529
|
*/
|
|
527
530
|
listDbSystems(listDbSystemsRequest: requests.ListDbSystemsRequest): Promise<responses.ListDbSystemsResponse>;
|
|
528
531
|
/**
|
|
@@ -565,7 +568,7 @@ export declare class DbSystemClient {
|
|
|
565
568
|
* @param RestartAnalyticsClusterRequest
|
|
566
569
|
* @return RestartAnalyticsClusterResponse
|
|
567
570
|
* @throws OciError when an error occurs
|
|
568
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
571
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/RestartAnalyticsCluster.ts.html |here} to see how to use RestartAnalyticsCluster API.
|
|
569
572
|
*/
|
|
570
573
|
restartAnalyticsCluster(restartAnalyticsClusterRequest: requests.RestartAnalyticsClusterRequest): Promise<responses.RestartAnalyticsClusterResponse>;
|
|
571
574
|
/**
|
|
@@ -574,7 +577,7 @@ export declare class DbSystemClient {
|
|
|
574
577
|
* @param RestartDbSystemRequest
|
|
575
578
|
* @return RestartDbSystemResponse
|
|
576
579
|
* @throws OciError when an error occurs
|
|
577
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
580
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
|
|
578
581
|
*/
|
|
579
582
|
restartDbSystem(restartDbSystemRequest: requests.RestartDbSystemRequest): Promise<responses.RestartDbSystemResponse>;
|
|
580
583
|
/**
|
|
@@ -583,7 +586,7 @@ export declare class DbSystemClient {
|
|
|
583
586
|
* @param RestartHeatWaveClusterRequest
|
|
584
587
|
* @return RestartHeatWaveClusterResponse
|
|
585
588
|
* @throws OciError when an error occurs
|
|
586
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
589
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
|
|
587
590
|
*/
|
|
588
591
|
restartHeatWaveCluster(restartHeatWaveClusterRequest: requests.RestartHeatWaveClusterRequest): Promise<responses.RestartHeatWaveClusterResponse>;
|
|
589
592
|
/**
|
|
@@ -594,7 +597,7 @@ export declare class DbSystemClient {
|
|
|
594
597
|
* @param StartAnalyticsClusterRequest
|
|
595
598
|
* @return StartAnalyticsClusterResponse
|
|
596
599
|
* @throws OciError when an error occurs
|
|
597
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
600
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/StartAnalyticsCluster.ts.html |here} to see how to use StartAnalyticsCluster API.
|
|
598
601
|
*/
|
|
599
602
|
startAnalyticsCluster(startAnalyticsClusterRequest: requests.StartAnalyticsClusterRequest): Promise<responses.StartAnalyticsClusterResponse>;
|
|
600
603
|
/**
|
|
@@ -603,7 +606,7 @@ export declare class DbSystemClient {
|
|
|
603
606
|
* @param StartDbSystemRequest
|
|
604
607
|
* @return StartDbSystemResponse
|
|
605
608
|
* @throws OciError when an error occurs
|
|
606
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
609
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
|
|
607
610
|
*/
|
|
608
611
|
startDbSystem(startDbSystemRequest: requests.StartDbSystemRequest): Promise<responses.StartDbSystemResponse>;
|
|
609
612
|
/**
|
|
@@ -612,7 +615,7 @@ export declare class DbSystemClient {
|
|
|
612
615
|
* @param StartHeatWaveClusterRequest
|
|
613
616
|
* @return StartHeatWaveClusterResponse
|
|
614
617
|
* @throws OciError when an error occurs
|
|
615
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
618
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
|
|
616
619
|
*/
|
|
617
620
|
startHeatWaveCluster(startHeatWaveClusterRequest: requests.StartHeatWaveClusterRequest): Promise<responses.StartHeatWaveClusterResponse>;
|
|
618
621
|
/**
|
|
@@ -623,7 +626,7 @@ export declare class DbSystemClient {
|
|
|
623
626
|
* @param StopAnalyticsClusterRequest
|
|
624
627
|
* @return StopAnalyticsClusterResponse
|
|
625
628
|
* @throws OciError when an error occurs
|
|
626
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
629
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/StopAnalyticsCluster.ts.html |here} to see how to use StopAnalyticsCluster API.
|
|
627
630
|
*/
|
|
628
631
|
stopAnalyticsCluster(stopAnalyticsClusterRequest: requests.StopAnalyticsClusterRequest): Promise<responses.StopAnalyticsClusterResponse>;
|
|
629
632
|
/**
|
|
@@ -635,7 +638,7 @@ export declare class DbSystemClient {
|
|
|
635
638
|
* @param StopDbSystemRequest
|
|
636
639
|
* @return StopDbSystemResponse
|
|
637
640
|
* @throws OciError when an error occurs
|
|
638
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
641
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
|
|
639
642
|
*/
|
|
640
643
|
stopDbSystem(stopDbSystemRequest: requests.StopDbSystemRequest): Promise<responses.StopDbSystemResponse>;
|
|
641
644
|
/**
|
|
@@ -644,7 +647,7 @@ export declare class DbSystemClient {
|
|
|
644
647
|
* @param StopHeatWaveClusterRequest
|
|
645
648
|
* @return StopHeatWaveClusterResponse
|
|
646
649
|
* @throws OciError when an error occurs
|
|
647
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
650
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
|
|
648
651
|
*/
|
|
649
652
|
stopHeatWaveCluster(stopHeatWaveClusterRequest: requests.StopHeatWaveClusterRequest): Promise<responses.StopHeatWaveClusterResponse>;
|
|
650
653
|
/**
|
|
@@ -655,7 +658,7 @@ export declare class DbSystemClient {
|
|
|
655
658
|
* @param UpdateAnalyticsClusterRequest
|
|
656
659
|
* @return UpdateAnalyticsClusterResponse
|
|
657
660
|
* @throws OciError when an error occurs
|
|
658
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
661
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/UpdateAnalyticsCluster.ts.html |here} to see how to use UpdateAnalyticsCluster API.
|
|
659
662
|
*/
|
|
660
663
|
updateAnalyticsCluster(updateAnalyticsClusterRequest: requests.UpdateAnalyticsClusterRequest): Promise<responses.UpdateAnalyticsClusterResponse>;
|
|
661
664
|
/**
|
|
@@ -672,7 +675,7 @@ export declare class DbSystemClient {
|
|
|
672
675
|
* @param UpdateDbSystemRequest
|
|
673
676
|
* @return UpdateDbSystemResponse
|
|
674
677
|
* @throws OciError when an error occurs
|
|
675
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
678
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
|
|
676
679
|
*/
|
|
677
680
|
updateDbSystem(updateDbSystemRequest: requests.UpdateDbSystemRequest): Promise<responses.UpdateDbSystemResponse>;
|
|
678
681
|
/**
|
|
@@ -682,7 +685,7 @@ export declare class DbSystemClient {
|
|
|
682
685
|
* @param UpdateHeatWaveClusterRequest
|
|
683
686
|
* @return UpdateHeatWaveClusterResponse
|
|
684
687
|
* @throws OciError when an error occurs
|
|
685
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
688
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
|
|
686
689
|
*/
|
|
687
690
|
updateHeatWaveCluster(updateHeatWaveClusterRequest: requests.UpdateHeatWaveClusterRequest): Promise<responses.UpdateHeatWaveClusterResponse>;
|
|
688
691
|
}
|
|
@@ -693,6 +696,7 @@ export declare enum MysqlaasApiKeys {
|
|
|
693
696
|
*/
|
|
694
697
|
export declare class MysqlaasClient {
|
|
695
698
|
protected static serviceEndpointTemplate: string;
|
|
699
|
+
protected static endpointServiceName: string;
|
|
696
700
|
protected "_endpoint": string;
|
|
697
701
|
protected "_defaultHeaders": any;
|
|
698
702
|
protected "_waiters": MysqlaasWaiter;
|
|
@@ -744,7 +748,7 @@ export declare class MysqlaasClient {
|
|
|
744
748
|
* @param CreateConfigurationRequest
|
|
745
749
|
* @return CreateConfigurationResponse
|
|
746
750
|
* @throws OciError when an error occurs
|
|
747
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
751
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
|
|
748
752
|
*/
|
|
749
753
|
createConfiguration(createConfigurationRequest: requests.CreateConfigurationRequest): Promise<responses.CreateConfigurationResponse>;
|
|
750
754
|
/**
|
|
@@ -755,7 +759,7 @@ export declare class MysqlaasClient {
|
|
|
755
759
|
* @param DeleteConfigurationRequest
|
|
756
760
|
* @return DeleteConfigurationResponse
|
|
757
761
|
* @throws OciError when an error occurs
|
|
758
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
762
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
|
|
759
763
|
*/
|
|
760
764
|
deleteConfiguration(deleteConfigurationRequest: requests.DeleteConfigurationRequest): Promise<responses.DeleteConfigurationResponse>;
|
|
761
765
|
/**
|
|
@@ -765,7 +769,7 @@ export declare class MysqlaasClient {
|
|
|
765
769
|
* @param GetConfigurationRequest
|
|
766
770
|
* @return GetConfigurationResponse
|
|
767
771
|
* @throws OciError when an error occurs
|
|
768
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
772
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
|
|
769
773
|
*/
|
|
770
774
|
getConfiguration(getConfigurationRequest: requests.GetConfigurationRequest): Promise<responses.GetConfigurationResponse>;
|
|
771
775
|
/**
|
|
@@ -782,7 +786,7 @@ export declare class MysqlaasClient {
|
|
|
782
786
|
* @param ListConfigurationsRequest
|
|
783
787
|
* @return ListConfigurationsResponse
|
|
784
788
|
* @throws OciError when an error occurs
|
|
785
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
789
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
|
|
786
790
|
*/
|
|
787
791
|
listConfigurations(listConfigurationsRequest: requests.ListConfigurationsRequest): Promise<responses.ListConfigurationsResponse>;
|
|
788
792
|
/**
|
|
@@ -827,7 +831,7 @@ export declare class MysqlaasClient {
|
|
|
827
831
|
* @param ListShapesRequest
|
|
828
832
|
* @return ListShapesResponse
|
|
829
833
|
* @throws OciError when an error occurs
|
|
830
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
834
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
831
835
|
*/
|
|
832
836
|
listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
|
|
833
837
|
/**
|
|
@@ -839,7 +843,7 @@ export declare class MysqlaasClient {
|
|
|
839
843
|
* @param ListVersionsRequest
|
|
840
844
|
* @return ListVersionsResponse
|
|
841
845
|
* @throws OciError when an error occurs
|
|
842
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
846
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
|
|
843
847
|
*/
|
|
844
848
|
listVersions(listVersionsRequest: requests.ListVersionsRequest): Promise<responses.ListVersionsResponse>;
|
|
845
849
|
/**
|
|
@@ -848,7 +852,7 @@ export declare class MysqlaasClient {
|
|
|
848
852
|
* @param UpdateConfigurationRequest
|
|
849
853
|
* @return UpdateConfigurationResponse
|
|
850
854
|
* @throws OciError when an error occurs
|
|
851
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
855
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
|
|
852
856
|
*/
|
|
853
857
|
updateConfiguration(updateConfigurationRequest: requests.UpdateConfigurationRequest): Promise<responses.UpdateConfigurationResponse>;
|
|
854
858
|
}
|
|
@@ -859,6 +863,7 @@ export declare enum WorkRequestsApiKeys {
|
|
|
859
863
|
*/
|
|
860
864
|
export declare class WorkRequestsClient {
|
|
861
865
|
protected static serviceEndpointTemplate: string;
|
|
866
|
+
protected static endpointServiceName: string;
|
|
862
867
|
protected "_endpoint": string;
|
|
863
868
|
protected "_defaultHeaders": any;
|
|
864
869
|
protected "_waiters": WorkRequestsWaiter;
|
|
@@ -910,7 +915,7 @@ export declare class WorkRequestsClient {
|
|
|
910
915
|
* @param GetWorkRequestRequest
|
|
911
916
|
* @return GetWorkRequestResponse
|
|
912
917
|
* @throws OciError when an error occurs
|
|
913
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
918
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
914
919
|
*/
|
|
915
920
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
916
921
|
/**
|
|
@@ -920,7 +925,7 @@ export declare class WorkRequestsClient {
|
|
|
920
925
|
* @param ListWorkRequestErrorsRequest
|
|
921
926
|
* @return ListWorkRequestErrorsResponse
|
|
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.13.0/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
924
929
|
*/
|
|
925
930
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
926
931
|
/**
|
|
@@ -962,7 +967,7 @@ export declare class WorkRequestsClient {
|
|
|
962
967
|
* @param ListWorkRequestLogsRequest
|
|
963
968
|
* @return ListWorkRequestLogsResponse
|
|
964
969
|
* @throws OciError when an error occurs
|
|
965
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
970
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
966
971
|
*/
|
|
967
972
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
968
973
|
/**
|
|
@@ -1004,7 +1009,7 @@ export declare class WorkRequestsClient {
|
|
|
1004
1009
|
* @param ListWorkRequestsRequest
|
|
1005
1010
|
* @return ListWorkRequestsResponse
|
|
1006
1011
|
* @throws OciError when an error occurs
|
|
1007
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1012
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1008
1013
|
*/
|
|
1009
1014
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
1010
1015
|
/**
|