oci-databasemigration 2.66.0 → 2.68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +42 -41
- package/lib/client.js +46 -42
- package/lib/client.js.map +1 -1
- package/lib/model/database-object.d.ts +5 -0
- package/lib/model/database-object.js.map +1 -1
- package/lib/model/migration-object-summary.d.ts +5 -0
- package/lib/model/migration-object-summary.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-agent-compartment-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-agent-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-agent-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/list-agent-images-request.d.ts +1 -1
- package/lib/request/list-agents-request.d.ts +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-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-agent-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/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare class DatabaseMigrationClient {
|
|
|
29
29
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
30
30
|
protected _circuitBreaker: null;
|
|
31
31
|
protected _httpOptions: any;
|
|
32
|
+
protected _bodyDuplexMode: any;
|
|
32
33
|
targetService: string;
|
|
33
34
|
protected _regionId: string;
|
|
34
35
|
protected "_region": common.Region;
|
|
@@ -86,7 +87,7 @@ export declare class DatabaseMigrationClient {
|
|
|
86
87
|
* @param AbortJobRequest
|
|
87
88
|
* @return AbortJobResponse
|
|
88
89
|
* @throws OciError when an error occurs
|
|
89
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
90
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
|
|
90
91
|
*/
|
|
91
92
|
abortJob(abortJobRequest: requests.AbortJobRequest): Promise<responses.AbortJobResponse>;
|
|
92
93
|
/**
|
|
@@ -96,7 +97,7 @@ export declare class DatabaseMigrationClient {
|
|
|
96
97
|
* @param AddMigrationObjectsRequest
|
|
97
98
|
* @return AddMigrationObjectsResponse
|
|
98
99
|
* @throws OciError when an error occurs
|
|
99
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
|
|
100
101
|
*/
|
|
101
102
|
addMigrationObjects(addMigrationObjectsRequest: requests.AddMigrationObjectsRequest): Promise<responses.AddMigrationObjectsResponse>;
|
|
102
103
|
/**
|
|
@@ -106,7 +107,7 @@ export declare class DatabaseMigrationClient {
|
|
|
106
107
|
* @param ChangeAgentCompartmentRequest
|
|
107
108
|
* @return ChangeAgentCompartmentResponse
|
|
108
109
|
* @throws OciError when an error occurs
|
|
109
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
|
|
110
111
|
*/
|
|
111
112
|
changeAgentCompartment(changeAgentCompartmentRequest: requests.ChangeAgentCompartmentRequest): Promise<responses.ChangeAgentCompartmentResponse>;
|
|
112
113
|
/**
|
|
@@ -116,7 +117,7 @@ export declare class DatabaseMigrationClient {
|
|
|
116
117
|
* @param ChangeConnectionCompartmentRequest
|
|
117
118
|
* @return ChangeConnectionCompartmentResponse
|
|
118
119
|
* @throws OciError when an error occurs
|
|
119
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
120
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
|
|
120
121
|
*/
|
|
121
122
|
changeConnectionCompartment(changeConnectionCompartmentRequest: requests.ChangeConnectionCompartmentRequest): Promise<responses.ChangeConnectionCompartmentResponse>;
|
|
122
123
|
/**
|
|
@@ -126,7 +127,7 @@ export declare class DatabaseMigrationClient {
|
|
|
126
127
|
* @param ChangeMigrationCompartmentRequest
|
|
127
128
|
* @return ChangeMigrationCompartmentResponse
|
|
128
129
|
* @throws OciError when an error occurs
|
|
129
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
|
|
130
131
|
*/
|
|
131
132
|
changeMigrationCompartment(changeMigrationCompartmentRequest: requests.ChangeMigrationCompartmentRequest): Promise<responses.ChangeMigrationCompartmentResponse>;
|
|
132
133
|
/**
|
|
@@ -136,7 +137,7 @@ export declare class DatabaseMigrationClient {
|
|
|
136
137
|
* @param CloneMigrationRequest
|
|
137
138
|
* @return CloneMigrationResponse
|
|
138
139
|
* @throws OciError when an error occurs
|
|
139
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
140
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
|
|
140
141
|
*/
|
|
141
142
|
cloneMigration(cloneMigrationRequest: requests.CloneMigrationRequest): Promise<responses.CloneMigrationResponse>;
|
|
142
143
|
/**
|
|
@@ -146,7 +147,7 @@ export declare class DatabaseMigrationClient {
|
|
|
146
147
|
* @param ConnectionDiagnosticsRequest
|
|
147
148
|
* @return ConnectionDiagnosticsResponse
|
|
148
149
|
* @throws OciError when an error occurs
|
|
149
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
150
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
|
|
150
151
|
*/
|
|
151
152
|
connectionDiagnostics(connectionDiagnosticsRequest: requests.ConnectionDiagnosticsRequest): Promise<responses.ConnectionDiagnosticsResponse>;
|
|
152
153
|
/**
|
|
@@ -157,7 +158,7 @@ export declare class DatabaseMigrationClient {
|
|
|
157
158
|
* @param CreateConnectionRequest
|
|
158
159
|
* @return CreateConnectionResponse
|
|
159
160
|
* @throws OciError when an error occurs
|
|
160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
|
|
161
162
|
*/
|
|
162
163
|
createConnection(createConnectionRequest: requests.CreateConnectionRequest): Promise<responses.CreateConnectionResponse>;
|
|
163
164
|
/**
|
|
@@ -169,7 +170,7 @@ export declare class DatabaseMigrationClient {
|
|
|
169
170
|
* @param CreateMigrationRequest
|
|
170
171
|
* @return CreateMigrationResponse
|
|
171
172
|
* @throws OciError when an error occurs
|
|
172
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
173
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
|
|
173
174
|
*/
|
|
174
175
|
createMigration(createMigrationRequest: requests.CreateMigrationRequest): Promise<responses.CreateMigrationResponse>;
|
|
175
176
|
/**
|
|
@@ -179,7 +180,7 @@ export declare class DatabaseMigrationClient {
|
|
|
179
180
|
* @param DeleteAgentRequest
|
|
180
181
|
* @return DeleteAgentResponse
|
|
181
182
|
* @throws OciError when an error occurs
|
|
182
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
|
|
183
184
|
*/
|
|
184
185
|
deleteAgent(deleteAgentRequest: requests.DeleteAgentRequest): Promise<responses.DeleteAgentResponse>;
|
|
185
186
|
/**
|
|
@@ -189,7 +190,7 @@ export declare class DatabaseMigrationClient {
|
|
|
189
190
|
* @param DeleteConnectionRequest
|
|
190
191
|
* @return DeleteConnectionResponse
|
|
191
192
|
* @throws OciError when an error occurs
|
|
192
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
193
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
|
|
193
194
|
*/
|
|
194
195
|
deleteConnection(deleteConnectionRequest: requests.DeleteConnectionRequest): Promise<responses.DeleteConnectionResponse>;
|
|
195
196
|
/**
|
|
@@ -199,7 +200,7 @@ export declare class DatabaseMigrationClient {
|
|
|
199
200
|
* @param DeleteJobRequest
|
|
200
201
|
* @return DeleteJobResponse
|
|
201
202
|
* @throws OciError when an error occurs
|
|
202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
203
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
|
|
203
204
|
*/
|
|
204
205
|
deleteJob(deleteJobRequest: requests.DeleteJobRequest): Promise<responses.DeleteJobResponse>;
|
|
205
206
|
/**
|
|
@@ -209,7 +210,7 @@ export declare class DatabaseMigrationClient {
|
|
|
209
210
|
* @param DeleteMigrationRequest
|
|
210
211
|
* @return DeleteMigrationResponse
|
|
211
212
|
* @throws OciError when an error occurs
|
|
212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
213
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
|
|
213
214
|
*/
|
|
214
215
|
deleteMigration(deleteMigrationRequest: requests.DeleteMigrationRequest): Promise<responses.DeleteMigrationResponse>;
|
|
215
216
|
/**
|
|
@@ -219,7 +220,7 @@ export declare class DatabaseMigrationClient {
|
|
|
219
220
|
* @param EvaluateMigrationRequest
|
|
220
221
|
* @return EvaluateMigrationResponse
|
|
221
222
|
* @throws OciError when an error occurs
|
|
222
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
|
|
223
224
|
*/
|
|
224
225
|
evaluateMigration(evaluateMigrationRequest: requests.EvaluateMigrationRequest): Promise<responses.EvaluateMigrationResponse>;
|
|
225
226
|
/**
|
|
@@ -229,7 +230,7 @@ export declare class DatabaseMigrationClient {
|
|
|
229
230
|
* @param GetAdvisorReportRequest
|
|
230
231
|
* @return GetAdvisorReportResponse
|
|
231
232
|
* @throws OciError when an error occurs
|
|
232
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
233
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
|
|
233
234
|
*/
|
|
234
235
|
getAdvisorReport(getAdvisorReportRequest: requests.GetAdvisorReportRequest): Promise<responses.GetAdvisorReportResponse>;
|
|
235
236
|
/**
|
|
@@ -239,7 +240,7 @@ export declare class DatabaseMigrationClient {
|
|
|
239
240
|
* @param GetAgentRequest
|
|
240
241
|
* @return GetAgentResponse
|
|
241
242
|
* @throws OciError when an error occurs
|
|
242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
243
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
|
|
243
244
|
*/
|
|
244
245
|
getAgent(getAgentRequest: requests.GetAgentRequest): Promise<responses.GetAgentResponse>;
|
|
245
246
|
/**
|
|
@@ -249,7 +250,7 @@ export declare class DatabaseMigrationClient {
|
|
|
249
250
|
* @param GetConnectionRequest
|
|
250
251
|
* @return GetConnectionResponse
|
|
251
252
|
* @throws OciError when an error occurs
|
|
252
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
253
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
|
|
253
254
|
*/
|
|
254
255
|
getConnection(getConnectionRequest: requests.GetConnectionRequest): Promise<responses.GetConnectionResponse>;
|
|
255
256
|
/**
|
|
@@ -259,7 +260,7 @@ export declare class DatabaseMigrationClient {
|
|
|
259
260
|
* @param GetJobRequest
|
|
260
261
|
* @return GetJobResponse
|
|
261
262
|
* @throws OciError when an error occurs
|
|
262
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
263
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
|
|
263
264
|
*/
|
|
264
265
|
getJob(getJobRequest: requests.GetJobRequest): Promise<responses.GetJobResponse>;
|
|
265
266
|
/**
|
|
@@ -269,7 +270,7 @@ export declare class DatabaseMigrationClient {
|
|
|
269
270
|
* @param GetJobOutputContentRequest
|
|
270
271
|
* @return GetJobOutputContentResponse
|
|
271
272
|
* @throws OciError when an error occurs
|
|
272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
273
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
|
|
273
274
|
*/
|
|
274
275
|
getJobOutputContent(getJobOutputContentRequest: requests.GetJobOutputContentRequest): Promise<responses.GetJobOutputContentResponse>;
|
|
275
276
|
/**
|
|
@@ -279,7 +280,7 @@ export declare class DatabaseMigrationClient {
|
|
|
279
280
|
* @param GetMigrationRequest
|
|
280
281
|
* @return GetMigrationResponse
|
|
281
282
|
* @throws OciError when an error occurs
|
|
282
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
283
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
|
|
283
284
|
*/
|
|
284
285
|
getMigration(getMigrationRequest: requests.GetMigrationRequest): Promise<responses.GetMigrationResponse>;
|
|
285
286
|
/**
|
|
@@ -289,7 +290,7 @@ export declare class DatabaseMigrationClient {
|
|
|
289
290
|
* @param GetWorkRequestRequest
|
|
290
291
|
* @return GetWorkRequestResponse
|
|
291
292
|
* @throws OciError when an error occurs
|
|
292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
293
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
293
294
|
*/
|
|
294
295
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
295
296
|
/**
|
|
@@ -299,7 +300,7 @@ export declare class DatabaseMigrationClient {
|
|
|
299
300
|
* @param ListAgentImagesRequest
|
|
300
301
|
* @return ListAgentImagesResponse
|
|
301
302
|
* @throws OciError when an error occurs
|
|
302
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
303
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
|
|
303
304
|
*/
|
|
304
305
|
listAgentImages(listAgentImagesRequest: requests.ListAgentImagesRequest): Promise<responses.ListAgentImagesResponse>;
|
|
305
306
|
/**
|
|
@@ -309,7 +310,7 @@ export declare class DatabaseMigrationClient {
|
|
|
309
310
|
* @param ListAgentsRequest
|
|
310
311
|
* @return ListAgentsResponse
|
|
311
312
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
|
|
313
314
|
*/
|
|
314
315
|
listAgents(listAgentsRequest: requests.ListAgentsRequest): Promise<responses.ListAgentsResponse>;
|
|
315
316
|
/**
|
|
@@ -319,7 +320,7 @@ export declare class DatabaseMigrationClient {
|
|
|
319
320
|
* @param ListConnectionsRequest
|
|
320
321
|
* @return ListConnectionsResponse
|
|
321
322
|
* @throws OciError when an error occurs
|
|
322
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
323
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
|
|
323
324
|
*/
|
|
324
325
|
listConnections(listConnectionsRequest: requests.ListConnectionsRequest): Promise<responses.ListConnectionsResponse>;
|
|
325
326
|
/**
|
|
@@ -329,7 +330,7 @@ export declare class DatabaseMigrationClient {
|
|
|
329
330
|
* @param ListExcludedObjectsRequest
|
|
330
331
|
* @return ListExcludedObjectsResponse
|
|
331
332
|
* @throws OciError when an error occurs
|
|
332
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
333
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
|
|
333
334
|
*/
|
|
334
335
|
listExcludedObjects(listExcludedObjectsRequest: requests.ListExcludedObjectsRequest): Promise<responses.ListExcludedObjectsResponse>;
|
|
335
336
|
/**
|
|
@@ -339,7 +340,7 @@ export declare class DatabaseMigrationClient {
|
|
|
339
340
|
* @param ListJobOutputsRequest
|
|
340
341
|
* @return ListJobOutputsResponse
|
|
341
342
|
* @throws OciError when an error occurs
|
|
342
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
343
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
|
|
343
344
|
*/
|
|
344
345
|
listJobOutputs(listJobOutputsRequest: requests.ListJobOutputsRequest): Promise<responses.ListJobOutputsResponse>;
|
|
345
346
|
/**
|
|
@@ -350,7 +351,7 @@ export declare class DatabaseMigrationClient {
|
|
|
350
351
|
* @param ListJobsRequest
|
|
351
352
|
* @return ListJobsResponse
|
|
352
353
|
* @throws OciError when an error occurs
|
|
353
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
354
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
|
|
354
355
|
*/
|
|
355
356
|
listJobs(listJobsRequest: requests.ListJobsRequest): Promise<responses.ListJobsResponse>;
|
|
356
357
|
/**
|
|
@@ -360,7 +361,7 @@ export declare class DatabaseMigrationClient {
|
|
|
360
361
|
* @param ListMigrationObjectTypesRequest
|
|
361
362
|
* @return ListMigrationObjectTypesResponse
|
|
362
363
|
* @throws OciError when an error occurs
|
|
363
|
-
* @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.68.0/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
|
|
364
365
|
*/
|
|
365
366
|
listMigrationObjectTypes(listMigrationObjectTypesRequest: requests.ListMigrationObjectTypesRequest): Promise<responses.ListMigrationObjectTypesResponse>;
|
|
366
367
|
/**
|
|
@@ -370,7 +371,7 @@ export declare class DatabaseMigrationClient {
|
|
|
370
371
|
* @param ListMigrationObjectsRequest
|
|
371
372
|
* @return ListMigrationObjectsResponse
|
|
372
373
|
* @throws OciError when an error occurs
|
|
373
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
374
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
|
|
374
375
|
*/
|
|
375
376
|
listMigrationObjects(listMigrationObjectsRequest: requests.ListMigrationObjectsRequest): Promise<responses.ListMigrationObjectsResponse>;
|
|
376
377
|
/**
|
|
@@ -380,7 +381,7 @@ export declare class DatabaseMigrationClient {
|
|
|
380
381
|
* @param ListMigrationsRequest
|
|
381
382
|
* @return ListMigrationsResponse
|
|
382
383
|
* @throws OciError when an error occurs
|
|
383
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
384
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
|
|
384
385
|
*/
|
|
385
386
|
listMigrations(listMigrationsRequest: requests.ListMigrationsRequest): Promise<responses.ListMigrationsResponse>;
|
|
386
387
|
/**
|
|
@@ -390,7 +391,7 @@ export declare class DatabaseMigrationClient {
|
|
|
390
391
|
* @param ListWorkRequestErrorsRequest
|
|
391
392
|
* @return ListWorkRequestErrorsResponse
|
|
392
393
|
* @throws OciError when an error occurs
|
|
393
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
394
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
394
395
|
*/
|
|
395
396
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
396
397
|
/**
|
|
@@ -400,7 +401,7 @@ export declare class DatabaseMigrationClient {
|
|
|
400
401
|
* @param ListWorkRequestLogsRequest
|
|
401
402
|
* @return ListWorkRequestLogsResponse
|
|
402
403
|
* @throws OciError when an error occurs
|
|
403
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
404
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
404
405
|
*/
|
|
405
406
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
406
407
|
/**
|
|
@@ -410,7 +411,7 @@ export declare class DatabaseMigrationClient {
|
|
|
410
411
|
* @param ListWorkRequestsRequest
|
|
411
412
|
* @return ListWorkRequestsResponse
|
|
412
413
|
* @throws OciError when an error occurs
|
|
413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
414
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
414
415
|
*/
|
|
415
416
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
416
417
|
/**
|
|
@@ -420,7 +421,7 @@ export declare class DatabaseMigrationClient {
|
|
|
420
421
|
* @param RemoveMigrationObjectsRequest
|
|
421
422
|
* @return RemoveMigrationObjectsResponse
|
|
422
423
|
* @throws OciError when an error occurs
|
|
423
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
424
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
|
|
424
425
|
*/
|
|
425
426
|
removeMigrationObjects(removeMigrationObjectsRequest: requests.RemoveMigrationObjectsRequest): Promise<responses.RemoveMigrationObjectsResponse>;
|
|
426
427
|
/**
|
|
@@ -430,7 +431,7 @@ export declare class DatabaseMigrationClient {
|
|
|
430
431
|
* @param ResumeJobRequest
|
|
431
432
|
* @return ResumeJobResponse
|
|
432
433
|
* @throws OciError when an error occurs
|
|
433
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
|
|
434
435
|
*/
|
|
435
436
|
resumeJob(resumeJobRequest: requests.ResumeJobRequest): Promise<responses.ResumeJobResponse>;
|
|
436
437
|
/**
|
|
@@ -440,7 +441,7 @@ export declare class DatabaseMigrationClient {
|
|
|
440
441
|
* @param RetrieveSupportedPhasesRequest
|
|
441
442
|
* @return RetrieveSupportedPhasesResponse
|
|
442
443
|
* @throws OciError when an error occurs
|
|
443
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
444
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
|
|
444
445
|
*/
|
|
445
446
|
retrieveSupportedPhases(retrieveSupportedPhasesRequest: requests.RetrieveSupportedPhasesRequest): Promise<responses.RetrieveSupportedPhasesResponse>;
|
|
446
447
|
/**
|
|
@@ -450,7 +451,7 @@ export declare class DatabaseMigrationClient {
|
|
|
450
451
|
* @param StartMigrationRequest
|
|
451
452
|
* @return StartMigrationResponse
|
|
452
453
|
* @throws OciError when an error occurs
|
|
453
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
454
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
|
|
454
455
|
*/
|
|
455
456
|
startMigration(startMigrationRequest: requests.StartMigrationRequest): Promise<responses.StartMigrationResponse>;
|
|
456
457
|
/**
|
|
@@ -460,7 +461,7 @@ export declare class DatabaseMigrationClient {
|
|
|
460
461
|
* @param UpdateAgentRequest
|
|
461
462
|
* @return UpdateAgentResponse
|
|
462
463
|
* @throws OciError when an error occurs
|
|
463
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
464
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
|
|
464
465
|
*/
|
|
465
466
|
updateAgent(updateAgentRequest: requests.UpdateAgentRequest): Promise<responses.UpdateAgentResponse>;
|
|
466
467
|
/**
|
|
@@ -470,7 +471,7 @@ export declare class DatabaseMigrationClient {
|
|
|
470
471
|
* @param UpdateConnectionRequest
|
|
471
472
|
* @return UpdateConnectionResponse
|
|
472
473
|
* @throws OciError when an error occurs
|
|
473
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
474
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
|
|
474
475
|
*/
|
|
475
476
|
updateConnection(updateConnectionRequest: requests.UpdateConnectionRequest): Promise<responses.UpdateConnectionResponse>;
|
|
476
477
|
/**
|
|
@@ -480,7 +481,7 @@ export declare class DatabaseMigrationClient {
|
|
|
480
481
|
* @param UpdateJobRequest
|
|
481
482
|
* @return UpdateJobResponse
|
|
482
483
|
* @throws OciError when an error occurs
|
|
483
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
484
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
|
|
484
485
|
*/
|
|
485
486
|
updateJob(updateJobRequest: requests.UpdateJobRequest): Promise<responses.UpdateJobResponse>;
|
|
486
487
|
/**
|
|
@@ -490,7 +491,7 @@ export declare class DatabaseMigrationClient {
|
|
|
490
491
|
* @param UpdateMigrationRequest
|
|
491
492
|
* @return UpdateMigrationResponse
|
|
492
493
|
* @throws OciError when an error occurs
|
|
493
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
494
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
|
|
494
495
|
*/
|
|
495
496
|
updateMigration(updateMigrationRequest: requests.UpdateMigrationRequest): Promise<responses.UpdateMigrationResponse>;
|
|
496
497
|
}
|