oci-databasemigration 2.77.0 → 2.77.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.
Files changed (45) hide show
  1. package/lib/client.d.ts +48 -42
  2. package/lib/client.js +50 -41
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/abort-job-request.d.ts +1 -1
  5. package/lib/request/add-migration-objects-request.d.ts +1 -1
  6. package/lib/request/change-agent-compartment-request.d.ts +1 -1
  7. package/lib/request/change-connection-compartment-request.d.ts +1 -1
  8. package/lib/request/change-migration-compartment-request.d.ts +1 -1
  9. package/lib/request/clone-migration-request.d.ts +1 -1
  10. package/lib/request/connection-diagnostics-request.d.ts +1 -1
  11. package/lib/request/create-connection-request.d.ts +1 -1
  12. package/lib/request/create-migration-request.d.ts +1 -1
  13. package/lib/request/delete-agent-request.d.ts +1 -1
  14. package/lib/request/delete-connection-request.d.ts +1 -1
  15. package/lib/request/delete-job-request.d.ts +1 -1
  16. package/lib/request/delete-migration-request.d.ts +1 -1
  17. package/lib/request/evaluate-migration-request.d.ts +1 -1
  18. package/lib/request/get-advisor-report-request.d.ts +1 -1
  19. package/lib/request/get-agent-request.d.ts +1 -1
  20. package/lib/request/get-connection-request.d.ts +1 -1
  21. package/lib/request/get-job-output-content-request.d.ts +1 -1
  22. package/lib/request/get-job-request.d.ts +1 -1
  23. package/lib/request/get-migration-request.d.ts +1 -1
  24. package/lib/request/get-work-request-request.d.ts +1 -1
  25. package/lib/request/list-agent-images-request.d.ts +1 -1
  26. package/lib/request/list-agents-request.d.ts +1 -1
  27. package/lib/request/list-connections-request.d.ts +1 -1
  28. package/lib/request/list-excluded-objects-request.d.ts +1 -1
  29. package/lib/request/list-job-outputs-request.d.ts +1 -1
  30. package/lib/request/list-jobs-request.d.ts +1 -1
  31. package/lib/request/list-migration-object-types-request.d.ts +1 -1
  32. package/lib/request/list-migration-objects-request.d.ts +1 -1
  33. package/lib/request/list-migrations-request.d.ts +1 -1
  34. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  35. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  36. package/lib/request/list-work-requests-request.d.ts +1 -1
  37. package/lib/request/remove-migration-objects-request.d.ts +1 -1
  38. package/lib/request/resume-job-request.d.ts +1 -1
  39. package/lib/request/retrieve-supported-phases-request.d.ts +1 -1
  40. package/lib/request/start-migration-request.d.ts +1 -1
  41. package/lib/request/update-agent-request.d.ts +1 -1
  42. package/lib/request/update-connection-request.d.ts +1 -1
  43. package/lib/request/update-job-request.d.ts +1 -1
  44. package/lib/request/update-migration-request.d.ts +1 -1
  45. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -14,6 +14,7 @@ import common = require("oci-common");
14
14
  import * as requests from "./request";
15
15
  import * as responses from "./response";
16
16
  import { DatabaseMigrationWaiter } from "./databasemigration-waiter";
17
+ declare const Breaker: any;
17
18
  export declare enum DatabaseMigrationApiKeys {
18
19
  }
19
20
  /**
@@ -27,7 +28,7 @@ export declare class DatabaseMigrationClient {
27
28
  protected "_defaultHeaders": any;
28
29
  protected "_waiters": DatabaseMigrationWaiter;
29
30
  protected "_clientConfiguration": common.ClientConfiguration;
30
- protected _circuitBreaker: null;
31
+ protected _circuitBreaker: typeof Breaker | null;
31
32
  protected _httpOptions: any;
32
33
  protected _bodyDuplexMode: any;
33
34
  targetService: string;
@@ -80,6 +81,10 @@ export declare class DatabaseMigrationClient {
80
81
  * @return The service waiters.
81
82
  */
82
83
  getWaiters(): DatabaseMigrationWaiter;
