oci-apigateway 2.84.0 → 2.84.2

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 +74 -50
  2. package/lib/client.js +86 -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
@@ -198,13 +198,19 @@ class ApiGatewayClient {
198
198
  this._circuitBreaker.shutdown();
199
199
  }
200
200
  }
201
+ /**
202
+ * Close the client once it is no longer needed
203
+ */
204
+ close() {
205
+ this.shutdownCircuitBreaker();
206
+ }
201
207
  /**
202
208
  * Changes the API compartment.
203
209
  * This operation does not retry by default if the user has not defined a retry configuration.
204
210
  * @param ChangeApiCompartmentRequest
205
211
  * @return ChangeApiCompartmentResponse
206
212
  * @throws OciError when an error occurs
207
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
213
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
208
214
  */
209
215
  changeApiCompartment(changeApiCompartmentRequest) {
210
216
  return __awaiter(this, void 0, void 0, function* () {
@@ -266,7 +272,7 @@ class ApiGatewayClient {
266
272
  * @param ChangeCertificateCompartmentRequest
267
273
  * @return ChangeCertificateCompartmentResponse
268
274
  * @throws OciError when an error occurs
269
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
275
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
270
276
  */
271
277
  changeCertificateCompartment(changeCertificateCompartmentRequest) {
272
278
  return __awaiter(this, void 0, void 0, function* () {
@@ -324,7 +330,7 @@ class ApiGatewayClient {
324
330
  * @param CreateApiRequest
325
331
  * @return CreateApiResponse
326
332
  * @throws OciError when an error occurs
327
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
333
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
328
334
  */
329
335
  createApi(createApiRequest) {
330
336
  return __awaiter(this, void 0, void 0, function* () {
@@ -398,7 +404,7 @@ class ApiGatewayClient {
398
404
  * @param CreateCertificateRequest
399
405
  * @return CreateCertificateResponse
400
406
  * @throws OciError when an error occurs
401
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
407
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
402
408
  */
403
409
  createCertificate(createCertificateRequest) {
404
410
  return __awaiter(this, void 0, void 0, function* () {
@@ -471,7 +477,7 @@ class ApiGatewayClient {
471
477
  * @param CreateSdkRequest
472
478
  * @return CreateSdkResponse
473
479
  * @throws OciError when an error occurs
474
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
480
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
475
481
  */
476
482
  createSdk(createSdkRequest) {
477
483
  return __awaiter(this, void 0, void 0, function* () {
@@ -544,7 +550,7 @@ class ApiGatewayClient {
544
550
  * @param DeleteApiRequest
545
551
  * @return DeleteApiResponse
546
552
  * @throws OciError when an error occurs
547
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
553
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
548
554
  */
549
555
  deleteApi(deleteApiRequest) {
550
556
  return __awaiter(this, void 0, void 0, function* () {
@@ -604,7 +610,7 @@ class ApiGatewayClient {
604
610
  * @param DeleteCertificateRequest
605
611
  * @return DeleteCertificateResponse
606
612
  * @throws OciError when an error occurs
607
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
613
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
608
614
  */
609
615
  deleteCertificate(deleteCertificateRequest) {
610
616
  return __awaiter(this, void 0, void 0, function* () {
@@ -664,7 +670,7 @@ class ApiGatewayClient {
664
670
  * @param DeleteSdkRequest
665
671
  * @return DeleteSdkResponse
666
672
  * @throws OciError when an error occurs
667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
673
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
668
674
  */
669
675
  deleteSdk(deleteSdkRequest) {
670
676
  return __awaiter(this, void 0, void 0, function* () {
@@ -724,7 +730,7 @@ class ApiGatewayClient {
724
730
  * @param GetApiRequest
725
731
  * @return GetApiResponse
726
732
  * @throws OciError when an error occurs
727
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
733
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
728
734
  */
729
735
  getApi(getApiRequest) {
730
736
  return __awaiter(this, void 0, void 0, function* () {
@@ -787,7 +793,7 @@ class ApiGatewayClient {
787
793
  * @param GetApiContentRequest
788
794
  * @return GetApiContentResponse
789
795
  * @throws OciError when an error occurs
790
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
796
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
791
797
  */
792
798
  getApiContent(getApiContentRequest) {
793
799
  return __awaiter(this, void 0, void 0, function* () {
@@ -856,7 +862,7 @@ class ApiGatewayClient {
856
862
  * @param GetApiDeploymentSpecificationRequest
857
863
  * @return GetApiDeploymentSpecificationResponse
858
864
  * @throws OciError when an error occurs
859
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
865
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
860
866
  */
861
867
  getApiDeploymentSpecification(getApiDeploymentSpecificationRequest) {
862
868
  return __awaiter(this, void 0, void 0, function* () {
@@ -920,7 +926,7 @@ class ApiGatewayClient {
920
926
  * @param GetApiValidationsRequest
921
927
  * @return GetApiValidationsResponse
922
928
  * @throws OciError when an error occurs
923
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
929
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
924
930
  */
925
931
  getApiValidations(getApiValidationsRequest) {
926
932
  return __awaiter(this, void 0, void 0, function* () {
@@ -984,7 +990,7 @@ class ApiGatewayClient {
984
990
  * @param GetCertificateRequest
985
991
  * @return GetCertificateResponse
986
992
  * @throws OciError when an error occurs
987
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
993
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
988
994
  */
989
995
  getCertificate(getCertificateRequest) {
990
996
  return __awaiter(this, void 0, void 0, function* () {
@@ -1047,7 +1053,7 @@ class ApiGatewayClient {
1047
1053
  * @param GetSdkRequest
1048
1054
  * @return GetSdkResponse
1049
1055
  * @throws OciError when an error occurs
1050
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
1056
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
1051
1057
  */
1052
1058
  getSdk(getSdkRequest) {
1053
1059
  return __awaiter(this, void 0, void 0, function* () {
@@ -1111,7 +1117,7 @@ class ApiGatewayClient {
1111
1117
  * @param ListApisRequest
1112
1118
  * @return ListApisResponse
1113
1119
  * @throws OciError when an error occurs
1114
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
1120
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
1115
1121
  */
1116
1122
  listApis(listApisRequest) {
1117
1123
  return __awaiter(this, void 0, void 0, function* () {
@@ -1186,7 +1192,7 @@ class ApiGatewayClient {
1186
1192
  * @param ListCertificatesRequest
1187
1193
  * @return ListCertificatesResponse
1188
1194
  * @throws OciError when an error occurs
1189
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
1195
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
1190
1196
  */
1191
1197
  listCertificates(listCertificatesRequest) {
1192
1198
  return __awaiter(this, void 0, void 0, function* () {
@@ -1260,7 +1266,7 @@ class ApiGatewayClient {
1260
1266
  * @param ListSdkLanguageTypesRequest
1261
1267
  * @return ListSdkLanguageTypesResponse
1262
1268
  * @throws OciError when an error occurs
1263
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
1269
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
1264
1270
  */
1265
1271
  listSdkLanguageTypes(listSdkLanguageTypesRequest) {
1266
1272
  return __awaiter(this, void 0, void 0, function* () {
@@ -1333,7 +1339,7 @@ class ApiGatewayClient {
1333
1339
  * @param ListSdksRequest
1334
1340
  * @return ListSdksResponse
1335
1341
  * @throws OciError when an error occurs
1336
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
1342
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
1337
1343
  */
1338
1344
  listSdks(listSdksRequest) {
1339
1345
  return __awaiter(this, void 0, void 0, function* () {
@@ -1408,7 +1414,7 @@ class ApiGatewayClient {
1408
1414
  * @param UpdateApiRequest
1409
1415
  * @return UpdateApiResponse
1410
1416
  * @throws OciError when an error occurs
1411
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
1417
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
1412
1418
  */
1413
1419
  updateApi(updateApiRequest) {
1414
1420
  return __awaiter(this, void 0, void 0, function* () {
@@ -1469,7 +1475,7 @@ class ApiGatewayClient {
1469
1475
  * @param UpdateCertificateRequest
1470
1476
  * @return UpdateCertificateResponse
1471
1477
  * @throws OciError when an error occurs
1472
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
1478
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
1473
1479
  */
1474
1480
  updateCertificate(updateCertificateRequest) {
1475
1481
  return __awaiter(this, void 0, void 0, function* () {
@@ -1530,7 +1536,7 @@ class ApiGatewayClient {
1530
1536
  * @param UpdateSdkRequest
1531
1537
  * @return UpdateSdkResponse
1532
1538
  * @throws OciError when an error occurs
1533
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
1539
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
1534
1540
  */
1535
1541
  updateSdk(updateSdkRequest) {
1536
1542
  return __awaiter(this, void 0, void 0, function* () {
@@ -1725,13 +1731,19 @@ class DeploymentClient {
1725
1731
  this._circuitBreaker.shutdown();
1726
1732
  }
1727
1733
  }
1734
+ /**
1735
+ * Close the client once it is no longer needed
1736
+ */
1737
+ close() {
1738
+ this.shutdownCircuitBreaker();
1739
+ }
1728
1740
  /**
1729
1741
  * Changes the deployment compartment.
1730
1742
  * This operation does not retry by default if the user has not defined a retry configuration.
1731
1743
  * @param ChangeDeploymentCompartmentRequest
1732
1744
  * @return ChangeDeploymentCompartmentResponse
1733
1745
  * @throws OciError when an error occurs
1734
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
1746
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
1735
1747
  */
1736
1748
  changeDeploymentCompartment(changeDeploymentCompartmentRequest) {
1737
1749
  return __awaiter(this, void 0, void 0, function* () {
@@ -1794,7 +1806,7 @@ class DeploymentClient {
1794
1806
  * @param CreateDeploymentRequest
1795
1807
  * @return CreateDeploymentResponse
1796
1808
  * @throws OciError when an error occurs
1797
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
1809
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
1798
1810
  */
1799
1811
  createDeployment(createDeploymentRequest) {
1800
1812
  return __awaiter(this, void 0, void 0, function* () {
@@ -1867,7 +1879,7 @@ class DeploymentClient {
1867
1879
  * @param DeleteDeploymentRequest
1868
1880
  * @return DeleteDeploymentResponse
1869
1881
  * @throws OciError when an error occurs
1870
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
1882
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
1871
1883
  */
1872
1884
  deleteDeployment(deleteDeploymentRequest) {
1873
1885
  return __awaiter(this, void 0, void 0, function* () {
@@ -1927,7 +1939,7 @@ class DeploymentClient {
1927
1939
  * @param GetDeploymentRequest
1928
1940
  * @return GetDeploymentResponse
1929
1941
  * @throws OciError when an error occurs
1930
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
1942
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
1931
1943
  */
1932
1944
  getDeployment(getDeploymentRequest) {
1933
1945
  return __awaiter(this, void 0, void 0, function* () {
@@ -1991,7 +2003,7 @@ class DeploymentClient {
1991
2003
  * @param ListDeploymentsRequest
1992
2004
  * @return ListDeploymentsResponse
1993
2005
  * @throws OciError when an error occurs
1994
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
2006
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
1995
2007
  */
1996
2008
  listDeployments(listDeploymentsRequest) {
1997
2009
  return __awaiter(this, void 0, void 0, function* () {
@@ -2066,7 +2078,7 @@ class DeploymentClient {
2066
2078
  * @param UpdateDeploymentRequest
2067
2079
  * @return UpdateDeploymentResponse
2068
2080
  * @throws OciError when an error occurs
2069
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
2081
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
2070
2082
  */
2071
2083
  updateDeployment(updateDeploymentRequest) {
2072
2084
  return __awaiter(this, void 0, void 0, function* () {
@@ -2266,13 +2278,19 @@ class GatewayClient {
2266
2278
  this._circuitBreaker.shutdown();
2267
2279
  }
2268
2280
  }
2281
+ /**
2282
+ * Close the client once it is no longer needed
2283
+ */
2284
+ close() {
2285
+ this.shutdownCircuitBreaker();
2286
+ }
2269
2287
  /**
2270
2288
  * Changes the gateway compartment.
2271
2289
  * This operation does not retry by default if the user has not defined a retry configuration.
2272
2290
  * @param ChangeGatewayCompartmentRequest
2273
2291
  * @return ChangeGatewayCompartmentResponse
2274
2292
  * @throws OciError when an error occurs
2275
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
2293
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
2276
2294
  */
2277
2295
  changeGatewayCompartment(changeGatewayCompartmentRequest) {
2278
2296
  return __awaiter(this, void 0, void 0, function* () {
@@ -2335,7 +2353,7 @@ class GatewayClient {
2335
2353
  * @param CreateGatewayRequest
2336
2354
  * @return CreateGatewayResponse
2337
2355
  * @throws OciError when an error occurs
2338
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
2356
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
2339
2357
  */
2340
2358
  createGateway(createGatewayRequest) {
2341
2359
  return __awaiter(this, void 0, void 0, function* () {
@@ -2408,7 +2426,7 @@ class GatewayClient {
2408
2426
  * @param DeleteGatewayRequest
2409
2427
  * @return DeleteGatewayResponse
2410
2428
  * @throws OciError when an error occurs
2411
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
2429
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
2412
2430
  */
2413
2431
  deleteGateway(deleteGatewayRequest) {
2414
2432
  return __awaiter(this, void 0, void 0, function* () {
@@ -2468,7 +2486,7 @@ class GatewayClient {
2468
2486
  * @param GetGatewayRequest
2469
2487
  * @return GetGatewayResponse
2470
2488
  * @throws OciError when an error occurs
2471
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
2489
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
2472
2490
  */
2473
2491
  getGateway(getGatewayRequest) {
2474
2492
  return __awaiter(this, void 0, void 0, function* () {
@@ -2532,7 +2550,7 @@ class GatewayClient {
2532
2550
  * @param ListGatewaysRequest
2533
2551
  * @return ListGatewaysResponse
2534
2552
  * @throws OciError when an error occurs
2535
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
2553
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
2536
2554
  */
2537
2555
  listGateways(listGatewaysRequest) {
2538
2556
  return __awaiter(this, void 0, void 0, function* () {
@@ -2607,7 +2625,7 @@ class GatewayClient {
2607
2625
  * @param UpdateGatewayRequest
2608
2626
  * @return UpdateGatewayResponse
2609
2627
  * @throws OciError when an error occurs
2610
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
2628
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
2611
2629
  */
2612
2630
  updateGateway(updateGatewayRequest) {
2613
2631
  return __awaiter(this, void 0, void 0, function* () {
@@ -2807,13 +2825,19 @@ class SubscribersClient {
2807
2825
  this._circuitBreaker.shutdown();
2808
2826
  }
2809
2827
  }
2828
+ /**
2829
+ * Close the client once it is no longer needed
2830
+ */
2831
+ close() {
2832
+ this.shutdownCircuitBreaker();
2833
+ }
2810
2834
  /**
2811
2835
  * Changes the subscriber compartment.
2812
2836
  * This operation does not retry by default if the user has not defined a retry configuration.
2813
2837
  * @param ChangeSubscriberCompartmentRequest
2814
2838
  * @return ChangeSubscriberCompartmentResponse
2815
2839
  * @throws OciError when an error occurs
2816
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ChangeSubscriberCompartment.ts.html |here} to see how to use ChangeSubscriberCompartment API.
2840
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ChangeSubscriberCompartment.ts.html |here} to see how to use ChangeSubscriberCompartment API.
2817
2841
  */
2818
2842
  changeSubscriberCompartment(changeSubscriberCompartmentRequest) {
2819
2843
  return __awaiter(this, void 0, void 0, function* () {
@@ -2875,7 +2899,7 @@ class SubscribersClient {
2875
2899
  * @param CreateSubscriberRequest
2876
2900
  * @return CreateSubscriberResponse
2877
2901
  * @throws OciError when an error occurs
2878
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/CreateSubscriber.ts.html |here} to see how to use CreateSubscriber API.
2902
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/CreateSubscriber.ts.html |here} to see how to use CreateSubscriber API.
2879
2903
  */
2880
2904
  createSubscriber(createSubscriberRequest) {
2881
2905
  return __awaiter(this, void 0, void 0, function* () {
@@ -2948,7 +2972,7 @@ class SubscribersClient {
2948
2972
  * @param DeleteSubscriberRequest
2949
2973
  * @return DeleteSubscriberResponse
2950
2974
  * @throws OciError when an error occurs
2951
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/DeleteSubscriber.ts.html |here} to see how to use DeleteSubscriber API.
2975
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/DeleteSubscriber.ts.html |here} to see how to use DeleteSubscriber API.
2952
2976
  */
2953
2977
  deleteSubscriber(deleteSubscriberRequest) {
2954
2978
  return __awaiter(this, void 0, void 0, function* () {
@@ -3008,7 +3032,7 @@ class SubscribersClient {
3008
3032
  * @param GetSubscriberRequest
3009
3033
  * @return GetSubscriberResponse
3010
3034
  * @throws OciError when an error occurs
3011
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetSubscriber.ts.html |here} to see how to use GetSubscriber API.
3035
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetSubscriber.ts.html |here} to see how to use GetSubscriber API.
3012
3036
  */
3013
3037
  getSubscriber(getSubscriberRequest) {
3014
3038
  return __awaiter(this, void 0, void 0, function* () {
@@ -3071,7 +3095,7 @@ class SubscribersClient {
3071
3095
  * @param ListSubscribersRequest
3072
3096
  * @return ListSubscribersResponse
3073
3097
  * @throws OciError when an error occurs
3074
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListSubscribers.ts.html |here} to see how to use ListSubscribers API.
3098
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListSubscribers.ts.html |here} to see how to use ListSubscribers API.
3075
3099
  */
3076
3100
  listSubscribers(listSubscribersRequest) {
3077
3101
  return __awaiter(this, void 0, void 0, function* () {
@@ -3145,7 +3169,7 @@ class SubscribersClient {
3145
3169
  * @param UpdateSubscriberRequest
3146
3170
  * @return UpdateSubscriberResponse
3147
3171
  * @throws OciError when an error occurs
3148
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/UpdateSubscriber.ts.html |here} to see how to use UpdateSubscriber API.
3172
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/UpdateSubscriber.ts.html |here} to see how to use UpdateSubscriber API.
3149
3173
  */
3150
3174
  updateSubscriber(updateSubscriberRequest) {
3151
3175
  return __awaiter(this, void 0, void 0, function* () {
@@ -3345,13 +3369,19 @@ class UsagePlansClient {
3345
3369
  this._circuitBreaker.shutdown();
3346
3370
  }
3347
3371
  }
3372
+ /**
3373
+ * Close the client once it is no longer needed
3374
+ */
3375
+ close() {
3376
+ this.shutdownCircuitBreaker();
3377
+ }
3348
3378
  /**
3349
3379
  * Changes the usage plan compartment.
3350
3380
  * This operation does not retry by default if the user has not defined a retry configuration.
3351
3381
  * @param ChangeUsagePlanCompartmentRequest
3352
3382
  * @return ChangeUsagePlanCompartmentResponse
3353
3383
  * @throws OciError when an error occurs
3354
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ChangeUsagePlanCompartment.ts.html |here} to see how to use ChangeUsagePlanCompartment API.
3384
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ChangeUsagePlanCompartment.ts.html |here} to see how to use ChangeUsagePlanCompartment API.
3355
3385
  */
3356
3386
  changeUsagePlanCompartment(changeUsagePlanCompartmentRequest) {
3357
3387
  return __awaiter(this, void 0, void 0, function* () {
@@ -3413,7 +3443,7 @@ class UsagePlansClient {
3413
3443
  * @param CreateUsagePlanRequest
3414
3444
  * @return CreateUsagePlanResponse
3415
3445
  * @throws OciError when an error occurs
3416
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/CreateUsagePlan.ts.html |here} to see how to use CreateUsagePlan API.
3446
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/CreateUsagePlan.ts.html |here} to see how to use CreateUsagePlan API.
3417
3447
  */
3418
3448
  createUsagePlan(createUsagePlanRequest) {
3419
3449
  return __awaiter(this, void 0, void 0, function* () {
@@ -3486,7 +3516,7 @@ class UsagePlansClient {
3486
3516
  * @param DeleteUsagePlanRequest
3487
3517
  * @return DeleteUsagePlanResponse
3488
3518
  * @throws OciError when an error occurs
3489
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/DeleteUsagePlan.ts.html |here} to see how to use DeleteUsagePlan API.
3519
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/DeleteUsagePlan.ts.html |here} to see how to use DeleteUsagePlan API.
3490
3520
  */
3491
3521
  deleteUsagePlan(deleteUsagePlanRequest) {
3492
3522
  return __awaiter(this, void 0, void 0, function* () {
@@ -3546,7 +3576,7 @@ class UsagePlansClient {
3546
3576
  * @param GetUsagePlanRequest
3547
3577
  * @return GetUsagePlanResponse
3548
3578
  * @throws OciError when an error occurs
3549
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetUsagePlan.ts.html |here} to see how to use GetUsagePlan API.
3579
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetUsagePlan.ts.html |here} to see how to use GetUsagePlan API.
3550
3580
  */
3551
3581
  getUsagePlan(getUsagePlanRequest) {
3552
3582
  return __awaiter(this, void 0, void 0, function* () {
@@ -3609,7 +3639,7 @@ class UsagePlansClient {
3609
3639
  * @param ListUsagePlansRequest
3610
3640
  * @return ListUsagePlansResponse
3611
3641
  * @throws OciError when an error occurs
3612
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListUsagePlans.ts.html |here} to see how to use ListUsagePlans API.
3642
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListUsagePlans.ts.html |here} to see how to use ListUsagePlans API.
3613
3643
  */
3614
3644
  listUsagePlans(listUsagePlansRequest) {
3615
3645
  return __awaiter(this, void 0, void 0, function* () {
@@ -3683,7 +3713,7 @@ class UsagePlansClient {
3683
3713
  * @param UpdateUsagePlanRequest
3684
3714
  * @return UpdateUsagePlanResponse
3685
3715
  * @throws OciError when an error occurs
3686
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/UpdateUsagePlan.ts.html |here} to see how to use UpdateUsagePlan API.
3716
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/UpdateUsagePlan.ts.html |here} to see how to use UpdateUsagePlan API.
3687
3717
  */
3688
3718
  updateUsagePlan(updateUsagePlanRequest) {
3689
3719
  return __awaiter(this, void 0, void 0, function* () {
@@ -3883,13 +3913,19 @@ class WorkRequestsClient {
3883
3913
  this._circuitBreaker.shutdown();
3884
3914
  }
3885
3915
  }
3916
+ /**
3917
+ * Close the client once it is no longer needed
3918
+ */
3919
+ close() {
3920
+ this.shutdownCircuitBreaker();
3921
+ }
3886
3922
  /**
3887
3923
  * Cancels the work request.
3888
3924
  * This operation does not retry by default if the user has not defined a retry configuration.
3889
3925
  * @param CancelWorkRequestRequest
3890
3926
  * @return CancelWorkRequestResponse
3891
3927
  * @throws OciError when an error occurs
3892
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
3928
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
3893
3929
  */
3894
3930
  cancelWorkRequest(cancelWorkRequestRequest) {
3895
3931
  return __awaiter(this, void 0, void 0, function* () {
@@ -3945,7 +3981,7 @@ class WorkRequestsClient {
3945
3981
  * @param GetWorkRequestRequest
3946
3982
  * @return GetWorkRequestResponse
3947
3983
  * @throws OciError when an error occurs
3948
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
3984
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
3949
3985
  */
3950
3986
  getWorkRequest(getWorkRequestRequest) {
3951
3987
  return __awaiter(this, void 0, void 0, function* () {
@@ -4014,7 +4050,7 @@ class WorkRequestsClient {
4014
4050
  * @param ListWorkRequestErrorsRequest
4015
4051
  * @return ListWorkRequestErrorsResponse
4016
4052
  * @throws OciError when an error occurs
4017
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4053
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4018
4054
  */
4019
4055
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
4020
4056
  return __awaiter(this, void 0, void 0, function* () {
@@ -4088,7 +4124,7 @@ class WorkRequestsClient {
4088
4124
  * @param ListWorkRequestLogsRequest
4089
4125
  * @return ListWorkRequestLogsResponse
4090
4126
  * @throws OciError when an error occurs
4091
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4127
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4092
4128
  */
4093
4129
  listWorkRequestLogs(listWorkRequestLogsRequest) {
4094
4130
  return __awaiter(this, void 0, void 0, function* () {
@@ -4162,7 +4198,7 @@ class WorkRequestsClient {
4162
4198
  * @param ListWorkRequestsRequest
4163
4199
  * @return ListWorkRequestsResponse
4164
4200
  * @throws OciError when an error occurs
4165
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4201
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4166
4202
  */
4167
4203
  listWorkRequests(listWorkRequestsRequest) {
4168
4204
  return __awaiter(this, void 0, void 0, function* () {