oci-apigateway 2.7.0 → 2.10.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 (69) hide show
  1. package/lib/client.d.ts +42 -42
  2. package/lib/client.js +46 -46
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/api-specification-request-policies.d.ts +1 -0
  5. package/lib/model/api-specification-request-policies.js +6 -2
  6. package/lib/model/api-specification-request-policies.js.map +1 -1
  7. package/lib/model/ca-bundle.d.ts +25 -0
  8. package/lib/model/ca-bundle.js +72 -0
  9. package/lib/model/ca-bundle.js.map +1 -0
  10. package/lib/model/certificates-ca-bundle.d.ts +32 -0
  11. package/lib/model/certificates-ca-bundle.js +55 -0
  12. package/lib/model/certificates-ca-bundle.js.map +1 -0
  13. package/lib/model/certificates-certificate-authority.d.ts +32 -0
  14. package/lib/model/certificates-certificate-authority.js +57 -0
  15. package/lib/model/certificates-certificate-authority.js.map +1 -0
  16. package/lib/model/create-gateway-details.d.ts +4 -0
  17. package/lib/model/create-gateway-details.js +10 -0
  18. package/lib/model/create-gateway-details.js.map +1 -1
  19. package/lib/model/gateway.d.ts +4 -0
  20. package/lib/model/gateway.js +10 -0
  21. package/lib/model/gateway.js.map +1 -1
  22. package/lib/model/index.d.ts +8 -0
  23. package/lib/model/index.js +11 -3
  24. package/lib/model/index.js.map +1 -1
  25. package/lib/model/mutual-tls-details.d.ts +33 -0
  26. package/lib/model/mutual-tls-details.js +32 -0
  27. package/lib/model/mutual-tls-details.js.map +1 -0
  28. package/lib/model/update-gateway-details.d.ts +4 -0
  29. package/lib/model/update-gateway-details.js +10 -0
  30. package/lib/model/update-gateway-details.js.map +1 -1
  31. package/lib/request/cancel-work-request-request.d.ts +1 -1
  32. package/lib/request/change-api-compartment-request.d.ts +1 -1
  33. package/lib/request/change-certificate-compartment-request.d.ts +1 -1
  34. package/lib/request/change-deployment-compartment-request.d.ts +1 -1
  35. package/lib/request/change-gateway-compartment-request.d.ts +1 -1
  36. package/lib/request/create-api-request.d.ts +1 -1
  37. package/lib/request/create-certificate-request.d.ts +1 -1
  38. package/lib/request/create-deployment-request.d.ts +1 -1
  39. package/lib/request/create-gateway-request.d.ts +1 -1
  40. package/lib/request/create-sdk-request.d.ts +1 -1
  41. package/lib/request/delete-api-request.d.ts +1 -1
  42. package/lib/request/delete-certificate-request.d.ts +1 -1
  43. package/lib/request/delete-deployment-request.d.ts +1 -1
  44. package/lib/request/delete-gateway-request.d.ts +1 -1
  45. package/lib/request/delete-sdk-request.d.ts +1 -1
  46. package/lib/request/get-api-content-request.d.ts +1 -1
  47. package/lib/request/get-api-deployment-specification-request.d.ts +1 -1
  48. package/lib/request/get-api-request.d.ts +1 -1
  49. package/lib/request/get-api-validations-request.d.ts +1 -1
  50. package/lib/request/get-certificate-request.d.ts +1 -1
  51. package/lib/request/get-deployment-request.d.ts +1 -1
  52. package/lib/request/get-gateway-request.d.ts +1 -1
  53. package/lib/request/get-sdk-request.d.ts +1 -1
  54. package/lib/request/get-work-request-request.d.ts +1 -1
  55. package/lib/request/list-apis-request.d.ts +1 -1
  56. package/lib/request/list-certificates-request.d.ts +1 -1
  57. package/lib/request/list-deployments-request.d.ts +1 -1
  58. package/lib/request/list-gateways-request.d.ts +1 -1
  59. package/lib/request/list-sdk-language-types-request.d.ts +1 -1
  60. package/lib/request/list-sdks-request.d.ts +1 -1
  61. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  62. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  63. package/lib/request/list-work-requests-request.d.ts +1 -1
  64. package/lib/request/update-api-request.d.ts +1 -1
  65. package/lib/request/update-certificate-request.d.ts +1 -1
  66. package/lib/request/update-deployment-request.d.ts +1 -1
  67. package/lib/request/update-gateway-request.d.ts +1 -1
  68. package/lib/request/update-sdk-request.d.ts +1 -1
  69. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -58,7 +58,7 @@ var ApiGatewayApiKeys;
