oci-servicecatalog 2.4.0 → 2.6.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 (31) hide show
  1. package/LICENSE.txt +6 -0
  2. package/lib/client.d.ts +55 -26
  3. package/lib/client.js +114 -52
  4. package/lib/client.js.map +1 -1
  5. package/lib/request/bulk-replace-service-catalog-associations-request.d.ts +1 -1
  6. package/lib/request/change-private-application-compartment-request.d.ts +1 -1
  7. package/lib/request/change-service-catalog-compartment-request.d.ts +1 -1
  8. package/lib/request/create-private-application-request.d.ts +1 -1
  9. package/lib/request/create-service-catalog-association-request.d.ts +1 -1
  10. package/lib/request/create-service-catalog-request.d.ts +1 -1
  11. package/lib/request/delete-private-application-request.d.ts +1 -1
  12. package/lib/request/delete-service-catalog-association-request.d.ts +1 -1
  13. package/lib/request/delete-service-catalog-request.d.ts +1 -1
  14. package/lib/request/get-private-application-action-download-logo-request.d.ts +1 -1
  15. package/lib/request/get-private-application-package-action-download-config-request.d.ts +1 -1
  16. package/lib/request/get-private-application-package-request.d.ts +1 -1
  17. package/lib/request/get-private-application-request.d.ts +1 -1
  18. package/lib/request/get-service-catalog-association-request.d.ts +1 -1
  19. package/lib/request/get-service-catalog-request.d.ts +1 -1
  20. package/lib/request/get-work-request-request.d.ts +1 -1
  21. package/lib/request/list-applications-request.d.ts +1 -1
  22. package/lib/request/list-private-application-packages-request.d.ts +1 -1
  23. package/lib/request/list-private-applications-request.d.ts +1 -1
  24. package/lib/request/list-service-catalog-associations-request.d.ts +1 -1
  25. package/lib/request/list-service-catalogs-request.d.ts +1 -1
  26. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  27. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  28. package/lib/request/list-work-requests-request.d.ts +1 -1
  29. package/lib/request/update-private-application-request.d.ts +1 -1
  30. package/lib/request/update-service-catalog-request.d.ts +1 -1
  31. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -51,6 +51,9 @@ const oci_common_1 = require("oci-common");
51
51
  var ServiceCatalogApiKeys;
52
52
  (function (ServiceCatalogApiKeys) {
53
53
  })(ServiceCatalogApiKeys = exports.ServiceCatalogApiKeys || (exports.ServiceCatalogApiKeys = {}));
