oci-dataflow 2.27.0 → 2.30.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 +25 -24
- package/lib/client.js +97 -48
- package/lib/client.js.map +1 -1
- package/lib/model/application.d.ts +2 -0
- package/lib/model/application.js +12 -0
- package/lib/model/application.js.map +1 -1
- package/lib/model/create-application-details.d.ts +2 -0
- package/lib/model/create-application-details.js +12 -0
- package/lib/model/create-application-details.js.map +1 -1
- package/lib/model/create-run-details.d.ts +2 -0
- package/lib/model/create-run-details.js +12 -0
- package/lib/model/create-run-details.js.map +1 -1
- package/lib/model/index.d.ts +2 -0
- package/lib/model/index.js +3 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/run.d.ts +2 -0
- package/lib/model/run.js +12 -0
- package/lib/model/run.js.map +1 -1
- package/lib/model/shape-config.d.ts +34 -0
- package/lib/model/shape-config.js +30 -0
- package/lib/model/shape-config.js.map +1 -0
- package/lib/model/update-application-details.d.ts +2 -0
- package/lib/model/update-application-details.js +12 -0
- package/lib/model/update-application-details.js.map +1 -1
- package/lib/request/change-application-compartment-request.d.ts +1 -1
- package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
- package/lib/request/change-run-compartment-request.d.ts +1 -1
- package/lib/request/create-application-request.d.ts +1 -1
- package/lib/request/create-private-endpoint-request.d.ts +1 -1
- package/lib/request/create-run-request.d.ts +1 -1
- package/lib/request/delete-application-request.d.ts +1 -1
- package/lib/request/delete-private-endpoint-request.d.ts +1 -1
- package/lib/request/delete-run-request.d.ts +1 -1
- package/lib/request/get-application-request.d.ts +1 -1
- package/lib/request/get-private-endpoint-request.d.ts +1 -1
- package/lib/request/get-run-log-request.d.ts +1 -1
- package/lib/request/get-run-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-applications-request.d.ts +1 -1
- package/lib/request/list-private-endpoints-request.d.ts +1 -1
- package/lib/request/list-run-logs-request.d.ts +1 -1
- package/lib/request/list-runs-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/update-application-request.d.ts +1 -1
- package/lib/request/update-private-endpoint-request.d.ts +1 -1
- package/lib/request/update-run-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -62,6 +62,7 @@ class DataFlowClient {
|
|
|
62
62
|
this["_defaultHeaders"] = {};
|
|
63
63
|
this._circuitBreaker = null;
|
|
64
64
|
this._httpOptions = undefined;
|
|
65
|
+
this.targetService = "DataFlow";
|
|
65
66
|
const requestSigner = params.authenticationDetailsProvider
|
|
66
67
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
67
68
|
: null;
|
|
@@ -159,12 +160,14 @@ class DataFlowClient {
|
|
|
159
160
|
* @param ChangeApplicationCompartmentRequest
|
|
160
161
|
* @return ChangeApplicationCompartmentResponse
|
|
161
162
|
* @throws OciError when an error occurs
|
|
162
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
163
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
|
|
163
164
|
*/
|
|
164
165
|
changeApplicationCompartment(changeApplicationCompartmentRequest) {
|
|
165
166
|
return __awaiter(this, void 0, void 0, function* () {
|
|
166
167
|
if (this.logger)
|
|
167
168
|
this.logger.debug("Calling operation DataFlowClient#changeApplicationCompartment.");
|
|
169
|
+
const operationName = "changeApplicationCompartment";
|
|
170
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/ChangeApplicationCompartment";
|
|
168
171
|
const pathParams = {
|
|
169
172
|
"{applicationId}": changeApplicationCompartmentRequest.applicationId
|
|
170
173
|
};
|
|
@@ -190,7 +193,7 @@ class DataFlowClient {
|
|
|
190
193
|
queryParams: queryParams
|
|
191
194
|
});
|
|
192
195
|
try {
|
|
193
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
196
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
194
197
|
const sdkResponse = oci_common_2.composeResponse({
|
|
195
198
|
responseObject: {},
|
|
196
199
|
responseHeaders: [
|
|
@@ -215,12 +218,14 @@ class DataFlowClient {
|
|
|
215
218
|
* @param ChangePrivateEndpointCompartmentRequest
|
|
216
219
|
* @return ChangePrivateEndpointCompartmentResponse
|
|
217
220
|
* @throws OciError when an error occurs
|
|
218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
221
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
|
|
219
222
|
*/
|
|
220
223
|
changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest) {
|
|
221
224
|
return __awaiter(this, void 0, void 0, function* () {
|
|
222
225
|
if (this.logger)
|
|
223
226
|
this.logger.debug("Calling operation DataFlowClient#changePrivateEndpointCompartment.");
|
|
227
|
+
const operationName = "changePrivateEndpointCompartment";
|
|
228
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/ChangePrivateEndpointCompartment";
|
|
224
229
|
const pathParams = {
|
|
225
230
|
"{privateEndpointId}": changePrivateEndpointCompartmentRequest.privateEndpointId
|
|
226
231
|
};
|
|
@@ -245,7 +250,7 @@ class DataFlowClient {
|
|
|
245
250
|
queryParams: queryParams
|
|
246
251
|
});
|
|
247
252
|
try {
|
|
248
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
253
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
249
254
|
const sdkResponse = oci_common_2.composeResponse({
|
|
250
255
|
responseObject: {},
|
|
251
256
|
responseHeaders: [
|
|
@@ -278,12 +283,14 @@ class DataFlowClient {
|
|
|
278
283
|
* @param ChangeRunCompartmentRequest
|
|
279
284
|
* @return ChangeRunCompartmentResponse
|
|
280
285
|
* @throws OciError when an error occurs
|
|
281
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
|
|
282
287
|
*/
|
|
283
288
|
changeRunCompartment(changeRunCompartmentRequest) {
|
|
284
289
|
return __awaiter(this, void 0, void 0, function* () {
|
|
285
290
|
if (this.logger)
|
|
286
291
|
this.logger.debug("Calling operation DataFlowClient#changeRunCompartment.");
|
|
292
|
+
const operationName = "changeRunCompartment";
|
|
293
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/ChangeRunCompartment";
|
|
287
294
|
const pathParams = {
|
|
288
295
|
"{runId}": changeRunCompartmentRequest.runId
|
|
289
296
|
};
|
|
@@ -309,7 +316,7 @@ class DataFlowClient {
|
|
|
309
316
|
queryParams: queryParams
|
|
310
317
|
});
|
|
311
318
|
try {
|
|
312
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
319
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
313
320
|
const sdkResponse = oci_common_2.composeResponse({
|
|
314
321
|
responseObject: {},
|
|
315
322
|
responseHeaders: [
|
|
@@ -334,12 +341,14 @@ class DataFlowClient {
|
|
|
334
341
|
* @param CreateApplicationRequest
|
|
335
342
|
* @return CreateApplicationResponse
|
|
336
343
|
* @throws OciError when an error occurs
|
|
337
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
344
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
|
|
338
345
|
*/
|
|
339
346
|
createApplication(createApplicationRequest) {
|
|
340
347
|
return __awaiter(this, void 0, void 0, function* () {
|
|
341
348
|
if (this.logger)
|
|
342
349
|
this.logger.debug("Calling operation DataFlowClient#createApplication.");
|
|
350
|
+
const operationName = "createApplication";
|
|
351
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/CreateApplication";
|
|
343
352
|
const pathParams = {};
|
|
344
353
|
const queryParams = {};
|
|
345
354
|
let headerParams = {
|
|
@@ -362,7 +371,7 @@ class DataFlowClient {
|
|
|
362
371
|
queryParams: queryParams
|
|
363
372
|
});
|
|
364
373
|
try {
|
|
365
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
374
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
366
375
|
const sdkResponse = oci_common_2.composeResponse({
|
|
367
376
|
responseObject: {},
|
|
368
377
|
body: yield response.json(),
|
|
@@ -396,12 +405,14 @@ class DataFlowClient {
|
|
|
396
405
|
* @param CreatePrivateEndpointRequest
|
|
397
406
|
* @return CreatePrivateEndpointResponse
|
|
398
407
|
* @throws OciError when an error occurs
|
|
399
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
408
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
|
|
400
409
|
*/
|
|
401
410
|
createPrivateEndpoint(createPrivateEndpointRequest) {
|
|
402
411
|
return __awaiter(this, void 0, void 0, function* () {
|
|
403
412
|
if (this.logger)
|
|
404
413
|
this.logger.debug("Calling operation DataFlowClient#createPrivateEndpoint.");
|
|
414
|
+
const operationName = "createPrivateEndpoint";
|
|
415
|
+
const apiReferenceLink = "";
|
|
405
416
|
const pathParams = {};
|
|
406
417
|
const queryParams = {};
|
|
407
418
|
let headerParams = {
|
|
@@ -424,7 +435,7 @@ class DataFlowClient {
|
|
|
424
435
|
queryParams: queryParams
|
|
425
436
|
});
|
|
426
437
|
try {
|
|
427
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
438
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
428
439
|
const sdkResponse = oci_common_2.composeResponse({
|
|
429
440
|
responseObject: {},
|
|
430
441
|
body: yield response.json(),
|
|
@@ -468,12 +479,14 @@ class DataFlowClient {
|
|
|
468
479
|
* @param CreateRunRequest
|
|
469
480
|
* @return CreateRunResponse
|
|
470
481
|
* @throws OciError when an error occurs
|
|
471
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
482
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
|
|
472
483
|
*/
|
|
473
484
|
createRun(createRunRequest) {
|
|
474
485
|
return __awaiter(this, void 0, void 0, function* () {
|
|
475
486
|
if (this.logger)
|
|
476
487
|
this.logger.debug("Calling operation DataFlowClient#createRun.");
|
|
488
|
+
const operationName = "createRun";
|
|
489
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/CreateRun";
|
|
477
490
|
const pathParams = {};
|
|
478
491
|
const queryParams = {};
|
|
479
492
|
let headerParams = {
|
|
@@ -496,7 +509,7 @@ class DataFlowClient {
|
|
|
496
509
|
queryParams: queryParams
|
|
497
510
|
});
|
|
498
511
|
try {
|
|
499
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
512
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
500
513
|
const sdkResponse = oci_common_2.composeResponse({
|
|
501
514
|
responseObject: {},
|
|
502
515
|
body: yield response.json(),
|
|
@@ -530,12 +543,14 @@ class DataFlowClient {
|
|
|
530
543
|
* @param DeleteApplicationRequest
|
|
531
544
|
* @return DeleteApplicationResponse
|
|
532
545
|
* @throws OciError when an error occurs
|
|
533
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
546
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
|
|
534
547
|
*/
|
|
535
548
|
deleteApplication(deleteApplicationRequest) {
|
|
536
549
|
return __awaiter(this, void 0, void 0, function* () {
|
|
537
550
|
if (this.logger)
|
|
538
551
|
this.logger.debug("Calling operation DataFlowClient#deleteApplication.");
|
|
552
|
+
const operationName = "deleteApplication";
|
|
553
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/DeleteApplication";
|
|
539
554
|
const pathParams = {
|
|
540
555
|
"{applicationId}": deleteApplicationRequest.applicationId
|
|
541
556
|
};
|
|
@@ -559,7 +574,7 @@ class DataFlowClient {
|
|
|
559
574
|
queryParams: queryParams
|
|
560
575
|
});
|
|
561
576
|
try {
|
|
562
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
577
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
563
578
|
const sdkResponse = oci_common_2.composeResponse({
|
|
564
579
|
responseObject: {},
|
|
565
580
|
responseHeaders: [
|
|
@@ -584,12 +599,14 @@ class DataFlowClient {
|
|
|
584
599
|
* @param DeletePrivateEndpointRequest
|
|
585
600
|
* @return DeletePrivateEndpointResponse
|
|
586
601
|
* @throws OciError when an error occurs
|
|
587
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
602
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
|
|
588
603
|
*/
|
|
589
604
|
deletePrivateEndpoint(deletePrivateEndpointRequest) {
|
|
590
605
|
return __awaiter(this, void 0, void 0, function* () {
|
|
591
606
|
if (this.logger)
|
|
592
607
|
this.logger.debug("Calling operation DataFlowClient#deletePrivateEndpoint.");
|
|
608
|
+
const operationName = "deletePrivateEndpoint";
|
|
609
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/DeletePrivateEndpoint";
|
|
593
610
|
const pathParams = {
|
|
594
611
|
"{privateEndpointId}": deletePrivateEndpointRequest.privateEndpointId
|
|
595
612
|
};
|
|
@@ -613,7 +630,7 @@ class DataFlowClient {
|
|
|
613
630
|
queryParams: queryParams
|
|
614
631
|
});
|
|
615
632
|
try {
|
|
616
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
633
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
617
634
|
const sdkResponse = oci_common_2.composeResponse({
|
|
618
635
|
responseObject: {},
|
|
619
636
|
responseHeaders: [
|
|
@@ -644,12 +661,14 @@ class DataFlowClient {
|
|
|
644
661
|
* @param DeleteRunRequest
|
|
645
662
|
* @return DeleteRunResponse
|
|
646
663
|
* @throws OciError when an error occurs
|
|
647
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
664
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
|
|
648
665
|
*/
|
|
649
666
|
deleteRun(deleteRunRequest) {
|
|
650
667
|
return __awaiter(this, void 0, void 0, function* () {
|
|
651
668
|
if (this.logger)
|
|
652
669
|
this.logger.debug("Calling operation DataFlowClient#deleteRun.");
|
|
670
|
+
const operationName = "deleteRun";
|
|
671
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/DeleteRun";
|
|
653
672
|
const pathParams = {
|
|
654
673
|
"{runId}": deleteRunRequest.runId
|
|
655
674
|
};
|
|
@@ -673,7 +692,7 @@ class DataFlowClient {
|
|
|
673
692
|
queryParams: queryParams
|
|
674
693
|
});
|
|
675
694
|
try {
|
|
676
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
695
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
677
696
|
const sdkResponse = oci_common_2.composeResponse({
|
|
678
697
|
responseObject: {},
|
|
679
698
|
responseHeaders: [
|
|
@@ -698,12 +717,14 @@ class DataFlowClient {
|
|
|
698
717
|
* @param GetApplicationRequest
|
|
699
718
|
* @return GetApplicationResponse
|
|
700
719
|
* @throws OciError when an error occurs
|
|
701
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
720
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
|
|
702
721
|
*/
|
|
703
722
|
getApplication(getApplicationRequest) {
|
|
704
723
|
return __awaiter(this, void 0, void 0, function* () {
|
|
705
724
|
if (this.logger)
|
|
706
725
|
this.logger.debug("Calling operation DataFlowClient#getApplication.");
|
|
726
|
+
const operationName = "getApplication";
|
|
727
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/GetApplication";
|
|
707
728
|
const pathParams = {
|
|
708
729
|
"{applicationId}": getApplicationRequest.applicationId
|
|
709
730
|
};
|
|
@@ -726,7 +747,7 @@ class DataFlowClient {
|
|
|
726
747
|
queryParams: queryParams
|
|
727
748
|
});
|
|
728
749
|
try {
|
|
729
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
750
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
730
751
|
const sdkResponse = oci_common_2.composeResponse({
|
|
731
752
|
responseObject: {},
|
|
732
753
|
body: yield response.json(),
|
|
@@ -760,12 +781,14 @@ class DataFlowClient {
|
|
|
760
781
|
* @param GetPrivateEndpointRequest
|
|
761
782
|
* @return GetPrivateEndpointResponse
|
|
762
783
|
* @throws OciError when an error occurs
|
|
763
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
784
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
|
|
764
785
|
*/
|
|
765
786
|
getPrivateEndpoint(getPrivateEndpointRequest) {
|
|
766
787
|
return __awaiter(this, void 0, void 0, function* () {
|
|
767
788
|
if (this.logger)
|
|
768
789
|
this.logger.debug("Calling operation DataFlowClient#getPrivateEndpoint.");
|
|
790
|
+
const operationName = "getPrivateEndpoint";
|
|
791
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/GetPrivateEndpoint";
|
|
769
792
|
const pathParams = {
|
|
770
793
|
"{privateEndpointId}": getPrivateEndpointRequest.privateEndpointId
|
|
771
794
|
};
|
|
@@ -788,7 +811,7 @@ class DataFlowClient {
|
|
|
788
811
|
queryParams: queryParams
|
|
789
812
|
});
|
|
790
813
|
try {
|
|
791
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
814
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
792
815
|
const sdkResponse = oci_common_2.composeResponse({
|
|
793
816
|
responseObject: {},
|
|
794
817
|
body: yield response.json(),
|
|
@@ -822,12 +845,14 @@ class DataFlowClient {
|
|
|
822
845
|
* @param GetRunRequest
|
|
823
846
|
* @return GetRunResponse
|
|
824
847
|
* @throws OciError when an error occurs
|
|
825
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
848
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
|
|
826
849
|
*/
|
|
827
850
|
getRun(getRunRequest) {
|
|
828
851
|
return __awaiter(this, void 0, void 0, function* () {
|
|
829
852
|
if (this.logger)
|
|
830
853
|
this.logger.debug("Calling operation DataFlowClient#getRun.");
|
|
854
|
+
const operationName = "getRun";
|
|
855
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/GetRun";
|
|
831
856
|
const pathParams = {
|
|
832
857
|
"{runId}": getRunRequest.runId
|
|
833
858
|
};
|
|
@@ -850,7 +875,7 @@ class DataFlowClient {
|
|
|
850
875
|
queryParams: queryParams
|
|
851
876
|
});
|
|
852
877
|
try {
|
|
853
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
878
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
854
879
|
const sdkResponse = oci_common_2.composeResponse({
|
|
855
880
|
responseObject: {},
|
|
856
881
|
body: yield response.json(),
|
|
@@ -884,12 +909,14 @@ class DataFlowClient {
|
|
|
884
909
|
* @param GetRunLogRequest
|
|
885
910
|
* @return GetRunLogResponse
|
|
886
911
|
* @throws OciError when an error occurs
|
|
887
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
912
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
|
|
888
913
|
*/
|
|
889
914
|
getRunLog(getRunLogRequest) {
|
|
890
915
|
return __awaiter(this, void 0, void 0, function* () {
|
|
891
916
|
if (this.logger)
|
|
892
917
|
this.logger.debug("Calling operation DataFlowClient#getRunLog.");
|
|
918
|
+
const operationName = "getRunLog";
|
|
919
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/GetRunLog";
|
|
893
920
|
const pathParams = {
|
|
894
921
|
"{runId}": getRunLogRequest.runId,
|
|
895
922
|
"{name}": getRunLogRequest.name
|
|
@@ -913,7 +940,7 @@ class DataFlowClient {
|
|
|
913
940
|
queryParams: queryParams
|
|
914
941
|
});
|
|
915
942
|
try {
|
|
916
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
943
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
917
944
|
const sdkResponse = oci_common_2.composeResponse({
|
|
918
945
|
responseObject: {},
|
|
919
946
|
body: response.body,
|
|
@@ -969,12 +996,14 @@ class DataFlowClient {
|
|
|
969
996
|
* @param GetWorkRequestRequest
|
|
970
997
|
* @return GetWorkRequestResponse
|
|
971
998
|
* @throws OciError when an error occurs
|
|
972
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
999
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
973
1000
|
*/
|
|
974
1001
|
getWorkRequest(getWorkRequestRequest) {
|
|
975
1002
|
return __awaiter(this, void 0, void 0, function* () {
|
|
976
1003
|
if (this.logger)
|
|
977
1004
|
this.logger.debug("Calling operation DataFlowClient#getWorkRequest.");
|
|
1005
|
+
const operationName = "getWorkRequest";
|
|
1006
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/WorkRequest/GetWorkRequest";
|
|
978
1007
|
const pathParams = {
|
|
979
1008
|
"{workRequestId}": getWorkRequestRequest.workRequestId
|
|
980
1009
|
};
|
|
@@ -997,7 +1026,7 @@ class DataFlowClient {
|
|
|
997
1026
|
queryParams: queryParams
|
|
998
1027
|
});
|
|
999
1028
|
try {
|
|
1000
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1029
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1001
1030
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1002
1031
|
responseObject: {},
|
|
1003
1032
|
body: yield response.json(),
|
|
@@ -1026,12 +1055,14 @@ class DataFlowClient {
|
|
|
1026
1055
|
* @param ListApplicationsRequest
|
|
1027
1056
|
* @return ListApplicationsResponse
|
|
1028
1057
|
* @throws OciError when an error occurs
|
|
1029
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1058
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
|
|
1030
1059
|
*/
|
|
1031
1060
|
listApplications(listApplicationsRequest) {
|
|
1032
1061
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1033
1062
|
if (this.logger)
|
|
1034
1063
|
this.logger.debug("Calling operation DataFlowClient#listApplications.");
|
|
1064
|
+
const operationName = "listApplications";
|
|
1065
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/ApplicationSummary/ListApplications";
|
|
1035
1066
|
const pathParams = {};
|
|
1036
1067
|
const queryParams = {
|
|
1037
1068
|
"compartmentId": listApplicationsRequest.compartmentId,
|
|
@@ -1062,7 +1093,7 @@ class DataFlowClient {
|
|
|
1062
1093
|
queryParams: queryParams
|
|
1063
1094
|
});
|
|
1064
1095
|
try {
|
|
1065
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1096
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1066
1097
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1067
1098
|
responseObject: {},
|
|
1068
1099
|
body: yield response.json(),
|
|
@@ -1141,12 +1172,14 @@ class DataFlowClient {
|
|
|
1141
1172
|
* @param ListPrivateEndpointsRequest
|
|
1142
1173
|
* @return ListPrivateEndpointsResponse
|
|
1143
1174
|
* @throws OciError when an error occurs
|
|
1144
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1175
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
|
|
1145
1176
|
*/
|
|
1146
1177
|
listPrivateEndpoints(listPrivateEndpointsRequest) {
|
|
1147
1178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1148
1179
|
if (this.logger)
|
|
1149
1180
|
this.logger.debug("Calling operation DataFlowClient#listPrivateEndpoints.");
|
|
1181
|
+
const operationName = "listPrivateEndpoints";
|
|
1182
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/ListPrivateEndpoints";
|
|
1150
1183
|
const pathParams = {};
|
|
1151
1184
|
const queryParams = {
|
|
1152
1185
|
"compartmentId": listPrivateEndpointsRequest.compartmentId,
|
|
@@ -1177,7 +1210,7 @@ class DataFlowClient {
|
|
|
1177
1210
|
queryParams: queryParams
|
|
1178
1211
|
});
|
|
1179
1212
|
try {
|
|
1180
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1213
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1181
1214
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1182
1215
|
responseObject: {},
|
|
1183
1216
|
body: yield response.json(),
|
|
@@ -1216,12 +1249,14 @@ class DataFlowClient {
|
|
|
1216
1249
|
* @param ListRunLogsRequest
|
|
1217
1250
|
* @return ListRunLogsResponse
|
|
1218
1251
|
* @throws OciError when an error occurs
|
|
1219
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1252
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
|
|
1220
1253
|
*/
|
|
1221
1254
|
listRunLogs(listRunLogsRequest) {
|
|
1222
1255
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1223
1256
|
if (this.logger)
|
|
1224
1257
|
this.logger.debug("Calling operation DataFlowClient#listRunLogs.");
|
|
1258
|
+
const operationName = "listRunLogs";
|
|
1259
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/RunLogSummary/ListRunLogs";
|
|
1225
1260
|
const pathParams = {
|
|
1226
1261
|
"{runId}": listRunLogsRequest.runId
|
|
1227
1262
|
};
|
|
@@ -1247,7 +1282,7 @@ class DataFlowClient {
|
|
|
1247
1282
|
queryParams: queryParams
|
|
1248
1283
|
});
|
|
1249
1284
|
try {
|
|
1250
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1285
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1251
1286
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1252
1287
|
responseObject: {},
|
|
1253
1288
|
body: yield response.json(),
|
|
@@ -1326,12 +1361,14 @@ class DataFlowClient {
|
|
|
1326
1361
|
* @param ListRunsRequest
|
|
1327
1362
|
* @return ListRunsResponse
|
|
1328
1363
|
* @throws OciError when an error occurs
|
|
1329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1364
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
|
|
1330
1365
|
*/
|
|
1331
1366
|
listRuns(listRunsRequest) {
|
|
1332
1367
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1333
1368
|
if (this.logger)
|
|
1334
1369
|
this.logger.debug("Calling operation DataFlowClient#listRuns.");
|
|
1370
|
+
const operationName = "listRuns";
|
|
1371
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/RunSummary/ListRuns";
|
|
1335
1372
|
const pathParams = {};
|
|
1336
1373
|
const queryParams = {
|
|
1337
1374
|
"compartmentId": listRunsRequest.compartmentId,
|
|
@@ -1364,7 +1401,7 @@ class DataFlowClient {
|
|
|
1364
1401
|
queryParams: queryParams
|
|
1365
1402
|
});
|
|
1366
1403
|
try {
|
|
1367
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1404
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1368
1405
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1369
1406
|
responseObject: {},
|
|
1370
1407
|
body: yield response.json(),
|
|
@@ -1443,12 +1480,14 @@ class DataFlowClient {
|
|
|
1443
1480
|
* @param ListWorkRequestErrorsRequest
|
|
1444
1481
|
* @return ListWorkRequestErrorsResponse
|
|
1445
1482
|
* @throws OciError when an error occurs
|
|
1446
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1483
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1447
1484
|
*/
|
|
1448
1485
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1449
1486
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1450
1487
|
if (this.logger)
|
|
1451
1488
|
this.logger.debug("Calling operation DataFlowClient#listWorkRequestErrors.");
|
|
1489
|
+
const operationName = "listWorkRequestErrors";
|
|
1490
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/WorkRequestError/ListWorkRequestErrors";
|
|
1452
1491
|
const pathParams = {
|
|
1453
1492
|
"{workRequestId}": listWorkRequestErrorsRequest.workRequestId
|
|
1454
1493
|
};
|
|
@@ -1474,7 +1513,7 @@ class DataFlowClient {
|
|
|
1474
1513
|
queryParams: queryParams
|
|
1475
1514
|
});
|
|
1476
1515
|
try {
|
|
1477
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1516
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1478
1517
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1479
1518
|
responseObject: {},
|
|
1480
1519
|
body: yield response.json(),
|
|
@@ -1513,12 +1552,14 @@ class DataFlowClient {
|
|
|
1513
1552
|
* @param ListWorkRequestLogsRequest
|
|
1514
1553
|
* @return ListWorkRequestLogsResponse
|
|
1515
1554
|
* @throws OciError when an error occurs
|
|
1516
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1555
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1517
1556
|
*/
|
|
1518
1557
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1519
1558
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1520
1559
|
if (this.logger)
|
|
1521
1560
|
this.logger.debug("Calling operation DataFlowClient#listWorkRequestLogs.");
|
|
1561
|
+
const operationName = "listWorkRequestLogs";
|
|
1562
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/WorkRequestLog/ListWorkRequestLogs";
|
|
1522
1563
|
const pathParams = {
|
|
1523
1564
|
"{workRequestId}": listWorkRequestLogsRequest.workRequestId
|
|
1524
1565
|
};
|
|
@@ -1544,7 +1585,7 @@ class DataFlowClient {
|
|
|
1544
1585
|
queryParams: queryParams
|
|
1545
1586
|
});
|
|
1546
1587
|
try {
|
|
1547
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1588
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1548
1589
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1549
1590
|
responseObject: {},
|
|
1550
1591
|
body: yield response.json(),
|
|
@@ -1583,12 +1624,14 @@ class DataFlowClient {
|
|
|
1583
1624
|
* @param ListWorkRequestsRequest
|
|
1584
1625
|
* @return ListWorkRequestsResponse
|
|
1585
1626
|
* @throws OciError when an error occurs
|
|
1586
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1627
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1587
1628
|
*/
|
|
1588
1629
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1589
1630
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1590
1631
|
if (this.logger)
|
|
1591
1632
|
this.logger.debug("Calling operation DataFlowClient#listWorkRequests.");
|
|
1633
|
+
const operationName = "listWorkRequests";
|
|
1634
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/WorkRequest/ListWorkRequests";
|
|
1592
1635
|
const pathParams = {};
|
|
1593
1636
|
const queryParams = {
|
|
1594
1637
|
"compartmentId": listWorkRequestsRequest.compartmentId,
|
|
@@ -1613,7 +1656,7 @@ class DataFlowClient {
|
|
|
1613
1656
|
queryParams: queryParams
|
|
1614
1657
|
});
|
|
1615
1658
|
try {
|
|
1616
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1659
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1617
1660
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1618
1661
|
responseObject: {},
|
|
1619
1662
|
body: yield response.json(),
|
|
@@ -1652,12 +1695,14 @@ class DataFlowClient {
|
|
|
1652
1695
|
* @param UpdateApplicationRequest
|
|
1653
1696
|
* @return UpdateApplicationResponse
|
|
1654
1697
|
* @throws OciError when an error occurs
|
|
1655
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1698
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
|
|
1656
1699
|
*/
|
|
1657
1700
|
updateApplication(updateApplicationRequest) {
|
|
1658
1701
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1659
1702
|
if (this.logger)
|
|
1660
1703
|
this.logger.debug("Calling operation DataFlowClient#updateApplication.");
|
|
1704
|
+
const operationName = "updateApplication";
|
|
1705
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Application/UpdateApplication";
|
|
1661
1706
|
const pathParams = {
|
|
1662
1707
|
"{applicationId}": updateApplicationRequest.applicationId
|
|
1663
1708
|
};
|
|
@@ -1682,7 +1727,7 @@ class DataFlowClient {
|
|
|
1682
1727
|
queryParams: queryParams
|
|
1683
1728
|
});
|
|
1684
1729
|
try {
|
|
1685
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1730
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1686
1731
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1687
1732
|
responseObject: {},
|
|
1688
1733
|
body: yield response.json(),
|
|
@@ -1718,12 +1763,14 @@ class DataFlowClient {
|
|
|
1718
1763
|
* @param UpdatePrivateEndpointRequest
|
|
1719
1764
|
* @return UpdatePrivateEndpointResponse
|
|
1720
1765
|
* @throws OciError when an error occurs
|
|
1721
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1766
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
|
|
1722
1767
|
*/
|
|
1723
1768
|
updatePrivateEndpoint(updatePrivateEndpointRequest) {
|
|
1724
1769
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1725
1770
|
if (this.logger)
|
|
1726
1771
|
this.logger.debug("Calling operation DataFlowClient#updatePrivateEndpoint.");
|
|
1772
|
+
const operationName = "updatePrivateEndpoint";
|
|
1773
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/PrivateEndpoint/UpdatePrivateEndpoint";
|
|
1727
1774
|
const pathParams = {
|
|
1728
1775
|
"{privateEndpointId}": updatePrivateEndpointRequest.privateEndpointId
|
|
1729
1776
|
};
|
|
@@ -1748,7 +1795,7 @@ class DataFlowClient {
|
|
|
1748
1795
|
queryParams: queryParams
|
|
1749
1796
|
});
|
|
1750
1797
|
try {
|
|
1751
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1798
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1752
1799
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1753
1800
|
responseObject: {},
|
|
1754
1801
|
responseHeaders: [
|
|
@@ -1778,12 +1825,14 @@ class DataFlowClient {
|
|
|
1778
1825
|
* @param UpdateRunRequest
|
|
1779
1826
|
* @return UpdateRunResponse
|
|
1780
1827
|
* @throws OciError when an error occurs
|
|
1781
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1828
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.30.0/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
|
|
1782
1829
|
*/
|
|
1783
1830
|
updateRun(updateRunRequest) {
|
|
1784
1831
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1785
1832
|
if (this.logger)
|
|
1786
1833
|
this.logger.debug("Calling operation DataFlowClient#updateRun.");
|
|
1834
|
+
const operationName = "updateRun";
|
|
1835
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/data-flow/20200129/Run/UpdateRun";
|
|
1787
1836
|
const pathParams = {
|
|
1788
1837
|
"{runId}": updateRunRequest.runId
|
|
1789
1838
|
};
|
|
@@ -1808,7 +1857,7 @@ class DataFlowClient {
|
|
|
1808
1857
|
queryParams: queryParams
|
|
1809
1858
|
});
|
|
1810
1859
|
try {
|
|
1811
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1860
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1812
1861
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1813
1862
|
responseObject: {},
|
|
1814
1863
|
body: yield response.json(),
|