84
+ /**
85
+ * Shutdown the circuit breaker used by the client when it is no longer needed
86
+ */
87
+ shutdownCircuitBreaker(): void;
83
88
  /**
84
89
  * Aborts a Migration Job (either Evaluation or Migration).
85
90
  *
@@ -87,7 +92,7 @@ export declare class DatabaseMigrationClient {
87
92
  * @param AbortJobRequest
88
93
  * @return AbortJobResponse
89
94
  * @throws OciError when an error occurs
90
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
95
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/AbortJob.ts.html |here} to see how to use AbortJob API.
91
96
  */
92
97
  abortJob(abortJobRequest: requests.AbortJobRequest): Promise<responses.AbortJobResponse>;
93
98
  /**
@@ -97,7 +102,7 @@ export declare class DatabaseMigrationClient {
97
102
  * @param AddMigrationObjectsRequest
98
103
  * @return AddMigrationObjectsResponse
99
104
  * @throws OciError when an error occurs
100
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
105
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/AddMigrationObjects.ts.html |here} to see how to use AddMigrationObjects API.
101
106
  */
102
107
  addMigrationObjects(addMigrationObjectsRequest: requests.AddMigrationObjectsRequest): Promise<responses.AddMigrationObjectsResponse>;
103
108
  /**
@@ -107,7 +112,7 @@ export declare class DatabaseMigrationClient {
107
112
  * @param ChangeAgentCompartmentRequest
108
113
  * @return ChangeAgentCompartmentResponse
109
114
  * @throws OciError when an error occurs
110
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
115
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ChangeAgentCompartment.ts.html |here} to see how to use ChangeAgentCompartment API.
111
116
  */
112
117
  changeAgentCompartment(changeAgentCompartmentRequest: requests.ChangeAgentCompartmentRequest): Promise<responses.ChangeAgentCompartmentResponse>;
113
118
  /**
@@ -117,7 +122,7 @@ export declare class DatabaseMigrationClient {
117
122
  * @param ChangeConnectionCompartmentRequest
118
123
  * @return ChangeConnectionCompartmentResponse
119
124
  * @throws OciError when an error occurs
120
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ChangeConnectionCompartment.ts.html |here} to see how to use ChangeConnectionCompartment API.
121
126
  */
122
127
  changeConnectionCompartment(changeConnectionCompartmentRequest: requests.ChangeConnectionCompartmentRequest): Promise<responses.ChangeConnectionCompartmentResponse>;
123
128
  /**
@@ -127,7 +132,7 @@ export declare class DatabaseMigrationClient {
127
132
  * @param ChangeMigrationCompartmentRequest
128
133
  * @return ChangeMigrationCompartmentResponse
129
134
  * @throws OciError when an error occurs
130
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
135
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ChangeMigrationCompartment.ts.html |here} to see how to use ChangeMigrationCompartment API.
131
136
  */
132
137
  changeMigrationCompartment(changeMigrationCompartmentRequest: requests.ChangeMigrationCompartmentRequest): Promise<responses.ChangeMigrationCompartmentResponse>;
133
138
  /**
@@ -137,7 +142,7 @@ export declare class DatabaseMigrationClient {
137
142
  * @param CloneMigrationRequest
138
143
  * @return CloneMigrationResponse
139
144
  * @throws OciError when an error occurs
140
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
145
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/CloneMigration.ts.html |here} to see how to use CloneMigration API.
141
146
  */
142
147
  cloneMigration(cloneMigrationRequest: requests.CloneMigrationRequest): Promise<responses.CloneMigrationResponse>;
143
148
  /**
@@ -147,7 +152,7 @@ export declare class DatabaseMigrationClient {
147
152
  * @param ConnectionDiagnosticsRequest
148
153
  * @return ConnectionDiagnosticsResponse
149
154
  * @throws OciError when an error occurs
150
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
155
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ConnectionDiagnostics.ts.html |here} to see how to use ConnectionDiagnostics API.
151
156
  */
152
157
  connectionDiagnostics(connectionDiagnosticsRequest: requests.ConnectionDiagnosticsRequest): Promise<responses.ConnectionDiagnosticsResponse>;
