oci-apigateway 2.77.0 → 2.78.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 (54) hide show
  1. package/lib/client.d.ts +82 -56
  2. package/lib/client.js +99 -50
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/cancel-work-request-request.d.ts +1 -1
  5. package/lib/request/change-api-compartment-request.d.ts +1 -1
  6. package/lib/request/change-certificate-compartment-request.d.ts +1 -1
  7. package/lib/request/change-deployment-compartment-request.d.ts +1 -1
  8. package/lib/request/change-gateway-compartment-request.d.ts +1 -1
  9. package/lib/request/change-subscriber-compartment-request.d.ts +1 -1
  10. package/lib/request/change-usage-plan-compartment-request.d.ts +1 -1
  11. package/lib/request/create-api-request.d.ts +1 -1
  12. package/lib/request/create-certificate-request.d.ts +1 -1
  13. package/lib/request/create-deployment-request.d.ts +1 -1
  14. package/lib/request/create-gateway-request.d.ts +1 -1
  15. package/lib/request/create-sdk-request.d.ts +1 -1
  16. package/lib/request/create-subscriber-request.d.ts +1 -1
  17. package/lib/request/create-usage-plan-request.d.ts +1 -1
  18. package/lib/request/delete-api-request.d.ts +1 -1
  19. package/lib/request/delete-certificate-request.d.ts +1 -1
  20. package/lib/request/delete-deployment-request.d.ts +1 -1
  21. package/lib/request/delete-gateway-request.d.ts +1 -1
  22. package/lib/request/delete-sdk-request.d.ts +1 -1
  23. package/lib/request/delete-subscriber-request.d.ts +1 -1
  24. package/lib/request/delete-usage-plan-request.d.ts +1 -1
  25. package/lib/request/get-api-content-request.d.ts +1 -1
  26. package/lib/request/get-api-deployment-specification-request.d.ts +1 -1
  27. package/lib/request/get-api-request.d.ts +1 -1
  28. package/lib/request/get-api-validations-request.d.ts +1 -1
  29. package/lib/request/get-certificate-request.d.ts +1 -1
  30. package/lib/request/get-deployment-request.d.ts +1 -1
  31. package/lib/request/get-gateway-request.d.ts +1 -1
  32. package/lib/request/get-sdk-request.d.ts +1 -1
  33. package/lib/request/get-subscriber-request.d.ts +1 -1
  34. package/lib/request/get-usage-plan-request.d.ts +1 -1
  35. package/lib/request/get-work-request-request.d.ts +1 -1
  36. package/lib/request/list-apis-request.d.ts +1 -1
  37. package/lib/request/list-certificates-request.d.ts +1 -1
  38. package/lib/request/list-deployments-request.d.ts +1 -1
  39. package/lib/request/list-gateways-request.d.ts +1 -1
  40. package/lib/request/list-sdk-language-types-request.d.ts +1 -1
  41. package/lib/request/list-sdks-request.d.ts +1 -1
  42. package/lib/request/list-subscribers-request.d.ts +1 -1
  43. package/lib/request/list-usage-plans-request.d.ts +1 -1
  44. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  45. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  46. package/lib/request/list-work-requests-request.d.ts +1 -1
  47. package/lib/request/update-api-request.d.ts +1 -1
  48. package/lib/request/update-certificate-request.d.ts +1 -1
  49. package/lib/request/update-deployment-request.d.ts +1 -1
  50. package/lib/request/update-gateway-request.d.ts +1 -1
  51. package/lib/request/update-sdk-request.d.ts +1 -1
  52. package/lib/request/update-subscriber-request.d.ts +1 -1
  53. package/lib/request/update-usage-plan-request.d.ts +1 -1
  54. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -53,6 +53,7 @@ const subscribers_waiter_1 = require("./subscribers-waiter");
53
53
  const usageplans_waiter_1 = require("./usageplans-waiter");
54
54
  const workrequests_waiter_1 = require("./workrequests-waiter");
55
55
  const oci_common_1 = require("oci-common");
56
+ const Breaker = require("opossum");
56
57
  // ===============================================
57
58
  // This file is autogenerated - Please do not edit
58
59
  // ===============================================
@@ -189,13 +190,21 @@ class ApiGatewayClient {
189
190
  }
190
191
  throw Error("Waiters do not exist. Please create waiters.");
191
192
  }
