oci-tenantmanagercontrolplane 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 (56) hide show
  1. package/lib/client.d.ts +104 -62
  2. package/lib/client.js +133 -52
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/accept-recipient-invitation-request.d.ts +1 -1
  5. package/lib/request/activate-order-request.d.ts +1 -1
  6. package/lib/request/add-governance-request.d.ts +1 -1
  7. package/lib/request/approve-organization-tenancy-for-transfer-request.d.ts +1 -1
  8. package/lib/request/cancel-sender-invitation-request.d.ts +1 -1
  9. package/lib/request/create-child-tenancy-request.d.ts +1 -1
  10. package/lib/request/create-domain-governance-request.d.ts +1 -1
  11. package/lib/request/create-domain-request.d.ts +1 -1
  12. package/lib/request/create-sender-invitation-request.d.ts +1 -1
  13. package/lib/request/create-subscription-mapping-request.d.ts +1 -1
  14. package/lib/request/delete-domain-governance-request.d.ts +1 -1
  15. package/lib/request/delete-domain-request.d.ts +1 -1
  16. package/lib/request/delete-link-request.d.ts +1 -1
  17. package/lib/request/delete-organization-tenancy-request.d.ts +1 -1
  18. package/lib/request/delete-subscription-mapping-request.d.ts +1 -1
  19. package/lib/request/get-assigned-subscription-request.d.ts +1 -1
  20. package/lib/request/get-domain-governance-request.d.ts +1 -1
  21. package/lib/request/get-domain-request.d.ts +1 -1
  22. package/lib/request/get-link-request.d.ts +1 -1
  23. package/lib/request/get-order-request.d.ts +1 -1
  24. package/lib/request/get-organization-request.d.ts +1 -1
  25. package/lib/request/get-organization-tenancy-request.d.ts +1 -1
  26. package/lib/request/get-recipient-invitation-request.d.ts +1 -1
  27. package/lib/request/get-sender-invitation-request.d.ts +1 -1
  28. package/lib/request/get-subscription-mapping-request.d.ts +1 -1
  29. package/lib/request/get-subscription-request.d.ts +1 -1
  30. package/lib/request/get-work-request-request.d.ts +1 -1
  31. package/lib/request/ignore-recipient-invitation-request.d.ts +1 -1
  32. package/lib/request/list-assigned-subscription-line-items-request.d.ts +1 -1
  33. package/lib/request/list-assigned-subscriptions-request.d.ts +1 -1
  34. package/lib/request/list-available-regions-request.d.ts +1 -1
  35. package/lib/request/list-domain-governances-request.d.ts +1 -1
  36. package/lib/request/list-domains-request.d.ts +1 -1
  37. package/lib/request/list-links-request.d.ts +1 -1
  38. package/lib/request/list-organization-tenancies-request.d.ts +1 -1
  39. package/lib/request/list-organizations-request.d.ts +1 -1
  40. package/lib/request/list-recipient-invitations-request.d.ts +1 -1
  41. package/lib/request/list-sender-invitations-request.d.ts +1 -1
  42. package/lib/request/list-subscription-line-items-request.d.ts +1 -1
  43. package/lib/request/list-subscription-mappings-request.d.ts +1 -1
  44. package/lib/request/list-subscriptions-request.d.ts +1 -1
  45. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  46. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  47. package/lib/request/list-work-requests-request.d.ts +1 -1
  48. package/lib/request/remove-governance-request.d.ts +1 -1
  49. package/lib/request/restore-organization-tenancy-request.d.ts +1 -1
  50. package/lib/request/unapprove-organization-tenancy-for-transfer-request.d.ts +1 -1
  51. package/lib/request/update-domain-governance-request.d.ts +1 -1
  52. package/lib/request/update-domain-request.d.ts +1 -1
  53. package/lib/request/update-organization-request.d.ts +1 -1
  54. package/lib/request/update-recipient-invitation-request.d.ts +1 -1
  55. package/lib/request/update-sender-invitation-request.d.ts +1 -1
  56. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -52,6 +52,7 @@ const senderinvitation_waiter_1 = require("./senderinvitation-waiter");
52
52
  const subscription_waiter_1 = require("./subscription-waiter");
53
53
  const workrequest_waiter_1 = require("./workrequest-waiter");
54
54
  const oci_common_1 = require("oci-common");