153
158
  /**
@@ -158,7 +163,7 @@ export declare class DatabaseMigrationClient {
158
163
  * @param CreateConnectionRequest
159
164
  * @return CreateConnectionResponse
160
165
  * @throws OciError when an error occurs
161
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
166
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/CreateConnection.ts.html |here} to see how to use CreateConnection API.
162
167
  */
163
168
  createConnection(createConnectionRequest: requests.CreateConnectionRequest): Promise<responses.CreateConnectionResponse>;
164
169
  /**
@@ -170,7 +175,7 @@ export declare class DatabaseMigrationClient {
170
175
  * @param CreateMigrationRequest
171
176
  * @return CreateMigrationResponse
172
177
  * @throws OciError when an error occurs
173
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
178
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/CreateMigration.ts.html |here} to see how to use CreateMigration API.
174
179
  */
175
180
  createMigration(createMigrationRequest: requests.CreateMigrationRequest): Promise<responses.CreateMigrationResponse>;
176
181
  /**
@@ -180,7 +185,7 @@ export declare class DatabaseMigrationClient {
180
185
  * @param DeleteAgentRequest
181
186
  * @return DeleteAgentResponse
182
187
  * @throws OciError when an error occurs
183
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
188
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/DeleteAgent.ts.html |here} to see how to use DeleteAgent API.
184
189
  */
185
190
  deleteAgent(deleteAgentRequest: requests.DeleteAgentRequest): Promise<responses.DeleteAgentResponse>;
186
191
  /**
@@ -190,7 +195,7 @@ export declare class DatabaseMigrationClient {
190
195
  * @param DeleteConnectionRequest
191
196
  * @return DeleteConnectionResponse
192
197
  * @throws OciError when an error occurs
193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
198
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/DeleteConnection.ts.html |here} to see how to use DeleteConnection API.
194
199
  */
195
200
  deleteConnection(deleteConnectionRequest: requests.DeleteConnectionRequest): Promise<responses.DeleteConnectionResponse>;
196
201
  /**
@@ -200,7 +205,7 @@ export declare class DatabaseMigrationClient {
200
205
  * @param DeleteJobRequest
201
206
  * @return DeleteJobResponse
202
207
  * @throws OciError when an error occurs
203
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
208
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/DeleteJob.ts.html |here} to see how to use DeleteJob API.
204
209
  */
205
210
  deleteJob(deleteJobRequest: requests.DeleteJobRequest): Promise<responses.DeleteJobResponse>;
206
211
  /**
@@ -210,7 +215,7 @@ export declare class DatabaseMigrationClient {
210
215
  * @param DeleteMigrationRequest
211
216
  * @return DeleteMigrationResponse
212
217
  * @throws OciError when an error occurs
213
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
218
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/DeleteMigration.ts.html |here} to see how to use DeleteMigration API.
214
219
  */
215
220
  deleteMigration(deleteMigrationRequest: requests.DeleteMigrationRequest): Promise<responses.DeleteMigrationResponse>;
216
221
  /**
@@ -220,7 +225,7 @@ export declare class DatabaseMigrationClient {
220
225
  * @param EvaluateMigrationRequest
221
226
  * @return EvaluateMigrationResponse
222
227
  * @throws OciError when an error occurs
223
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
228
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/EvaluateMigration.ts.html |here} to see how to use EvaluateMigration API.
224
229
  */
225
230
  evaluateMigration(evaluateMigrationRequest: requests.EvaluateMigrationRequest): Promise<responses.EvaluateMigrationResponse>;
226
231
  /**
@@ -230,7 +235,7 @@ export declare class DatabaseMigrationClient {
230
235
  * @param GetAdvisorReportRequest
231
236
  * @return GetAdvisorReportResponse
232
237
  * @throws OciError when an error occurs
233
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
238
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/GetAdvisorReport.ts.html |here} to see how to use GetAdvisorReport API.
234
239
  */
235
240
  getAdvisorReport(getAdvisorReportRequest: requests.GetAdvisorReportRequest): Promise<responses.GetAdvisorReportResponse>;
