oci-databasemigration 2.89.0 → 2.89.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +44 -35
- package/lib/client.js +103 -35
- package/lib/client.js.map +1 -1
- package/lib/model/advanced-parameter-data-types.d.ts +31 -0
- package/lib/model/advanced-parameter-data-types.js +42 -0
- package/lib/model/advanced-parameter-data-types.js.map +1 -0
- package/lib/model/create-oracle-migration-details.d.ts +4 -0
- package/lib/model/create-oracle-migration-details.js +10 -0
- package/lib/model/create-oracle-migration-details.js.map +1 -1
- package/lib/model/index.d.ts +10 -0
- package/lib/model/index.js +15 -4
- package/lib/model/index.js.map +1 -1
- package/lib/model/migration-parameter-base.d.ts +30 -0
- package/lib/model/migration-parameter-base.js +29 -0
- package/lib/model/migration-parameter-base.js.map +1 -0
- package/lib/model/migration-parameter-details.d.ts +38 -0
- package/lib/model/migration-parameter-details.js +29 -0
- package/lib/model/migration-parameter-details.js.map +1 -0
- package/lib/model/migration-parameter-summary-collection.d.ts +26 -0
- package/lib/model/migration-parameter-summary-collection.js +61 -0
- package/lib/model/migration-parameter-summary-collection.js.map +1 -0
- package/lib/model/migration-parameter-summary.d.ts +76 -0
- package/lib/model/migration-parameter-summary.js +29 -0
- package/lib/model/migration-parameter-summary.js.map +1 -0
- package/lib/model/oracle-migration.d.ts +4 -0
- package/lib/model/oracle-migration.js +10 -0
- package/lib/model/oracle-migration.js.map +1 -1
- package/lib/model/update-oracle-migration-details.d.ts +4 -0
- package/lib/model/update-oracle-migration-details.js +10 -0
- package/lib/model/update-oracle-migration-details.js.map +1 -1
- package/lib/request/abort-job-request.d.ts +1 -1
- package/lib/request/add-migration-objects-request.d.ts +1 -1
- package/lib/request/change-connection-compartment-request.d.ts +1 -1
- package/lib/request/change-migration-compartment-request.d.ts +1 -1
- package/lib/request/clone-migration-request.d.ts +1 -1
- package/lib/request/connection-diagnostics-request.d.ts +1 -1
- package/lib/request/create-connection-request.d.ts +1 -1
- package/lib/request/create-migration-request.d.ts +1 -1
- package/lib/request/delete-connection-request.d.ts +1 -1
- package/lib/request/delete-job-request.d.ts +1 -1
- package/lib/request/delete-migration-request.d.ts +1 -1
- package/lib/request/evaluate-migration-request.d.ts +1 -1
- package/lib/request/get-advisor-report-request.d.ts +1 -1
- package/lib/request/get-connection-request.d.ts +1 -1
- package/lib/request/get-job-output-content-request.d.ts +1 -1
- package/lib/request/get-job-request.d.ts +1 -1
- package/lib/request/get-migration-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/index.d.ts +2 -0
- package/lib/request/index.js +3 -1
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-connections-request.d.ts +1 -1
- package/lib/request/list-excluded-objects-request.d.ts +1 -1
- package/lib/request/list-job-outputs-request.d.ts +1 -1
- package/lib/request/list-jobs-request.d.ts +1 -1
- package/lib/request/list-migration-object-types-request.d.ts +1 -1
- package/lib/request/list-migration-objects-request.d.ts +1 -1
- package/lib/request/list-migration-parameters-request.d.ts +62 -0
- package/lib/request/list-migration-parameters-request.js +24 -0
- package/lib/request/list-migration-parameters-request.js.map +1 -0
- package/lib/request/list-migrations-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/remove-migration-objects-request.d.ts +1 -1
- package/lib/request/resume-job-request.d.ts +1 -1
- package/lib/request/retrieve-supported-phases-request.d.ts +1 -1
- package/lib/request/start-migration-request.d.ts +1 -1
- package/lib/request/update-connection-request.d.ts +1 -1
- package/lib/request/update-job-request.d.ts +1 -1
- package/lib/request/update-migration-request.d.ts +1 -1
- package/lib/response/index.d.ts +2 -0
- package/lib/response/list-migration-parameters-response.d.ts +32 -0
- package/lib/response/list-migration-parameters-response.js +15 -0
- package/lib/response/list-migration-parameters-response.js.map +1 -0
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -96,7 +96,7 @@ export declare class DatabaseMigrationClient {
|
|
|
96
96
|
* @param AbortJobRequest
|
|
97
97
|
* @return AbortJobResponse
|
|
98
98
|
* @throws OciError when an error occurs
|
|
99
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
99
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
|
|
100
100
|
*/
|
|
101
101
|
abortJob(abortJobRequest: requests.AbortJobRequest): Promise<responses.AbortJobResponse>;
|
|
102
102
|
/**
|
|
@@ -106,7 +106,7 @@ export declare class DatabaseMigrationClient {
|
|
|
106
106
|
* @param AddMigrationObjectsRequest
|
|
107
107
|
* @return AddMigrationObjectsResponse
|
|
108
108
|
* @throws OciError when an error occurs
|
|
109
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
109
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
|
|
110
110
|
*/
|
|
111
111
|
addMigrationObjects(addMigrationObjectsRequest: requests.AddMigrationObjectsRequest): Promise<responses.AddMigrationObjectsResponse>;
|
|
112
112
|
/**
|
|
@@ -116,7 +116,7 @@ export declare class DatabaseMigrationClient {
|
|
|
116
116
|
* @param ChangeConnectionCompartmentRequest
|
|
117
117
|
* @return ChangeConnectionCompartmentResponse
|
|
118
118
|
* @throws OciError when an error occurs
|
|
119
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
119
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
|
|
120
120
|
*/
|
|
121
121
|
changeConnectionCompartment(changeConnectionCompartmentRequest: requests.ChangeConnectionCompartmentRequest): Promise<responses.ChangeConnectionCompartmentResponse>;
|
|
122
122
|
/**
|
|
@@ -126,7 +126,7 @@ export declare class DatabaseMigrationClient {
|
|
|
126
126
|
* @param ChangeMigrationCompartmentRequest
|
|
127
127
|
* @return ChangeMigrationCompartmentResponse
|
|
128
128
|
* @throws OciError when an error occurs
|
|
129
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
129
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
|
|
130
130
|
*/
|
|
131
131
|
changeMigrationCompartment(changeMigrationCompartmentRequest: requests.ChangeMigrationCompartmentRequest): Promise<responses.ChangeMigrationCompartmentResponse>;
|
|
132
132
|
/**
|
|
@@ -136,7 +136,7 @@ export declare class DatabaseMigrationClient {
|
|
|
136
136
|
* @param CloneMigrationRequest
|
|
137
137
|
* @return CloneMigrationResponse
|
|
138
138
|
* @throws OciError when an error occurs
|
|
139
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
139
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
|
|
140
140
|
*/
|
|
141
141
|
cloneMigration(cloneMigrationRequest: requests.CloneMigrationRequest): Promise<responses.CloneMigrationResponse>;
|
|
142
142
|
/**
|
|
@@ -146,7 +146,7 @@ export declare class DatabaseMigrationClient {
|
|
|
146
146
|
* @param ConnectionDiagnosticsRequest
|
|
147
147
|
* @return ConnectionDiagnosticsResponse
|
|
148
148
|
* @throws OciError when an error occurs
|
|
149
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
149
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
|
|
150
150
|
*/
|
|
151
151
|
connectionDiagnostics(connectionDiagnosticsRequest: requests.ConnectionDiagnosticsRequest): Promise<responses.ConnectionDiagnosticsResponse>;
|
|
152
152
|
/**
|
|
@@ -157,7 +157,7 @@ export declare class DatabaseMigrationClient {
|
|
|
157
157
|
* @param CreateConnectionRequest
|
|
158
158
|
* @return CreateConnectionResponse
|
|
159
159
|
* @throws OciError when an error occurs
|
|
160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
160
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
|
|
161
161
|
*/
|
|
162
162
|
createConnection(createConnectionRequest: requests.CreateConnectionRequest): Promise<responses.CreateConnectionResponse>;
|
|
163
163
|
/**
|
|
@@ -169,7 +169,7 @@ export declare class DatabaseMigrationClient {
|
|
|
169
169
|
* @param CreateMigrationRequest
|
|
170
170
|
* @return CreateMigrationResponse
|
|
171
171
|
* @throws OciError when an error occurs
|
|
172
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
172
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
|
|
173
173
|
*/
|
|
174
174
|
createMigration(createMigrationRequest: requests.CreateMigrationRequest): Promise<responses.CreateMigrationResponse>;
|
|
175
175
|
/**
|
|
@@ -179,7 +179,7 @@ export declare class DatabaseMigrationClient {
|
|
|
179
179
|
* @param DeleteConnectionRequest
|
|
180
180
|
* @return DeleteConnectionResponse
|
|
181
181
|
* @throws OciError when an error occurs
|
|
182
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
182
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
|
|
183
183
|
*/
|
|
184
184
|
deleteConnection(deleteConnectionRequest: requests.DeleteConnectionRequest): Promise<responses.DeleteConnectionResponse>;
|
|
185
185
|
/**
|
|
@@ -189,7 +189,7 @@ export declare class DatabaseMigrationClient {
|
|
|
189
189
|
* @param DeleteJobRequest
|
|
190
190
|
* @return DeleteJobResponse
|
|
191
191
|
* @throws OciError when an error occurs
|
|
192
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
192
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
|
|
193
193
|
*/
|
|
194
194
|
deleteJob(deleteJobRequest: requests.DeleteJobRequest): Promise<responses.DeleteJobResponse>;
|
|
195
195
|
/**
|
|
@@ -199,7 +199,7 @@ export declare class DatabaseMigrationClient {
|
|
|
199
199
|
* @param DeleteMigrationRequest
|
|
200
200
|
* @return DeleteMigrationResponse
|
|
201
201
|
* @throws OciError when an error occurs
|
|
202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
|
|
203
203
|
*/
|
|
204
204
|
deleteMigration(deleteMigrationRequest: requests.DeleteMigrationRequest): Promise<responses.DeleteMigrationResponse>;
|
|
205
205
|
/**
|
|
@@ -209,7 +209,7 @@ export declare class DatabaseMigrationClient {
|
|
|
209
209
|
* @param EvaluateMigrationRequest
|
|
210
210
|
* @return EvaluateMigrationResponse
|
|
211
211
|
* @throws OciError when an error occurs
|
|
212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
212
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
|
|
213
213
|
*/
|
|
214
214
|
evaluateMigration(evaluateMigrationRequest: requests.EvaluateMigrationRequest): Promise<responses.EvaluateMigrationResponse>;
|
|
215
215
|
/**
|
|
@@ -219,7 +219,7 @@ export declare class DatabaseMigrationClient {
|
|
|
219
219
|
* @param GetAdvisorReportRequest
|
|
220
220
|
* @return GetAdvisorReportResponse
|
|
221
221
|
* @throws OciError when an error occurs
|
|
222
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
|
|
223
223
|
*/
|
|
224
224
|
getAdvisorReport(getAdvisorReportRequest: requests.GetAdvisorReportRequest): Promise<responses.GetAdvisorReportResponse>;
|
|
225
225
|
/**
|
|
@@ -229,7 +229,7 @@ export declare class DatabaseMigrationClient {
|
|
|
229
229
|
* @param GetConnectionRequest
|
|
230
230
|
* @return GetConnectionResponse
|
|
231
231
|
* @throws OciError when an error occurs
|
|
232
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
232
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
|
|
233
233
|
*/
|
|
234
234
|
getConnection(getConnectionRequest: requests.GetConnectionRequest): Promise<responses.GetConnectionResponse>;
|
|
235
235
|
/**
|
|
@@ -239,7 +239,7 @@ export declare class DatabaseMigrationClient {
|
|
|
239
239
|
* @param GetJobRequest
|
|
240
240
|
* @return GetJobResponse
|
|
241
241
|
* @throws OciError when an error occurs
|
|
242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
242
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
|
|
243
243
|
*/
|
|
244
244
|
getJob(getJobRequest: requests.GetJobRequest): Promise<responses.GetJobResponse>;
|
|
245
245
|
/**
|
|
@@ -249,7 +249,7 @@ export declare class DatabaseMigrationClient {
|
|
|
249
249
|
* @param GetJobOutputContentRequest
|
|
250
250
|
* @return GetJobOutputContentResponse
|
|
251
251
|
* @throws OciError when an error occurs
|
|
252
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
252
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
|
|
253
253
|
*/
|
|
254
254
|
getJobOutputContent(getJobOutputContentRequest: requests.GetJobOutputContentRequest): Promise<responses.GetJobOutputContentResponse>;
|
|
255
255
|
/**
|
|
@@ -259,7 +259,7 @@ export declare class DatabaseMigrationClient {
|
|
|
259
259
|
* @param GetMigrationRequest
|
|
260
260
|
* @return GetMigrationResponse
|
|
261
261
|
* @throws OciError when an error occurs
|
|
262
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
262
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
|
|
263
263
|
*/
|
|
264
264
|
getMigration(getMigrationRequest: requests.GetMigrationRequest): Promise<responses.GetMigrationResponse>;
|
|
265
265
|
/**
|
|
@@ -269,7 +269,7 @@ export declare class DatabaseMigrationClient {
|
|
|
269
269
|
* @param GetWorkRequestRequest
|
|
270
270
|
* @return GetWorkRequestResponse
|
|
271
271
|
* @throws OciError when an error occurs
|
|
272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
273
273
|
*/
|
|
274
274
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
275
275
|
/**
|
|
@@ -279,7 +279,7 @@ export declare class DatabaseMigrationClient {
|
|
|
279
279
|
* @param ListConnectionsRequest
|
|
280
280
|
* @return ListConnectionsResponse
|
|
281
281
|
* @throws OciError when an error occurs
|
|
282
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
282
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
|
|
283
283
|
*/
|
|
284
284
|
listConnections(listConnectionsRequest: requests.ListConnectionsRequest): Promise<responses.ListConnectionsResponse>;
|
|
285
285
|
/**
|
|
@@ -289,7 +289,7 @@ export declare class DatabaseMigrationClient {
|
|
|
289
289
|
* @param ListExcludedObjectsRequest
|
|
290
290
|
* @return ListExcludedObjectsResponse
|
|
291
291
|
* @throws OciError when an error occurs
|
|
292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
292
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
|
|
293
293
|
*/
|
|
294
294
|
listExcludedObjects(listExcludedObjectsRequest: requests.ListExcludedObjectsRequest): Promise<responses.ListExcludedObjectsResponse>;
|
|
295
295
|
/**
|
|
@@ -299,7 +299,7 @@ export declare class DatabaseMigrationClient {
|
|
|
299
299
|
* @param ListJobOutputsRequest
|
|
300
300
|
* @return ListJobOutputsResponse
|
|
301
301
|
* @throws OciError when an error occurs
|
|
302
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
302
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
|
|
303
303
|
*/
|
|
304
304
|
listJobOutputs(listJobOutputsRequest: requests.ListJobOutputsRequest): Promise<responses.ListJobOutputsResponse>;
|
|
305
305
|
/**
|
|
@@ -310,7 +310,7 @@ export declare class DatabaseMigrationClient {
|
|
|
310
310
|
* @param ListJobsRequest
|
|
311
311
|
* @return ListJobsResponse
|
|
312
312
|
* @throws OciError when an error occurs
|
|
313
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
314
314
|
*/
|
|
315
315
|
listJobs(listJobsRequest: requests.ListJobsRequest): Promise<responses.ListJobsResponse>;
|
|
316
316
|
/**
|
|
@@ -320,7 +320,7 @@ export declare class DatabaseMigrationClient {
|
|
|
320
320
|
* @param ListMigrationObjectTypesRequest
|
|
321
321
|
* @return ListMigrationObjectTypesResponse
|
|
322
322
|
* @throws OciError when an error occurs
|
|
323
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
323
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
|
|
324
324
|
*/
|
|
325
325
|
listMigrationObjectTypes(listMigrationObjectTypesRequest: requests.ListMigrationObjectTypesRequest): Promise<responses.ListMigrationObjectTypesResponse>;
|
|
326
326
|
/**
|
|
@@ -330,9 +330,18 @@ export declare class DatabaseMigrationClient {
|
|
|
330
330
|
* @param ListMigrationObjectsRequest
|
|
331
331
|
* @return ListMigrationObjectsResponse
|
|
332
332
|
* @throws OciError when an error occurs
|
|
333
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
333
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
|
|
334
334
|
*/
|
|
335
335
|
listMigrationObjects(listMigrationObjectsRequest: requests.ListMigrationObjectsRequest): Promise<responses.ListMigrationObjectsResponse>;
|
|
336
|
+
/**
|
|
337
|
+
* List of parameters that can be used to customize migrations.
|
|
338
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
339
|
+
* @param ListMigrationParametersRequest
|
|
340
|
+
* @return ListMigrationParametersResponse
|
|
341
|
+
* @throws OciError when an error occurs
|
|
342
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListMigrationParameters.ts.html |here} to see how to use ListMigrationParameters API.
|
|
343
|
+
*/
|
|
344
|
+
listMigrationParameters(listMigrationParametersRequest: requests.ListMigrationParametersRequest): Promise<responses.ListMigrationParametersResponse>;
|
|
336
345
|
/**
|
|
337
346
|
* List all Migrations.
|
|
338
347
|
*
|
|
@@ -340,7 +349,7 @@ export declare class DatabaseMigrationClient {
|
|
|
340
349
|
* @param ListMigrationsRequest
|
|
341
350
|
* @return ListMigrationsResponse
|
|
342
351
|
* @throws OciError when an error occurs
|
|
343
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
352
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
|
|
344
353
|
*/
|
|
345
354
|
listMigrations(listMigrationsRequest: requests.ListMigrationsRequest): Promise<responses.ListMigrationsResponse>;
|
|
346
355
|
/**
|
|
@@ -350,7 +359,7 @@ export declare class DatabaseMigrationClient {
|
|
|
350
359
|
* @param ListWorkRequestErrorsRequest
|
|
351
360
|
* @return ListWorkRequestErrorsResponse
|
|
352
361
|
* @throws OciError when an error occurs
|
|
353
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
362
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
354
363
|
*/
|
|
355
364
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
356
365
|
/**
|
|
@@ -360,7 +369,7 @@ export declare class DatabaseMigrationClient {
|
|
|
360
369
|
* @param ListWorkRequestLogsRequest
|
|
361
370
|
* @return ListWorkRequestLogsResponse
|
|
362
371
|
* @throws OciError when an error occurs
|
|
363
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
372
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
364
373
|
*/
|
|
365
374
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
366
375
|
/**
|
|
@@ -370,7 +379,7 @@ export declare class DatabaseMigrationClient {
|
|
|
370
379
|
* @param ListWorkRequestsRequest
|
|
371
380
|
* @return ListWorkRequestsResponse
|
|
372
381
|
* @throws OciError when an error occurs
|
|
373
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
382
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
374
383
|
*/
|
|
375
384
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
376
385
|
/**
|
|
@@ -380,7 +389,7 @@ export declare class DatabaseMigrationClient {
|
|
|
380
389
|
* @param RemoveMigrationObjectsRequest
|
|
381
390
|
* @return RemoveMigrationObjectsResponse
|
|
382
391
|
* @throws OciError when an error occurs
|
|
383
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
392
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
|
|
384
393
|
*/
|
|
385
394
|
removeMigrationObjects(removeMigrationObjectsRequest: requests.RemoveMigrationObjectsRequest): Promise<responses.RemoveMigrationObjectsResponse>;
|
|
386
395
|
/**
|
|
@@ -390,7 +399,7 @@ export declare class DatabaseMigrationClient {
|
|
|
390
399
|
* @param ResumeJobRequest
|
|
391
400
|
* @return ResumeJobResponse
|
|
392
401
|
* @throws OciError when an error occurs
|
|
393
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
402
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
|
|
394
403
|
*/
|
|
395
404
|
resumeJob(resumeJobRequest: requests.ResumeJobRequest): Promise<responses.ResumeJobResponse>;
|
|
396
405
|
/**
|
|
@@ -400,7 +409,7 @@ export declare class DatabaseMigrationClient {
|
|
|
400
409
|
* @param RetrieveSupportedPhasesRequest
|
|
401
410
|
* @return RetrieveSupportedPhasesResponse
|
|
402
411
|
* @throws OciError when an error occurs
|
|
403
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
412
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
|
|
404
413
|
*/
|
|
405
414
|
retrieveSupportedPhases(retrieveSupportedPhasesRequest: requests.RetrieveSupportedPhasesRequest): Promise<responses.RetrieveSupportedPhasesResponse>;
|
|
406
415
|
/**
|
|
@@ -410,7 +419,7 @@ export declare class DatabaseMigrationClient {
|
|
|
410
419
|
* @param StartMigrationRequest
|
|
411
420
|
* @return StartMigrationResponse
|
|
412
421
|
* @throws OciError when an error occurs
|
|
413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
422
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
|
|
414
423
|
*/
|
|
415
424
|
startMigration(startMigrationRequest: requests.StartMigrationRequest): Promise<responses.StartMigrationResponse>;
|
|
416
425
|
/**
|
|
@@ -420,7 +429,7 @@ export declare class DatabaseMigrationClient {
|
|
|
420
429
|
* @param UpdateConnectionRequest
|
|
421
430
|
* @return UpdateConnectionResponse
|
|
422
431
|
* @throws OciError when an error occurs
|
|
423
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
432
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
|
|
424
433
|
*/
|
|
425
434
|
updateConnection(updateConnectionRequest: requests.UpdateConnectionRequest): Promise<responses.UpdateConnectionResponse>;
|
|
426
435
|
/**
|
|
@@ -430,7 +439,7 @@ export declare class DatabaseMigrationClient {
|
|
|
430
439
|
* @param UpdateJobRequest
|
|
431
440
|
* @return UpdateJobResponse
|
|
432
441
|
* @throws OciError when an error occurs
|
|
433
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
434
443
|
*/
|
|
435
444
|
updateJob(updateJobRequest: requests.UpdateJobRequest): Promise<responses.UpdateJobResponse>;
|
|
436
445
|
/**
|
|
@@ -440,7 +449,7 @@ export declare class DatabaseMigrationClient {
|
|
|
440
449
|
* @param UpdateMigrationRequest
|
|
441
450
|
* @return UpdateMigrationResponse
|
|
442
451
|
* @throws OciError when an error occurs
|
|
443
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.
|
|
452
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.89.1/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
|
|
444
453
|
*/
|
|
445
454
|
updateMigration(updateMigrationRequest: requests.UpdateMigrationRequest): Promise<responses.UpdateMigrationResponse>;
|
|
446
455
|
}
|