55
+ const Breaker = require("opossum");
55
56
  // ===============================================
56
57
  // This file is autogenerated - Please do not edit
57
58
  // ===============================================
@@ -188,13 +189,21 @@ class DomainClient {
188
189
  }
189
190
  throw Error("Waiters do not exist. Please create waiters.");
190
191
  }
192
+ /**
193
+ * Shutdown the circuit breaker used by the client when it is no longer needed
194
+ */
195
+ shutdownCircuitBreaker() {
196
+ if (this._circuitBreaker) {
197
+ this._circuitBreaker.shutdown();
198
+ }
199
+ }
191
200
  /**
192
201
  * Begins the registration process for claiming a domain.
193
202
  * This operation does not retry by default if the user has not defined a retry configuration.
194
203
  * @param CreateDomainRequest
195
204
  * @return CreateDomainResponse
196
205
  * @throws OciError when an error occurs
197
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/CreateDomain.ts.html |here} to see how to use CreateDomain API.
206
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateDomain.ts.html |here} to see how to use CreateDomain API.
198
207
  */
199
208
  createDomain(createDomainRequest) {
200
209
  return __awaiter(this, void 0, void 0, function* () {
@@ -262,7 +271,7 @@ class DomainClient {
262
271
  * @param DeleteDomainRequest
263
272
  * @return DeleteDomainResponse
264
273
  * @throws OciError when an error occurs
265
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/DeleteDomain.ts.html |here} to see how to use DeleteDomain API.
274
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteDomain.ts.html |here} to see how to use DeleteDomain API.
266
275
  */
267
276
  deleteDomain(deleteDomainRequest) {
268
277
  return __awaiter(this, void 0, void 0, function* () {
@@ -317,7 +326,7 @@ class DomainClient {
317
326
  * @param GetDomainRequest
318
327
  * @return GetDomainResponse
319
328
  * @throws OciError when an error occurs
320
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetDomain.ts.html |here} to see how to use GetDomain API.
329
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetDomain.ts.html |here} to see how to use GetDomain API.
321
330
  */
322
331
  getDomain(getDomainRequest) {
323
332
  return __awaiter(this, void 0, void 0, function* () {
@@ -381,7 +390,7 @@ class DomainClient {
381
390
  * @param ListDomainsRequest
382
391
  * @return ListDomainsResponse
383
392
  * @throws OciError when an error occurs
384
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListDomains.ts.html |here} to see how to use ListDomains API.
393
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListDomains.ts.html |here} to see how to use ListDomains API.
385
394
  */
386
395
  listDomains(listDomainsRequest) {
387
396
  return __awaiter(this, void 0, void 0, function* () {
@@ -452,7 +461,7 @@ class DomainClient {
452
461
  * @param UpdateDomainRequest
453
462
  * @return UpdateDomainResponse
454
463
  * @throws OciError when an error occurs
455
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/UpdateDomain.ts.html |here} to see how to use UpdateDomain API.
464
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateDomain.ts.html |here} to see how to use UpdateDomain API.
456
465
  */
457
466
  updateDomain(updateDomainRequest) {
458
467
  return __awaiter(this, void 0, void 0, function* () {
@@ -648,13 +657,21 @@ class DomainGovernanceClient {
648
657
  }
649
658
  throw Error("Waiters do not exist. Please create waiters.");
650
659
  }
660
+ /**
661
+ * Shutdown the circuit breaker used by the client when it is no longer needed
662
+ */
663
+ shutdownCircuitBreaker() {
664
+ if (this._circuitBreaker) {
665
+ this._circuitBreaker.shutdown();
666
+ }
667
+ }
651
668
  /**
652
669
  * Adds domain governance to a claimed domain.
653
670
  * This operation does not retry by default if the user has not defined a retry configuration.
654
671
  * @param CreateDomainGovernanceRequest
655
672
  * @return CreateDomainGovernanceResponse
656
673
  * @throws OciError when an error occurs
657
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
674
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
658
675
  */
659
676
  createDomainGovernance(createDomainGovernanceRequest) {
660
677
  return __awaiter(this, void 0, void 0, function* () {
@@ -717,7 +734,7 @@ class DomainGovernanceClient {
717
734
  * @param DeleteDomainGovernanceRequest
718
735
  * @return DeleteDomainGovernanceResponse
719
736
  * @throws OciError when an error occurs
720
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
737
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
721
738
  */
722
739
  deleteDomainGovernance(deleteDomainGovernanceRequest) {
723
740
  return __awaiter(this, void 0, void 0, function* () {
@@ -772,7 +789,7 @@ class DomainGovernanceClient {
772
789
  * @param GetDomainGovernanceRequest
773
790
  * @return GetDomainGovernanceResponse
774
791
  * @throws OciError when an error occurs
775
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
792
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
776
793
  */
777
794
  getDomainGovernance(getDomainGovernanceRequest) {
778
795
  return __awaiter(this, void 0, void 0, function* () {
@@ -836,7 +853,7 @@ class DomainGovernanceClient {
836
853
  * @param ListDomainGovernancesRequest
837
854
  * @return ListDomainGovernancesResponse
838
855
  * @throws OciError when an error occurs
839
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
856
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
840
857
  */
841
858
  listDomainGovernances(listDomainGovernancesRequest) {
842
859
  return __awaiter(this, void 0, void 0, function* () {
@@ -907,7 +924,7 @@ class DomainGovernanceClient {
907
924
  * @param UpdateDomainGovernanceRequest
908
925
  * @return UpdateDomainGovernanceResponse
909
926
  * @throws OciError when an error occurs
910
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
927
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
911
928
  */
912
929
  updateDomainGovernance(updateDomainGovernanceRequest) {
913
930
  return __awaiter(this, void 0, void 0, function* () {
@@ -1082,13 +1099,21 @@ class GovernanceClient {
1082
1099
  this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(GovernanceClient.serviceEndpointTemplate, regionId, GovernanceClient.endpointServiceName);
1083
1100
  this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
1084
1101
  }
1102
+ /**
1103
+ * Shutdown the circuit breaker used by the client when it is no longer needed
1104
+ */
1105
+ shutdownCircuitBreaker() {
1106
+ if (this._circuitBreaker) {
1107
+ this._circuitBreaker.shutdown();
1108
+ }
1109
+ }
1085
1110
  /**
1086
1111
  * Starts a work request to opt the tenancy in to governance rules.
1087
1112
  * This operation does not retry by default if the user has not defined a retry configuration.
1088
1113
  * @param AddGovernanceRequest
1089
1114
  * @return AddGovernanceResponse
1090
1115
  * @throws OciError when an error occurs
1091
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/AddGovernance.ts.html |here} to see how to use AddGovernance API.
1116
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/AddGovernance.ts.html |here} to see how to use AddGovernance API.
1092
1117
  */
1093
1118
  addGovernance(addGovernanceRequest) {
1094
1119
  return __awaiter(this, void 0, void 0, function* () {
@@ -1150,7 +1175,7 @@ class GovernanceClient {
1150
1175
  * @param RemoveGovernanceRequest
1151
1176
  * @return RemoveGovernanceResponse
1152
1177
  * @throws OciError when an error occurs
1153
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/RemoveGovernance.ts.html |here} to see how to use RemoveGovernance API.
1178
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/RemoveGovernance.ts.html |here} to see how to use RemoveGovernance API.
1154
1179
  */
1155
1180
  removeGovernance(removeGovernanceRequest) {
1156
1181
  return __awaiter(this, void 0, void 0, function* () {
@@ -1343,13 +1368,21 @@ class LinkClient {
1343
1368
  }
1344
1369
  throw Error("Waiters do not exist. Please create waiters.");
1345
1370
  }
1371
+ /**
1372
+ * Shutdown the circuit breaker used by the client when it is no longer needed
1373
+ */
1374
+ shutdownCircuitBreaker() {
1375
+ if (this._circuitBreaker) {
1376
+ this._circuitBreaker.shutdown();
1377
+ }
1378
+ }
1346
1379
  /**
1347
1380
  * Starts the link termination workflow.
1348
1381
  * This operation does not retry by default if the user has not defined a retry configuration.
1349
1382
  * @param DeleteLinkRequest
1350
1383
  * @return DeleteLinkResponse
1351
1384
  * @throws OciError when an error occurs
1352
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
1385
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
1353
1386
  */
1354
1387
  deleteLink(deleteLinkRequest) {
1355
1388
  return __awaiter(this, void 0, void 0, function* () {
@@ -1409,7 +1442,7 @@ class LinkClient {
1409
1442
  * @param GetLinkRequest
1410
1443
  * @return GetLinkResponse
1411
1444
  * @throws OciError when an error occurs
1412
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
1445
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
1413
1446
  */
1414
1447
  getLink(getLinkRequest) {
1415
1448
  return __awaiter(this, void 0, void 0, function* () {
@@ -1472,7 +1505,7 @@ class LinkClient {
1472
1505
  * @param ListLinksRequest
1473
1506
  * @return ListLinksResponse
1474
1507
  * @throws OciError when an error occurs
1475
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
1508
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
1476
1509
  */
1477
1510
  listLinks(listLinksRequest) {
1478
1511
  return __awaiter(this, void 0, void 0, function* () {
@@ -1650,13 +1683,21 @@ class OrdersClient {
1650
1683
  this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(OrdersClient.serviceEndpointTemplate, regionId, OrdersClient.endpointServiceName);
1651
1684
  this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
1652
1685
  }
1686
+ /**
1687
+ * Shutdown the circuit breaker used by the client when it is no longer needed
1688
+ */
1689
+ shutdownCircuitBreaker() {
1690
+ if (this._circuitBreaker) {
1691
+ this._circuitBreaker.shutdown();
1692
+ }
1693
+ }
1653
1694
  /**
1654
1695
  * Triggers an order activation workflow on behalf of the tenant, given by compartment ID in the body.
1655
1696
  * This operation does not retry by default if the user has not defined a retry configuration.
1656
1697
  * @param ActivateOrderRequest
1657
1698
  * @return ActivateOrderResponse
1658
1699
  * @throws OciError when an error occurs
1659
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
1700
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
1660
1701
  */
1661
1702
  activateOrder(activateOrderRequest) {
1662
1703
  return __awaiter(this, void 0, void 0, function* () {
@@ -1718,7 +1759,7 @@ class OrdersClient {
1718
1759
  * @param GetOrderRequest
1719
1760
  * @return GetOrderResponse
1720
1761
  * @throws OciError when an error occurs
1721
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
1762
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
1722
1763
  */
1723
1764
  getOrder(getOrderRequest) {
1724
1765
  return __awaiter(this, void 0, void 0, function* () {
@@ -1907,13 +1948,21 @@ class OrganizationClient {
1907
1948
  }
1908
1949
  throw Error("Waiters do not exist. Please create waiters.");
1909
1950
  }
1951
+ /**
1952
+ * Shutdown the circuit breaker used by the client when it is no longer needed
1953
+ */
1954
+ shutdownCircuitBreaker() {
1955
+ if (this._circuitBreaker) {
1956
+ this._circuitBreaker.shutdown();
1957
+ }
1958
+ }
1910
1959
  /**
1911
1960
  * Approve an organization's child tenancy for transfer.
1912
1961
  * This operation does not retry by default if the user has not defined a retry configuration.
1913
1962
  * @param ApproveOrganizationTenancyForTransferRequest
1914
1963
  * @return ApproveOrganizationTenancyForTransferResponse
1915
1964
  * @throws OciError when an error occurs
1916
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
1965
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
1917
1966
  */
1918
1967
  approveOrganizationTenancyForTransfer(approveOrganizationTenancyForTransferRequest) {
1919
1968
  return __awaiter(this, void 0, void 0, function* () {
@@ -1980,7 +2029,7 @@ class OrganizationClient {
1980
2029
  * @param CreateChildTenancyRequest
1981
2030
  * @return CreateChildTenancyResponse
1982
2031
  * @throws OciError when an error occurs
1983
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
2032
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
1984
2033
  */
1985
2034
  createChildTenancy(createChildTenancyRequest) {
1986
2035
  return __awaiter(this, void 0, void 0, function* () {
@@ -2039,7 +2088,7 @@ class OrganizationClient {
2039
2088
  * @param DeleteOrganizationTenancyRequest
2040
2089
  * @return DeleteOrganizationTenancyResponse
2041
2090
  * @throws OciError when an error occurs
2042
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
2091
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
2043
2092
  */
2044
2093
  deleteOrganizationTenancy(deleteOrganizationTenancyRequest) {
2045
2094
  return __awaiter(this, void 0, void 0, function* () {
@@ -2100,7 +2149,7 @@ class OrganizationClient {
2100
2149
  * @param GetOrganizationRequest
2101
2150
  * @return GetOrganizationResponse
2102
2151
  * @throws OciError when an error occurs
2103
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
2152
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
2104
2153
  */
2105
2154
  getOrganization(getOrganizationRequest) {
2106
2155
  return __awaiter(this, void 0, void 0, function* () {
@@ -2163,7 +2212,7 @@ class OrganizationClient {
2163
2212
  * @param GetOrganizationTenancyRequest
2164
2213
  * @return GetOrganizationTenancyResponse
2165
2214
  * @throws OciError when an error occurs
2166
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
2215
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
2167
2216
  */
2168
2217
  getOrganizationTenancy(getOrganizationTenancyRequest) {
2169
2218
  return __awaiter(this, void 0, void 0, function* () {
@@ -2227,7 +2276,7 @@ class OrganizationClient {
2227
2276
  * @param ListOrganizationTenanciesRequest
2228
2277
  * @return ListOrganizationTenanciesResponse
2229
2278
  * @throws OciError when an error occurs
2230
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
2279
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
2231
2280
  */
2232
2281
  listOrganizationTenancies(listOrganizationTenanciesRequest) {
2233
2282
  return __awaiter(this, void 0, void 0, function* () {
@@ -2293,7 +2342,7 @@ class OrganizationClient {
2293
2342
  * @param ListOrganizationsRequest
2294
2343
  * @return ListOrganizationsResponse
2295
2344
  * @throws OciError when an error occurs
2296
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
2345
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
2297
2346
  */
2298
2347
  listOrganizations(listOrganizationsRequest) {
2299
2348
  return __awaiter(this, void 0, void 0, function* () {
@@ -2358,7 +2407,7 @@ class OrganizationClient {
2358
2407
  * @param RestoreOrganizationTenancyRequest
2359
2408
  * @return RestoreOrganizationTenancyResponse
2360
2409
  * @throws OciError when an error occurs
2361
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/RestoreOrganizationTenancy.ts.html |here} to see how to use RestoreOrganizationTenancy API.
2410
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/RestoreOrganizationTenancy.ts.html |here} to see how to use RestoreOrganizationTenancy API.
2362
2411
  */
2363
2412
  restoreOrganizationTenancy(restoreOrganizationTenancyRequest) {
2364
2413
  return __awaiter(this, void 0, void 0, function* () {
@@ -2418,7 +2467,7 @@ class OrganizationClient {
2418
2467
  * @param UnapproveOrganizationTenancyForTransferRequest
2419
2468
  * @return UnapproveOrganizationTenancyForTransferResponse
2420
2469
  * @throws OciError when an error occurs
2421
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
2470
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
2422
2471
  */
2423
2472
  unapproveOrganizationTenancyForTransfer(unapproveOrganizationTenancyForTransferRequest) {
2424
2473
  return __awaiter(this, void 0, void 0, function* () {
@@ -2485,7 +2534,7 @@ class OrganizationClient {
2485
2534
  * @param UpdateOrganizationRequest
2486
2535
  * @return UpdateOrganizationResponse
2487
2536
  * @throws OciError when an error occurs
2488
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
2537
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
2489
2538
  */
2490
2539
  updateOrganization(updateOrganizationRequest) {
2491
2540
  return __awaiter(this, void 0, void 0, function* () {
@@ -2678,13 +2727,21 @@ class RecipientInvitationClient {
2678
2727
  }
2679
2728
  throw Error("Waiters do not exist. Please create waiters.");
2680
2729
  }
2730
+ /**
2731
+ * Shutdown the circuit breaker used by the client when it is no longer needed
2732
+ */
2733
+ shutdownCircuitBreaker() {
2734
+ if (this._circuitBreaker) {
2735
+ this._circuitBreaker.shutdown();
2736
+ }
2737
+ }
2681
2738
  /**
2682
2739
  * Accepts a recipient invitation.
2683
2740
  * This operation does not retry by default if the user has not defined a retry configuration.
2684
2741
  * @param AcceptRecipientInvitationRequest
2685
2742
  * @return AcceptRecipientInvitationResponse
2686
2743
  * @throws OciError when an error occurs
2687
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
2744
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
2688
2745
  */
2689
2746
  acceptRecipientInvitation(acceptRecipientInvitationRequest) {
2690
2747
  return __awaiter(this, void 0, void 0, function* () {
@@ -2745,7 +2802,7 @@ class RecipientInvitationClient {
2745
2802
  * @param GetRecipientInvitationRequest
2746
2803
  * @return GetRecipientInvitationResponse
2747
2804
  * @throws OciError when an error occurs
2748
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
2805
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
2749
2806
  */
2750
2807
  getRecipientInvitation(getRecipientInvitationRequest) {
2751
2808
  return __awaiter(this, void 0, void 0, function* () {
@@ -2808,7 +2865,7 @@ class RecipientInvitationClient {
2808
2865
  * @param IgnoreRecipientInvitationRequest
2809
2866
  * @return IgnoreRecipientInvitationResponse
2810
2867
  * @throws OciError when an error occurs
2811
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
2868
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
2812
2869
  */
2813
2870
  ignoreRecipientInvitation(ignoreRecipientInvitationRequest) {
2814
2871
  return __awaiter(this, void 0, void 0, function* () {
@@ -2874,7 +2931,7 @@ class RecipientInvitationClient {
2874
2931
  * @param ListRecipientInvitationsRequest
2875
2932
  * @return ListRecipientInvitationsResponse
2876
2933
  * @throws OciError when an error occurs
2877
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
2934
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
2878
2935
  */
2879
2936
  listRecipientInvitations(listRecipientInvitationsRequest) {
2880
2937
  return __awaiter(this, void 0, void 0, function* () {
@@ -2941,7 +2998,7 @@ class RecipientInvitationClient {
2941
2998
  * @param UpdateRecipientInvitationRequest
2942
2999
  * @return UpdateRecipientInvitationResponse
2943
3000
  * @throws OciError when an error occurs
2944
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
3001
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
2945
3002
  */
2946
3003
  updateRecipientInvitation(updateRecipientInvitationRequest) {
2947
3004
  return __awaiter(this, void 0, void 0, function* () {
@@ -3137,13 +3194,21 @@ class SenderInvitationClient {
3137
3194
  }
3138
3195
  throw Error("Waiters do not exist. Please create waiters.");
3139
3196
  }
3197
+ /**
3198
+ * Shutdown the circuit breaker used by the client when it is no longer needed
3199
+ */
3200
+ shutdownCircuitBreaker() {
3201
+ if (this._circuitBreaker) {
3202
+ this._circuitBreaker.shutdown();
3203
+ }
3204
+ }
3140
3205
  /**
3141
3206
  * Cancels a sender invitation.
3142
3207
  * This operation does not retry by default if the user has not defined a retry configuration.
3143
3208
  * @param CancelSenderInvitationRequest
3144
3209
  * @return CancelSenderInvitationResponse
3145
3210
  * @throws OciError when an error occurs
3146
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
3211
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
3147
3212
  */
3148
3213
  cancelSenderInvitation(cancelSenderInvitationRequest) {
3149
3214
  return __awaiter(this, void 0, void 0, function* () {
@@ -3204,7 +3269,7 @@ class SenderInvitationClient {
3204
3269
  * @param CreateSenderInvitationRequest
3205
3270
  * @return CreateSenderInvitationResponse
3206
3271
  * @throws OciError when an error occurs
3207
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
3272
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
3208
3273
  */
3209
3274
  createSenderInvitation(createSenderInvitationRequest) {
3210
3275
  return __awaiter(this, void 0, void 0, function* () {
@@ -3272,7 +3337,7 @@ class SenderInvitationClient {
3272
3337
  * @param GetSenderInvitationRequest
3273
3338
  * @return GetSenderInvitationResponse
3274
3339
  * @throws OciError when an error occurs
3275
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
3340
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
3276
3341
  */
3277
3342
  getSenderInvitation(getSenderInvitationRequest) {
3278
3343
  return __awaiter(this, void 0, void 0, function* () {
@@ -3336,7 +3401,7 @@ class SenderInvitationClient {
3336
3401
  * @param ListSenderInvitationsRequest
3337
3402
  * @return ListSenderInvitationsResponse
3338
3403
  * @throws OciError when an error occurs
3339
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
3404
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
3340
3405
  */
3341
3406
  listSenderInvitations(listSenderInvitationsRequest) {
3342
3407
  return __awaiter(this, void 0, void 0, function* () {
@@ -3407,7 +3472,7 @@ class SenderInvitationClient {
3407
3472
  * @param UpdateSenderInvitationRequest
3408
3473
  * @return UpdateSenderInvitationResponse
3409
3474
  * @throws OciError when an error occurs
3410
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
3475
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
3411
3476
  */
3412
3477
  updateSenderInvitation(updateSenderInvitationRequest) {
3413
3478
  return __awaiter(this, void 0, void 0, function* () {
@@ -3603,13 +3668,21 @@ class SubscriptionClient {
3603
3668
  }
3604
3669
  throw Error("Waiters do not exist. Please create waiters.");
3605
3670
  }
3671
+ /**
3672
+ * Shutdown the circuit breaker used by the client when it is no longer needed
3673
+ */
3674
+ shutdownCircuitBreaker() {
3675
+ if (this._circuitBreaker) {
3676
+ this._circuitBreaker.shutdown();
3677
+ }
3678
+ }
3606
3679
  /**
3607
3680
  * Assign the tenancy record identified by the compartment ID to the given subscription ID.
3608
3681
  * This operation does not retry by default if the user has not defined a retry configuration.
3609
3682
  * @param CreateSubscriptionMappingRequest
3610
3683
  * @return CreateSubscriptionMappingResponse
3611
3684
  * @throws OciError when an error occurs
3612
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
3685
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
3613
3686
  */
3614
3687
  createSubscriptionMapping(createSubscriptionMappingRequest) {
3615
3688
  return __awaiter(this, void 0, void 0, function* () {
@@ -3678,7 +3751,7 @@ class SubscriptionClient {
3678
3751
  * @param DeleteSubscriptionMappingRequest
3679
3752
  * @return DeleteSubscriptionMappingResponse
3680
3753
  * @throws OciError when an error occurs
3681
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
3754
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
3682
3755
  */
3683
3756
  deleteSubscriptionMapping(deleteSubscriptionMappingRequest) {
3684
3757
  return __awaiter(this, void 0, void 0, function* () {
@@ -3733,7 +3806,7 @@ class SubscriptionClient {
3733
3806
  * @param GetAssignedSubscriptionRequest
3734
3807
  * @return GetAssignedSubscriptionResponse
3735
3808
  * @throws OciError when an error occurs
3736
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
3809
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
3737
3810
  */
3738
3811
  getAssignedSubscription(getAssignedSubscriptionRequest) {
3739
3812
  return __awaiter(this, void 0, void 0, function* () {
@@ -3796,7 +3869,7 @@ class SubscriptionClient {
3796
3869
  * @param GetSubscriptionRequest
3797
3870
  * @return GetSubscriptionResponse
3798
3871
  * @throws OciError when an error occurs
3799
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
3872
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
3800
3873
  */
3801
3874
  getSubscription(getSubscriptionRequest) {
3802
3875
  return __awaiter(this, void 0, void 0, function* () {
@@ -3859,7 +3932,7 @@ class SubscriptionClient {
3859
3932
  * @param GetSubscriptionMappingRequest
3860
3933
  * @return GetSubscriptionMappingResponse
3861
3934
  * @throws OciError when an error occurs
3862
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
3935
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
3863
3936
  */
3864
3937
  getSubscriptionMapping(getSubscriptionMappingRequest) {
3865
3938
  return __awaiter(this, void 0, void 0, function* () {
@@ -3922,7 +3995,7 @@ class SubscriptionClient {
3922
3995
  * @param ListAssignedSubscriptionLineItemsRequest
3923
3996
  * @return ListAssignedSubscriptionLineItemsResponse
3924
3997
  * @throws OciError when an error occurs
3925
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListAssignedSubscriptionLineItems.ts.html |here} to see how to use ListAssignedSubscriptionLineItems API.
3998
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListAssignedSubscriptionLineItems.ts.html |here} to see how to use ListAssignedSubscriptionLineItems API.
3926
3999
  */
3927
4000
  listAssignedSubscriptionLineItems(listAssignedSubscriptionLineItemsRequest) {
3928
4001
  return __awaiter(this, void 0, void 0, function* () {
@@ -3990,7 +4063,7 @@ class SubscriptionClient {
3990
4063
  * @param ListAssignedSubscriptionsRequest
3991
4064
  * @return ListAssignedSubscriptionsResponse
3992
4065
  * @throws OciError when an error occurs
3993
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
4066
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
3994
4067
  */
3995
4068
  listAssignedSubscriptions(listAssignedSubscriptionsRequest) {
3996
4069
  return __awaiter(this, void 0, void 0, function* () {
@@ -4059,7 +4132,7 @@ class SubscriptionClient {
4059
4132
  * @param ListAvailableRegionsRequest
4060
4133
  * @return ListAvailableRegionsResponse
4061
4134
  * @throws OciError when an error occurs
4062
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
4135
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
4063
4136
  */
4064
4137
  listAvailableRegions(listAvailableRegionsRequest) {
4065
4138
  return __awaiter(this, void 0, void 0, function* () {
@@ -4124,7 +4197,7 @@ class SubscriptionClient {
4124
4197
  * @param ListSubscriptionLineItemsRequest
4125
4198
  * @return ListSubscriptionLineItemsResponse
4126
4199
  * @throws OciError when an error occurs
4127
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListSubscriptionLineItems.ts.html |here} to see how to use ListSubscriptionLineItems API.
4200
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListSubscriptionLineItems.ts.html |here} to see how to use ListSubscriptionLineItems API.
4128
4201
  */
4129
4202
  listSubscriptionLineItems(listSubscriptionLineItemsRequest) {
4130
4203
  return __awaiter(this, void 0, void 0, function* () {
@@ -4192,7 +4265,7 @@ class SubscriptionClient {
4192
4265
  * @param ListSubscriptionMappingsRequest
4193
4266
  * @return ListSubscriptionMappingsResponse
4194
4267
  * @throws OciError when an error occurs
4195
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
4268
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
4196
4269
  */
4197
4270
  listSubscriptionMappings(listSubscriptionMappingsRequest) {
4198
4271
  return __awaiter(this, void 0, void 0, function* () {
@@ -4262,7 +4335,7 @@ class SubscriptionClient {
4262
4335
  * @param ListSubscriptionsRequest
4263
4336
  * @return ListSubscriptionsResponse
4264
4337
  * @throws OciError when an error occurs
4265
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
4338
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
4266
4339
  */
4267
4340
  listSubscriptions(listSubscriptionsRequest) {
4268
4341
  return __awaiter(this, void 0, void 0, function* () {
@@ -4462,13 +4535,21 @@ class WorkRequestClient {
4462
4535
  }
4463
4536
  throw Error("Waiters do not exist. Please create waiters.");
4464
4537
  }
4538
+ /**
4539
+ * Shutdown the circuit breaker used by the client when it is no longer needed
4540
+ */
4541
+ shutdownCircuitBreaker() {
4542
+ if (this._circuitBreaker) {
4543
+ this._circuitBreaker.shutdown();
4544
+ }
4545
+ }
4465
4546
  /**
4466
4547
  * Gets the status of the work request with the given ID.
4467
4548
  * This operation does not retry by default if the user has not defined a retry configuration.
4468
4549
  * @param GetWorkRequestRequest
4469
4550
  * @return GetWorkRequestResponse
4470
4551
  * @throws OciError when an error occurs
4471
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
4552
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
4472
4553
  */
4473
4554
  getWorkRequest(getWorkRequestRequest) {
4474
4555
  return __awaiter(this, void 0, void 0, function* () {
@@ -4532,7 +4613,7 @@ class WorkRequestClient {
4532
4613
  * @param ListWorkRequestErrorsRequest
4533
4614
  * @return ListWorkRequestErrorsResponse
4534
4615
  * @throws OciError when an error occurs
4535
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4616
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4536
4617
  */
4537
4618
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
4538
4619
  return __awaiter(this, void 0, void 0, function* () {
@@ -4600,7 +4681,7 @@ class WorkRequestClient {
4600
4681
  * @param ListWorkRequestLogsRequest
4601
4682
  * @return ListWorkRequestLogsResponse
4602
4683
  * @throws OciError when an error occurs
4603
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4684
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4604
4685
  */
4605
4686
  listWorkRequestLogs(listWorkRequestLogsRequest) {
4606
4687
  return __awaiter(this, void 0, void 0, function* () {
@@ -4668,7 +4749,7 @@ class WorkRequestClient {
4668
4749
  * @param ListWorkRequestsRequest
4669
4750
  * @return ListWorkRequestsResponse
4670
4751
  * @throws OciError when an error occurs
4671
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4752
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4672
4753
  */
4673
4754
  listWorkRequests(listWorkRequestsRequest) {
4674
4755
  return __awaiter(this, void 0, void 0, function* () {