oci-dataflow 2.5.1 → 2.7.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.
Files changed (29) hide show
  1. package/LICENSE.txt +6 -0
  2. package/lib/client.d.ts +51 -24
  3. package/lib/client.js +106 -48
  4. package/lib/client.js.map +1 -1
  5. package/lib/request/change-application-compartment-request.d.ts +1 -1
  6. package/lib/request/change-private-endpoint-compartment-request.d.ts +1 -1
  7. package/lib/request/change-run-compartment-request.d.ts +1 -1
  8. package/lib/request/create-application-request.d.ts +1 -1
  9. package/lib/request/create-private-endpoint-request.d.ts +1 -1
  10. package/lib/request/create-run-request.d.ts +1 -1
  11. package/lib/request/delete-application-request.d.ts +1 -1
  12. package/lib/request/delete-private-endpoint-request.d.ts +1 -1
  13. package/lib/request/delete-run-request.d.ts +1 -1
  14. package/lib/request/get-application-request.d.ts +1 -1
  15. package/lib/request/get-private-endpoint-request.d.ts +1 -1
  16. package/lib/request/get-run-log-request.d.ts +1 -1
  17. package/lib/request/get-run-request.d.ts +1 -1
  18. package/lib/request/get-work-request-request.d.ts +1 -1
  19. package/lib/request/list-applications-request.d.ts +1 -1
  20. package/lib/request/list-private-endpoints-request.d.ts +1 -1
  21. package/lib/request/list-run-logs-request.d.ts +1 -1
  22. package/lib/request/list-runs-request.d.ts +1 -1
  23. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  24. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  25. package/lib/request/list-work-requests-request.d.ts +1 -1
  26. package/lib/request/update-application-request.d.ts +1 -1
  27. package/lib/request/update-private-endpoint-request.d.ts +1 -1
  28. package/lib/request/update-run-request.d.ts +1 -1
  29. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -53,6 +53,9 @@ const oci_common_2 = require("oci-common");
53
53
  var DataFlowApiKeys;
54
54
  (function (DataFlowApiKeys) {
55
55
  })(DataFlowApiKeys = exports.DataFlowApiKeys || (exports.DataFlowApiKeys = {}));