236
241
  /**
@@ -240,7 +245,7 @@ export declare class DatabaseMigrationClient {
240
245
  * @param GetAgentRequest
241
246
  * @return GetAgentResponse
242
247
  * @throws OciError when an error occurs
243
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
248
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/GetAgent.ts.html |here} to see how to use GetAgent API.
244
249
  */
245
250
  getAgent(getAgentRequest: requests.GetAgentRequest): Promise<responses.GetAgentResponse>;
246
251
  /**
@@ -250,7 +255,7 @@ export declare class DatabaseMigrationClient {
250
255
  * @param GetConnectionRequest
251
256
  * @return GetConnectionResponse
252
257
  * @throws OciError when an error occurs
253
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
258
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/GetConnection.ts.html |here} to see how to use GetConnection API.
254
259
  */
255
260
  getConnection(getConnectionRequest: requests.GetConnectionRequest): Promise<responses.GetConnectionResponse>;
256
261
  /**
@@ -260,7 +265,7 @@ export declare class DatabaseMigrationClient {
260
265
  * @param GetJobRequest
261
266
  * @return GetJobResponse
262
267
  * @throws OciError when an error occurs
263
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
268
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/GetJob.ts.html |here} to see how to use GetJob API.
264
269
  */
265
270
  getJob(getJobRequest: requests.GetJobRequest): Promise<responses.GetJobResponse>;
266
271
  /**
@@ -270,7 +275,7 @@ export declare class DatabaseMigrationClient {
270
275
  * @param GetJobOutputContentRequest
271
276
  * @return GetJobOutputContentResponse
272
277
  * @throws OciError when an error occurs
273
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
278
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/GetJobOutputContent.ts.html |here} to see how to use GetJobOutputContent API.
274
279
  */
275
280
  getJobOutputContent(getJobOutputContentRequest: requests.GetJobOutputContentRequest): Promise<responses.GetJobOutputContentResponse>;
276
281
  /**
@@ -280,7 +285,7 @@ export declare class DatabaseMigrationClient {
280
285
  * @param GetMigrationRequest
281
286
  * @return GetMigrationResponse
282
287
  * @throws OciError when an error occurs
283
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
288
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/GetMigration.ts.html |here} to see how to use GetMigration API.
284
289
  */
285
290
  getMigration(getMigrationRequest: requests.GetMigrationRequest): Promise<responses.GetMigrationResponse>;
286
291
  /**
@@ -290,7 +295,7 @@ export declare class DatabaseMigrationClient {
290
295
  * @param GetWorkRequestRequest
291
296
  * @return GetWorkRequestResponse
292
297
  * @throws OciError when an error occurs
293
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
298
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
294
299
  */
295
300
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
296
301
  /**
@@ -300,7 +305,7 @@ export declare class DatabaseMigrationClient {
300
305
  * @param ListAgentImagesRequest
301
306
  * @return ListAgentImagesResponse
302
307
  * @throws OciError when an error occurs
303
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
308
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListAgentImages.ts.html |here} to see how to use ListAgentImages API.
304
309
  */
305
310
  listAgentImages(listAgentImagesRequest: requests.ListAgentImagesRequest): Promise<responses.ListAgentImagesResponse>;
306
311
  /**
@@ -310,7 +315,7 @@ export declare class DatabaseMigrationClient {
310
315
  * @param ListAgentsRequest
311
316
  * @return ListAgentsResponse
312
317
  * @throws OciError when an error occurs
313
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
318
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListAgents.ts.html |here} to see how to use ListAgents API.
314
319
  */
315
320
  listAgents(listAgentsRequest: requests.ListAgentsRequest): Promise<responses.ListAgentsResponse>;
316
321
  /**
@@ -320,7 +325,7 @@ export declare class DatabaseMigrationClient {
320
325
  * @param ListConnectionsRequest
321
326
  * @return ListConnectionsResponse
322
327
  * @throws OciError when an error occurs
323
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
328
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListConnections.ts.html |here} to see how to use ListConnections API.
324
329
  */
325
330
  listConnections(listConnectionsRequest: requests.ListConnectionsRequest): Promise<responses.ListConnectionsResponse>;