58
58
  (function (ApiGatewayApiKeys) {
59
59
  })(ApiGatewayApiKeys = exports.ApiGatewayApiKeys || (exports.ApiGatewayApiKeys = {}));
60
60
  /**
61
- * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
61
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
62
62
  */
63
63
  class ApiGatewayClient {
64
64
  constructor(params, clientConfiguration) {
@@ -75,7 +75,7 @@ class ApiGatewayClient {
75
75
  : null;
76
76
  }
77
77
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
78
- const specCircuitBreakerEnabled = false;
78
+ const specCircuitBreakerEnabled = true;
79
79
  if (!this._circuitBreaker &&
80
80
  common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
81
81
  (specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
@@ -156,7 +156,7 @@ class ApiGatewayClient {
156
156
  * @param ChangeApiCompartmentRequest
157
157
  * @return ChangeApiCompartmentResponse
158
158
  * @throws OciError when an error occurs
159
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
159
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
160
160
  */
161
161
  changeApiCompartment(changeApiCompartmentRequest) {
162
162
  return __awaiter(this, void 0, void 0, function* () {
@@ -216,7 +216,7 @@ class ApiGatewayClient {
216
216
  * @param ChangeCertificateCompartmentRequest
217
217
  * @return ChangeCertificateCompartmentResponse
218
218
  * @throws OciError when an error occurs
219
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
219
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
220
220
  */
221
221
  changeCertificateCompartment(changeCertificateCompartmentRequest) {
222
222
  return __awaiter(this, void 0, void 0, function* () {
@@ -272,7 +272,7 @@ class ApiGatewayClient {
272
272
  * @param CreateApiRequest
273
273
  * @return CreateApiResponse
274
274
  * @throws OciError when an error occurs
275
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
275
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
276
276
  */
277
277
  createApi(createApiRequest) {
278
278
  return __awaiter(this, void 0, void 0, function* () {
@@ -344,7 +344,7 @@ class ApiGatewayClient {
344
344
  * @param CreateCertificateRequest
345
345
  * @return CreateCertificateResponse
346
346
  * @throws OciError when an error occurs
347
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
347
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
348
348
  */
349
349
  createCertificate(createCertificateRequest) {
350
350
  return __awaiter(this, void 0, void 0, function* () {
@@ -415,7 +415,7 @@ class ApiGatewayClient {
415
415
  * @param CreateSdkRequest
416
416
  * @return CreateSdkResponse
417
417
  * @throws OciError when an error occurs
418
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
418
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
419
419
  */
420
420
  createSdk(createSdkRequest) {
421
421
  return __awaiter(this, void 0, void 0, function* () {
@@ -486,7 +486,7 @@ class ApiGatewayClient {
486
486
  * @param DeleteApiRequest
487
487
  * @return DeleteApiResponse
488
488
  * @throws OciError when an error occurs
489
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
489
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
490
490
  */
491
491
  deleteApi(deleteApiRequest) {
492
492
  return __awaiter(this, void 0, void 0, function* () {
@@ -544,7 +544,7 @@ class ApiGatewayClient {
544
544
  * @param DeleteCertificateRequest
545
545
  * @return DeleteCertificateResponse
546
546
  * @throws OciError when an error occurs
547
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
547
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
548
548
  */
549
549
  deleteCertificate(deleteCertificateRequest) {
550
550
  return __awaiter(this, void 0, void 0, function* () {
@@ -602,7 +602,7 @@ class ApiGatewayClient {
602
602
  * @param DeleteSdkRequest
603
603
  * @return DeleteSdkResponse
604
604
  * @throws OciError when an error occurs
605
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
605
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
606
606
  */
607
607
  deleteSdk(deleteSdkRequest) {
608
608
  return __awaiter(this, void 0, void 0, function* () {
@@ -660,7 +660,7 @@ class ApiGatewayClient {
660
660
  * @param GetApiRequest
661
661
  * @return GetApiResponse
662
662
  * @throws OciError when an error occurs
663
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
663
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
664
664
  */
665
665
  getApi(getApiRequest) {
666
666
  return __awaiter(this, void 0, void 0, function* () {
@@ -721,7 +721,7 @@ class ApiGatewayClient {
721
721
  * @param GetApiContentRequest
722
722
  * @return GetApiContentResponse
723
723
  * @throws OciError when an error occurs
724
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
724
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
725
725
  */
726
726
  getApiContent(getApiContentRequest) {
727
727
  return __awaiter(this, void 0, void 0, function* () {
@@ -788,7 +788,7 @@ class ApiGatewayClient {
788
788
  * @param GetApiDeploymentSpecificationRequest
789
789
  * @return GetApiDeploymentSpecificationResponse
790
790
  * @throws OciError when an error occurs
791
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
791
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
792
792
  */
793
793
  getApiDeploymentSpecification(getApiDeploymentSpecificationRequest) {
794
794
  return __awaiter(this, void 0, void 0, function* () {
@@ -850,7 +850,7 @@ class ApiGatewayClient {
850
850
  * @param GetApiValidationsRequest
851
851
  * @return GetApiValidationsResponse
852
852
  * @throws OciError when an error occurs
853
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
853
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
854
854
  */
855
855
  getApiValidations(getApiValidationsRequest) {
856
856
  return __awaiter(this, void 0, void 0, function* () {
@@ -912,7 +912,7 @@ class ApiGatewayClient {
912
912
  * @param GetCertificateRequest
913
913
  * @return GetCertificateResponse
914
914
  * @throws OciError when an error occurs
915
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
915
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
916
916
  */
917
917
  getCertificate(getCertificateRequest) {
918
918
  return __awaiter(this, void 0, void 0, function* () {
@@ -973,7 +973,7 @@ class ApiGatewayClient {
973
973
  * @param GetSdkRequest
974
974
  * @return GetSdkResponse
975
975
  * @throws OciError when an error occurs
976
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
976
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
977
977
  */
978
978
  getSdk(getSdkRequest) {
979
979
  return __awaiter(this, void 0, void 0, function* () {
@@ -1035,7 +1035,7 @@ class ApiGatewayClient {
1035
1035
  * @param ListApisRequest
1036
1036
  * @return ListApisResponse
1037
1037
  * @throws OciError when an error occurs
1038
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
1038
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
1039
1039
  */
1040
1040
  listApis(listApisRequest) {
1041
1041
  return __awaiter(this, void 0, void 0, function* () {
@@ -1108,7 +1108,7 @@ class ApiGatewayClient {
1108
1108
  * @param ListCertificatesRequest
1109
1109
  * @return ListCertificatesResponse
1110
1110
  * @throws OciError when an error occurs
1111
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
1111
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
1112
1112
  */
1113
1113
  listCertificates(listCertificatesRequest) {
1114
1114
  return __awaiter(this, void 0, void 0, function* () {
@@ -1180,7 +1180,7 @@ class ApiGatewayClient {
1180
1180
  * @param ListSdkLanguageTypesRequest
1181
1181
  * @return ListSdkLanguageTypesResponse
1182
1182
  * @throws OciError when an error occurs
1183
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
1183
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
1184
1184
  */
1185
1185
  listSdkLanguageTypes(listSdkLanguageTypesRequest) {
1186
1186
  return __awaiter(this, void 0, void 0, function* () {
@@ -1251,7 +1251,7 @@ class ApiGatewayClient {
1251
1251
  * @param ListSdksRequest
1252
1252
  * @return ListSdksResponse
1253
1253
  * @throws OciError when an error occurs
1254
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
1254
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
1255
1255
  */
1256
1256
  listSdks(listSdksRequest) {
1257
1257
  return __awaiter(this, void 0, void 0, function* () {
@@ -1324,7 +1324,7 @@ class ApiGatewayClient {
1324
1324
  * @param UpdateApiRequest
1325
1325
  * @return UpdateApiResponse
1326
1326
  * @throws OciError when an error occurs
1327
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
1327
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
1328
1328
  */
1329
1329
  updateApi(updateApiRequest) {
1330
1330
  return __awaiter(this, void 0, void 0, function* () {
@@ -1383,7 +1383,7 @@ class ApiGatewayClient {
1383
1383
  * @param UpdateCertificateRequest
1384
1384
  * @return UpdateCertificateResponse
1385
1385
  * @throws OciError when an error occurs
1386
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
1386
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
1387
1387
  */
1388
1388
  updateCertificate(updateCertificateRequest) {
1389
1389
  return __awaiter(this, void 0, void 0, function* () {
@@ -1442,7 +1442,7 @@ class ApiGatewayClient {
1442
1442
  * @param UpdateSdkRequest
1443
1443
  * @return UpdateSdkResponse
1444
1444
  * @throws OciError when an error occurs
1445
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
1445
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
1446
1446
  */
1447
1447
  updateSdk(updateSdkRequest) {
1448
1448
  return __awaiter(this, void 0, void 0, function* () {
@@ -1497,7 +1497,7 @@ var DeploymentApiKeys;
1497
1497
  (function (DeploymentApiKeys) {
1498
1498
  })(DeploymentApiKeys = exports.DeploymentApiKeys || (exports.DeploymentApiKeys = {}));
1499
1499
  /**
1500
- * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
1500
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
1501
1501
  */
1502
1502
  class DeploymentClient {
1503
1503
  constructor(params, clientConfiguration) {
@@ -1514,7 +1514,7 @@ class DeploymentClient {
1514
1514
  : null;
1515
1515
  }
1516
1516
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
1517
- const specCircuitBreakerEnabled = false;
1517
+ const specCircuitBreakerEnabled = true;
1518
1518
  if (!this._circuitBreaker &&
1519
1519
  common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
1520
1520
  (specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
@@ -1595,7 +1595,7 @@ class DeploymentClient {
1595
1595
  * @param ChangeDeploymentCompartmentRequest
1596
1596
  * @return ChangeDeploymentCompartmentResponse
1597
1597
  * @throws OciError when an error occurs
1598
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
1598
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
1599
1599
  */
1600
1600
  changeDeploymentCompartment(changeDeploymentCompartmentRequest) {
1601
1601
  return __awaiter(this, void 0, void 0, function* () {
@@ -1656,7 +1656,7 @@ class DeploymentClient {
1656
1656
  * @param CreateDeploymentRequest
1657
1657
  * @return CreateDeploymentResponse
1658
1658
  * @throws OciError when an error occurs
1659
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
1659
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
1660
1660
  */
1661
1661
  createDeployment(createDeploymentRequest) {
1662
1662
  return __awaiter(this, void 0, void 0, function* () {
@@ -1727,7 +1727,7 @@ class DeploymentClient {
1727
1727
  * @param DeleteDeploymentRequest
1728
1728
  * @return DeleteDeploymentResponse
1729
1729
  * @throws OciError when an error occurs
1730
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
1730
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
1731
1731
  */
1732
1732
  deleteDeployment(deleteDeploymentRequest) {
1733
1733
  return __awaiter(this, void 0, void 0, function* () {
@@ -1785,7 +1785,7 @@ class DeploymentClient {
1785
1785
  * @param GetDeploymentRequest
1786
1786
  * @return GetDeploymentResponse
1787
1787
  * @throws OciError when an error occurs
1788
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
1788
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
1789
1789
  */
1790
1790
  getDeployment(getDeploymentRequest) {
1791
1791
  return __awaiter(this, void 0, void 0, function* () {
@@ -1847,7 +1847,7 @@ class DeploymentClient {
1847
1847
  * @param ListDeploymentsRequest
1848
1848
  * @return ListDeploymentsResponse
1849
1849
  * @throws OciError when an error occurs
1850
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
1850
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
1851
1851
  */
1852
1852
  listDeployments(listDeploymentsRequest) {
1853
1853
  return __awaiter(this, void 0, void 0, function* () {
@@ -1920,7 +1920,7 @@ class DeploymentClient {
1920
1920
  * @param UpdateDeploymentRequest
1921
1921
  * @return UpdateDeploymentResponse
1922
1922
  * @throws OciError when an error occurs
1923
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
1923
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
1924
1924
  */
1925
1925
  updateDeployment(updateDeploymentRequest) {
1926
1926
  return __awaiter(this, void 0, void 0, function* () {
@@ -1980,7 +1980,7 @@ var GatewayApiKeys;
1980
1980
  (function (GatewayApiKeys) {
1981
1981
  })(GatewayApiKeys = exports.GatewayApiKeys || (exports.GatewayApiKeys = {}));
1982
1982
  /**
1983
- * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
1983
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
1984
1984
  */
1985
1985
  class GatewayClient {
1986
1986
  constructor(params, clientConfiguration) {
@@ -1997,7 +1997,7 @@ class GatewayClient {
1997
1997
  : null;
1998
1998
  }
1999
1999
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
2000
- const specCircuitBreakerEnabled = false;
2000
+ const specCircuitBreakerEnabled = true;
2001
2001
  if (!this._circuitBreaker &&
2002
2002
  common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
2003
2003
  (specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
@@ -2078,7 +2078,7 @@ class GatewayClient {
2078
2078
  * @param ChangeGatewayCompartmentRequest
2079
2079
  * @return ChangeGatewayCompartmentResponse
2080
2080
  * @throws OciError when an error occurs
2081
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
2081
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
2082
2082
  */
2083
2083
  changeGatewayCompartment(changeGatewayCompartmentRequest) {
2084
2084
  return __awaiter(this, void 0, void 0, function* () {
@@ -2139,7 +2139,7 @@ class GatewayClient {
2139
2139
  * @param CreateGatewayRequest
2140
2140
  * @return CreateGatewayResponse
2141
2141
  * @throws OciError when an error occurs
2142
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
2142
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
2143
2143
  */
2144
2144
  createGateway(createGatewayRequest) {
2145
2145
  return __awaiter(this, void 0, void 0, function* () {
@@ -2210,7 +2210,7 @@ class GatewayClient {
2210
2210
  * @param DeleteGatewayRequest
2211
2211
  * @return DeleteGatewayResponse
2212
2212
  * @throws OciError when an error occurs
2213
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
2213
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
2214
2214
  */
2215
2215
  deleteGateway(deleteGatewayRequest) {
2216
2216
  return __awaiter(this, void 0, void 0, function* () {
@@ -2268,7 +2268,7 @@ class GatewayClient {
2268
2268
  * @param GetGatewayRequest
2269
2269
  * @return GetGatewayResponse
2270
2270
  * @throws OciError when an error occurs
2271
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
2271
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
2272
2272
  */
2273
2273
  getGateway(getGatewayRequest) {
2274
2274
  return __awaiter(this, void 0, void 0, function* () {
@@ -2330,7 +2330,7 @@ class GatewayClient {
2330
2330
  * @param ListGatewaysRequest
2331
2331
  * @return ListGatewaysResponse
2332
2332
  * @throws OciError when an error occurs
2333
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
2333
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
2334
2334
  */
2335
2335
  listGateways(listGatewaysRequest) {
2336
2336
  return __awaiter(this, void 0, void 0, function* () {
@@ -2403,7 +2403,7 @@ class GatewayClient {
2403
2403
  * @param UpdateGatewayRequest
2404
2404
  * @return UpdateGatewayResponse
2405
2405
  * @throws OciError when an error occurs
2406
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
2406
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
2407
2407
  */
2408
2408
  updateGateway(updateGatewayRequest) {
2409
2409
  return __awaiter(this, void 0, void 0, function* () {
@@ -2463,7 +2463,7 @@ var WorkRequestsApiKeys;
2463
2463
  (function (WorkRequestsApiKeys) {
2464
2464
  })(WorkRequestsApiKeys = exports.WorkRequestsApiKeys || (exports.WorkRequestsApiKeys = {}));
2465
2465
  /**
2466
- * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
2466
+ * This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
2467
2467
  */
2468
2468
  class WorkRequestsClient {
2469
2469
  constructor(params, clientConfiguration) {
@@ -2480,7 +2480,7 @@ class WorkRequestsClient {
2480
2480
  : null;
2481
2481
  }
2482
2482
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
2483
- const specCircuitBreakerEnabled = false;
2483
+ const specCircuitBreakerEnabled = true;
2484
2484
  if (!this._circuitBreaker &&
2485
2485
  common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
2486
2486
  (specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
@@ -2561,7 +2561,7 @@ class WorkRequestsClient {
2561
2561
  * @param CancelWorkRequestRequest
2562
2562
  * @return CancelWorkRequestResponse
2563
2563
  * @throws OciError when an error occurs
2564
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
2564
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
2565
2565
  */
2566
2566
  cancelWorkRequest(cancelWorkRequestRequest) {
2567
2567
  return __awaiter(this, void 0, void 0, function* () {
@@ -2615,7 +2615,7 @@ class WorkRequestsClient {
2615
2615
  * @param GetWorkRequestRequest
2616
2616
  * @return GetWorkRequestResponse
2617
2617
  * @throws OciError when an error occurs
2618
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2618
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2619
2619
  */
2620
2620
  getWorkRequest(getWorkRequestRequest) {
2621
2621
  return __awaiter(this, void 0, void 0, function* () {
@@ -2682,7 +2682,7 @@ class WorkRequestsClient {
2682
2682
  * @param ListWorkRequestErrorsRequest
2683
2683
  * @return ListWorkRequestErrorsResponse
2684
2684
  * @throws OciError when an error occurs
2685
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2685
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2686
2686
  */
2687
2687
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
2688
2688
  return __awaiter(this, void 0, void 0, function* () {
@@ -2754,7 +2754,7 @@ class WorkRequestsClient {
2754
2754
  * @param ListWorkRequestLogsRequest
2755
2755
  * @return ListWorkRequestLogsResponse
2756
2756
  * @throws OciError when an error occurs
2757
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2757
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2758
2758
  */
2759
2759
  listWorkRequestLogs(listWorkRequestLogsRequest) {
2760
2760
  return __awaiter(this, void 0, void 0, function* () {
@@ -2826,7 +2826,7 @@ class WorkRequestsClient {
2826
2826
  * @param ListWorkRequestsRequest
2827
2827
  * @return ListWorkRequestsResponse
2828
2828
  * @throws OciError when an error occurs
2829
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2829
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2830
2830
  */
2831
2831
  listWorkRequests(listWorkRequestsRequest) {
2832
2832
  return __awaiter(this, void 0, void 0, function* () {