56
+ /**
57
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
58
+ */
56
59
  class DataFlowClient {
57
60
  constructor(params, clientConfiguration) {
58
61
  this["_endpoint"] = "";
@@ -67,6 +70,13 @@ class DataFlowClient {
67
70
  ? clientConfiguration.circuitBreaker.circuit
68
71
  : null;
69
72
  }
73
+ // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
74
+ const specCircuitBreakerEnabled = false;
75
+ if (!this._circuitBreaker &&
76
+ common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
77
+ (specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
78
+ this._circuitBreaker = new common.CircuitBreaker().circuit;
79
+ }
70
80
  this._httpClient =
71
81
  params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
72
82
  if (params.authenticationDetailsProvider &&
@@ -140,10 +150,11 @@ class DataFlowClient {
140
150
  * Moves an application into a different compartment. When provided, If-Match is checked against ETag values of the resource.
141
151
  * Associated resources, like runs, will not be automatically moved.
142
152
  *
153
+ * This operation does not retry by default if the user has not defined a retry configuration.
143
154
  * @param ChangeApplicationCompartmentRequest
144
155
  * @return ChangeApplicationCompartmentResponse
145
156
  * @throws OciError when an error occurs
146
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
157
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
147
158
  */
148
159
  changeApplicationCompartment(changeApplicationCompartmentRequest) {
149
160
  return __awaiter(this, void 0, void 0, function* () {
@@ -159,7 +170,8 @@ class DataFlowClient {
159
170
  "if-match": changeApplicationCompartmentRequest.ifMatch,
160
171
  "opc-retry-token": changeApplicationCompartmentRequest.opcRetryToken
161
172
  };
162
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, changeApplicationCompartmentRequest.retryConfiguration);
173
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
174
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeApplicationCompartmentRequest.retryConfiguration, specRetryConfiguration);
163
175
  if (this.logger)
164
176
  retrier.logger = this.logger;
165
177
  const request = yield oci_common_2.composeRequest({
@@ -194,10 +206,11 @@ class DataFlowClient {
194
206
  /**
195
207
  * Moves a private endpoint into a different compartment. When provided, If-Match is checked against ETag values of the resource.
196
208
  *
209
+ * This operation does not retry by default if the user has not defined a retry configuration.
197
210
  * @param ChangePrivateEndpointCompartmentRequest
198
211
  * @return ChangePrivateEndpointCompartmentResponse
199
212
  * @throws OciError when an error occurs
200
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
213
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
201
214
  */
202
215
  changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest) {
203
216
  return __awaiter(this, void 0, void 0, function* () {
@@ -212,7 +225,8 @@ class DataFlowClient {
212
225
  "opc-request-id": changePrivateEndpointCompartmentRequest.opcRequestId,
213
226
  "if-match": changePrivateEndpointCompartmentRequest.ifMatch
214
227
  };
215
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, changePrivateEndpointCompartmentRequest.retryConfiguration);
228
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
229
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changePrivateEndpointCompartmentRequest.retryConfiguration, specRetryConfiguration);
216
230
  if (this.logger)
217
231
  retrier.logger = this.logger;
218
232
  const request = yield oci_common_2.composeRequest({
@@ -255,10 +269,11 @@ class DataFlowClient {
255
269
  * automatically moved. The run must be in a terminal state (CANCELED, FAILED, SUCCEEDED) in
256
270
  * order for it to be moved to a different compartment
257
271
  *
272
+ * This operation does not retry by default if the user has not defined a retry configuration.
258
273
  * @param ChangeRunCompartmentRequest
259
274
  * @return ChangeRunCompartmentResponse
260
275
  * @throws OciError when an error occurs
261
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
276
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
262
277
  */
263
278
  changeRunCompartment(changeRunCompartmentRequest) {
264
279
  return __awaiter(this, void 0, void 0, function* () {
@@ -274,7 +289,8 @@ class DataFlowClient {
274
289
  "if-match": changeRunCompartmentRequest.ifMatch,
275
290
  "opc-retry-token": changeRunCompartmentRequest.opcRetryToken
276
291
  };
277
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, changeRunCompartmentRequest.retryConfiguration);
292
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
293
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeRunCompartmentRequest.retryConfiguration, specRetryConfiguration);
278
294
  if (this.logger)
279
295
  retrier.logger = this.logger;
280
296
  const request = yield oci_common_2.composeRequest({
@@ -309,10 +325,11 @@ class DataFlowClient {
309
325
  /**
310
326
  * Creates an application.
311
327
  *
328
+ * This operation does not retry by default if the user has not defined a retry configuration.
312
329
  * @param CreateApplicationRequest
313
330
  * @return CreateApplicationResponse
314
331
  * @throws OciError when an error occurs
315
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
332
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
316
333
  */
317
334
  createApplication(createApplicationRequest) {
318
335
  return __awaiter(this, void 0, void 0, function* () {
@@ -325,7 +342,8 @@ class DataFlowClient {
325
342
  "opc-retry-token": createApplicationRequest.opcRetryToken,
326
343
  "opc-request-id": createApplicationRequest.opcRequestId
327
344
  };
328
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createApplicationRequest.retryConfiguration);
345
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
346
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createApplicationRequest.retryConfiguration, specRetryConfiguration);
329
347
  if (this.logger)
330
348
  retrier.logger = this.logger;
331
349
  const request = yield oci_common_2.composeRequest({
@@ -369,10 +387,11 @@ class DataFlowClient {
369
387
  /**
370
388
  * Creates a private endpoint to be used by applications.
371
389
  *
390
+ * This operation does not retry by default if the user has not defined a retry configuration.
372
391
  * @param CreatePrivateEndpointRequest
373
392
  * @return CreatePrivateEndpointResponse
374
393
  * @throws OciError when an error occurs
375
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
394
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
376
395
  */
377
396
  createPrivateEndpoint(createPrivateEndpointRequest) {
378
397
  return __awaiter(this, void 0, void 0, function* () {
@@ -385,7 +404,8 @@ class DataFlowClient {
385
404
  "opc-retry-token": createPrivateEndpointRequest.opcRetryToken,
386
405
  "opc-request-id": createPrivateEndpointRequest.opcRequestId
387
406
  };
388
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createPrivateEndpointRequest.retryConfiguration);
407
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
408
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPrivateEndpointRequest.retryConfiguration, specRetryConfiguration);
389
409
  if (this.logger)
390
410
  retrier.logger = this.logger;
391
411
  const request = yield oci_common_2.composeRequest({
@@ -439,10 +459,11 @@ class DataFlowClient {
439
459
  /**
440
460
  * Creates a run for an application.
441
461
  *
462
+ * This operation does not retry by default if the user has not defined a retry configuration.
442
463
  * @param CreateRunRequest
443
464
  * @return CreateRunResponse
444
465
  * @throws OciError when an error occurs
445
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
466
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
446
467
  */
447
468
  createRun(createRunRequest) {
448
469
  return __awaiter(this, void 0, void 0, function* () {
@@ -455,7 +476,8 @@ class DataFlowClient {
455
476
  "opc-retry-token": createRunRequest.opcRetryToken,
456
477
  "opc-request-id": createRunRequest.opcRequestId
457
478
  };
458
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createRunRequest.retryConfiguration);
479
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
480
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRunRequest.retryConfiguration, specRetryConfiguration);
459
481
  if (this.logger)
460
482
  retrier.logger = this.logger;
461
483
  const request = yield oci_common_2.composeRequest({
@@ -499,10 +521,11 @@ class DataFlowClient {
499
521
  /**
500
522
  * Deletes an application using an `applicationId`.
501
523
  *
524
+ * This operation does not retry by default if the user has not defined a retry configuration.
502
525
  * @param DeleteApplicationRequest
503
526
  * @return DeleteApplicationResponse
504
527
  * @throws OciError when an error occurs
505
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
528
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
506
529
  */
507
530
  deleteApplication(deleteApplicationRequest) {
508
531
  return __awaiter(this, void 0, void 0, function* () {
@@ -517,7 +540,8 @@ class DataFlowClient {
517
540
  "opc-request-id": deleteApplicationRequest.opcRequestId,
518
541
  "if-match": deleteApplicationRequest.ifMatch
519
542
  };
520
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteApplicationRequest.retryConfiguration);
543
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
544
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteApplicationRequest.retryConfiguration, specRetryConfiguration);
521
545
  if (this.logger)
522
546
  retrier.logger = this.logger;
523
547
  const request = yield oci_common_2.composeRequest({
@@ -551,10 +575,11 @@ class DataFlowClient {
551
575
  /**
552
576
  * Deletes a private endpoint using a `privateEndpointId`.
553
577
  *
578
+ * This operation does not retry by default if the user has not defined a retry configuration.
554
579
  * @param DeletePrivateEndpointRequest
555
580
  * @return DeletePrivateEndpointResponse
556
581
  * @throws OciError when an error occurs
557
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
582
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
558
583
  */
559
584
  deletePrivateEndpoint(deletePrivateEndpointRequest) {
560
585
  return __awaiter(this, void 0, void 0, function* () {
@@ -569,7 +594,8 @@ class DataFlowClient {
569
594
  "opc-request-id": deletePrivateEndpointRequest.opcRequestId,
570
595
  "if-match": deletePrivateEndpointRequest.ifMatch
571
596
  };
572
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deletePrivateEndpointRequest.retryConfiguration);
597
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
598
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePrivateEndpointRequest.retryConfiguration, specRetryConfiguration);
573
599
  if (this.logger)
574
600
  retrier.logger = this.logger;
575
601
  const request = yield oci_common_2.composeRequest({
@@ -609,10 +635,11 @@ class DataFlowClient {
609
635
  * Cancels the specified run if it has not already completed or was previously cancelled.
610
636
  * If a run is in progress, the executing job will be killed.
611
637
  *
638
+ * This operation does not retry by default if the user has not defined a retry configuration.
612
639
  * @param DeleteRunRequest
613
640
  * @return DeleteRunResponse
614
641
  * @throws OciError when an error occurs
615
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
642
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
616
643
  */
617
644
  deleteRun(deleteRunRequest) {
618
645
  return __awaiter(this, void 0, void 0, function* () {
@@ -627,7 +654,8 @@ class DataFlowClient {
627
654
  "opc-request-id": deleteRunRequest.opcRequestId,
628
655
  "if-match": deleteRunRequest.ifMatch
629
656
  };
630
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteRunRequest.retryConfiguration);
657
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
658
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRunRequest.retryConfiguration, specRetryConfiguration);
631
659
  if (this.logger)
632
660
  retrier.logger = this.logger;
633
661
  const request = yield oci_common_2.composeRequest({
@@ -661,10 +689,11 @@ class DataFlowClient {
661
689
  /**
662
690
  * Retrieves an application using an `applicationId`.
663
691
  *
692
+ * This operation does not retry by default if the user has not defined a retry configuration.
664
693
  * @param GetApplicationRequest
665
694
  * @return GetApplicationResponse
666
695
  * @throws OciError when an error occurs
667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
696
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
668
697
  */
669
698
  getApplication(getApplicationRequest) {
670
699
  return __awaiter(this, void 0, void 0, function* () {
@@ -678,7 +707,8 @@ class DataFlowClient {
678
707
  "Content-Type": common.Constants.APPLICATION_JSON,
679
708
  "opc-request-id": getApplicationRequest.opcRequestId
680
709
  };
681
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getApplicationRequest.retryConfiguration);
710
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
711
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getApplicationRequest.retryConfiguration, specRetryConfiguration);
682
712
  if (this.logger)
683
713
  retrier.logger = this.logger;
684
714
  const request = yield oci_common_2.composeRequest({
@@ -721,10 +751,11 @@ class DataFlowClient {
721
751
  /**
722
752
  * Retrieves an private endpoint using a `privateEndpointId`.
723
753
  *
754
+ * This operation does not retry by default if the user has not defined a retry configuration.
724
755
  * @param GetPrivateEndpointRequest
725
756
  * @return GetPrivateEndpointResponse
726
757
  * @throws OciError when an error occurs
727
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
758
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
728
759
  */
729
760
  getPrivateEndpoint(getPrivateEndpointRequest) {
730
761
  return __awaiter(this, void 0, void 0, function* () {
@@ -738,7 +769,8 @@ class DataFlowClient {
738
769
  "Content-Type": common.Constants.APPLICATION_JSON,
739
770
  "opc-request-id": getPrivateEndpointRequest.opcRequestId
740
771
  };
741
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getPrivateEndpointRequest.retryConfiguration);
772
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
773
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPrivateEndpointRequest.retryConfiguration, specRetryConfiguration);
742
774
  if (this.logger)
743
775
  retrier.logger = this.logger;
744
776
  const request = yield oci_common_2.composeRequest({
@@ -781,10 +813,11 @@ class DataFlowClient {
781
813
  /**
782
814
  * Retrieves the run for the specified `runId`.
783
815
  *
816
+ * This operation does not retry by default if the user has not defined a retry configuration.
784
817
  * @param GetRunRequest
785
818
  * @return GetRunResponse
786
819
  * @throws OciError when an error occurs
787
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
820
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
788
821
  */
789
822
  getRun(getRunRequest) {
790
823
  return __awaiter(this, void 0, void 0, function* () {
@@ -798,7 +831,8 @@ class DataFlowClient {
798
831
  "Content-Type": common.Constants.APPLICATION_JSON,
799
832
  "opc-request-id": getRunRequest.opcRequestId
800
833
  };
801
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getRunRequest.retryConfiguration);
834
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
835
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRunRequest.retryConfiguration, specRetryConfiguration);
802
836
  if (this.logger)
803
837
  retrier.logger = this.logger;
804
838
  const request = yield oci_common_2.composeRequest({
@@ -841,10 +875,11 @@ class DataFlowClient {
841
875
  /**
842
876
  * Retrieves the content of an run log.
843
877
  *
878
+ * This operation does not retry by default if the user has not defined a retry configuration.
844
879
  * @param GetRunLogRequest
845
880
  * @return GetRunLogResponse
846
881
  * @throws OciError when an error occurs
847
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
882
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
848
883
  */
849
884
  getRunLog(getRunLogRequest) {
850
885
  return __awaiter(this, void 0, void 0, function* () {
@@ -859,7 +894,8 @@ class DataFlowClient {
859
894
  "Content-Type": common.Constants.APPLICATION_JSON,
860
895
  "opc-request-id": getRunLogRequest.opcRequestId
861
896
  };
862
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getRunLogRequest.retryConfiguration);
897
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
898
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRunLogRequest.retryConfiguration, specRetryConfiguration);
863
899
  if (this.logger)
864
900
  retrier.logger = this.logger;
865
901
  const request = yield oci_common_2.composeRequest({
@@ -924,10 +960,11 @@ class DataFlowClient {
924
960
  /**
925
961
  * Gets the status of the work request with the given OCID.
926
962
  *
963
+ * This operation does not retry by default if the user has not defined a retry configuration.
927
964
  * @param GetWorkRequestRequest
928
965
  * @return GetWorkRequestResponse
929
966
  * @throws OciError when an error occurs
930
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
967
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
931
968
  */
932
969
  getWorkRequest(getWorkRequestRequest) {
933
970
  return __awaiter(this, void 0, void 0, function* () {
@@ -941,7 +978,8 @@ class DataFlowClient {
941
978
  "Content-Type": common.Constants.APPLICATION_JSON,
942
979
  "opc-request-id": getWorkRequestRequest.opcRequestId
943
980
  };
944
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getWorkRequestRequest.retryConfiguration);
981
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
982
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
945
983
  if (this.logger)
946
984
  retrier.logger = this.logger;
947
985
  const request = yield oci_common_2.composeRequest({
@@ -979,10 +1017,11 @@ class DataFlowClient {
979
1017
  /**
980
1018
  * Lists all applications in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned.
981
1019
  *
1020
+ * This operation does not retry by default if the user has not defined a retry configuration.
982
1021
  * @param ListApplicationsRequest
983
1022
  * @return ListApplicationsResponse
984
1023
  * @throws OciError when an error occurs
985
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
1024
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
986
1025
  */
987
1026
  listApplications(listApplicationsRequest) {
988
1027
  return __awaiter(this, void 0, void 0, function* () {
@@ -1004,7 +1043,8 @@ class DataFlowClient {
1004
1043
  "Content-Type": common.Constants.APPLICATION_JSON,
1005
1044
  "opc-request-id": listApplicationsRequest.opcRequestId
1006
1045
  };
1007
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listApplicationsRequest.retryConfiguration);
1046
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1047
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listApplicationsRequest.retryConfiguration, specRetryConfiguration);
1008
1048
  if (this.logger)
1009
1049
  retrier.logger = this.logger;
1010
1050
  const request = yield oci_common_2.composeRequest({
@@ -1092,10 +1132,11 @@ class DataFlowClient {
1092
1132
  /**
1093
1133
  * Lists all private endpoints in the specified compartment.
1094
1134
  *
1135
+ * This operation does not retry by default if the user has not defined a retry configuration.
1095
1136
  * @param ListPrivateEndpointsRequest
1096
1137
  * @return ListPrivateEndpointsResponse
1097
1138
  * @throws OciError when an error occurs
1098
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
1139
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
1099
1140
  */
1100
1141
  listPrivateEndpoints(listPrivateEndpointsRequest) {
1101
1142
  return __awaiter(this, void 0, void 0, function* () {
@@ -1117,7 +1158,8 @@ class DataFlowClient {
1117
1158
  "Content-Type": common.Constants.APPLICATION_JSON,
1118
1159
  "opc-request-id": listPrivateEndpointsRequest.opcRequestId
1119
1160
  };
1120
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listPrivateEndpointsRequest.retryConfiguration);
1161
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1162
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPrivateEndpointsRequest.retryConfiguration, specRetryConfiguration);
1121
1163
  if (this.logger)
1122
1164
  retrier.logger = this.logger;
1123
1165
  const request = yield oci_common_2.composeRequest({
@@ -1165,10 +1207,11 @@ class DataFlowClient {
1165
1207
  /**
1166
1208
  * Retrieves summaries of the run's logs.
1167
1209
  *
1210
+ * This operation does not retry by default if the user has not defined a retry configuration.
1168
1211
  * @param ListRunLogsRequest
1169
1212
  * @return ListRunLogsResponse
1170
1213
  * @throws OciError when an error occurs
1171
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
1214
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
1172
1215
  */
1173
1216
  listRunLogs(listRunLogsRequest) {
1174
1217
  return __awaiter(this, void 0, void 0, function* () {
@@ -1185,7 +1228,8 @@ class DataFlowClient {
1185
1228
  "Content-Type": common.Constants.APPLICATION_JSON,
1186
1229
  "opc-request-id": listRunLogsRequest.opcRequestId
1187
1230
  };
1188
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listRunLogsRequest.retryConfiguration);
1231
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1232
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRunLogsRequest.retryConfiguration, specRetryConfiguration);
1189
1233
  if (this.logger)
1190
1234
  retrier.logger = this.logger;
1191
1235
  const request = yield oci_common_2.composeRequest({
@@ -1273,10 +1317,11 @@ class DataFlowClient {
1273
1317
  /**
1274
1318
  * Lists all runs of an application in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned.
1275
1319
  *
1320
+ * This operation does not retry by default if the user has not defined a retry configuration.
1276
1321
  * @param ListRunsRequest
1277
1322
  * @return ListRunsResponse
1278
1323
  * @throws OciError when an error occurs
1279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
1324
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
1280
1325
  */
1281
1326
  listRuns(listRunsRequest) {
1282
1327
  return __awaiter(this, void 0, void 0, function* () {
@@ -1300,7 +1345,8 @@ class DataFlowClient {
1300
1345
  "Content-Type": common.Constants.APPLICATION_JSON,
1301
1346
  "opc-request-id": listRunsRequest.opcRequestId
1302
1347
  };
1303
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listRunsRequest.retryConfiguration);
1348
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1349
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRunsRequest.retryConfiguration, specRetryConfiguration);
1304
1350
  if (this.logger)
1305
1351
  retrier.logger = this.logger;
1306
1352
  const request = yield oci_common_2.composeRequest({
@@ -1388,10 +1434,11 @@ class DataFlowClient {
1388
1434
  /**
1389
1435
  * Return a (paginated) list of errors for a given work request.
1390
1436
  *
1437
+ * This operation does not retry by default if the user has not defined a retry configuration.
1391
1438
  * @param ListWorkRequestErrorsRequest
1392
1439
  * @return ListWorkRequestErrorsResponse
1393
1440
  * @throws OciError when an error occurs
1394
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1441
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1395
1442
  */
1396
1443
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
1397
1444
  return __awaiter(this, void 0, void 0, function* () {
@@ -1408,7 +1455,8 @@ class DataFlowClient {
1408
1455
  "Content-Type": common.Constants.APPLICATION_JSON,
1409
1456
  "opc-request-id": listWorkRequestErrorsRequest.opcRequestId
1410
1457
  };
1411
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestErrorsRequest.retryConfiguration);
1458
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1459
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
1412
1460
  if (this.logger)
1413
1461
  retrier.logger = this.logger;
1414
1462
  const request = yield oci_common_2.composeRequest({
@@ -1456,10 +1504,11 @@ class DataFlowClient {
1456
1504
  /**
1457
1505
  * Return a paginated list of logs for a given work request.
1458
1506
  *
1507
+ * This operation does not retry by default if the user has not defined a retry configuration.
1459
1508
  * @param ListWorkRequestLogsRequest
1460
1509
  * @return ListWorkRequestLogsResponse
1461
1510
  * @throws OciError when an error occurs
1462
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1511
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1463
1512
  */
1464
1513
  listWorkRequestLogs(listWorkRequestLogsRequest) {
1465
1514
  return __awaiter(this, void 0, void 0, function* () {
@@ -1476,7 +1525,8 @@ class DataFlowClient {
1476
1525
  "Content-Type": common.Constants.APPLICATION_JSON,
1477
1526
  "opc-request-id": listWorkRequestLogsRequest.opcRequestId
1478
1527
  };
1479
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestLogsRequest.retryConfiguration);
1528
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1529
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
1480
1530
  if (this.logger)
1481
1531
  retrier.logger = this.logger;
1482
1532
  const request = yield oci_common_2.composeRequest({
@@ -1524,10 +1574,11 @@ class DataFlowClient {
1524
1574
  /**
1525
1575
  * Lists the work requests in a compartment.
1526
1576
  *
1577
+ * This operation does not retry by default if the user has not defined a retry configuration.
1527
1578
  * @param ListWorkRequestsRequest
1528
1579
  * @return ListWorkRequestsResponse
1529
1580
  * @throws OciError when an error occurs
1530
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1581
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1531
1582
  */
1532
1583
  listWorkRequests(listWorkRequestsRequest) {
1533
1584
  return __awaiter(this, void 0, void 0, function* () {
@@ -1543,7 +1594,8 @@ class DataFlowClient {
1543
1594
  "Content-Type": common.Constants.APPLICATION_JSON,
1544
1595
  "opc-request-id": listWorkRequestsRequest.opcRequestId
1545
1596
  };
1546
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestsRequest.retryConfiguration);
1597
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1598
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
1547
1599
  if (this.logger)
1548
1600
  retrier.logger = this.logger;
1549
1601
  const request = yield oci_common_2.composeRequest({
@@ -1591,10 +1643,11 @@ class DataFlowClient {
1591
1643
  /**
1592
1644
  * Updates an application using an `applicationId`.
1593
1645
  *
1646
+ * This operation does not retry by default if the user has not defined a retry configuration.
1594
1647
  * @param UpdateApplicationRequest
1595
1648
  * @return UpdateApplicationResponse
1596
1649
  * @throws OciError when an error occurs
1597
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
1650
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
1598
1651
  */
1599
1652
  updateApplication(updateApplicationRequest) {
1600
1653
  return __awaiter(this, void 0, void 0, function* () {
@@ -1609,7 +1662,8 @@ class DataFlowClient {
1609
1662
  "opc-request-id": updateApplicationRequest.opcRequestId,
1610
1663
  "if-match": updateApplicationRequest.ifMatch
1611
1664
  };
1612
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateApplicationRequest.retryConfiguration);
1665
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1666
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateApplicationRequest.retryConfiguration, specRetryConfiguration);
1613
1667
  if (this.logger)
1614
1668
  retrier.logger = this.logger;
1615
1669
  const request = yield oci_common_2.composeRequest({
@@ -1655,10 +1709,11 @@ class DataFlowClient {
1655
1709
  * a previously defined private endpoint, then a 409 status code will be returned. This indicates
1656
1710
  * that a conflict has been detected.
1657
1711
  *
1712
+ * This operation does not retry by default if the user has not defined a retry configuration.
1658
1713
  * @param UpdatePrivateEndpointRequest
1659
1714
  * @return UpdatePrivateEndpointResponse
1660
1715
  * @throws OciError when an error occurs
1661
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
1716
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
1662
1717
  */
1663
1718
  updatePrivateEndpoint(updatePrivateEndpointRequest) {
1664
1719
  return __awaiter(this, void 0, void 0, function* () {
@@ -1673,7 +1728,8 @@ class DataFlowClient {
1673
1728
  "opc-request-id": updatePrivateEndpointRequest.opcRequestId,
1674
1729
  "if-match": updatePrivateEndpointRequest.ifMatch
1675
1730
  };
1676
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updatePrivateEndpointRequest.retryConfiguration);
1731
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1732
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePrivateEndpointRequest.retryConfiguration, specRetryConfiguration);
1677
1733
  if (this.logger)
1678
1734
  retrier.logger = this.logger;
1679
1735
  const request = yield oci_common_2.composeRequest({
@@ -1713,10 +1769,11 @@ class DataFlowClient {
1713
1769
  /**
1714
1770
  * Updates a run using a `runId`.
1715
1771
  *
1772
+ * This operation does not retry by default if the user has not defined a retry configuration.
1716
1773
  * @param UpdateRunRequest
1717
1774
  * @return UpdateRunResponse
1718
1775
  * @throws OciError when an error occurs
1719
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
1776
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
1720
1777
  */
1721
1778
  updateRun(updateRunRequest) {
1722
1779
  return __awaiter(this, void 0, void 0, function* () {
@@ -1731,7 +1788,8 @@ class DataFlowClient {
1731
1788
  "opc-request-id": updateRunRequest.opcRequestId,
1732
1789
  "if-match": updateRunRequest.ifMatch
1733
1790
  };
1734
- const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateRunRequest.retryConfiguration);
1791
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1792
+ const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRunRequest.retryConfiguration, specRetryConfiguration);
1735
1793
  if (this.logger)
1736
1794
  retrier.logger = this.logger;
1737
1795
  const request = yield oci_common_2.composeRequest({