326
331
  /**
@@ -330,7 +335,7 @@ export declare class DatabaseMigrationClient {
330
335
  * @param ListExcludedObjectsRequest
331
336
  * @return ListExcludedObjectsResponse
332
337
  * @throws OciError when an error occurs
333
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
338
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListExcludedObjects.ts.html |here} to see how to use ListExcludedObjects API.
334
339
  */
335
340
  listExcludedObjects(listExcludedObjectsRequest: requests.ListExcludedObjectsRequest): Promise<responses.ListExcludedObjectsResponse>;
336
341
  /**
@@ -340,7 +345,7 @@ export declare class DatabaseMigrationClient {
340
345
  * @param ListJobOutputsRequest
341
346
  * @return ListJobOutputsResponse
342
347
  * @throws OciError when an error occurs
343
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
348
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListJobOutputs.ts.html |here} to see how to use ListJobOutputs API.
344
349
  */
345
350
  listJobOutputs(listJobOutputsRequest: requests.ListJobOutputsRequest): Promise<responses.ListJobOutputsResponse>;
346
351
  /**
@@ -351,7 +356,7 @@ export declare class DatabaseMigrationClient {
351
356
  * @param ListJobsRequest
352
357
  * @return ListJobsResponse
353
358
  * @throws OciError when an error occurs
354
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
359
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListJobs.ts.html |here} to see how to use ListJobs API.
355
360
  */
356
361
  listJobs(listJobsRequest: requests.ListJobsRequest): Promise<responses.ListJobsResponse>;
357
362
  /**
@@ -361,7 +366,7 @@ export declare class DatabaseMigrationClient {
361
366
  * @param ListMigrationObjectTypesRequest
362
367
  * @return ListMigrationObjectTypesResponse
363
368
  * @throws OciError when an error occurs
364
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
369
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListMigrationObjectTypes.ts.html |here} to see how to use ListMigrationObjectTypes API.
365
370
  */
366
371
  listMigrationObjectTypes(listMigrationObjectTypesRequest: requests.ListMigrationObjectTypesRequest): Promise<responses.ListMigrationObjectTypesResponse>;
367
372
  /**
@@ -371,7 +376,7 @@ export declare class DatabaseMigrationClient {
371
376
  * @param ListMigrationObjectsRequest
372
377
  * @return ListMigrationObjectsResponse
373
378
  * @throws OciError when an error occurs
374
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
379
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListMigrationObjects.ts.html |here} to see how to use ListMigrationObjects API.
375
380
  */
376
381
  listMigrationObjects(listMigrationObjectsRequest: requests.ListMigrationObjectsRequest): Promise<responses.ListMigrationObjectsResponse>;
377
382
  /**
@@ -381,7 +386,7 @@ export declare class DatabaseMigrationClient {
381
386
  * @param ListMigrationsRequest
382
387
  * @return ListMigrationsResponse
383
388
  * @throws OciError when an error occurs
384
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
389
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListMigrations.ts.html |here} to see how to use ListMigrations API.
385
390
  */
386
391
  listMigrations(listMigrationsRequest: requests.ListMigrationsRequest): Promise<responses.ListMigrationsResponse>;
387
392
  /**
@@ -391,7 +396,7 @@ export declare class DatabaseMigrationClient {
391
396
  * @param ListWorkRequestErrorsRequest
392
397
  * @return ListWorkRequestErrorsResponse
393
398
  * @throws OciError when an error occurs
394
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
399
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
395
400
  */
396
401
  listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
397
402
  /**
@@ -401,7 +406,7 @@ export declare class DatabaseMigrationClient {
401
406
  * @param ListWorkRequestLogsRequest
402
407
  * @return ListWorkRequestLogsResponse
403
408
  * @throws OciError when an error occurs
404
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
409
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
405
410
  */
406
411
  listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
407
412
  /**
@@ -411,7 +416,7 @@ export declare class DatabaseMigrationClient {
411
416
  * @param ListWorkRequestsRequest
412
417
  * @return ListWorkRequestsResponse
413
418
  * @throws OciError when an error occurs
414
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
419
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
415
420
  */