54
+ /**
55
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
56
+ */
54
57
  class ServiceCatalogClient {
55
58
  constructor(params, clientConfiguration) {
56
59
  this["_endpoint"] = "";
@@ -65,6 +68,13 @@ class ServiceCatalogClient {
65
68
  ? clientConfiguration.circuitBreaker.circuit
66
69
  : null;
67
70
  }
71
+ // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
72
+ const specCircuitBreakerEnabled = false;
73
+ if (!this._circuitBreaker &&
74
+ common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
75
+ (specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
76
+ this._circuitBreaker = new common.CircuitBreaker().circuit;
77
+ }
68
78
  this._httpClient =
69
79
  params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
70
80
  if (params.authenticationDetailsProvider &&
@@ -136,10 +146,11 @@ class ServiceCatalogClient {
136
146
  }
137
147
  /**
138
148
  * Replace all associations of a given service catalog in one bulk transaction.
149
+ * This operation does not retry by default if the user has not defined a retry configuration.
139
150
  * @param BulkReplaceServiceCatalogAssociationsRequest
140
151
  * @return BulkReplaceServiceCatalogAssociationsResponse
141
152
  * @throws OciError when an error occurs
142
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/BulkReplaceServiceCatalogAssociations.ts.html |here} to see how to use BulkReplaceServiceCatalogAssociations API.
153
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/BulkReplaceServiceCatalogAssociations.ts.html |here} to see how to use BulkReplaceServiceCatalogAssociations API.
143
154
  */
144
155
  bulkReplaceServiceCatalogAssociations(bulkReplaceServiceCatalogAssociationsRequest) {
145
156
  return __awaiter(this, void 0, void 0, function* () {
@@ -154,7 +165,8 @@ class ServiceCatalogClient {
154
165
  "if-match": bulkReplaceServiceCatalogAssociationsRequest.ifMatch,
155
166
  "opc-request-id": bulkReplaceServiceCatalogAssociationsRequest.opcRequestId
156
167
  };
157
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, bulkReplaceServiceCatalogAssociationsRequest.retryConfiguration);
168
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
169
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, bulkReplaceServiceCatalogAssociationsRequest.retryConfiguration, specRetryConfiguration);
158
170
  if (this.logger)
159
171
  retrier.logger = this.logger;
160
172
  const request = yield oci_common_1.composeRequest({
@@ -188,10 +200,11 @@ class ServiceCatalogClient {
188
200
  }
189
201
  /**
190
202
  * Moves the specified private application from one compartment to another.
203
+ * This operation does not retry by default if the user has not defined a retry configuration.
191
204
  * @param ChangePrivateApplicationCompartmentRequest
192
205
  * @return ChangePrivateApplicationCompartmentResponse
193
206
  * @throws OciError when an error occurs
194
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ChangePrivateApplicationCompartment.ts.html |here} to see how to use ChangePrivateApplicationCompartment API.
207
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ChangePrivateApplicationCompartment.ts.html |here} to see how to use ChangePrivateApplicationCompartment API.
195
208
  */
196
209
  changePrivateApplicationCompartment(changePrivateApplicationCompartmentRequest) {
197
210
  return __awaiter(this, void 0, void 0, function* () {
@@ -206,7 +219,8 @@ class ServiceCatalogClient {
206
219
  "opc-request-id": changePrivateApplicationCompartmentRequest.opcRequestId,
207
220
  "if-match": changePrivateApplicationCompartmentRequest.ifMatch
208
221
  };
209
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, changePrivateApplicationCompartmentRequest.retryConfiguration);
222
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
223
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changePrivateApplicationCompartmentRequest.retryConfiguration, specRetryConfiguration);
210
224
  if (this.logger)
211
225
  retrier.logger = this.logger;
212
226
  const request = yield oci_common_1.composeRequest({
@@ -245,10 +259,11 @@ class ServiceCatalogClient {
245
259
  }
246
260
  /**
247
261
  * Moves the specified service catalog from one compartment to another.
262
+ * This operation does not retry by default if the user has not defined a retry configuration.
248
263
  * @param ChangeServiceCatalogCompartmentRequest
249
264
  * @return ChangeServiceCatalogCompartmentResponse
250
265
  * @throws OciError when an error occurs
251
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ChangeServiceCatalogCompartment.ts.html |here} to see how to use ChangeServiceCatalogCompartment API.
266
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ChangeServiceCatalogCompartment.ts.html |here} to see how to use ChangeServiceCatalogCompartment API.
252
267
  */
253
268
  changeServiceCatalogCompartment(changeServiceCatalogCompartmentRequest) {
254
269
  return __awaiter(this, void 0, void 0, function* () {
@@ -263,7 +278,8 @@ class ServiceCatalogClient {
263
278
  "opc-request-id": changeServiceCatalogCompartmentRequest.opcRequestId,
264
279
  "if-match": changeServiceCatalogCompartmentRequest.ifMatch
265
280
  };
266
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, changeServiceCatalogCompartmentRequest.retryConfiguration);
281
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
282
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeServiceCatalogCompartmentRequest.retryConfiguration, specRetryConfiguration);
267
283
  if (this.logger)
268
284
  retrier.logger = this.logger;
269
285
  const request = yield oci_common_1.composeRequest({
@@ -297,10 +313,11 @@ class ServiceCatalogClient {
297
313
  }
298
314
  /**
299
315
  * Creates a private application along with a single package to be hosted.
316
+ * This operation does not retry by default if the user has not defined a retry configuration.
300
317
  * @param CreatePrivateApplicationRequest
301
318
  * @return CreatePrivateApplicationResponse
302
319
  * @throws OciError when an error occurs
303
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/CreatePrivateApplication.ts.html |here} to see how to use CreatePrivateApplication API.
320
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/CreatePrivateApplication.ts.html |here} to see how to use CreatePrivateApplication API.
304
321
  */
305
322
  createPrivateApplication(createPrivateApplicationRequest) {
306
323
  return __awaiter(this, void 0, void 0, function* () {
@@ -313,7 +330,8 @@ class ServiceCatalogClient {
313
330
  "opc-retry-token": createPrivateApplicationRequest.opcRetryToken,
314
331
  "opc-request-id": createPrivateApplicationRequest.opcRequestId
315
332
  };
316
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createPrivateApplicationRequest.retryConfiguration);
333
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
334
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPrivateApplicationRequest.retryConfiguration, specRetryConfiguration);
317
335
  if (this.logger)
318
336
  retrier.logger = this.logger;
319
337
  const request = yield oci_common_1.composeRequest({
@@ -361,10 +379,11 @@ class ServiceCatalogClient {
361
379
  }
362
380
  /**
363
381
  * Creates a brand new service catalog in a given compartment.
382
+ * This operation does not retry by default if the user has not defined a retry configuration.
364
383
  * @param CreateServiceCatalogRequest
365
384
  * @return CreateServiceCatalogResponse
366
385
  * @throws OciError when an error occurs
367
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/CreateServiceCatalog.ts.html |here} to see how to use CreateServiceCatalog API.
386
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/CreateServiceCatalog.ts.html |here} to see how to use CreateServiceCatalog API.
368
387
  */
369
388
  createServiceCatalog(createServiceCatalogRequest) {
370
389
  return __awaiter(this, void 0, void 0, function* () {
@@ -377,7 +396,8 @@ class ServiceCatalogClient {
377
396
  "opc-retry-token": createServiceCatalogRequest.opcRetryToken,
378
397
  "opc-request-id": createServiceCatalogRequest.opcRequestId
379
398
  };
380
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createServiceCatalogRequest.retryConfiguration);
399
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
400
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createServiceCatalogRequest.retryConfiguration, specRetryConfiguration);
381
401
  if (this.logger)
382
402
  retrier.logger = this.logger;
383
403
  const request = yield oci_common_1.composeRequest({
@@ -420,10 +440,11 @@ class ServiceCatalogClient {
420
440
  }
421
441
  /**
422
442
  * Creates an association between service catalog and a resource.
443
+ * This operation does not retry by default if the user has not defined a retry configuration.
423
444
  * @param CreateServiceCatalogAssociationRequest
424
445
  * @return CreateServiceCatalogAssociationResponse
425
446
  * @throws OciError when an error occurs
426
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/CreateServiceCatalogAssociation.ts.html |here} to see how to use CreateServiceCatalogAssociation API.
447
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/CreateServiceCatalogAssociation.ts.html |here} to see how to use CreateServiceCatalogAssociation API.
427
448
  */
428
449
  createServiceCatalogAssociation(createServiceCatalogAssociationRequest) {
429
450
  return __awaiter(this, void 0, void 0, function* () {
@@ -436,7 +457,8 @@ class ServiceCatalogClient {
436
457
  "opc-retry-token": createServiceCatalogAssociationRequest.opcRetryToken,
437
458
  "opc-request-id": createServiceCatalogAssociationRequest.opcRequestId
438
459
  };
439
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, createServiceCatalogAssociationRequest.retryConfiguration);
460
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
461
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createServiceCatalogAssociationRequest.retryConfiguration, specRetryConfiguration);
440
462
  if (this.logger)
441
463
  retrier.logger = this.logger;
442
464
  const request = yield oci_common_1.composeRequest({
@@ -479,10 +501,11 @@ class ServiceCatalogClient {
479
501
  }
480
502
  /**
481
503
  * Deletes an existing private application.
504
+ * This operation does not retry by default if the user has not defined a retry configuration.
482
505
  * @param DeletePrivateApplicationRequest
483
506
  * @return DeletePrivateApplicationResponse
484
507
  * @throws OciError when an error occurs
485
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/DeletePrivateApplication.ts.html |here} to see how to use DeletePrivateApplication API.
508
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/DeletePrivateApplication.ts.html |here} to see how to use DeletePrivateApplication API.
486
509
  */
487
510
  deletePrivateApplication(deletePrivateApplicationRequest) {
488
511
  return __awaiter(this, void 0, void 0, function* () {
@@ -497,7 +520,8 @@ class ServiceCatalogClient {
497
520
  "if-match": deletePrivateApplicationRequest.ifMatch,
498
521
  "opc-request-id": deletePrivateApplicationRequest.opcRequestId
499
522
  };
500
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deletePrivateApplicationRequest.retryConfiguration);
523
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
524
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePrivateApplicationRequest.retryConfiguration, specRetryConfiguration);
501
525
  if (this.logger)
502
526
  retrier.logger = this.logger;
503
527
  const request = yield oci_common_1.composeRequest({
@@ -535,10 +559,11 @@ class ServiceCatalogClient {
535
559
  }
536
560
  /**
537
561
  * Deletes the specified service catalog from the compartment.
562
+ * This operation does not retry by default if the user has not defined a retry configuration.
538
563
  * @param DeleteServiceCatalogRequest
539
564
  * @return DeleteServiceCatalogResponse
540
565
  * @throws OciError when an error occurs
541
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/DeleteServiceCatalog.ts.html |here} to see how to use DeleteServiceCatalog API.
566
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/DeleteServiceCatalog.ts.html |here} to see how to use DeleteServiceCatalog API.
542
567
  */
543
568
  deleteServiceCatalog(deleteServiceCatalogRequest) {
544
569
  return __awaiter(this, void 0, void 0, function* () {
@@ -553,7 +578,8 @@ class ServiceCatalogClient {
553
578
  "if-match": deleteServiceCatalogRequest.ifMatch,
554
579
  "opc-request-id": deleteServiceCatalogRequest.opcRequestId
555
580
  };
556
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteServiceCatalogRequest.retryConfiguration);
581
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
582
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteServiceCatalogRequest.retryConfiguration, specRetryConfiguration);
557
583
  if (this.logger)
558
584
  retrier.logger = this.logger;
559
585
  const request = yield oci_common_1.composeRequest({
@@ -586,10 +612,11 @@ class ServiceCatalogClient {
586
612
  }
587
613
  /**
588
614
  * Removes an association between service catalog and a resource.
615
+ * This operation does not retry by default if the user has not defined a retry configuration.
589
616
  * @param DeleteServiceCatalogAssociationRequest
590
617
  * @return DeleteServiceCatalogAssociationResponse
591
618
  * @throws OciError when an error occurs
592
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/DeleteServiceCatalogAssociation.ts.html |here} to see how to use DeleteServiceCatalogAssociation API.
619
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/DeleteServiceCatalogAssociation.ts.html |here} to see how to use DeleteServiceCatalogAssociation API.
593
620
  */
594
621
  deleteServiceCatalogAssociation(deleteServiceCatalogAssociationRequest) {
595
622
  return __awaiter(this, void 0, void 0, function* () {
@@ -604,7 +631,8 @@ class ServiceCatalogClient {
604
631
  "if-match": deleteServiceCatalogAssociationRequest.ifMatch,
605
632
  "opc-request-id": deleteServiceCatalogAssociationRequest.opcRequestId
606
633
  };
607
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, deleteServiceCatalogAssociationRequest.retryConfiguration);
634
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
635
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteServiceCatalogAssociationRequest.retryConfiguration, specRetryConfiguration);
608
636
  if (this.logger)
609
637
  retrier.logger = this.logger;
610
638
  const request = yield oci_common_1.composeRequest({
@@ -637,10 +665,11 @@ class ServiceCatalogClient {
637
665
  }
638
666
  /**
639
667
  * Gets the details of the specified private application.
668
+ * This operation does not retry by default if the user has not defined a retry configuration.
640
669
  * @param GetPrivateApplicationRequest
641
670
  * @return GetPrivateApplicationResponse
642
671
  * @throws OciError when an error occurs
643
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/GetPrivateApplication.ts.html |here} to see how to use GetPrivateApplication API.
672
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetPrivateApplication.ts.html |here} to see how to use GetPrivateApplication API.
644
673
  */
645
674
  getPrivateApplication(getPrivateApplicationRequest) {
646
675
  return __awaiter(this, void 0, void 0, function* () {
@@ -654,7 +683,8 @@ class ServiceCatalogClient {
654
683
  "Content-Type": common.Constants.APPLICATION_JSON,
655
684
  "opc-request-id": getPrivateApplicationRequest.opcRequestId
656
685
  };
657
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getPrivateApplicationRequest.retryConfiguration);
686
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
687
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPrivateApplicationRequest.retryConfiguration, specRetryConfiguration);
658
688
  if (this.logger)
659
689
  retrier.logger = this.logger;
660
690
  const request = yield oci_common_1.composeRequest({
@@ -696,10 +726,11 @@ class ServiceCatalogClient {
696
726
  }
697
727
  /**
698
728
  * Downloads the binary payload of the logo image of the private application.
729
+ * This operation does not retry by default if the user has not defined a retry configuration.
699
730
  * @param GetPrivateApplicationActionDownloadLogoRequest
700
731
  * @return GetPrivateApplicationActionDownloadLogoResponse
701
732
  * @throws OciError when an error occurs
702
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/GetPrivateApplicationActionDownloadLogo.ts.html |here} to see how to use GetPrivateApplicationActionDownloadLogo API.
733
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetPrivateApplicationActionDownloadLogo.ts.html |here} to see how to use GetPrivateApplicationActionDownloadLogo API.
703
734
  */
704
735
  getPrivateApplicationActionDownloadLogo(getPrivateApplicationActionDownloadLogoRequest) {
705
736
  return __awaiter(this, void 0, void 0, function* () {
@@ -713,7 +744,8 @@ class ServiceCatalogClient {
713
744
  "Content-Type": common.Constants.APPLICATION_JSON,
714
745
  "opc-request-id": getPrivateApplicationActionDownloadLogoRequest.opcRequestId
715
746
  };
716
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getPrivateApplicationActionDownloadLogoRequest.retryConfiguration);
747
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
748
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPrivateApplicationActionDownloadLogoRequest.retryConfiguration, specRetryConfiguration);
717
749
  if (this.logger)
718
750
  retrier.logger = this.logger;
719
751
  const request = yield oci_common_1.composeRequest({
@@ -749,10 +781,11 @@ class ServiceCatalogClient {
749
781
  }
750
782
  /**
751
783
  * Gets the details of a specific package within a given private application.
784
+ * This operation does not retry by default if the user has not defined a retry configuration.
752
785
  * @param GetPrivateApplicationPackageRequest
753
786
  * @return GetPrivateApplicationPackageResponse
754
787
  * @throws OciError when an error occurs
755
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/GetPrivateApplicationPackage.ts.html |here} to see how to use GetPrivateApplicationPackage API.
788
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetPrivateApplicationPackage.ts.html |here} to see how to use GetPrivateApplicationPackage API.
756
789
  */
757
790
  getPrivateApplicationPackage(getPrivateApplicationPackageRequest) {
758
791
  return __awaiter(this, void 0, void 0, function* () {
@@ -766,7 +799,8 @@ class ServiceCatalogClient {
766
799
  "Content-Type": common.Constants.APPLICATION_JSON,
767
800
  "opc-request-id": getPrivateApplicationPackageRequest.opcRequestId
768
801
  };
769
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getPrivateApplicationPackageRequest.retryConfiguration);
802
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
803
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPrivateApplicationPackageRequest.retryConfiguration, specRetryConfiguration);
770
804
  if (this.logger)
771
805
  retrier.logger = this.logger;
772
806
  const request = yield oci_common_1.composeRequest({
@@ -808,10 +842,11 @@ class ServiceCatalogClient {
808
842
  }
809
843
  /**
810
844
  * Downloads the configuration that was used to create the private application package.
845
+ * This operation does not retry by default if the user has not defined a retry configuration.
811
846
  * @param GetPrivateApplicationPackageActionDownloadConfigRequest
812
847
  * @return GetPrivateApplicationPackageActionDownloadConfigResponse
813
848
  * @throws OciError when an error occurs
814
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/GetPrivateApplicationPackageActionDownloadConfig.ts.html |here} to see how to use GetPrivateApplicationPackageActionDownloadConfig API.
849
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetPrivateApplicationPackageActionDownloadConfig.ts.html |here} to see how to use GetPrivateApplicationPackageActionDownloadConfig API.
815
850
  */
816
851
  getPrivateApplicationPackageActionDownloadConfig(getPrivateApplicationPackageActionDownloadConfigRequest) {
817
852
  return __awaiter(this, void 0, void 0, function* () {
@@ -825,7 +860,8 @@ class ServiceCatalogClient {
825
860
  "Content-Type": common.Constants.APPLICATION_JSON,
826
861
  "opc-request-id": getPrivateApplicationPackageActionDownloadConfigRequest.opcRequestId
827
862
  };
828
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getPrivateApplicationPackageActionDownloadConfigRequest.retryConfiguration);
863
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
864
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPrivateApplicationPackageActionDownloadConfigRequest.retryConfiguration, specRetryConfiguration);
829
865
  if (this.logger)
830
866
  retrier.logger = this.logger;
831
867
  const request = yield oci_common_1.composeRequest({
@@ -861,10 +897,11 @@ class ServiceCatalogClient {
861
897
  }
862
898
  /**
863
899
  * Gets detailed information about the service catalog including name, compartmentId
900
+ * This operation does not retry by default if the user has not defined a retry configuration.
864
901
  * @param GetServiceCatalogRequest
865
902
  * @return GetServiceCatalogResponse
866
903
  * @throws OciError when an error occurs
867
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/GetServiceCatalog.ts.html |here} to see how to use GetServiceCatalog API.
904
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetServiceCatalog.ts.html |here} to see how to use GetServiceCatalog API.
868
905
  */
869
906
  getServiceCatalog(getServiceCatalogRequest) {
870
907
  return __awaiter(this, void 0, void 0, function* () {
@@ -878,7 +915,8 @@ class ServiceCatalogClient {
878
915
  "Content-Type": common.Constants.APPLICATION_JSON,
879
916
  "opc-request-id": getServiceCatalogRequest.opcRequestId
880
917
  };
881
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getServiceCatalogRequest.retryConfiguration);
918
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
919
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getServiceCatalogRequest.retryConfiguration, specRetryConfiguration);
882
920
  if (this.logger)
883
921
  retrier.logger = this.logger;
884
922
  const request = yield oci_common_1.composeRequest({
@@ -920,10 +958,11 @@ class ServiceCatalogClient {
920
958
  }
921
959
  /**
922
960
  * Gets detailed information about specific service catalog association.
961
+ * This operation does not retry by default if the user has not defined a retry configuration.
923
962
  * @param GetServiceCatalogAssociationRequest
924
963
  * @return GetServiceCatalogAssociationResponse
925
964
  * @throws OciError when an error occurs
926
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/GetServiceCatalogAssociation.ts.html |here} to see how to use GetServiceCatalogAssociation API.
965
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetServiceCatalogAssociation.ts.html |here} to see how to use GetServiceCatalogAssociation API.
927
966
  */
928
967
  getServiceCatalogAssociation(getServiceCatalogAssociationRequest) {
929
968
  return __awaiter(this, void 0, void 0, function* () {
@@ -937,7 +976,8 @@ class ServiceCatalogClient {
937
976
  "Content-Type": common.Constants.APPLICATION_JSON,
938
977
  "opc-request-id": getServiceCatalogAssociationRequest.opcRequestId
939
978
  };
940
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getServiceCatalogAssociationRequest.retryConfiguration);
979
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
980
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getServiceCatalogAssociationRequest.retryConfiguration, specRetryConfiguration);
941
981
  if (this.logger)
942
982
  retrier.logger = this.logger;
943
983
  const request = yield oci_common_1.composeRequest({
@@ -979,10 +1019,11 @@ class ServiceCatalogClient {
979
1019
  }
980
1020
  /**
981
1021
  * Gets the status of the work request with the given ID.
1022
+ * This operation does not retry by default if the user has not defined a retry configuration.
982
1023
  * @param GetWorkRequestRequest
983
1024
  * @return GetWorkRequestResponse
984
1025
  * @throws OciError when an error occurs
985
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1026
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
986
1027
  */
987
1028
  getWorkRequest(getWorkRequestRequest) {
988
1029
  return __awaiter(this, void 0, void 0, function* () {
@@ -996,7 +1037,8 @@ class ServiceCatalogClient {
996
1037
  "Content-Type": common.Constants.APPLICATION_JSON,
997
1038
  "opc-request-id": getWorkRequestRequest.opcRequestId
998
1039
  };
999
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getWorkRequestRequest.retryConfiguration);
1040
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1041
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
1000
1042
  if (this.logger)
1001
1043
  retrier.logger = this.logger;
1002
1044
  const request = yield oci_common_1.composeRequest({
@@ -1046,10 +1088,11 @@ class ServiceCatalogClient {
1046
1088
  * If no parameter is specified, all catalogs from all compartments in
1047
1089
  * the tenancy will be scanned for any type of content.
1048
1090
  *
1091
+ * This operation does not retry by default if the user has not defined a retry configuration.
1049
1092
  * @param ListApplicationsRequest
1050
1093
  * @return ListApplicationsResponse
1051
1094
  * @throws OciError when an error occurs
1052
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ListApplications.ts.html |here} to see how to use ListApplications API.
1095
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListApplications.ts.html |here} to see how to use ListApplications API.
1053
1096
  */
1054
1097
  listApplications(listApplicationsRequest) {
1055
1098
  return __awaiter(this, void 0, void 0, function* () {
@@ -1074,7 +1117,8 @@ class ServiceCatalogClient {
1074
1117
  "Content-Type": common.Constants.APPLICATION_JSON,
1075
1118
  "opc-request-id": listApplicationsRequest.opcRequestId
1076
1119
  };
1077
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listApplicationsRequest.retryConfiguration);
1120
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1121
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listApplicationsRequest.retryConfiguration, specRetryConfiguration);
1078
1122
  if (this.logger)
1079
1123
  retrier.logger = this.logger;
1080
1124
  const request = yield oci_common_1.composeRequest({
@@ -1116,10 +1160,11 @@ class ServiceCatalogClient {
1116
1160
  }
1117
1161
  /**
1118
1162
  * Lists the packages in the specified private application.
1163
+ * This operation does not retry by default if the user has not defined a retry configuration.
1119
1164
  * @param ListPrivateApplicationPackagesRequest
1120
1165
  * @return ListPrivateApplicationPackagesResponse
1121
1166
  * @throws OciError when an error occurs
1122
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ListPrivateApplicationPackages.ts.html |here} to see how to use ListPrivateApplicationPackages API.
1167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListPrivateApplicationPackages.ts.html |here} to see how to use ListPrivateApplicationPackages API.
1123
1168
  */
1124
1169
  listPrivateApplicationPackages(listPrivateApplicationPackagesRequest) {
1125
1170
  return __awaiter(this, void 0, void 0, function* () {
@@ -1140,7 +1185,8 @@ class ServiceCatalogClient {
1140
1185
  "Content-Type": common.Constants.APPLICATION_JSON,
1141
1186
  "opc-request-id": listPrivateApplicationPackagesRequest.opcRequestId
1142
1187
  };
1143
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listPrivateApplicationPackagesRequest.retryConfiguration);
1188
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1189
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPrivateApplicationPackagesRequest.retryConfiguration, specRetryConfiguration);
1144
1190
  if (this.logger)
1145
1191
  retrier.logger = this.logger;
1146
1192
  const request = yield oci_common_1.composeRequest({
@@ -1182,10 +1228,11 @@ class ServiceCatalogClient {
1182
1228
  }
1183
1229
  /**
1184
1230
  * Lists all the private applications in a given compartment.
1231
+ * This operation does not retry by default if the user has not defined a retry configuration.
1185
1232
  * @param ListPrivateApplicationsRequest
1186
1233
  * @return ListPrivateApplicationsResponse
1187
1234
  * @throws OciError when an error occurs
1188
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ListPrivateApplications.ts.html |here} to see how to use ListPrivateApplications API.
1235
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListPrivateApplications.ts.html |here} to see how to use ListPrivateApplications API.
1189
1236
  */
1190
1237
  listPrivateApplications(listPrivateApplicationsRequest) {
1191
1238
  return __awaiter(this, void 0, void 0, function* () {
@@ -1205,7 +1252,8 @@ class ServiceCatalogClient {
1205
1252
  "Content-Type": common.Constants.APPLICATION_JSON,
1206
1253
  "opc-request-id": listPrivateApplicationsRequest.opcRequestId
1207
1254
  };
1208
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listPrivateApplicationsRequest.retryConfiguration);
1255
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1256
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPrivateApplicationsRequest.retryConfiguration, specRetryConfiguration);
1209
1257
  if (this.logger)
1210
1258
  retrier.logger = this.logger;
1211
1259
  const request = yield oci_common_1.composeRequest({
@@ -1247,10 +1295,11 @@ class ServiceCatalogClient {
1247
1295
  }
1248
1296
  /**
1249
1297
  * Lists all the resource associations for a specific service catalog.
1298
+ * This operation does not retry by default if the user has not defined a retry configuration.
1250
1299
  * @param ListServiceCatalogAssociationsRequest
1251
1300
  * @return ListServiceCatalogAssociationsResponse
1252
1301
  * @throws OciError when an error occurs
1253
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ListServiceCatalogAssociations.ts.html |here} to see how to use ListServiceCatalogAssociations API.
1302
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListServiceCatalogAssociations.ts.html |here} to see how to use ListServiceCatalogAssociations API.
1254
1303
  */
1255
1304
  listServiceCatalogAssociations(listServiceCatalogAssociationsRequest) {
1256
1305
  return __awaiter(this, void 0, void 0, function* () {
@@ -1271,7 +1320,8 @@ class ServiceCatalogClient {
1271
1320
  "Content-Type": common.Constants.APPLICATION_JSON,
1272
1321
  "opc-request-id": listServiceCatalogAssociationsRequest.opcRequestId
1273
1322
  };
1274
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listServiceCatalogAssociationsRequest.retryConfiguration);
1323
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1324
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listServiceCatalogAssociationsRequest.retryConfiguration, specRetryConfiguration);
1275
1325
  if (this.logger)
1276
1326
  retrier.logger = this.logger;
1277
1327
  const request = yield oci_common_1.composeRequest({
@@ -1313,10 +1363,11 @@ class ServiceCatalogClient {
1313
1363
  }
1314
1364
  /**
1315
1365
  * Lists all the service catalogs in the given compartment.
1366
+ * This operation does not retry by default if the user has not defined a retry configuration.
1316
1367
  * @param ListServiceCatalogsRequest
1317
1368
  * @return ListServiceCatalogsResponse
1318
1369
  * @throws OciError when an error occurs
1319
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ListServiceCatalogs.ts.html |here} to see how to use ListServiceCatalogs API.
1370
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListServiceCatalogs.ts.html |here} to see how to use ListServiceCatalogs API.
1320
1371
  */
1321
1372
  listServiceCatalogs(listServiceCatalogsRequest) {
1322
1373
  return __awaiter(this, void 0, void 0, function* () {
@@ -1336,7 +1387,8 @@ class ServiceCatalogClient {
1336
1387
  "Content-Type": common.Constants.APPLICATION_JSON,
1337
1388
  "opc-request-id": listServiceCatalogsRequest.opcRequestId
1338
1389
  };
1339
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listServiceCatalogsRequest.retryConfiguration);
1390
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1391
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listServiceCatalogsRequest.retryConfiguration, specRetryConfiguration);
1340
1392
  if (this.logger)
1341
1393
  retrier.logger = this.logger;
1342
1394
  const request = yield oci_common_1.composeRequest({
@@ -1379,10 +1431,11 @@ class ServiceCatalogClient {
1379
1431
  /**
1380
1432
  * Return a (paginated) list of errors for a given work request.
1381
1433
  *
1434
+ * This operation does not retry by default if the user has not defined a retry configuration.
1382
1435
  * @param ListWorkRequestErrorsRequest
1383
1436
  * @return ListWorkRequestErrorsResponse
1384
1437
  * @throws OciError when an error occurs
1385
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1438
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1386
1439
  */
1387
1440
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
1388
1441
  return __awaiter(this, void 0, void 0, function* () {
@@ -1401,7 +1454,8 @@ class ServiceCatalogClient {
1401
1454
  "Content-Type": common.Constants.APPLICATION_JSON,
1402
1455
  "opc-request-id": listWorkRequestErrorsRequest.opcRequestId
1403
1456
  };
1404
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestErrorsRequest.retryConfiguration);
1457
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1458
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
1405
1459
  if (this.logger)
1406
1460
  retrier.logger = this.logger;
1407
1461
  const request = yield oci_common_1.composeRequest({
@@ -1444,10 +1498,11 @@ class ServiceCatalogClient {
1444
1498
  /**
1445
1499
  * Return a (paginated) list of logs for a given work request.
1446
1500
  *
1501
+ * This operation does not retry by default if the user has not defined a retry configuration.
1447
1502
  * @param ListWorkRequestLogsRequest
1448
1503
  * @return ListWorkRequestLogsResponse
1449
1504
  * @throws OciError when an error occurs
1450
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1505
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1451
1506
  */
1452
1507
  listWorkRequestLogs(listWorkRequestLogsRequest) {
1453
1508
  return __awaiter(this, void 0, void 0, function* () {
@@ -1466,7 +1521,8 @@ class ServiceCatalogClient {
1466
1521
  "Content-Type": common.Constants.APPLICATION_JSON,
1467
1522
  "opc-request-id": listWorkRequestLogsRequest.opcRequestId
1468
1523
  };
1469
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestLogsRequest.retryConfiguration);
1524
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1525
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
1470
1526
  if (this.logger)
1471
1527
  retrier.logger = this.logger;
1472
1528
  const request = yield oci_common_1.composeRequest({
@@ -1509,10 +1565,11 @@ class ServiceCatalogClient {
1509
1565
  /**
1510
1566
  * Lists the work requests in a compartment.
1511
1567
  *
1568
+ * This operation does not retry by default if the user has not defined a retry configuration.
1512
1569
  * @param ListWorkRequestsRequest
1513
1570
  * @return ListWorkRequestsResponse
1514
1571
  * @throws OciError when an error occurs
1515
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1572
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1516
1573
  */
1517
1574
  listWorkRequests(listWorkRequestsRequest) {
1518
1575
  return __awaiter(this, void 0, void 0, function* () {
@@ -1533,7 +1590,8 @@ class ServiceCatalogClient {
1533
1590
  "Content-Type": common.Constants.APPLICATION_JSON,
1534
1591
  "opc-request-id": listWorkRequestsRequest.opcRequestId
1535
1592
  };
1536
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, listWorkRequestsRequest.retryConfiguration);
1593
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1594
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
1537
1595
  if (this.logger)
1538
1596
  retrier.logger = this.logger;
1539
1597
  const request = yield oci_common_1.composeRequest({
@@ -1575,10 +1633,11 @@ class ServiceCatalogClient {
1575
1633
  }
1576
1634
  /**
1577
1635
  * Updates the details of an existing private application.
1636
+ * This operation does not retry by default if the user has not defined a retry configuration.
1578
1637
  * @param UpdatePrivateApplicationRequest
1579
1638
  * @return UpdatePrivateApplicationResponse
1580
1639
  * @throws OciError when an error occurs
1581
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/UpdatePrivateApplication.ts.html |here} to see how to use UpdatePrivateApplication API.
1640
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/UpdatePrivateApplication.ts.html |here} to see how to use UpdatePrivateApplication API.
1582
1641
  */
1583
1642
  updatePrivateApplication(updatePrivateApplicationRequest) {
1584
1643
  return __awaiter(this, void 0, void 0, function* () {
@@ -1593,7 +1652,8 @@ class ServiceCatalogClient {
1593
1652
  "opc-request-id": updatePrivateApplicationRequest.opcRequestId,
1594
1653
  "if-match": updatePrivateApplicationRequest.ifMatch
1595
1654
  };
1596
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updatePrivateApplicationRequest.retryConfiguration);
1655
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1656
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePrivateApplicationRequest.retryConfiguration, specRetryConfiguration);
1597
1657
  if (this.logger)
1598
1658
  retrier.logger = this.logger;
1599
1659
  const request = yield oci_common_1.composeRequest({
@@ -1641,10 +1701,11 @@ class ServiceCatalogClient {
1641
1701
  }
1642
1702
  /**
1643
1703
  * Updates the details of a previously created service catalog.
1704
+ * This operation does not retry by default if the user has not defined a retry configuration.
1644
1705
  * @param UpdateServiceCatalogRequest
1645
1706
  * @return UpdateServiceCatalogResponse
1646
1707
  * @throws OciError when an error occurs
1647
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/servicecatalog/UpdateServiceCatalog.ts.html |here} to see how to use UpdateServiceCatalog API.
1708
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/UpdateServiceCatalog.ts.html |here} to see how to use UpdateServiceCatalog API.
1648
1709
  */
1649
1710
  updateServiceCatalog(updateServiceCatalogRequest) {
1650
1711
  return __awaiter(this, void 0, void 0, function* () {
@@ -1659,7 +1720,8 @@ class ServiceCatalogClient {
1659
1720
  "opc-request-id": updateServiceCatalogRequest.opcRequestId,
1660
1721
  "if-match": updateServiceCatalogRequest.ifMatch
1661
1722
  };
1662
- const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, updateServiceCatalogRequest.retryConfiguration);
1723
+ const specRetryConfiguration = common.NoRetryConfigurationDetails;
1724
+ const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateServiceCatalogRequest.retryConfiguration, specRetryConfiguration);
1663
1725
  if (this.logger)
1664
1726
  retrier.logger = this.logger;
1665
1727
  const request = yield oci_common_1.composeRequest({