oci-mysql 2.5.1 → 2.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +6 -0
- package/lib/client.d.ts +50 -50
- package/lib/client.js +50 -50
- 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/LICENSE.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
|
|
4
|
+
|
|
5
|
+
____________________________
|
|
6
|
+
|
|
1
7
|
The Universal Permissive License (UPL), Version 1.0
|
|
2
8
|
|
|
3
9
|
Subject to the condition set forth below, permission is hereby granted to any
|
package/lib/client.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ export declare class ChannelsClient {
|
|
|
74
74
|
* @param CreateChannelRequest
|
|
75
75
|
* @return CreateChannelResponse
|
|
76
76
|
* @throws OciError when an error occurs
|
|
77
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
77
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/CreateChannel.ts.html |here} to see how to use CreateChannel API.
|
|
78
78
|
*/
|
|
79
79
|
createChannel(createChannelRequest: requests.CreateChannelRequest): Promise<responses.CreateChannelResponse>;
|
|
80
80
|
/**
|
|
@@ -82,7 +82,7 @@ export declare class ChannelsClient {
|
|
|
82
82
|
* @param DeleteChannelRequest
|
|
83
83
|
* @return DeleteChannelResponse
|
|
84
84
|
* @throws OciError when an error occurs
|
|
85
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
85
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteChannel.ts.html |here} to see how to use DeleteChannel API.
|
|
86
86
|
*/
|
|
87
87
|
deleteChannel(deleteChannelRequest: requests.DeleteChannelRequest): Promise<responses.DeleteChannelResponse>;
|
|
88
88
|
/**
|
|
@@ -93,7 +93,7 @@ export declare class ChannelsClient {
|
|
|
93
93
|
* @param GetChannelRequest
|
|
94
94
|
* @return GetChannelResponse
|
|
95
95
|
* @throws OciError when an error occurs
|
|
96
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
96
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetChannel.ts.html |here} to see how to use GetChannel API.
|
|
97
97
|
*/
|
|
98
98
|
getChannel(getChannelRequest: requests.GetChannelRequest): Promise<responses.GetChannelResponse>;
|
|
99
99
|
/**
|
|
@@ -101,7 +101,7 @@ export declare class ChannelsClient {
|
|
|
101
101
|
* @param ListChannelsRequest
|
|
102
102
|
* @return ListChannelsResponse
|
|
103
103
|
* @throws OciError when an error occurs
|
|
104
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
104
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListChannels.ts.html |here} to see how to use ListChannels API.
|
|
105
105
|
*/
|
|
106
106
|
listChannels(listChannelsRequest: requests.ListChannelsRequest): Promise<responses.ListChannelsResponse>;
|
|
107
107
|
/**
|
|
@@ -143,7 +143,7 @@ export declare class ChannelsClient {
|
|
|
143
143
|
* @param ResetChannelRequest
|
|
144
144
|
* @return ResetChannelResponse
|
|
145
145
|
* @throws OciError when an error occurs
|
|
146
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
146
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ResetChannel.ts.html |here} to see how to use ResetChannel API.
|
|
147
147
|
*/
|
|
148
148
|
resetChannel(resetChannelRequest: requests.ResetChannelRequest): Promise<responses.ResetChannelResponse>;
|
|
149
149
|
/**
|
|
@@ -154,7 +154,7 @@ export declare class ChannelsClient {
|
|
|
154
154
|
* @param ResumeChannelRequest
|
|
155
155
|
* @return ResumeChannelResponse
|
|
156
156
|
* @throws OciError when an error occurs
|
|
157
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
157
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
|
|
158
158
|
*/
|
|
159
159
|
resumeChannel(resumeChannelRequest: requests.ResumeChannelRequest): Promise<responses.ResumeChannelResponse>;
|
|
160
160
|
/**
|
|
@@ -166,7 +166,7 @@ export declare class ChannelsClient {
|
|
|
166
166
|
* @param UpdateChannelRequest
|
|
167
167
|
* @return UpdateChannelResponse
|
|
168
168
|
* @throws OciError when an error occurs
|
|
169
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
169
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
|
|
170
170
|
*/
|
|
171
171
|
updateChannel(updateChannelRequest: requests.UpdateChannelRequest): Promise<responses.UpdateChannelResponse>;
|
|
172
172
|
}
|
|
@@ -226,7 +226,7 @@ export declare class DbBackupsClient {
|
|
|
226
226
|
* @param ChangeBackupCompartmentRequest
|
|
227
227
|
* @return ChangeBackupCompartmentResponse
|
|
228
228
|
* @throws OciError when an error occurs
|
|
229
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ChangeBackupCompartment.ts.html |here} to see how to use ChangeBackupCompartment API.
|
|
230
230
|
*/
|
|
231
231
|
changeBackupCompartment(changeBackupCompartmentRequest: requests.ChangeBackupCompartmentRequest): Promise<responses.ChangeBackupCompartmentResponse>;
|
|
232
232
|
/**
|
|
@@ -235,7 +235,7 @@ export declare class DbBackupsClient {
|
|
|
235
235
|
* @param CreateBackupRequest
|
|
236
236
|
* @return CreateBackupResponse
|
|
237
237
|
* @throws OciError when an error occurs
|
|
238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
238
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/CreateBackup.ts.html |here} to see how to use CreateBackup API.
|
|
239
239
|
*/
|
|
240
240
|
createBackup(createBackupRequest: requests.CreateBackupRequest): Promise<responses.CreateBackupResponse>;
|
|
241
241
|
/**
|
|
@@ -244,7 +244,7 @@ export declare class DbBackupsClient {
|
|
|
244
244
|
* @param DeleteBackupRequest
|
|
245
245
|
* @return DeleteBackupResponse
|
|
246
246
|
* @throws OciError when an error occurs
|
|
247
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteBackup.ts.html |here} to see how to use DeleteBackup API.
|
|
248
248
|
*/
|
|
249
249
|
deleteBackup(deleteBackupRequest: requests.DeleteBackupRequest): Promise<responses.DeleteBackupResponse>;
|
|
250
250
|
/**
|
|
@@ -252,7 +252,7 @@ export declare class DbBackupsClient {
|
|
|
252
252
|
* @param GetBackupRequest
|
|
253
253
|
* @return GetBackupResponse
|
|
254
254
|
* @throws OciError when an error occurs
|
|
255
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
255
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
|
|
256
256
|
*/
|
|
257
257
|
getBackup(getBackupRequest: requests.GetBackupRequest): Promise<responses.GetBackupResponse>;
|
|
258
258
|
/**
|
|
@@ -261,7 +261,7 @@ export declare class DbBackupsClient {
|
|
|
261
261
|
* @param ListBackupsRequest
|
|
262
262
|
* @return ListBackupsResponse
|
|
263
263
|
* @throws OciError when an error occurs
|
|
264
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
264
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListBackups.ts.html |here} to see how to use ListBackups API.
|
|
265
265
|
*/
|
|
266
266
|
listBackups(listBackupsRequest: requests.ListBackupsRequest): Promise<responses.ListBackupsResponse>;
|
|
267
267
|
/**
|
|
@@ -301,7 +301,7 @@ export declare class DbBackupsClient {
|
|
|
301
301
|
* @param UpdateBackupRequest
|
|
302
302
|
* @return UpdateBackupResponse
|
|
303
303
|
* @throws OciError when an error occurs
|
|
304
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
304
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateBackup.ts.html |here} to see how to use UpdateBackup API.
|
|
305
305
|
*/
|
|
306
306
|
updateBackup(updateBackupRequest: requests.UpdateBackupRequest): Promise<responses.UpdateBackupResponse>;
|
|
307
307
|
}
|
|
@@ -361,7 +361,7 @@ export declare class DbSystemClient {
|
|
|
361
361
|
* @param AddAnalyticsClusterRequest
|
|
362
362
|
* @return AddAnalyticsClusterResponse
|
|
363
363
|
* @throws OciError when an error occurs
|
|
364
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
364
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/AddAnalyticsCluster.ts.html |here} to see how to use AddAnalyticsCluster API.
|
|
365
365
|
*/
|
|
366
366
|
addAnalyticsCluster(addAnalyticsClusterRequest: requests.AddAnalyticsClusterRequest): Promise<responses.AddAnalyticsClusterResponse>;
|
|
367
367
|
/**
|
|
@@ -370,7 +370,7 @@ export declare class DbSystemClient {
|
|
|
370
370
|
* @param AddHeatWaveClusterRequest
|
|
371
371
|
* @return AddHeatWaveClusterResponse
|
|
372
372
|
* @throws OciError when an error occurs
|
|
373
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
373
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/AddHeatWaveCluster.ts.html |here} to see how to use AddHeatWaveCluster API.
|
|
374
374
|
*/
|
|
375
375
|
addHeatWaveCluster(addHeatWaveClusterRequest: requests.AddHeatWaveClusterRequest): Promise<responses.AddHeatWaveClusterResponse>;
|
|
376
376
|
/**
|
|
@@ -379,7 +379,7 @@ export declare class DbSystemClient {
|
|
|
379
379
|
* @param CreateDbSystemRequest
|
|
380
380
|
* @return CreateDbSystemResponse
|
|
381
381
|
* @throws OciError when an error occurs
|
|
382
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
382
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/CreateDbSystem.ts.html |here} to see how to use CreateDbSystem API.
|
|
383
383
|
*/
|
|
384
384
|
createDbSystem(createDbSystemRequest: requests.CreateDbSystemRequest): Promise<responses.CreateDbSystemResponse>;
|
|
385
385
|
/**
|
|
@@ -390,7 +390,7 @@ export declare class DbSystemClient {
|
|
|
390
390
|
* @param DeleteAnalyticsClusterRequest
|
|
391
391
|
* @return DeleteAnalyticsClusterResponse
|
|
392
392
|
* @throws OciError when an error occurs
|
|
393
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
393
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteAnalyticsCluster.ts.html |here} to see how to use DeleteAnalyticsCluster API.
|
|
394
394
|
*/
|
|
395
395
|
deleteAnalyticsCluster(deleteAnalyticsClusterRequest: requests.DeleteAnalyticsClusterRequest): Promise<responses.DeleteAnalyticsClusterResponse>;
|
|
396
396
|
/**
|
|
@@ -400,7 +400,7 @@ export declare class DbSystemClient {
|
|
|
400
400
|
* @param DeleteDbSystemRequest
|
|
401
401
|
* @return DeleteDbSystemResponse
|
|
402
402
|
* @throws OciError when an error occurs
|
|
403
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
403
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteDbSystem.ts.html |here} to see how to use DeleteDbSystem API.
|
|
404
404
|
*/
|
|
405
405
|
deleteDbSystem(deleteDbSystemRequest: requests.DeleteDbSystemRequest): Promise<responses.DeleteDbSystemResponse>;
|
|
406
406
|
/**
|
|
@@ -410,7 +410,7 @@ export declare class DbSystemClient {
|
|
|
410
410
|
* @param DeleteHeatWaveClusterRequest
|
|
411
411
|
* @return DeleteHeatWaveClusterResponse
|
|
412
412
|
* @throws OciError when an error occurs
|
|
413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
413
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteHeatWaveCluster.ts.html |here} to see how to use DeleteHeatWaveCluster API.
|
|
414
414
|
*/
|
|
415
415
|
deleteHeatWaveCluster(deleteHeatWaveClusterRequest: requests.DeleteHeatWaveClusterRequest): Promise<responses.DeleteHeatWaveClusterResponse>;
|
|
416
416
|
/**
|
|
@@ -420,7 +420,7 @@ export declare class DbSystemClient {
|
|
|
420
420
|
* @param GenerateAnalyticsClusterMemoryEstimateRequest
|
|
421
421
|
* @return GenerateAnalyticsClusterMemoryEstimateResponse
|
|
422
422
|
* @throws OciError when an error occurs
|
|
423
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
423
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GenerateAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GenerateAnalyticsClusterMemoryEstimate API.
|
|
424
424
|
*/
|
|
425
425
|
generateAnalyticsClusterMemoryEstimate(generateAnalyticsClusterMemoryEstimateRequest: requests.GenerateAnalyticsClusterMemoryEstimateRequest): Promise<responses.GenerateAnalyticsClusterMemoryEstimateResponse>;
|
|
426
426
|
/**
|
|
@@ -429,7 +429,7 @@ export declare class DbSystemClient {
|
|
|
429
429
|
* @param GenerateHeatWaveClusterMemoryEstimateRequest
|
|
430
430
|
* @return GenerateHeatWaveClusterMemoryEstimateResponse
|
|
431
431
|
* @throws OciError when an error occurs
|
|
432
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
432
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GenerateHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GenerateHeatWaveClusterMemoryEstimate API.
|
|
433
433
|
*/
|
|
434
434
|
generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest: requests.GenerateHeatWaveClusterMemoryEstimateRequest): Promise<responses.GenerateHeatWaveClusterMemoryEstimateResponse>;
|
|
435
435
|
/**
|
|
@@ -439,7 +439,7 @@ export declare class DbSystemClient {
|
|
|
439
439
|
* @param GetAnalyticsClusterRequest
|
|
440
440
|
* @return GetAnalyticsClusterResponse
|
|
441
441
|
* @throws OciError when an error occurs
|
|
442
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetAnalyticsCluster.ts.html |here} to see how to use GetAnalyticsCluster API.
|
|
443
443
|
*/
|
|
444
444
|
getAnalyticsCluster(getAnalyticsClusterRequest: requests.GetAnalyticsClusterRequest): Promise<responses.GetAnalyticsClusterResponse>;
|
|
445
445
|
/**
|
|
@@ -450,7 +450,7 @@ export declare class DbSystemClient {
|
|
|
450
450
|
* @param GetAnalyticsClusterMemoryEstimateRequest
|
|
451
451
|
* @return GetAnalyticsClusterMemoryEstimateResponse
|
|
452
452
|
* @throws OciError when an error occurs
|
|
453
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
453
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetAnalyticsClusterMemoryEstimate.ts.html |here} to see how to use GetAnalyticsClusterMemoryEstimate API.
|
|
454
454
|
*/
|
|
455
455
|
getAnalyticsClusterMemoryEstimate(getAnalyticsClusterMemoryEstimateRequest: requests.GetAnalyticsClusterMemoryEstimateRequest): Promise<responses.GetAnalyticsClusterMemoryEstimateResponse>;
|
|
456
456
|
/**
|
|
@@ -458,7 +458,7 @@ export declare class DbSystemClient {
|
|
|
458
458
|
* @param GetDbSystemRequest
|
|
459
459
|
* @return GetDbSystemResponse
|
|
460
460
|
* @throws OciError when an error occurs
|
|
461
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
461
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
|
|
462
462
|
*/
|
|
463
463
|
getDbSystem(getDbSystemRequest: requests.GetDbSystemRequest): Promise<responses.GetDbSystemResponse>;
|
|
464
464
|
/**
|
|
@@ -466,7 +466,7 @@ export declare class DbSystemClient {
|
|
|
466
466
|
* @param GetHeatWaveClusterRequest
|
|
467
467
|
* @return GetHeatWaveClusterResponse
|
|
468
468
|
* @throws OciError when an error occurs
|
|
469
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
469
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetHeatWaveCluster.ts.html |here} to see how to use GetHeatWaveCluster API.
|
|
470
470
|
*/
|
|
471
471
|
getHeatWaveCluster(getHeatWaveClusterRequest: requests.GetHeatWaveClusterRequest): Promise<responses.GetHeatWaveClusterResponse>;
|
|
472
472
|
/**
|
|
@@ -476,7 +476,7 @@ export declare class DbSystemClient {
|
|
|
476
476
|
* @param GetHeatWaveClusterMemoryEstimateRequest
|
|
477
477
|
* @return GetHeatWaveClusterMemoryEstimateResponse
|
|
478
478
|
* @throws OciError when an error occurs
|
|
479
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
479
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetHeatWaveClusterMemoryEstimate.ts.html |here} to see how to use GetHeatWaveClusterMemoryEstimate API.
|
|
480
480
|
*/
|
|
481
481
|
getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest: requests.GetHeatWaveClusterMemoryEstimateRequest): Promise<responses.GetHeatWaveClusterMemoryEstimateResponse>;
|
|
482
482
|
/**
|
|
@@ -486,7 +486,7 @@ export declare class DbSystemClient {
|
|
|
486
486
|
* @param ListDbSystemsRequest
|
|
487
487
|
* @return ListDbSystemsResponse
|
|
488
488
|
* @throws OciError when an error occurs
|
|
489
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
489
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListDbSystems.ts.html |here} to see how to use ListDbSystems API.
|
|
490
490
|
*/
|
|
491
491
|
listDbSystems(listDbSystemsRequest: requests.ListDbSystemsRequest): Promise<responses.ListDbSystemsResponse>;
|
|
492
492
|
/**
|
|
@@ -528,7 +528,7 @@ export declare class DbSystemClient {
|
|
|
528
528
|
* @param RestartAnalyticsClusterRequest
|
|
529
529
|
* @return RestartAnalyticsClusterResponse
|
|
530
530
|
* @throws OciError when an error occurs
|
|
531
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
531
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/RestartAnalyticsCluster.ts.html |here} to see how to use RestartAnalyticsCluster API.
|
|
532
532
|
*/
|
|
533
533
|
restartAnalyticsCluster(restartAnalyticsClusterRequest: requests.RestartAnalyticsClusterRequest): Promise<responses.RestartAnalyticsClusterResponse>;
|
|
534
534
|
/**
|
|
@@ -536,7 +536,7 @@ export declare class DbSystemClient {
|
|
|
536
536
|
* @param RestartDbSystemRequest
|
|
537
537
|
* @return RestartDbSystemResponse
|
|
538
538
|
* @throws OciError when an error occurs
|
|
539
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
539
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/RestartDbSystem.ts.html |here} to see how to use RestartDbSystem API.
|
|
540
540
|
*/
|
|
541
541
|
restartDbSystem(restartDbSystemRequest: requests.RestartDbSystemRequest): Promise<responses.RestartDbSystemResponse>;
|
|
542
542
|
/**
|
|
@@ -544,7 +544,7 @@ export declare class DbSystemClient {
|
|
|
544
544
|
* @param RestartHeatWaveClusterRequest
|
|
545
545
|
* @return RestartHeatWaveClusterResponse
|
|
546
546
|
* @throws OciError when an error occurs
|
|
547
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
547
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/RestartHeatWaveCluster.ts.html |here} to see how to use RestartHeatWaveCluster API.
|
|
548
548
|
*/
|
|
549
549
|
restartHeatWaveCluster(restartHeatWaveClusterRequest: requests.RestartHeatWaveClusterRequest): Promise<responses.RestartHeatWaveClusterResponse>;
|
|
550
550
|
/**
|
|
@@ -554,7 +554,7 @@ export declare class DbSystemClient {
|
|
|
554
554
|
* @param StartAnalyticsClusterRequest
|
|
555
555
|
* @return StartAnalyticsClusterResponse
|
|
556
556
|
* @throws OciError when an error occurs
|
|
557
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
557
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StartAnalyticsCluster.ts.html |here} to see how to use StartAnalyticsCluster API.
|
|
558
558
|
*/
|
|
559
559
|
startAnalyticsCluster(startAnalyticsClusterRequest: requests.StartAnalyticsClusterRequest): Promise<responses.StartAnalyticsClusterResponse>;
|
|
560
560
|
/**
|
|
@@ -562,7 +562,7 @@ export declare class DbSystemClient {
|
|
|
562
562
|
* @param StartDbSystemRequest
|
|
563
563
|
* @return StartDbSystemResponse
|
|
564
564
|
* @throws OciError when an error occurs
|
|
565
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
565
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StartDbSystem.ts.html |here} to see how to use StartDbSystem API.
|
|
566
566
|
*/
|
|
567
567
|
startDbSystem(startDbSystemRequest: requests.StartDbSystemRequest): Promise<responses.StartDbSystemResponse>;
|
|
568
568
|
/**
|
|
@@ -570,7 +570,7 @@ export declare class DbSystemClient {
|
|
|
570
570
|
* @param StartHeatWaveClusterRequest
|
|
571
571
|
* @return StartHeatWaveClusterResponse
|
|
572
572
|
* @throws OciError when an error occurs
|
|
573
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
573
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StartHeatWaveCluster.ts.html |here} to see how to use StartHeatWaveCluster API.
|
|
574
574
|
*/
|
|
575
575
|
startHeatWaveCluster(startHeatWaveClusterRequest: requests.StartHeatWaveClusterRequest): Promise<responses.StartHeatWaveClusterResponse>;
|
|
576
576
|
/**
|
|
@@ -580,7 +580,7 @@ export declare class DbSystemClient {
|
|
|
580
580
|
* @param StopAnalyticsClusterRequest
|
|
581
581
|
* @return StopAnalyticsClusterResponse
|
|
582
582
|
* @throws OciError when an error occurs
|
|
583
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
583
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StopAnalyticsCluster.ts.html |here} to see how to use StopAnalyticsCluster API.
|
|
584
584
|
*/
|
|
585
585
|
stopAnalyticsCluster(stopAnalyticsClusterRequest: requests.StopAnalyticsClusterRequest): Promise<responses.StopAnalyticsClusterResponse>;
|
|
586
586
|
/**
|
|
@@ -591,7 +591,7 @@ export declare class DbSystemClient {
|
|
|
591
591
|
* @param StopDbSystemRequest
|
|
592
592
|
* @return StopDbSystemResponse
|
|
593
593
|
* @throws OciError when an error occurs
|
|
594
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
594
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StopDbSystem.ts.html |here} to see how to use StopDbSystem API.
|
|
595
595
|
*/
|
|
596
596
|
stopDbSystem(stopDbSystemRequest: requests.StopDbSystemRequest): Promise<responses.StopDbSystemResponse>;
|
|
597
597
|
/**
|
|
@@ -599,7 +599,7 @@ export declare class DbSystemClient {
|
|
|
599
599
|
* @param StopHeatWaveClusterRequest
|
|
600
600
|
* @return StopHeatWaveClusterResponse
|
|
601
601
|
* @throws OciError when an error occurs
|
|
602
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
602
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/StopHeatWaveCluster.ts.html |here} to see how to use StopHeatWaveCluster API.
|
|
603
603
|
*/
|
|
604
604
|
stopHeatWaveCluster(stopHeatWaveClusterRequest: requests.StopHeatWaveClusterRequest): Promise<responses.StopHeatWaveClusterResponse>;
|
|
605
605
|
/**
|
|
@@ -609,7 +609,7 @@ export declare class DbSystemClient {
|
|
|
609
609
|
* @param UpdateAnalyticsClusterRequest
|
|
610
610
|
* @return UpdateAnalyticsClusterResponse
|
|
611
611
|
* @throws OciError when an error occurs
|
|
612
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
612
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateAnalyticsCluster.ts.html |here} to see how to use UpdateAnalyticsCluster API.
|
|
613
613
|
*/
|
|
614
614
|
updateAnalyticsCluster(updateAnalyticsClusterRequest: requests.UpdateAnalyticsClusterRequest): Promise<responses.UpdateAnalyticsClusterResponse>;
|
|
615
615
|
/**
|
|
@@ -625,7 +625,7 @@ export declare class DbSystemClient {
|
|
|
625
625
|
* @param UpdateDbSystemRequest
|
|
626
626
|
* @return UpdateDbSystemResponse
|
|
627
627
|
* @throws OciError when an error occurs
|
|
628
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
628
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateDbSystem.ts.html |here} to see how to use UpdateDbSystem API.
|
|
629
629
|
*/
|
|
630
630
|
updateDbSystem(updateDbSystemRequest: requests.UpdateDbSystemRequest): Promise<responses.UpdateDbSystemResponse>;
|
|
631
631
|
/**
|
|
@@ -634,7 +634,7 @@ export declare class DbSystemClient {
|
|
|
634
634
|
* @param UpdateHeatWaveClusterRequest
|
|
635
635
|
* @return UpdateHeatWaveClusterResponse
|
|
636
636
|
* @throws OciError when an error occurs
|
|
637
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
637
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateHeatWaveCluster.ts.html |here} to see how to use UpdateHeatWaveCluster API.
|
|
638
638
|
*/
|
|
639
639
|
updateHeatWaveCluster(updateHeatWaveClusterRequest: requests.UpdateHeatWaveClusterRequest): Promise<responses.UpdateHeatWaveClusterResponse>;
|
|
640
640
|
}
|
|
@@ -692,7 +692,7 @@ export declare class MysqlaasClient {
|
|
|
692
692
|
* @param CreateConfigurationRequest
|
|
693
693
|
* @return CreateConfigurationResponse
|
|
694
694
|
* @throws OciError when an error occurs
|
|
695
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
695
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/CreateConfiguration.ts.html |here} to see how to use CreateConfiguration API.
|
|
696
696
|
*/
|
|
697
697
|
createConfiguration(createConfigurationRequest: requests.CreateConfigurationRequest): Promise<responses.CreateConfigurationResponse>;
|
|
698
698
|
/**
|
|
@@ -702,7 +702,7 @@ export declare class MysqlaasClient {
|
|
|
702
702
|
* @param DeleteConfigurationRequest
|
|
703
703
|
* @return DeleteConfigurationResponse
|
|
704
704
|
* @throws OciError when an error occurs
|
|
705
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
705
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/DeleteConfiguration.ts.html |here} to see how to use DeleteConfiguration API.
|
|
706
706
|
*/
|
|
707
707
|
deleteConfiguration(deleteConfigurationRequest: requests.DeleteConfigurationRequest): Promise<responses.DeleteConfigurationResponse>;
|
|
708
708
|
/**
|
|
@@ -711,7 +711,7 @@ export declare class MysqlaasClient {
|
|
|
711
711
|
* @param GetConfigurationRequest
|
|
712
712
|
* @return GetConfigurationResponse
|
|
713
713
|
* @throws OciError when an error occurs
|
|
714
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
714
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetConfiguration.ts.html |here} to see how to use GetConfiguration API.
|
|
715
715
|
*/
|
|
716
716
|
getConfiguration(getConfigurationRequest: requests.GetConfigurationRequest): Promise<responses.GetConfigurationResponse>;
|
|
717
717
|
/**
|
|
@@ -727,7 +727,7 @@ export declare class MysqlaasClient {
|
|
|
727
727
|
* @param ListConfigurationsRequest
|
|
728
728
|
* @return ListConfigurationsResponse
|
|
729
729
|
* @throws OciError when an error occurs
|
|
730
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
730
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListConfigurations.ts.html |here} to see how to use ListConfigurations API.
|
|
731
731
|
*/
|
|
732
732
|
listConfigurations(listConfigurationsRequest: requests.ListConfigurationsRequest): Promise<responses.ListConfigurationsResponse>;
|
|
733
733
|
/**
|
|
@@ -771,7 +771,7 @@ export declare class MysqlaasClient {
|
|
|
771
771
|
* @param ListShapesRequest
|
|
772
772
|
* @return ListShapesResponse
|
|
773
773
|
* @throws OciError when an error occurs
|
|
774
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
774
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
775
775
|
*/
|
|
776
776
|
listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
|
|
777
777
|
/**
|
|
@@ -782,7 +782,7 @@ export declare class MysqlaasClient {
|
|
|
782
782
|
* @param ListVersionsRequest
|
|
783
783
|
* @return ListVersionsResponse
|
|
784
784
|
* @throws OciError when an error occurs
|
|
785
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
785
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListVersions.ts.html |here} to see how to use ListVersions API.
|
|
786
786
|
*/
|
|
787
787
|
listVersions(listVersionsRequest: requests.ListVersionsRequest): Promise<responses.ListVersionsResponse>;
|
|
788
788
|
/**
|
|
@@ -790,7 +790,7 @@ export declare class MysqlaasClient {
|
|
|
790
790
|
* @param UpdateConfigurationRequest
|
|
791
791
|
* @return UpdateConfigurationResponse
|
|
792
792
|
* @throws OciError when an error occurs
|
|
793
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
793
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/UpdateConfiguration.ts.html |here} to see how to use UpdateConfiguration API.
|
|
794
794
|
*/
|
|
795
795
|
updateConfiguration(updateConfigurationRequest: requests.UpdateConfigurationRequest): Promise<responses.UpdateConfigurationResponse>;
|
|
796
796
|
}
|
|
@@ -848,7 +848,7 @@ export declare class WorkRequestsClient {
|
|
|
848
848
|
* @param GetWorkRequestRequest
|
|
849
849
|
* @return GetWorkRequestResponse
|
|
850
850
|
* @throws OciError when an error occurs
|
|
851
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
851
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
852
852
|
*/
|
|
853
853
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
854
854
|
/**
|
|
@@ -857,7 +857,7 @@ export declare class WorkRequestsClient {
|
|
|
857
857
|
* @param ListWorkRequestErrorsRequest
|
|
858
858
|
* @return ListWorkRequestErrorsResponse
|
|
859
859
|
* @throws OciError when an error occurs
|
|
860
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
860
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
861
861
|
*/
|
|
862
862
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
863
863
|
/**
|
|
@@ -898,7 +898,7 @@ export declare class WorkRequestsClient {
|
|
|
898
898
|
* @param ListWorkRequestLogsRequest
|
|
899
899
|
* @return ListWorkRequestLogsResponse
|
|
900
900
|
* @throws OciError when an error occurs
|
|
901
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
901
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
902
902
|
*/
|
|
903
903
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
904
904
|
/**
|
|
@@ -939,7 +939,7 @@ export declare class WorkRequestsClient {
|
|
|
939
939
|
* @param ListWorkRequestsRequest
|
|
940
940
|
* @return ListWorkRequestsResponse
|
|
941
941
|
* @throws OciError when an error occurs
|
|
942
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.
|
|
942
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
943
943
|
*/
|
|
944
944
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
945
945
|
/**
|