193
+ /**
194
+ * Shutdown the circuit breaker used by the client when it is no longer needed
195
+ */
196
+ shutdownCircuitBreaker() {
197
+ if (this._circuitBreaker) {
198
+ this._circuitBreaker.shutdown();
199
+ }
200
+ }
192
201
  /**
193
202
  * Changes the API compartment.
194
203
  * This operation does not retry by default if the user has not defined a retry configuration.
195
204
  * @param ChangeApiCompartmentRequest
196
205
  * @return ChangeApiCompartmentResponse
197
206
  * @throws OciError when an error occurs
198
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
207
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
199
208
  */
200
209
  changeApiCompartment(changeApiCompartmentRequest) {
201
210
  return __awaiter(this, void 0, void 0, function* () {
@@ -257,7 +266,7 @@ class ApiGatewayClient {
257
266
  * @param ChangeCertificateCompartmentRequest
258
267
  * @return ChangeCertificateCompartmentResponse
259
268
  * @throws OciError when an error occurs
260
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
269
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
261
270
  */
262
271
  changeCertificateCompartment(changeCertificateCompartmentRequest) {
263
272
  return __awaiter(this, void 0, void 0, function* () {
@@ -315,7 +324,7 @@ class ApiGatewayClient {
315
324
  * @param CreateApiRequest
316
325
  * @return CreateApiResponse
317
326
  * @throws OciError when an error occurs
318
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
327
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
319
328
  */
320
329
  createApi(createApiRequest) {
321
330
  return __awaiter(this, void 0, void 0, function* () {
@@ -389,7 +398,7 @@ class ApiGatewayClient {
389
398
  * @param CreateCertificateRequest
390
399
  * @return CreateCertificateResponse
391
400
  * @throws OciError when an error occurs
392
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
401
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
393
402
  */
394
403
  createCertificate(createCertificateRequest) {
395
404
  return __awaiter(this, void 0, void 0, function* () {
@@ -462,7 +471,7 @@ class ApiGatewayClient {
462
471
  * @param CreateSdkRequest
463
472
  * @return CreateSdkResponse
464
473
  * @throws OciError when an error occurs
465
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
474
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
466
475
  */
467
476
  createSdk(createSdkRequest) {
468
477
  return __awaiter(this, void 0, void 0, function* () {
@@ -535,7 +544,7 @@ class ApiGatewayClient {
535
544
  * @param DeleteApiRequest
536
545
  * @return DeleteApiResponse
537
546
  * @throws OciError when an error occurs
538
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
547
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
539
548
  */
540
549
  deleteApi(deleteApiRequest) {
541
550
  return __awaiter(this, void 0, void 0, function* () {
@@ -595,7 +604,7 @@ class ApiGatewayClient {
595
604
  * @param DeleteCertificateRequest
596
605
  * @return DeleteCertificateResponse
597
606
  * @throws OciError when an error occurs
598
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
607
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
599
608
  */
600
609
  deleteCertificate(deleteCertificateRequest) {
601
610
  return __awaiter(this, void 0, void 0, function* () {
@@ -655,7 +664,7 @@ class ApiGatewayClient {
655
664
  * @param DeleteSdkRequest
656
665
  * @return DeleteSdkResponse
657
666
  * @throws OciError when an error occurs
658
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
667
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
659
668
  */
660
669
  deleteSdk(deleteSdkRequest) {
661
670
  return __awaiter(this, void 0, void 0, function* () {
@@ -715,7 +724,7 @@ class ApiGatewayClient {
715
724
  * @param GetApiRequest
716
725
  * @return GetApiResponse
717
726
  * @throws OciError when an error occurs
718
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
727
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
719
728
  */
720
729
  getApi(getApiRequest) {
721
730
  return __awaiter(this, void 0, void 0, function* () {
@@ -778,7 +787,7 @@ class ApiGatewayClient {
778
787
  * @param GetApiContentRequest
779
788
  * @return GetApiContentResponse
780
789
  * @throws OciError when an error occurs
781
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
790
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
782
791
  */
783
792
  getApiContent(getApiContentRequest) {
784
793
  return __awaiter(this, void 0, void 0, function* () {
@@ -847,7 +856,7 @@ class ApiGatewayClient {
847
856
  * @param GetApiDeploymentSpecificationRequest
848
857
  * @return GetApiDeploymentSpecificationResponse
849
858
  * @throws OciError when an error occurs
850
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
859
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
851
860
  */
852
861
  getApiDeploymentSpecification(getApiDeploymentSpecificationRequest) {
853
862
  return __awaiter(this, void 0, void 0, function* () {
@@ -911,7 +920,7 @@ class ApiGatewayClient {
911
920
  * @param GetApiValidationsRequest
912
921
  * @return GetApiValidationsResponse
913
922
  * @throws OciError when an error occurs
914
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
923
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
915
924
  */
916
925
  getApiValidations(getApiValidationsRequest) {
917
926
  return __awaiter(this, void 0, void 0, function* () {
@@ -975,7 +984,7 @@ class ApiGatewayClient {
975
984
  * @param GetCertificateRequest
976
985
  * @return GetCertificateResponse
977
986
  * @throws OciError when an error occurs
978
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
987
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
979
988
  */
980
989
  getCertificate(getCertificateRequest) {
981
990
  return __awaiter(this, void 0, void 0, function* () {
@@ -1038,7 +1047,7 @@ class ApiGatewayClient {
1038
1047
  * @param GetSdkRequest
1039
1048
  * @return GetSdkResponse
1040
1049
  * @throws OciError when an error occurs
1041
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
1050
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
1042
1051
  */
1043
1052
  getSdk(getSdkRequest) {
1044
1053
  return __awaiter(this, void 0, void 0, function* () {
@@ -1102,7 +1111,7 @@ class ApiGatewayClient {
1102
1111
  * @param ListApisRequest
1103
1112
  * @return ListApisResponse
1104
1113
  * @throws OciError when an error occurs
1105
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
1114
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
1106
1115
  */
1107
1116
  listApis(listApisRequest) {
1108
1117
  return __awaiter(this, void 0, void 0, function* () {
@@ -1177,7 +1186,7 @@ class ApiGatewayClient {
1177
1186
  * @param ListCertificatesRequest
1178
1187
  * @return ListCertificatesResponse
1179
1188
  * @throws OciError when an error occurs
1180
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
1189
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
1181
1190
  */
1182
1191
  listCertificates(listCertificatesRequest) {
1183
1192
  return __awaiter(this, void 0, void 0, function* () {
@@ -1251,7 +1260,7 @@ class ApiGatewayClient {
1251
1260
  * @param ListSdkLanguageTypesRequest
1252
1261
  * @return ListSdkLanguageTypesResponse
1253
1262
  * @throws OciError when an error occurs
1254
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
1263
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
1255
1264
  */
1256
1265
  listSdkLanguageTypes(listSdkLanguageTypesRequest) {
1257
1266
  return __awaiter(this, void 0, void 0, function* () {
@@ -1324,7 +1333,7 @@ class ApiGatewayClient {
1324
1333
  * @param ListSdksRequest
1325
1334
  * @return ListSdksResponse
1326
1335
  * @throws OciError when an error occurs
1327
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
1336
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
1328
1337
  */
1329
1338
  listSdks(listSdksRequest) {
1330
1339
  return __awaiter(this, void 0, void 0, function* () {
@@ -1399,7 +1408,7 @@ class ApiGatewayClient {
1399
1408
  * @param UpdateApiRequest
1400
1409
  * @return UpdateApiResponse
1401
1410
  * @throws OciError when an error occurs
1402
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
1411
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
1403
1412
  */
1404
1413
  updateApi(updateApiRequest) {
1405
1414
  return __awaiter(this, void 0, void 0, function* () {
@@ -1460,7 +1469,7 @@ class ApiGatewayClient {
1460
1469
  * @param UpdateCertificateRequest
1461
1470
  * @return UpdateCertificateResponse
1462
1471
  * @throws OciError when an error occurs
1463
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
1472
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
1464
1473
  */
1465
1474
  updateCertificate(updateCertificateRequest) {
1466
1475
  return __awaiter(this, void 0, void 0, function* () {
@@ -1521,7 +1530,7 @@ class ApiGatewayClient {
1521
1530
  * @param UpdateSdkRequest
1522
1531
  * @return UpdateSdkResponse
1523
1532
  * @throws OciError when an error occurs
1524
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
1533
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
1525
1534
  */
1526
1535
  updateSdk(updateSdkRequest) {
1527
1536
  return __awaiter(this, void 0, void 0, function* () {
@@ -1708,13 +1717,21 @@ class DeploymentClient {
1708
1717
  }
1709
1718
  throw Error("Waiters do not exist. Please create waiters.");
1710
1719
  }
1720
+ /**
1721
+ * Shutdown the circuit breaker used by the client when it is no longer needed
1722
+ */
1723
+ shutdownCircuitBreaker() {
1724
+ if (this._circuitBreaker) {
1725
+ this._circuitBreaker.shutdown();
1726
+ }
1727
+ }
1711
1728
  /**
1712
1729
  * Changes the deployment compartment.
1713
1730
  * This operation does not retry by default if the user has not defined a retry configuration.
1714
1731
  * @param ChangeDeploymentCompartmentRequest
1715
1732
  * @return ChangeDeploymentCompartmentResponse
1716
1733
  * @throws OciError when an error occurs
1717
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
1734
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
1718
1735
  */
1719
1736
  changeDeploymentCompartment(changeDeploymentCompartmentRequest) {
1720
1737
  return __awaiter(this, void 0, void 0, function* () {
@@ -1777,7 +1794,7 @@ class DeploymentClient {
1777
1794
  * @param CreateDeploymentRequest
1778
1795
  * @return CreateDeploymentResponse
1779
1796
  * @throws OciError when an error occurs
1780
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
1797
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
1781
1798
  */
1782
1799
  createDeployment(createDeploymentRequest) {
1783
1800
  return __awaiter(this, void 0, void 0, function* () {
@@ -1850,7 +1867,7 @@ class DeploymentClient {
1850
1867
  * @param DeleteDeploymentRequest
1851
1868
  * @return DeleteDeploymentResponse
1852
1869
  * @throws OciError when an error occurs
1853
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
1870
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
1854
1871
  */
1855
1872
  deleteDeployment(deleteDeploymentRequest) {
1856
1873
  return __awaiter(this, void 0, void 0, function* () {
@@ -1910,7 +1927,7 @@ class DeploymentClient {
1910
1927
  * @param GetDeploymentRequest
1911
1928
  * @return GetDeploymentResponse
1912
1929
  * @throws OciError when an error occurs
1913
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
1930
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
1914
1931
  */
1915
1932
  getDeployment(getDeploymentRequest) {
1916
1933
  return __awaiter(this, void 0, void 0, function* () {
@@ -1974,7 +1991,7 @@ class DeploymentClient {
1974
1991
  * @param ListDeploymentsRequest
1975
1992
  * @return ListDeploymentsResponse
1976
1993
  * @throws OciError when an error occurs
1977
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
1994
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
1978
1995
  */
1979
1996
  listDeployments(listDeploymentsRequest) {
1980
1997
  return __awaiter(this, void 0, void 0, function* () {
@@ -2049,7 +2066,7 @@ class DeploymentClient {
2049
2066
  * @param UpdateDeploymentRequest
2050
2067
  * @return UpdateDeploymentResponse
2051
2068
  * @throws OciError when an error occurs
2052
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
2069
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
2053
2070
  */
2054
2071
  updateDeployment(updateDeploymentRequest) {
2055
2072
  return __awaiter(this, void 0, void 0, function* () {
@@ -2241,13 +2258,21 @@ class GatewayClient {
2241
2258
  }
2242
2259
  throw Error("Waiters do not exist. Please create waiters.");
2243
2260
  }
2261
+ /**
2262
+ * Shutdown the circuit breaker used by the client when it is no longer needed
2263
+ */
2264
+ shutdownCircuitBreaker() {
2265
+ if (this._circuitBreaker) {
2266
+ this._circuitBreaker.shutdown();
2267
+ }
2268
+ }
2244
2269
  /**
2245
2270
  * Changes the gateway compartment.
2246
2271
  * This operation does not retry by default if the user has not defined a retry configuration.
2247
2272
  * @param ChangeGatewayCompartmentRequest
2248
2273
  * @return ChangeGatewayCompartmentResponse
2249
2274
  * @throws OciError when an error occurs
2250
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
2275
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
2251
2276
  */
2252
2277
  changeGatewayCompartment(changeGatewayCompartmentRequest) {
2253
2278
  return __awaiter(this, void 0, void 0, function* () {
@@ -2310,7 +2335,7 @@ class GatewayClient {
2310
2335
  * @param CreateGatewayRequest
2311
2336
  * @return CreateGatewayResponse
2312
2337
  * @throws OciError when an error occurs
2313
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
2338
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
2314
2339
  */
2315
2340
  createGateway(createGatewayRequest) {
2316
2341
  return __awaiter(this, void 0, void 0, function* () {
@@ -2383,7 +2408,7 @@ class GatewayClient {
2383
2408
  * @param DeleteGatewayRequest
2384
2409
  * @return DeleteGatewayResponse
2385
2410
  * @throws OciError when an error occurs
2386
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
2411
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
2387
2412
  */
2388
2413
  deleteGateway(deleteGatewayRequest) {
2389
2414
  return __awaiter(this, void 0, void 0, function* () {
@@ -2443,7 +2468,7 @@ class GatewayClient {
2443
2468
  * @param GetGatewayRequest
2444
2469
  * @return GetGatewayResponse
2445
2470
  * @throws OciError when an error occurs
2446
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
2471
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
2447
2472
  */
2448
2473
  getGateway(getGatewayRequest) {
2449
2474
  return __awaiter(this, void 0, void 0, function* () {
@@ -2507,7 +2532,7 @@ class GatewayClient {
2507
2532
  * @param ListGatewaysRequest
2508
2533
  * @return ListGatewaysResponse
2509
2534
  * @throws OciError when an error occurs
2510
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
2535
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
2511
2536
  */
2512
2537
  listGateways(listGatewaysRequest) {
2513
2538
  return __awaiter(this, void 0, void 0, function* () {
@@ -2582,7 +2607,7 @@ class GatewayClient {
2582
2607
  * @param UpdateGatewayRequest
2583
2608
  * @return UpdateGatewayResponse
2584
2609
  * @throws OciError when an error occurs
2585
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
2610
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
2586
2611
  */
2587
2612
  updateGateway(updateGatewayRequest) {
2588
2613
  return __awaiter(this, void 0, void 0, function* () {
@@ -2774,13 +2799,21 @@ class SubscribersClient {
2774
2799
  }
2775
2800
  throw Error("Waiters do not exist. Please create waiters.");
2776
2801
  }
2802
+ /**
2803
+ * Shutdown the circuit breaker used by the client when it is no longer needed
2804
+ */
2805
+ shutdownCircuitBreaker() {
2806
+ if (this._circuitBreaker) {
2807
+ this._circuitBreaker.shutdown();
2808
+ }
2809
+ }
2777
2810
  /**
2778
2811
  * Changes the subscriber compartment.
2779
2812
  * This operation does not retry by default if the user has not defined a retry configuration.
2780
2813
  * @param ChangeSubscriberCompartmentRequest
2781
2814
  * @return ChangeSubscriberCompartmentResponse
2782
2815
  * @throws OciError when an error occurs
2783
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeSubscriberCompartment.ts.html |here} to see how to use ChangeSubscriberCompartment API.
2816
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeSubscriberCompartment.ts.html |here} to see how to use ChangeSubscriberCompartment API.
2784
2817
  */
2785
2818
  changeSubscriberCompartment(changeSubscriberCompartmentRequest) {
2786
2819
  return __awaiter(this, void 0, void 0, function* () {
@@ -2842,7 +2875,7 @@ class SubscribersClient {
2842
2875
  * @param CreateSubscriberRequest
2843
2876
  * @return CreateSubscriberResponse
2844
2877
  * @throws OciError when an error occurs
2845
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateSubscriber.ts.html |here} to see how to use CreateSubscriber API.
2878
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateSubscriber.ts.html |here} to see how to use CreateSubscriber API.
2846
2879
  */
2847
2880
  createSubscriber(createSubscriberRequest) {
2848
2881
  return __awaiter(this, void 0, void 0, function* () {
@@ -2915,7 +2948,7 @@ class SubscribersClient {
2915
2948
  * @param DeleteSubscriberRequest
2916
2949
  * @return DeleteSubscriberResponse
2917
2950
  * @throws OciError when an error occurs
2918
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteSubscriber.ts.html |here} to see how to use DeleteSubscriber API.
2951
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteSubscriber.ts.html |here} to see how to use DeleteSubscriber API.
2919
2952
  */
2920
2953
  deleteSubscriber(deleteSubscriberRequest) {
2921
2954
  return __awaiter(this, void 0, void 0, function* () {
@@ -2975,7 +3008,7 @@ class SubscribersClient {
2975
3008
  * @param GetSubscriberRequest
2976
3009
  * @return GetSubscriberResponse
2977
3010
  * @throws OciError when an error occurs
2978
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetSubscriber.ts.html |here} to see how to use GetSubscriber API.
3011
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetSubscriber.ts.html |here} to see how to use GetSubscriber API.
2979
3012
  */
2980
3013
  getSubscriber(getSubscriberRequest) {
2981
3014
  return __awaiter(this, void 0, void 0, function* () {
@@ -3038,7 +3071,7 @@ class SubscribersClient {
3038
3071
  * @param ListSubscribersRequest
3039
3072
  * @return ListSubscribersResponse
3040
3073
  * @throws OciError when an error occurs
3041
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListSubscribers.ts.html |here} to see how to use ListSubscribers API.
3074
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListSubscribers.ts.html |here} to see how to use ListSubscribers API.
3042
3075
  */
3043
3076
  listSubscribers(listSubscribersRequest) {
3044
3077
  return __awaiter(this, void 0, void 0, function* () {
@@ -3112,7 +3145,7 @@ class SubscribersClient {
3112
3145
  * @param UpdateSubscriberRequest
3113
3146
  * @return UpdateSubscriberResponse
3114
3147
  * @throws OciError when an error occurs
3115
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateSubscriber.ts.html |here} to see how to use UpdateSubscriber API.
3148
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateSubscriber.ts.html |here} to see how to use UpdateSubscriber API.
3116
3149
  */
3117
3150
  updateSubscriber(updateSubscriberRequest) {
3118
3151
  return __awaiter(this, void 0, void 0, function* () {
@@ -3304,13 +3337,21 @@ class UsagePlansClient {
3304
3337
  }
3305
3338
  throw Error("Waiters do not exist. Please create waiters.");
3306
3339
  }
3340
+ /**
3341
+ * Shutdown the circuit breaker used by the client when it is no longer needed
3342
+ */
3343
+ shutdownCircuitBreaker() {
3344
+ if (this._circuitBreaker) {
3345
+ this._circuitBreaker.shutdown();
3346
+ }
3347
+ }
3307
3348
  /**
3308
3349
  * Changes the usage plan compartment.
3309
3350
  * This operation does not retry by default if the user has not defined a retry configuration.
3310
3351
  * @param ChangeUsagePlanCompartmentRequest
3311
3352
  * @return ChangeUsagePlanCompartmentResponse
3312
3353
  * @throws OciError when an error occurs
3313
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ChangeUsagePlanCompartment.ts.html |here} to see how to use ChangeUsagePlanCompartment API.
3354
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ChangeUsagePlanCompartment.ts.html |here} to see how to use ChangeUsagePlanCompartment API.
3314
3355
  */
3315
3356
  changeUsagePlanCompartment(changeUsagePlanCompartmentRequest) {
3316
3357
  return __awaiter(this, void 0, void 0, function* () {
@@ -3372,7 +3413,7 @@ class UsagePlansClient {
3372
3413
  * @param CreateUsagePlanRequest
3373
3414
  * @return CreateUsagePlanResponse
3374
3415
  * @throws OciError when an error occurs
3375
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CreateUsagePlan.ts.html |here} to see how to use CreateUsagePlan API.
3416
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CreateUsagePlan.ts.html |here} to see how to use CreateUsagePlan API.
3376
3417
  */
3377
3418
  createUsagePlan(createUsagePlanRequest) {
3378
3419
  return __awaiter(this, void 0, void 0, function* () {
@@ -3445,7 +3486,7 @@ class UsagePlansClient {
3445
3486
  * @param DeleteUsagePlanRequest
3446
3487
  * @return DeleteUsagePlanResponse
3447
3488
  * @throws OciError when an error occurs
3448
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/DeleteUsagePlan.ts.html |here} to see how to use DeleteUsagePlan API.
3489
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/DeleteUsagePlan.ts.html |here} to see how to use DeleteUsagePlan API.
3449
3490
  */
3450
3491
  deleteUsagePlan(deleteUsagePlanRequest) {
3451
3492
  return __awaiter(this, void 0, void 0, function* () {
@@ -3505,7 +3546,7 @@ class UsagePlansClient {
3505
3546
  * @param GetUsagePlanRequest
3506
3547
  * @return GetUsagePlanResponse
3507
3548
  * @throws OciError when an error occurs
3508
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetUsagePlan.ts.html |here} to see how to use GetUsagePlan API.
3549
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetUsagePlan.ts.html |here} to see how to use GetUsagePlan API.
3509
3550
  */
3510
3551
  getUsagePlan(getUsagePlanRequest) {
3511
3552
  return __awaiter(this, void 0, void 0, function* () {
@@ -3568,7 +3609,7 @@ class UsagePlansClient {
3568
3609
  * @param ListUsagePlansRequest
3569
3610
  * @return ListUsagePlansResponse
3570
3611
  * @throws OciError when an error occurs
3571
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListUsagePlans.ts.html |here} to see how to use ListUsagePlans API.
3612
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListUsagePlans.ts.html |here} to see how to use ListUsagePlans API.
3572
3613
  */
3573
3614
  listUsagePlans(listUsagePlansRequest) {
3574
3615
  return __awaiter(this, void 0, void 0, function* () {
@@ -3642,7 +3683,7 @@ class UsagePlansClient {
3642
3683
  * @param UpdateUsagePlanRequest
3643
3684
  * @return UpdateUsagePlanResponse
3644
3685
  * @throws OciError when an error occurs
3645
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/UpdateUsagePlan.ts.html |here} to see how to use UpdateUsagePlan API.
3686
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/UpdateUsagePlan.ts.html |here} to see how to use UpdateUsagePlan API.
3646
3687
  */
3647
3688
  updateUsagePlan(updateUsagePlanRequest) {
3648
3689
  return __awaiter(this, void 0, void 0, function* () {
@@ -3834,13 +3875,21 @@ class WorkRequestsClient {
3834
3875
  }
3835
3876
  throw Error("Waiters do not exist. Please create waiters.");
3836
3877
  }
3878
+ /**
3879
+ * Shutdown the circuit breaker used by the client when it is no longer needed
3880
+ */
3881
+ shutdownCircuitBreaker() {
3882
+ if (this._circuitBreaker) {
3883
+ this._circuitBreaker.shutdown();
3884
+ }
3885
+ }
3837
3886
  /**
3838
3887
  * Cancels the work request.
3839
3888
  * This operation does not retry by default if the user has not defined a retry configuration.
3840
3889
  * @param CancelWorkRequestRequest
3841
3890
  * @return CancelWorkRequestResponse
3842
3891
  * @throws OciError when an error occurs
3843
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
3892
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
3844
3893
  */
3845
3894
  cancelWorkRequest(cancelWorkRequestRequest) {
3846
3895
  return __awaiter(this, void 0, void 0, function* () {
@@ -3896,7 +3945,7 @@ class WorkRequestsClient {
3896
3945
  * @param GetWorkRequestRequest
3897
3946
  * @return GetWorkRequestResponse
3898
3947
  * @throws OciError when an error occurs
3899
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
3948
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
3900
3949
  */
3901
3950
  getWorkRequest(getWorkRequestRequest) {
3902
3951
  return __awaiter(this, void 0, void 0, function* () {
@@ -3965,7 +4014,7 @@ class WorkRequestsClient {
3965
4014
  * @param ListWorkRequestErrorsRequest
3966
4015
  * @return ListWorkRequestErrorsResponse
3967
4016
  * @throws OciError when an error occurs
3968
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4017
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
3969
4018
  */
3970
4019
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
3971
4020
  return __awaiter(this, void 0, void 0, function* () {
@@ -4039,7 +4088,7 @@ class WorkRequestsClient {
4039
4088
  * @param ListWorkRequestLogsRequest
4040
4089
  * @return ListWorkRequestLogsResponse
4041
4090
  * @throws OciError when an error occurs
4042
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4091
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4043
4092
  */
4044
4093
  listWorkRequestLogs(listWorkRequestLogsRequest) {
4045
4094
  return __awaiter(this, void 0, void 0, function* () {
@@ -4113,7 +4162,7 @@ class WorkRequestsClient {
4113
4162
  * @param ListWorkRequestsRequest
4114
4163
  * @return ListWorkRequestsResponse
4115
4164
  * @throws OciError when an error occurs
4116
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4165
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4117
4166
  */
4118
4167
  listWorkRequests(listWorkRequestsRequest) {
4119
4168
  return __awaiter(this, void 0, void 0, function* () {