oci-mysql 2.3.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 +169 -50
- package/lib/client.js +197 -50
- package/lib/client.js.map +1 -1
- package/lib/model/backup.d.ts +3 -1
- package/lib/model/backup.js +1 -0
- package/lib/model/backup.js.map +1 -1
- package/lib/model/configuration-variables.d.ts +30 -1
- package/lib/model/configuration-variables.js +10 -0
- package/lib/model/configuration-variables.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
|
@@ -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.
|
|
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.
|
|
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.
|
|
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,10 +101,11 @@ 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.
|
|
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
|
/**
|
|
108
|
+
* NOTE: This function is deprecated in favor of listChannelsRecordIterator function.
|
|
108
109
|
* Creates a new async iterator which will iterate over the models.ChannelSummary objects
|
|
109
110
|
* contained in responses from the listChannels operation. This iterator will fetch more data from the
|
|
110
111
|
* server as needed.
|
|
@@ -113,12 +114,28 @@ export declare class ChannelsClient {
|
|
|
113
114
|
*/
|
|
114
115
|
listAllChannels(request: requests.ListChannelsRequest): AsyncIterableIterator<model.ChannelSummary>;
|
|
115
116
|
/**
|
|
117
|
+
* NOTE: This function is deprecated in favor of listChannelsResponseIterator function.
|
|
116
118
|
* Creates a new async iterator which will iterate over the responses received from the listChannels operation. This iterator
|
|
117
119
|
* will fetch more data from the server as needed.
|
|
118
120
|
*
|
|
119
121
|
* @param request a request which can be sent to the service operation
|
|
120
122
|
*/
|
|
121
123
|
listAllChannelsResponses(request: requests.ListChannelsRequest): AsyncIterableIterator<responses.ListChannelsResponse>;
|
|
124
|
+
/**
|
|
125
|
+
* Creates a new async iterator which will iterate over the models.ChannelSummary objects
|
|
126
|
+
* contained in responses from the listChannels operation. This iterator will fetch more data from the
|
|
127
|
+
* server as needed.
|
|
128
|
+
*
|
|
129
|
+
* @param request a request which can be sent to the service operation
|
|
130
|
+
*/
|
|
131
|
+
listChannelsRecordIterator(request: requests.ListChannelsRequest): AsyncIterableIterator<model.ChannelSummary>;
|
|
132
|
+
/**
|
|
133
|
+
* Creates a new async iterator which will iterate over the responses received from the listChannels operation. This iterator
|
|
134
|
+
* will fetch more data from the server as needed.
|
|
135
|
+
*
|
|
136
|
+
* @param request a request which can be sent to the service operation
|
|
137
|
+
*/
|
|
138
|
+
listChannelsResponseIterator(request: requests.ListChannelsRequest): AsyncIterableIterator<responses.ListChannelsResponse>;
|
|
122
139
|
/**
|
|
123
140
|
* Resets the specified Channel by purging its cached information, leaving the Channel
|
|
124
141
|
* as if it had just been created. This operation is only accepted in Inactive Channels.
|
|
@@ -126,7 +143,7 @@ export declare class ChannelsClient {
|
|
|
126
143
|
* @param ResetChannelRequest
|
|
127
144
|
* @return ResetChannelResponse
|
|
128
145
|
* @throws OciError when an error occurs
|
|
129
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
130
147
|
*/
|
|
131
148
|
resetChannel(resetChannelRequest: requests.ResetChannelRequest): Promise<responses.ResetChannelResponse>;
|
|
132
149
|
/**
|
|
@@ -137,7 +154,7 @@ export declare class ChannelsClient {
|
|
|
137
154
|
* @param ResumeChannelRequest
|
|
138
155
|
* @return ResumeChannelResponse
|
|
139
156
|
* @throws OciError when an error occurs
|
|
140
|
-
* @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.5.2/mysql/ResumeChannel.ts.html |here} to see how to use ResumeChannel API.
|
|
141
158
|
*/
|
|
142
159
|
resumeChannel(resumeChannelRequest: requests.ResumeChannelRequest): Promise<responses.ResumeChannelResponse>;
|
|
143
160
|
/**
|
|
@@ -149,7 +166,7 @@ export declare class ChannelsClient {
|
|
|
149
166
|
* @param UpdateChannelRequest
|
|
150
167
|
* @return UpdateChannelResponse
|
|
151
168
|
* @throws OciError when an error occurs
|
|
152
|
-
* @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.5.2/mysql/UpdateChannel.ts.html |here} to see how to use UpdateChannel API.
|
|
153
170
|
*/
|
|
154
171
|
updateChannel(updateChannelRequest: requests.UpdateChannelRequest): Promise<responses.UpdateChannelResponse>;
|
|
155
172
|
}
|
|
@@ -209,7 +226,7 @@ export declare class DbBackupsClient {
|
|
|
209
226
|
* @param ChangeBackupCompartmentRequest
|
|
210
227
|
* @return ChangeBackupCompartmentResponse
|
|
211
228
|
* @throws OciError when an error occurs
|
|
212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
213
230
|
*/
|
|
214
231
|
changeBackupCompartment(changeBackupCompartmentRequest: requests.ChangeBackupCompartmentRequest): Promise<responses.ChangeBackupCompartmentResponse>;
|
|
215
232
|
/**
|
|
@@ -218,7 +235,7 @@ export declare class DbBackupsClient {
|
|
|
218
235
|
* @param CreateBackupRequest
|
|
219
236
|
* @return CreateBackupResponse
|
|
220
237
|
* @throws OciError when an error occurs
|
|
221
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
222
239
|
*/
|
|
223
240
|
createBackup(createBackupRequest: requests.CreateBackupRequest): Promise<responses.CreateBackupResponse>;
|
|
224
241
|
/**
|
|
@@ -227,7 +244,7 @@ export declare class DbBackupsClient {
|
|
|
227
244
|
* @param DeleteBackupRequest
|
|
228
245
|
* @return DeleteBackupResponse
|
|
229
246
|
* @throws OciError when an error occurs
|
|
230
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
231
248
|
*/
|
|
232
249
|
deleteBackup(deleteBackupRequest: requests.DeleteBackupRequest): Promise<responses.DeleteBackupResponse>;
|
|
233
250
|
/**
|
|
@@ -235,7 +252,7 @@ export declare class DbBackupsClient {
|
|
|
235
252
|
* @param GetBackupRequest
|
|
236
253
|
* @return GetBackupResponse
|
|
237
254
|
* @throws OciError when an error occurs
|
|
238
|
-
* @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.5.2/mysql/GetBackup.ts.html |here} to see how to use GetBackup API.
|
|
239
256
|
*/
|
|
240
257
|
getBackup(getBackupRequest: requests.GetBackupRequest): Promise<responses.GetBackupResponse>;
|
|
241
258
|
/**
|
|
@@ -244,10 +261,11 @@ export declare class DbBackupsClient {
|
|
|
244
261
|
* @param ListBackupsRequest
|
|
245
262
|
* @return ListBackupsResponse
|
|
246
263
|
* @throws OciError when an error occurs
|
|
247
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
248
265
|
*/
|
|
249
266
|
listBackups(listBackupsRequest: requests.ListBackupsRequest): Promise<responses.ListBackupsResponse>;
|
|
250
267
|
/**
|
|
268
|
+
* NOTE: This function is deprecated in favor of listBackupsRecordIterator function.
|
|
251
269
|
* Creates a new async iterator which will iterate over the models.BackupSummary objects
|
|
252
270
|
* contained in responses from the listBackups operation. This iterator will fetch more data from the
|
|
253
271
|
* server as needed.
|
|
@@ -256,18 +274,34 @@ export declare class DbBackupsClient {
|
|
|
256
274
|
*/
|
|
257
275
|
listAllBackups(request: requests.ListBackupsRequest): AsyncIterableIterator<model.BackupSummary>;
|
|
258
276
|
/**
|
|
277
|
+
* NOTE: This function is deprecated in favor of listBackupsResponseIterator function.
|
|
259
278
|
* Creates a new async iterator which will iterate over the responses received from the listBackups operation. This iterator
|
|
260
279
|
* will fetch more data from the server as needed.
|
|
261
280
|
*
|
|
262
281
|
* @param request a request which can be sent to the service operation
|
|
263
282
|
*/
|
|
264
283
|
listAllBackupsResponses(request: requests.ListBackupsRequest): AsyncIterableIterator<responses.ListBackupsResponse>;
|
|
284
|
+
/**
|
|
285
|
+
* Creates a new async iterator which will iterate over the models.BackupSummary objects
|
|
286
|
+
* contained in responses from the listBackups operation. This iterator will fetch more data from the
|
|
287
|
+
* server as needed.
|
|
288
|
+
*
|
|
289
|
+
* @param request a request which can be sent to the service operation
|
|
290
|
+
*/
|
|
291
|
+
listBackupsRecordIterator(request: requests.ListBackupsRequest): AsyncIterableIterator<model.BackupSummary>;
|
|
292
|
+
/**
|
|
293
|
+
* Creates a new async iterator which will iterate over the responses received from the listBackups operation. This iterator
|
|
294
|
+
* will fetch more data from the server as needed.
|
|
295
|
+
*
|
|
296
|
+
* @param request a request which can be sent to the service operation
|
|
297
|
+
*/
|
|
298
|
+
listBackupsResponseIterator(request: requests.ListBackupsRequest): AsyncIterableIterator<responses.ListBackupsResponse>;
|
|
265
299
|
/**
|
|
266
300
|
* Update the metadata of a Backup. Metadata such as the displayName or description
|
|
267
301
|
* @param UpdateBackupRequest
|
|
268
302
|
* @return UpdateBackupResponse
|
|
269
303
|
* @throws OciError when an error occurs
|
|
270
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
271
305
|
*/
|
|
272
306
|
updateBackup(updateBackupRequest: requests.UpdateBackupRequest): Promise<responses.UpdateBackupResponse>;
|
|
273
307
|
}
|
|
@@ -327,7 +361,7 @@ export declare class DbSystemClient {
|
|
|
327
361
|
* @param AddAnalyticsClusterRequest
|
|
328
362
|
* @return AddAnalyticsClusterResponse
|
|
329
363
|
* @throws OciError when an error occurs
|
|
330
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
331
365
|
*/
|
|
332
366
|
addAnalyticsCluster(addAnalyticsClusterRequest: requests.AddAnalyticsClusterRequest): Promise<responses.AddAnalyticsClusterResponse>;
|
|
333
367
|
/**
|
|
@@ -336,7 +370,7 @@ export declare class DbSystemClient {
|
|
|
336
370
|
* @param AddHeatWaveClusterRequest
|
|
337
371
|
* @return AddHeatWaveClusterResponse
|
|
338
372
|
* @throws OciError when an error occurs
|
|
339
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
340
374
|
*/
|
|
341
375
|
addHeatWaveCluster(addHeatWaveClusterRequest: requests.AddHeatWaveClusterRequest): Promise<responses.AddHeatWaveClusterResponse>;
|
|
342
376
|
/**
|
|
@@ -345,7 +379,7 @@ export declare class DbSystemClient {
|
|
|
345
379
|
* @param CreateDbSystemRequest
|
|
346
380
|
* @return CreateDbSystemResponse
|
|
347
381
|
* @throws OciError when an error occurs
|
|
348
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
349
383
|
*/
|
|
350
384
|
createDbSystem(createDbSystemRequest: requests.CreateDbSystemRequest): Promise<responses.CreateDbSystemResponse>;
|
|
351
385
|
/**
|
|
@@ -356,7 +390,7 @@ export declare class DbSystemClient {
|
|
|
356
390
|
* @param DeleteAnalyticsClusterRequest
|
|
357
391
|
* @return DeleteAnalyticsClusterResponse
|
|
358
392
|
* @throws OciError when an error occurs
|
|
359
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
360
394
|
*/
|
|
361
395
|
deleteAnalyticsCluster(deleteAnalyticsClusterRequest: requests.DeleteAnalyticsClusterRequest): Promise<responses.DeleteAnalyticsClusterResponse>;
|
|
362
396
|
/**
|
|
@@ -366,7 +400,7 @@ export declare class DbSystemClient {
|
|
|
366
400
|
* @param DeleteDbSystemRequest
|
|
367
401
|
* @return DeleteDbSystemResponse
|
|
368
402
|
* @throws OciError when an error occurs
|
|
369
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
370
404
|
*/
|
|
371
405
|
deleteDbSystem(deleteDbSystemRequest: requests.DeleteDbSystemRequest): Promise<responses.DeleteDbSystemResponse>;
|
|
372
406
|
/**
|
|
@@ -376,7 +410,7 @@ export declare class DbSystemClient {
|
|
|
376
410
|
* @param DeleteHeatWaveClusterRequest
|
|
377
411
|
* @return DeleteHeatWaveClusterResponse
|
|
378
412
|
* @throws OciError when an error occurs
|
|
379
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
380
414
|
*/
|
|
381
415
|
deleteHeatWaveCluster(deleteHeatWaveClusterRequest: requests.DeleteHeatWaveClusterRequest): Promise<responses.DeleteHeatWaveClusterResponse>;
|
|
382
416
|
/**
|
|
@@ -386,7 +420,7 @@ export declare class DbSystemClient {
|
|
|
386
420
|
* @param GenerateAnalyticsClusterMemoryEstimateRequest
|
|
387
421
|
* @return GenerateAnalyticsClusterMemoryEstimateResponse
|
|
388
422
|
* @throws OciError when an error occurs
|
|
389
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
390
424
|
*/
|
|
391
425
|
generateAnalyticsClusterMemoryEstimate(generateAnalyticsClusterMemoryEstimateRequest: requests.GenerateAnalyticsClusterMemoryEstimateRequest): Promise<responses.GenerateAnalyticsClusterMemoryEstimateResponse>;
|
|
392
426
|
/**
|
|
@@ -395,7 +429,7 @@ export declare class DbSystemClient {
|
|
|
395
429
|
* @param GenerateHeatWaveClusterMemoryEstimateRequest
|
|
396
430
|
* @return GenerateHeatWaveClusterMemoryEstimateResponse
|
|
397
431
|
* @throws OciError when an error occurs
|
|
398
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
399
433
|
*/
|
|
400
434
|
generateHeatWaveClusterMemoryEstimate(generateHeatWaveClusterMemoryEstimateRequest: requests.GenerateHeatWaveClusterMemoryEstimateRequest): Promise<responses.GenerateHeatWaveClusterMemoryEstimateResponse>;
|
|
401
435
|
/**
|
|
@@ -405,7 +439,7 @@ export declare class DbSystemClient {
|
|
|
405
439
|
* @param GetAnalyticsClusterRequest
|
|
406
440
|
* @return GetAnalyticsClusterResponse
|
|
407
441
|
* @throws OciError when an error occurs
|
|
408
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
409
443
|
*/
|
|
410
444
|
getAnalyticsCluster(getAnalyticsClusterRequest: requests.GetAnalyticsClusterRequest): Promise<responses.GetAnalyticsClusterResponse>;
|
|
411
445
|
/**
|
|
@@ -416,7 +450,7 @@ export declare class DbSystemClient {
|
|
|
416
450
|
* @param GetAnalyticsClusterMemoryEstimateRequest
|
|
417
451
|
* @return GetAnalyticsClusterMemoryEstimateResponse
|
|
418
452
|
* @throws OciError when an error occurs
|
|
419
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
420
454
|
*/
|
|
421
455
|
getAnalyticsClusterMemoryEstimate(getAnalyticsClusterMemoryEstimateRequest: requests.GetAnalyticsClusterMemoryEstimateRequest): Promise<responses.GetAnalyticsClusterMemoryEstimateResponse>;
|
|
422
456
|
/**
|
|
@@ -424,7 +458,7 @@ export declare class DbSystemClient {
|
|
|
424
458
|
* @param GetDbSystemRequest
|
|
425
459
|
* @return GetDbSystemResponse
|
|
426
460
|
* @throws OciError when an error occurs
|
|
427
|
-
* @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.5.2/mysql/GetDbSystem.ts.html |here} to see how to use GetDbSystem API.
|
|
428
462
|
*/
|
|
429
463
|
getDbSystem(getDbSystemRequest: requests.GetDbSystemRequest): Promise<responses.GetDbSystemResponse>;
|
|
430
464
|
/**
|
|
@@ -432,7 +466,7 @@ export declare class DbSystemClient {
|
|
|
432
466
|
* @param GetHeatWaveClusterRequest
|
|
433
467
|
* @return GetHeatWaveClusterResponse
|
|
434
468
|
* @throws OciError when an error occurs
|
|
435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
436
470
|
*/
|
|
437
471
|
getHeatWaveCluster(getHeatWaveClusterRequest: requests.GetHeatWaveClusterRequest): Promise<responses.GetHeatWaveClusterResponse>;
|
|
438
472
|
/**
|
|
@@ -442,7 +476,7 @@ export declare class DbSystemClient {
|
|
|
442
476
|
* @param GetHeatWaveClusterMemoryEstimateRequest
|
|
443
477
|
* @return GetHeatWaveClusterMemoryEstimateResponse
|
|
444
478
|
* @throws OciError when an error occurs
|
|
445
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
446
480
|
*/
|
|
447
481
|
getHeatWaveClusterMemoryEstimate(getHeatWaveClusterMemoryEstimateRequest: requests.GetHeatWaveClusterMemoryEstimateRequest): Promise<responses.GetHeatWaveClusterMemoryEstimateResponse>;
|
|
448
482
|
/**
|
|
@@ -452,10 +486,11 @@ export declare class DbSystemClient {
|
|
|
452
486
|
* @param ListDbSystemsRequest
|
|
453
487
|
* @return ListDbSystemsResponse
|
|
454
488
|
* @throws OciError when an error occurs
|
|
455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
456
490
|
*/
|
|
457
491
|
listDbSystems(listDbSystemsRequest: requests.ListDbSystemsRequest): Promise<responses.ListDbSystemsResponse>;
|
|
458
492
|
/**
|
|
493
|
+
* NOTE: This function is deprecated in favor of listDbSystemsRecordIterator function.
|
|
459
494
|
* Creates a new async iterator which will iterate over the models.DbSystemSummary objects
|
|
460
495
|
* contained in responses from the listDbSystems operation. This iterator will fetch more data from the
|
|
461
496
|
* server as needed.
|
|
@@ -464,12 +499,28 @@ export declare class DbSystemClient {
|
|
|
464
499
|
*/
|
|
465
500
|
listAllDbSystems(request: requests.ListDbSystemsRequest): AsyncIterableIterator<model.DbSystemSummary>;
|
|
466
501
|
/**
|
|
502
|
+
* NOTE: This function is deprecated in favor of listDbSystemsResponseIterator function.
|
|
467
503
|
* Creates a new async iterator which will iterate over the responses received from the listDbSystems operation. This iterator
|
|
468
504
|
* will fetch more data from the server as needed.
|
|
469
505
|
*
|
|
470
506
|
* @param request a request which can be sent to the service operation
|
|
471
507
|
*/
|
|
472
508
|
listAllDbSystemsResponses(request: requests.ListDbSystemsRequest): AsyncIterableIterator<responses.ListDbSystemsResponse>;
|
|
509
|
+
/**
|
|
510
|
+
* Creates a new async iterator which will iterate over the models.DbSystemSummary objects
|
|
511
|
+
* contained in responses from the listDbSystems operation. This iterator will fetch more data from the
|
|
512
|
+
* server as needed.
|
|
513
|
+
*
|
|
514
|
+
* @param request a request which can be sent to the service operation
|
|
515
|
+
*/
|
|
516
|
+
listDbSystemsRecordIterator(request: requests.ListDbSystemsRequest): AsyncIterableIterator<model.DbSystemSummary>;
|
|
517
|
+
/**
|
|
518
|
+
* Creates a new async iterator which will iterate over the responses received from the listDbSystems operation. This iterator
|
|
519
|
+
* will fetch more data from the server as needed.
|
|
520
|
+
*
|
|
521
|
+
* @param request a request which can be sent to the service operation
|
|
522
|
+
*/
|
|
523
|
+
listDbSystemsResponseIterator(request: requests.ListDbSystemsRequest): AsyncIterableIterator<responses.ListDbSystemsResponse>;
|
|
473
524
|
/**
|
|
474
525
|
* DEPRECATED -- please use HeatWave API instead.
|
|
475
526
|
* Restarts the Analytics Cluster.
|
|
@@ -477,7 +528,7 @@ export declare class DbSystemClient {
|
|
|
477
528
|
* @param RestartAnalyticsClusterRequest
|
|
478
529
|
* @return RestartAnalyticsClusterResponse
|
|
479
530
|
* @throws OciError when an error occurs
|
|
480
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
481
532
|
*/
|
|
482
533
|
restartAnalyticsCluster(restartAnalyticsClusterRequest: requests.RestartAnalyticsClusterRequest): Promise<responses.RestartAnalyticsClusterResponse>;
|
|
483
534
|
/**
|
|
@@ -485,7 +536,7 @@ export declare class DbSystemClient {
|
|
|
485
536
|
* @param RestartDbSystemRequest
|
|
486
537
|
* @return RestartDbSystemResponse
|
|
487
538
|
* @throws OciError when an error occurs
|
|
488
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
489
540
|
*/
|
|
490
541
|
restartDbSystem(restartDbSystemRequest: requests.RestartDbSystemRequest): Promise<responses.RestartDbSystemResponse>;
|
|
491
542
|
/**
|
|
@@ -493,7 +544,7 @@ export declare class DbSystemClient {
|
|
|
493
544
|
* @param RestartHeatWaveClusterRequest
|
|
494
545
|
* @return RestartHeatWaveClusterResponse
|
|
495
546
|
* @throws OciError when an error occurs
|
|
496
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
497
548
|
*/
|
|
498
549
|
restartHeatWaveCluster(restartHeatWaveClusterRequest: requests.RestartHeatWaveClusterRequest): Promise<responses.RestartHeatWaveClusterResponse>;
|
|
499
550
|
/**
|
|
@@ -503,7 +554,7 @@ export declare class DbSystemClient {
|
|
|
503
554
|
* @param StartAnalyticsClusterRequest
|
|
504
555
|
* @return StartAnalyticsClusterResponse
|
|
505
556
|
* @throws OciError when an error occurs
|
|
506
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
507
558
|
*/
|
|
508
559
|
startAnalyticsCluster(startAnalyticsClusterRequest: requests.StartAnalyticsClusterRequest): Promise<responses.StartAnalyticsClusterResponse>;
|
|
509
560
|
/**
|
|
@@ -511,7 +562,7 @@ export declare class DbSystemClient {
|
|
|
511
562
|
* @param StartDbSystemRequest
|
|
512
563
|
* @return StartDbSystemResponse
|
|
513
564
|
* @throws OciError when an error occurs
|
|
514
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
515
566
|
*/
|
|
516
567
|
startDbSystem(startDbSystemRequest: requests.StartDbSystemRequest): Promise<responses.StartDbSystemResponse>;
|
|
517
568
|
/**
|
|
@@ -519,7 +570,7 @@ export declare class DbSystemClient {
|
|
|
519
570
|
* @param StartHeatWaveClusterRequest
|
|
520
571
|
* @return StartHeatWaveClusterResponse
|
|
521
572
|
* @throws OciError when an error occurs
|
|
522
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
523
574
|
*/
|
|
524
575
|
startHeatWaveCluster(startHeatWaveClusterRequest: requests.StartHeatWaveClusterRequest): Promise<responses.StartHeatWaveClusterResponse>;
|
|
525
576
|
/**
|
|
@@ -529,7 +580,7 @@ export declare class DbSystemClient {
|
|
|
529
580
|
* @param StopAnalyticsClusterRequest
|
|
530
581
|
* @return StopAnalyticsClusterResponse
|
|
531
582
|
* @throws OciError when an error occurs
|
|
532
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
533
584
|
*/
|
|
534
585
|
stopAnalyticsCluster(stopAnalyticsClusterRequest: requests.StopAnalyticsClusterRequest): Promise<responses.StopAnalyticsClusterResponse>;
|
|
535
586
|
/**
|
|
@@ -540,7 +591,7 @@ export declare class DbSystemClient {
|
|
|
540
591
|
* @param StopDbSystemRequest
|
|
541
592
|
* @return StopDbSystemResponse
|
|
542
593
|
* @throws OciError when an error occurs
|
|
543
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
544
595
|
*/
|
|
545
596
|
stopDbSystem(stopDbSystemRequest: requests.StopDbSystemRequest): Promise<responses.StopDbSystemResponse>;
|
|
546
597
|
/**
|
|
@@ -548,7 +599,7 @@ export declare class DbSystemClient {
|
|
|
548
599
|
* @param StopHeatWaveClusterRequest
|
|
549
600
|
* @return StopHeatWaveClusterResponse
|
|
550
601
|
* @throws OciError when an error occurs
|
|
551
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
552
603
|
*/
|
|
553
604
|
stopHeatWaveCluster(stopHeatWaveClusterRequest: requests.StopHeatWaveClusterRequest): Promise<responses.StopHeatWaveClusterResponse>;
|
|
554
605
|
/**
|
|
@@ -558,7 +609,7 @@ export declare class DbSystemClient {
|
|
|
558
609
|
* @param UpdateAnalyticsClusterRequest
|
|
559
610
|
* @return UpdateAnalyticsClusterResponse
|
|
560
611
|
* @throws OciError when an error occurs
|
|
561
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
562
613
|
*/
|
|
563
614
|
updateAnalyticsCluster(updateAnalyticsClusterRequest: requests.UpdateAnalyticsClusterRequest): Promise<responses.UpdateAnalyticsClusterResponse>;
|
|
564
615
|
/**
|
|
@@ -574,7 +625,7 @@ export declare class DbSystemClient {
|
|
|
574
625
|
* @param UpdateDbSystemRequest
|
|
575
626
|
* @return UpdateDbSystemResponse
|
|
576
627
|
* @throws OciError when an error occurs
|
|
577
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
578
629
|
*/
|
|
579
630
|
updateDbSystem(updateDbSystemRequest: requests.UpdateDbSystemRequest): Promise<responses.UpdateDbSystemResponse>;
|
|
580
631
|
/**
|
|
@@ -583,7 +634,7 @@ export declare class DbSystemClient {
|
|
|
583
634
|
* @param UpdateHeatWaveClusterRequest
|
|
584
635
|
* @return UpdateHeatWaveClusterResponse
|
|
585
636
|
* @throws OciError when an error occurs
|
|
586
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
587
638
|
*/
|
|
588
639
|
updateHeatWaveCluster(updateHeatWaveClusterRequest: requests.UpdateHeatWaveClusterRequest): Promise<responses.UpdateHeatWaveClusterResponse>;
|
|
589
640
|
}
|
|
@@ -641,7 +692,7 @@ export declare class MysqlaasClient {
|
|
|
641
692
|
* @param CreateConfigurationRequest
|
|
642
693
|
* @return CreateConfigurationResponse
|
|
643
694
|
* @throws OciError when an error occurs
|
|
644
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
645
696
|
*/
|
|
646
697
|
createConfiguration(createConfigurationRequest: requests.CreateConfigurationRequest): Promise<responses.CreateConfigurationResponse>;
|
|
647
698
|
/**
|
|
@@ -651,7 +702,7 @@ export declare class MysqlaasClient {
|
|
|
651
702
|
* @param DeleteConfigurationRequest
|
|
652
703
|
* @return DeleteConfigurationResponse
|
|
653
704
|
* @throws OciError when an error occurs
|
|
654
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
655
706
|
*/
|
|
656
707
|
deleteConfiguration(deleteConfigurationRequest: requests.DeleteConfigurationRequest): Promise<responses.DeleteConfigurationResponse>;
|
|
657
708
|
/**
|
|
@@ -660,7 +711,7 @@ export declare class MysqlaasClient {
|
|
|
660
711
|
* @param GetConfigurationRequest
|
|
661
712
|
* @return GetConfigurationResponse
|
|
662
713
|
* @throws OciError when an error occurs
|
|
663
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
664
715
|
*/
|
|
665
716
|
getConfiguration(getConfigurationRequest: requests.GetConfigurationRequest): Promise<responses.GetConfigurationResponse>;
|
|
666
717
|
/**
|
|
@@ -676,10 +727,11 @@ export declare class MysqlaasClient {
|
|
|
676
727
|
* @param ListConfigurationsRequest
|
|
677
728
|
* @return ListConfigurationsResponse
|
|
678
729
|
* @throws OciError when an error occurs
|
|
679
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
680
731
|
*/
|
|
681
732
|
listConfigurations(listConfigurationsRequest: requests.ListConfigurationsRequest): Promise<responses.ListConfigurationsResponse>;
|
|
682
733
|
/**
|
|
734
|
+
* NOTE: This function is deprecated in favor of listConfigurationsRecordIterator function.
|
|
683
735
|
* Creates a new async iterator which will iterate over the models.ConfigurationSummary objects
|
|
684
736
|
* contained in responses from the listConfigurations operation. This iterator will fetch more data from the
|
|
685
737
|
* server as needed.
|
|
@@ -688,12 +740,28 @@ export declare class MysqlaasClient {
|
|
|
688
740
|
*/
|
|
689
741
|
listAllConfigurations(request: requests.ListConfigurationsRequest): AsyncIterableIterator<model.ConfigurationSummary>;
|
|
690
742
|
/**
|
|
743
|
+
* NOTE: This function is deprecated in favor of listConfigurationsResponseIterator function.
|
|
691
744
|
* Creates a new async iterator which will iterate over the responses received from the listConfigurations operation. This iterator
|
|
692
745
|
* will fetch more data from the server as needed.
|
|
693
746
|
*
|
|
694
747
|
* @param request a request which can be sent to the service operation
|
|
695
748
|
*/
|
|
696
749
|
listAllConfigurationsResponses(request: requests.ListConfigurationsRequest): AsyncIterableIterator<responses.ListConfigurationsResponse>;
|
|
750
|
+
/**
|
|
751
|
+
* Creates a new async iterator which will iterate over the models.ConfigurationSummary objects
|
|
752
|
+
* contained in responses from the listConfigurations operation. This iterator will fetch more data from the
|
|
753
|
+
* server as needed.
|
|
754
|
+
*
|
|
755
|
+
* @param request a request which can be sent to the service operation
|
|
756
|
+
*/
|
|
757
|
+
listConfigurationsRecordIterator(request: requests.ListConfigurationsRequest): AsyncIterableIterator<model.ConfigurationSummary>;
|
|
758
|
+
/**
|
|
759
|
+
* Creates a new async iterator which will iterate over the responses received from the listConfigurations operation. This iterator
|
|
760
|
+
* will fetch more data from the server as needed.
|
|
761
|
+
*
|
|
762
|
+
* @param request a request which can be sent to the service operation
|
|
763
|
+
*/
|
|
764
|
+
listConfigurationsResponseIterator(request: requests.ListConfigurationsRequest): AsyncIterableIterator<responses.ListConfigurationsResponse>;
|
|
697
765
|
/**
|
|
698
766
|
* Gets a list of the shapes you can use to create a new MySQL DB System.
|
|
699
767
|
* The shape determines the resources allocated to the DB System:
|
|
@@ -703,7 +771,7 @@ export declare class MysqlaasClient {
|
|
|
703
771
|
* @param ListShapesRequest
|
|
704
772
|
* @return ListShapesResponse
|
|
705
773
|
* @throws OciError when an error occurs
|
|
706
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
774
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
707
775
|
*/
|
|
708
776
|
listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
|
|
709
777
|
/**
|
|
@@ -714,7 +782,7 @@ export declare class MysqlaasClient {
|
|
|
714
782
|
* @param ListVersionsRequest
|
|
715
783
|
* @return ListVersionsResponse
|
|
716
784
|
* @throws OciError when an error occurs
|
|
717
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
718
786
|
*/
|
|
719
787
|
listVersions(listVersionsRequest: requests.ListVersionsRequest): Promise<responses.ListVersionsResponse>;
|
|
720
788
|
/**
|
|
@@ -722,7 +790,7 @@ export declare class MysqlaasClient {
|
|
|
722
790
|
* @param UpdateConfigurationRequest
|
|
723
791
|
* @return UpdateConfigurationResponse
|
|
724
792
|
* @throws OciError when an error occurs
|
|
725
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
726
794
|
*/
|
|
727
795
|
updateConfiguration(updateConfigurationRequest: requests.UpdateConfigurationRequest): Promise<responses.UpdateConfigurationResponse>;
|
|
728
796
|
}
|
|
@@ -780,7 +848,7 @@ export declare class WorkRequestsClient {
|
|
|
780
848
|
* @param GetWorkRequestRequest
|
|
781
849
|
* @return GetWorkRequestResponse
|
|
782
850
|
* @throws OciError when an error occurs
|
|
783
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
784
852
|
*/
|
|
785
853
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
786
854
|
/**
|
|
@@ -789,10 +857,11 @@ export declare class WorkRequestsClient {
|
|
|
789
857
|
* @param ListWorkRequestErrorsRequest
|
|
790
858
|
* @return ListWorkRequestErrorsResponse
|
|
791
859
|
* @throws OciError when an error occurs
|
|
792
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
793
861
|
*/
|
|
794
862
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
795
863
|
/**
|
|
864
|
+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsRecordIterator function.
|
|
796
865
|
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
|
|
797
866
|
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
|
|
798
867
|
* server as needed.
|
|
@@ -801,22 +870,39 @@ export declare class WorkRequestsClient {
|
|
|
801
870
|
*/
|
|
802
871
|
listAllWorkRequestErrors(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
|
|
803
872
|
/**
|
|
873
|
+
* NOTE: This function is deprecated in favor of listWorkRequestErrorsResponseIterator function.
|
|
804
874
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
|
|
805
875
|
* will fetch more data from the server as needed.
|
|
806
876
|
*
|
|
807
877
|
* @param request a request which can be sent to the service operation
|
|
808
878
|
*/
|
|
809
879
|
listAllWorkRequestErrorsResponses(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
|
|
880
|
+
/**
|
|
881
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestError objects
|
|
882
|
+
* contained in responses from the listWorkRequestErrors operation. This iterator will fetch more data from the
|
|
883
|
+
* server as needed.
|
|
884
|
+
*
|
|
885
|
+
* @param request a request which can be sent to the service operation
|
|
886
|
+
*/
|
|
887
|
+
listWorkRequestErrorsRecordIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<model.WorkRequestError>;
|
|
888
|
+
/**
|
|
889
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestErrors operation. This iterator
|
|
890
|
+
* will fetch more data from the server as needed.
|
|
891
|
+
*
|
|
892
|
+
* @param request a request which can be sent to the service operation
|
|
893
|
+
*/
|
|
894
|
+
listWorkRequestErrorsResponseIterator(request: requests.ListWorkRequestErrorsRequest): AsyncIterableIterator<responses.ListWorkRequestErrorsResponse>;
|
|
810
895
|
/**
|
|
811
896
|
* Return a (paginated) list of logs for a given work request.
|
|
812
897
|
*
|
|
813
898
|
* @param ListWorkRequestLogsRequest
|
|
814
899
|
* @return ListWorkRequestLogsResponse
|
|
815
900
|
* @throws OciError when an error occurs
|
|
816
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
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.
|
|
817
902
|
*/
|
|
818
903
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
819
904
|
/**
|
|
905
|
+
* NOTE: This function is deprecated in favor of listWorkRequestLogsRecordIterator function.
|
|
820
906
|
* Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
|
|
821
907
|
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
|
|
822
908
|
* server as needed.
|
|
@@ -825,22 +911,39 @@ export declare class WorkRequestsClient {
|
|
|
825
911
|
*/
|
|
826
912
|
listAllWorkRequestLogs(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
|
|
827
913
|
/**
|
|
914
|
+
* NOTE: This function is deprecated in favor of listWorkRequestLogsResponseIterator function.
|
|
828
915
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
|
|
829
916
|
* will fetch more data from the server as needed.
|
|
830
917
|
*
|
|
831
918
|
* @param request a request which can be sent to the service operation
|
|
832
919
|
*/
|
|
833
920
|
listAllWorkRequestLogsResponses(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
|
|
921
|
+
/**
|
|
922
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestLogEntry objects
|
|
923
|
+
* contained in responses from the listWorkRequestLogs operation. This iterator will fetch more data from the
|
|
924
|
+
* server as needed.
|
|
925
|
+
*
|
|
926
|
+
* @param request a request which can be sent to the service operation
|
|
927
|
+
*/
|
|
928
|
+
listWorkRequestLogsRecordIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<model.WorkRequestLogEntry>;
|
|
929
|
+
/**
|
|
930
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequestLogs operation. This iterator
|
|
931
|
+
* will fetch more data from the server as needed.
|
|
932
|
+
*
|
|
933
|
+
* @param request a request which can be sent to the service operation
|
|
934
|
+
*/
|
|
935
|
+
listWorkRequestLogsResponseIterator(request: requests.ListWorkRequestLogsRequest): AsyncIterableIterator<responses.ListWorkRequestLogsResponse>;
|
|
834
936
|
/**
|
|
835
937
|
* Lists the work requests in a specified compartment.
|
|
836
938
|
*
|
|
837
939
|
* @param ListWorkRequestsRequest
|
|
838
940
|
* @return ListWorkRequestsResponse
|
|
839
941
|
* @throws OciError when an error occurs
|
|
840
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
942
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/mysql/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
841
943
|
*/
|
|
842
944
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
843
945
|
/**
|
|
946
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
|
|
844
947
|
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
|
|
845
948
|
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
846
949
|
* server as needed.
|
|
@@ -849,10 +952,26 @@ export declare class WorkRequestsClient {
|
|
|
849
952
|
*/
|
|
850
953
|
listAllWorkRequests(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
|
|
851
954
|
/**
|
|
955
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
|
|
852
956
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
853
957
|
* will fetch more data from the server as needed.
|
|
854
958
|
*
|
|
855
959
|
* @param request a request which can be sent to the service operation
|
|
856
960
|
*/
|
|
857
961
|
listAllWorkRequestsResponses(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
962
|
+
/**
|
|
963
|
+
* Creates a new async iterator which will iterate over the models.WorkRequestSummary objects
|
|
964
|
+
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
965
|
+
* server as needed.
|
|
966
|
+
*
|
|
967
|
+
* @param request a request which can be sent to the service operation
|
|
968
|
+
*/
|
|
969
|
+
listWorkRequestsRecordIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequestSummary>;
|
|
970
|
+
/**
|
|
971
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
972
|
+
* will fetch more data from the server as needed.
|
|
973
|
+
*
|
|
974
|
+
* @param request a request which can be sent to the service operation
|
|
975
|
+
*/
|
|
976
|
+
listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
|
|
858
977
|
}
|