416
421
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
417
422
  /**
@@ -421,7 +426,7 @@ export declare class DatabaseMigrationClient {
421
426
  * @param RemoveMigrationObjectsRequest
422
427
  * @return RemoveMigrationObjectsResponse
423
428
  * @throws OciError when an error occurs
424
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
429
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/RemoveMigrationObjects.ts.html |here} to see how to use RemoveMigrationObjects API.
425
430
  */
426
431
  removeMigrationObjects(removeMigrationObjectsRequest: requests.RemoveMigrationObjectsRequest): Promise<responses.RemoveMigrationObjectsResponse>;
427
432
  /**
@@ -431,7 +436,7 @@ export declare class DatabaseMigrationClient {
431
436
  * @param ResumeJobRequest
432
437
  * @return ResumeJobResponse
433
438
  * @throws OciError when an error occurs
434
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
439
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/ResumeJob.ts.html |here} to see how to use ResumeJob API.
435
440
  */
436
441
  resumeJob(resumeJobRequest: requests.ResumeJobRequest): Promise<responses.ResumeJobResponse>;
437
442
  /**
@@ -441,7 +446,7 @@ export declare class DatabaseMigrationClient {
441
446
  * @param RetrieveSupportedPhasesRequest
442
447
  * @return RetrieveSupportedPhasesResponse
443
448
  * @throws OciError when an error occurs
444
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
449
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/RetrieveSupportedPhases.ts.html |here} to see how to use RetrieveSupportedPhases API.
445
450
  */
446
451
  retrieveSupportedPhases(retrieveSupportedPhasesRequest: requests.RetrieveSupportedPhasesRequest): Promise<responses.RetrieveSupportedPhasesResponse>;
447
452
  /**
@@ -451,7 +456,7 @@ export declare class DatabaseMigrationClient {
451
456
  * @param StartMigrationRequest
452
457
  * @return StartMigrationResponse
453
458
  * @throws OciError when an error occurs
454
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
459
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/StartMigration.ts.html |here} to see how to use StartMigration API.
455
460
  */
456
461
  startMigration(startMigrationRequest: requests.StartMigrationRequest): Promise<responses.StartMigrationResponse>;
457
462
  /**
@@ -461,7 +466,7 @@ export declare class DatabaseMigrationClient {
461
466
  * @param UpdateAgentRequest
462
467
  * @return UpdateAgentResponse
463
468
  * @throws OciError when an error occurs
464
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
469
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/UpdateAgent.ts.html |here} to see how to use UpdateAgent API.
465
470
  */
466
471
  updateAgent(updateAgentRequest: requests.UpdateAgentRequest): Promise<responses.UpdateAgentResponse>;
467
472
  /**
@@ -471,7 +476,7 @@ export declare class DatabaseMigrationClient {
471
476
  * @param UpdateConnectionRequest
472
477
  * @return UpdateConnectionResponse
473
478
  * @throws OciError when an error occurs
474
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
479
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/UpdateConnection.ts.html |here} to see how to use UpdateConnection API.
475
480
  */
476
481
  updateConnection(updateConnectionRequest: requests.UpdateConnectionRequest): Promise<responses.UpdateConnectionResponse>;
477
482
  /**
@@ -481,7 +486,7 @@ export declare class DatabaseMigrationClient {
481
486
  * @param UpdateJobRequest
482
487
  * @return UpdateJobResponse
483
488
  * @throws OciError when an error occurs
484
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
489
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/UpdateJob.ts.html |here} to see how to use UpdateJob API.
485
490
  */
486
491
  updateJob(updateJobRequest: requests.UpdateJobRequest): Promise<responses.UpdateJobResponse>;
487
492
  /**
@@ -491,7 +496,8 @@ export declare class DatabaseMigrationClient {
491
496
  * @param UpdateMigrationRequest
492
497
  * @return UpdateMigrationResponse
493
498
  * @throws OciError when an error occurs
494
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
499
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/databasemigration/UpdateMigration.ts.html |here} to see how to use UpdateMigration API.
495
500
  */
496
501
  updateMigration(updateMigrationRequest: requests.UpdateMigrationRequest): Promise<responses.UpdateMigrationResponse>;
497
502
  }
503
+ export {};