oci-tenantmanagercontrolplane 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 (56) hide show
  1. package/lib/client.d.ts +92 -52
  2. package/lib/client.js +112 -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
@@ -197,13 +197,19 @@ class DomainClient {
197
197
  this._circuitBreaker.shutdown();
198
198
  }
199
199
  }
200
+ /**
201
+ * Close the client once it is no longer needed
202
+ */
203
+ close() {
204
+ this.shutdownCircuitBreaker();
205
+ }
200
206
  /**
201
207
  * Begins the registration process for claiming a domain.
202
208
  * This operation does not retry by default if the user has not defined a retry configuration.
203
209
  * @param CreateDomainRequest
204
210
  * @return CreateDomainResponse
205
211
  * @throws OciError when an error occurs
206
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/CreateDomain.ts.html |here} to see how to use CreateDomain API.
212
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/CreateDomain.ts.html |here} to see how to use CreateDomain API.
207
213
  */
208
214
  createDomain(createDomainRequest) {
209
215
  return __awaiter(this, void 0, void 0, function* () {
@@ -271,7 +277,7 @@ class DomainClient {
271
277
  * @param DeleteDomainRequest
272
278
  * @return DeleteDomainResponse
273
279
  * @throws OciError when an error occurs
274
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/DeleteDomain.ts.html |here} to see how to use DeleteDomain API.
280
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/DeleteDomain.ts.html |here} to see how to use DeleteDomain API.
275
281
  */
276
282
  deleteDomain(deleteDomainRequest) {
277
283
  return __awaiter(this, void 0, void 0, function* () {
@@ -326,7 +332,7 @@ class DomainClient {
326
332
  * @param GetDomainRequest
327
333
  * @return GetDomainResponse
328
334
  * @throws OciError when an error occurs
329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetDomain.ts.html |here} to see how to use GetDomain API.
335
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetDomain.ts.html |here} to see how to use GetDomain API.
330
336
  */
331
337
  getDomain(getDomainRequest) {
332
338
  return __awaiter(this, void 0, void 0, function* () {
@@ -390,7 +396,7 @@ class DomainClient {
390
396
  * @param ListDomainsRequest
391
397
  * @return ListDomainsResponse
392
398
  * @throws OciError when an error occurs
393
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListDomains.ts.html |here} to see how to use ListDomains API.
399
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListDomains.ts.html |here} to see how to use ListDomains API.
394
400
  */
395
401
  listDomains(listDomainsRequest) {
396
402
  return __awaiter(this, void 0, void 0, function* () {
@@ -461,7 +467,7 @@ class DomainClient {
461
467
  * @param UpdateDomainRequest
462
468
  * @return UpdateDomainResponse
463
469
  * @throws OciError when an error occurs
464
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/UpdateDomain.ts.html |here} to see how to use UpdateDomain API.
470
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/UpdateDomain.ts.html |here} to see how to use UpdateDomain API.
465
471
  */
466
472
  updateDomain(updateDomainRequest) {
467
473
  return __awaiter(this, void 0, void 0, function* () {
@@ -665,13 +671,19 @@ class DomainGovernanceClient {
665
671
  this._circuitBreaker.shutdown();
666
672
  }
667
673
  }
674
+ /**
675
+ * Close the client once it is no longer needed
676
+ */
677
+ close() {
678
+ this.shutdownCircuitBreaker();
679
+ }
668
680
  /**
669
681
  * Adds domain governance to a claimed domain.
670
682
  * This operation does not retry by default if the user has not defined a retry configuration.
671
683
  * @param CreateDomainGovernanceRequest
672
684
  * @return CreateDomainGovernanceResponse
673
685
  * @throws OciError when an error occurs
674
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
686
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
675
687
  */
676
688
  createDomainGovernance(createDomainGovernanceRequest) {
677
689
  return __awaiter(this, void 0, void 0, function* () {
@@ -734,7 +746,7 @@ class DomainGovernanceClient {
734
746
  * @param DeleteDomainGovernanceRequest
735
747
  * @return DeleteDomainGovernanceResponse
736
748
  * @throws OciError when an error occurs
737
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
749
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
738
750
  */
739
751
  deleteDomainGovernance(deleteDomainGovernanceRequest) {
740
752
  return __awaiter(this, void 0, void 0, function* () {
@@ -789,7 +801,7 @@ class DomainGovernanceClient {
789
801
  * @param GetDomainGovernanceRequest
790
802
  * @return GetDomainGovernanceResponse
791
803
  * @throws OciError when an error occurs
792
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
804
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
793
805
  */
794
806
  getDomainGovernance(getDomainGovernanceRequest) {
795
807
  return __awaiter(this, void 0, void 0, function* () {
@@ -853,7 +865,7 @@ class DomainGovernanceClient {
853
865
  * @param ListDomainGovernancesRequest
854
866
  * @return ListDomainGovernancesResponse
855
867
  * @throws OciError when an error occurs
856
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
868
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
857
869
  */
858
870
  listDomainGovernances(listDomainGovernancesRequest) {
859
871
  return __awaiter(this, void 0, void 0, function* () {
@@ -924,7 +936,7 @@ class DomainGovernanceClient {
924
936
  * @param UpdateDomainGovernanceRequest
925
937
  * @return UpdateDomainGovernanceResponse
926
938
  * @throws OciError when an error occurs
927
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
939
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
928
940
  */
929
941
  updateDomainGovernance(updateDomainGovernanceRequest) {
930
942
  return __awaiter(this, void 0, void 0, function* () {
@@ -1107,13 +1119,19 @@ class GovernanceClient {
1107
1119
  this._circuitBreaker.shutdown();
1108
1120
  }
1109
1121
  }
1122
+ /**
1123
+ * Close the client once it is no longer needed
1124
+ */
1125
+ close() {
1126
+ this.shutdownCircuitBreaker();
1127
+ }
1110
1128
  /**
1111
1129
  * Starts a work request to opt the tenancy in to governance rules.
1112
1130
  * This operation does not retry by default if the user has not defined a retry configuration.
1113
1131
  * @param AddGovernanceRequest
1114
1132
  * @return AddGovernanceResponse
1115
1133
  * @throws OciError when an error occurs
1116
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/AddGovernance.ts.html |here} to see how to use AddGovernance API.
1134
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/AddGovernance.ts.html |here} to see how to use AddGovernance API.
1117
1135
  */
1118
1136
  addGovernance(addGovernanceRequest) {
1119
1137
  return __awaiter(this, void 0, void 0, function* () {
@@ -1175,7 +1193,7 @@ class GovernanceClient {
1175
1193
  * @param RemoveGovernanceRequest
1176
1194
  * @return RemoveGovernanceResponse
1177
1195
  * @throws OciError when an error occurs
1178
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/RemoveGovernance.ts.html |here} to see how to use RemoveGovernance API.
1196
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/RemoveGovernance.ts.html |here} to see how to use RemoveGovernance API.
1179
1197
  */
1180
1198
  removeGovernance(removeGovernanceRequest) {
1181
1199
  return __awaiter(this, void 0, void 0, function* () {
@@ -1376,13 +1394,19 @@ class LinkClient {
1376
1394
  this._circuitBreaker.shutdown();
1377
1395
  }
1378
1396
  }
1397
+ /**
1398
+ * Close the client once it is no longer needed
1399
+ */
1400
+ close() {
1401
+ this.shutdownCircuitBreaker();
1402
+ }
1379
1403
  /**
1380
1404
  * Starts the link termination workflow.
1381
1405
  * This operation does not retry by default if the user has not defined a retry configuration.
1382
1406
  * @param DeleteLinkRequest
1383
1407
  * @return DeleteLinkResponse
1384
1408
  * @throws OciError when an error occurs
1385
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
1409
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
1386
1410
  */
1387
1411
  deleteLink(deleteLinkRequest) {
1388
1412
  return __awaiter(this, void 0, void 0, function* () {
@@ -1442,7 +1466,7 @@ class LinkClient {
1442
1466
  * @param GetLinkRequest
1443
1467
  * @return GetLinkResponse
1444
1468
  * @throws OciError when an error occurs
1445
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
1469
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
1446
1470
  */
1447
1471
  getLink(getLinkRequest) {
1448
1472
  return __awaiter(this, void 0, void 0, function* () {
@@ -1505,7 +1529,7 @@ class LinkClient {
1505
1529
  * @param ListLinksRequest
1506
1530
  * @return ListLinksResponse
1507
1531
  * @throws OciError when an error occurs
1508
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
1532
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
1509
1533
  */
1510
1534
  listLinks(listLinksRequest) {
1511
1535
  return __awaiter(this, void 0, void 0, function* () {
@@ -1691,13 +1715,19 @@ class OrdersClient {
1691
1715
  this._circuitBreaker.shutdown();
1692
1716
  }
1693
1717
  }
1718
+ /**
1719
+ * Close the client once it is no longer needed
1720
+ */
1721
+ close() {
1722
+ this.shutdownCircuitBreaker();
1723
+ }
1694
1724
  /**
1695
1725
  * Triggers an order activation workflow on behalf of the tenant, given by compartment ID in the body.
1696
1726
  * This operation does not retry by default if the user has not defined a retry configuration.
1697
1727
  * @param ActivateOrderRequest
1698
1728
  * @return ActivateOrderResponse
1699
1729
  * @throws OciError when an error occurs
1700
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
1730
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
1701
1731
  */
1702
1732
  activateOrder(activateOrderRequest) {
1703
1733
  return __awaiter(this, void 0, void 0, function* () {
@@ -1759,7 +1789,7 @@ class OrdersClient {
1759
1789
  * @param GetOrderRequest
1760
1790
  * @return GetOrderResponse
1761
1791
  * @throws OciError when an error occurs
1762
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
1792
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
1763
1793
  */
1764
1794
  getOrder(getOrderRequest) {
1765
1795
  return __awaiter(this, void 0, void 0, function* () {
@@ -1956,13 +1986,19 @@ class OrganizationClient {
1956
1986
  this._circuitBreaker.shutdown();
1957
1987
  }
1958
1988
  }
1989
+ /**
1990
+ * Close the client once it is no longer needed
1991
+ */
1992
+ close() {
1993
+ this.shutdownCircuitBreaker();
1994
+ }
1959
1995
  /**
1960
1996
  * Approve an organization's child tenancy for transfer.
1961
1997
  * This operation does not retry by default if the user has not defined a retry configuration.
1962
1998
  * @param ApproveOrganizationTenancyForTransferRequest
1963
1999
  * @return ApproveOrganizationTenancyForTransferResponse
1964
2000
  * @throws OciError when an error occurs
1965
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
2001
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
1966
2002
  */
1967
2003
  approveOrganizationTenancyForTransfer(approveOrganizationTenancyForTransferRequest) {
1968
2004
  return __awaiter(this, void 0, void 0, function* () {
@@ -2029,7 +2065,7 @@ class OrganizationClient {
2029
2065
  * @param CreateChildTenancyRequest
2030
2066
  * @return CreateChildTenancyResponse
2031
2067
  * @throws OciError when an error occurs
2032
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
2068
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
2033
2069
  */
2034
2070
  createChildTenancy(createChildTenancyRequest) {
2035
2071
  return __awaiter(this, void 0, void 0, function* () {
@@ -2088,7 +2124,7 @@ class OrganizationClient {
2088
2124
  * @param DeleteOrganizationTenancyRequest
2089
2125
  * @return DeleteOrganizationTenancyResponse
2090
2126
  * @throws OciError when an error occurs
2091
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
2127
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
2092
2128
  */
2093
2129
  deleteOrganizationTenancy(deleteOrganizationTenancyRequest) {
2094
2130
  return __awaiter(this, void 0, void 0, function* () {
@@ -2149,7 +2185,7 @@ class OrganizationClient {
2149
2185
  * @param GetOrganizationRequest
2150
2186
  * @return GetOrganizationResponse
2151
2187
  * @throws OciError when an error occurs
2152
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
2188
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
2153
2189
  */
2154
2190
  getOrganization(getOrganizationRequest) {
2155
2191
  return __awaiter(this, void 0, void 0, function* () {
@@ -2212,7 +2248,7 @@ class OrganizationClient {
2212
2248
  * @param GetOrganizationTenancyRequest
2213
2249
  * @return GetOrganizationTenancyResponse
2214
2250
  * @throws OciError when an error occurs
2215
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
2251
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
2216
2252
  */
2217
2253
  getOrganizationTenancy(getOrganizationTenancyRequest) {
2218
2254
  return __awaiter(this, void 0, void 0, function* () {
@@ -2276,7 +2312,7 @@ class OrganizationClient {
2276
2312
  * @param ListOrganizationTenanciesRequest
2277
2313
  * @return ListOrganizationTenanciesResponse
2278
2314
  * @throws OciError when an error occurs
2279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
2315
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
2280
2316
  */
2281
2317
  listOrganizationTenancies(listOrganizationTenanciesRequest) {
2282
2318
  return __awaiter(this, void 0, void 0, function* () {
@@ -2342,7 +2378,7 @@ class OrganizationClient {
2342
2378
  * @param ListOrganizationsRequest
2343
2379
  * @return ListOrganizationsResponse
2344
2380
  * @throws OciError when an error occurs
2345
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
2381
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
2346
2382
  */
2347
2383
  listOrganizations(listOrganizationsRequest) {
2348
2384
  return __awaiter(this, void 0, void 0, function* () {
@@ -2407,7 +2443,7 @@ class OrganizationClient {
2407
2443
  * @param RestoreOrganizationTenancyRequest
2408
2444
  * @return RestoreOrganizationTenancyResponse
2409
2445
  * @throws OciError when an error occurs
2410
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/RestoreOrganizationTenancy.ts.html |here} to see how to use RestoreOrganizationTenancy API.
2446
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/RestoreOrganizationTenancy.ts.html |here} to see how to use RestoreOrganizationTenancy API.
2411
2447
  */
2412
2448
  restoreOrganizationTenancy(restoreOrganizationTenancyRequest) {
2413
2449
  return __awaiter(this, void 0, void 0, function* () {
@@ -2467,7 +2503,7 @@ class OrganizationClient {
2467
2503
  * @param UnapproveOrganizationTenancyForTransferRequest
2468
2504
  * @return UnapproveOrganizationTenancyForTransferResponse
2469
2505
  * @throws OciError when an error occurs
2470
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
2506
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
2471
2507
  */
2472
2508
  unapproveOrganizationTenancyForTransfer(unapproveOrganizationTenancyForTransferRequest) {
2473
2509
  return __awaiter(this, void 0, void 0, function* () {
@@ -2534,7 +2570,7 @@ class OrganizationClient {
2534
2570
  * @param UpdateOrganizationRequest
2535
2571
  * @return UpdateOrganizationResponse
2536
2572
  * @throws OciError when an error occurs
2537
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
2573
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
2538
2574
  */
2539
2575
  updateOrganization(updateOrganizationRequest) {
2540
2576
  return __awaiter(this, void 0, void 0, function* () {
@@ -2735,13 +2771,19 @@ class RecipientInvitationClient {
2735
2771
  this._circuitBreaker.shutdown();
2736
2772
  }
2737
2773
  }
2774
+ /**
2775
+ * Close the client once it is no longer needed
2776
+ */
2777
+ close() {
2778
+ this.shutdownCircuitBreaker();
2779
+ }
2738
2780
  /**
2739
2781
  * Accepts a recipient invitation.
2740
2782
  * This operation does not retry by default if the user has not defined a retry configuration.
2741
2783
  * @param AcceptRecipientInvitationRequest
2742
2784
  * @return AcceptRecipientInvitationResponse
2743
2785
  * @throws OciError when an error occurs
2744
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
2786
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
2745
2787
  */
2746
2788
  acceptRecipientInvitation(acceptRecipientInvitationRequest) {
2747
2789
  return __awaiter(this, void 0, void 0, function* () {
@@ -2802,7 +2844,7 @@ class RecipientInvitationClient {
2802
2844
  * @param GetRecipientInvitationRequest
2803
2845
  * @return GetRecipientInvitationResponse
2804
2846
  * @throws OciError when an error occurs
2805
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
2847
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
2806
2848
  */
2807
2849
  getRecipientInvitation(getRecipientInvitationRequest) {
2808
2850
  return __awaiter(this, void 0, void 0, function* () {
@@ -2865,7 +2907,7 @@ class RecipientInvitationClient {
2865
2907
  * @param IgnoreRecipientInvitationRequest
2866
2908
  * @return IgnoreRecipientInvitationResponse
2867
2909
  * @throws OciError when an error occurs
2868
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
2910
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
2869
2911
  */
2870
2912
  ignoreRecipientInvitation(ignoreRecipientInvitationRequest) {
2871
2913
  return __awaiter(this, void 0, void 0, function* () {
@@ -2931,7 +2973,7 @@ class RecipientInvitationClient {
2931
2973
  * @param ListRecipientInvitationsRequest
2932
2974
  * @return ListRecipientInvitationsResponse
2933
2975
  * @throws OciError when an error occurs
2934
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
2976
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
2935
2977
  */
2936
2978
  listRecipientInvitations(listRecipientInvitationsRequest) {
2937
2979
  return __awaiter(this, void 0, void 0, function* () {
@@ -2998,7 +3040,7 @@ class RecipientInvitationClient {
2998
3040
  * @param UpdateRecipientInvitationRequest
2999
3041
  * @return UpdateRecipientInvitationResponse
3000
3042
  * @throws OciError when an error occurs
3001
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
3043
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
3002
3044
  */
3003
3045
  updateRecipientInvitation(updateRecipientInvitationRequest) {
3004
3046
  return __awaiter(this, void 0, void 0, function* () {
@@ -3202,13 +3244,19 @@ class SenderInvitationClient {
3202
3244
  this._circuitBreaker.shutdown();
3203
3245
  }
3204
3246
  }
3247
+ /**
3248
+ * Close the client once it is no longer needed
3249
+ */
3250
+ close() {
3251
+ this.shutdownCircuitBreaker();
3252
+ }
3205
3253
  /**
3206
3254
  * Cancels a sender invitation.
3207
3255
  * This operation does not retry by default if the user has not defined a retry configuration.
3208
3256
  * @param CancelSenderInvitationRequest
3209
3257
  * @return CancelSenderInvitationResponse
3210
3258
  * @throws OciError when an error occurs
3211
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
3259
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
3212
3260
  */
3213
3261
  cancelSenderInvitation(cancelSenderInvitationRequest) {
3214
3262
  return __awaiter(this, void 0, void 0, function* () {
@@ -3269,7 +3317,7 @@ class SenderInvitationClient {
3269
3317
  * @param CreateSenderInvitationRequest
3270
3318
  * @return CreateSenderInvitationResponse
3271
3319
  * @throws OciError when an error occurs
3272
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
3320
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
3273
3321
  */
3274
3322
  createSenderInvitation(createSenderInvitationRequest) {
3275
3323
  return __awaiter(this, void 0, void 0, function* () {
@@ -3337,7 +3385,7 @@ class SenderInvitationClient {
3337
3385
  * @param GetSenderInvitationRequest
3338
3386
  * @return GetSenderInvitationResponse
3339
3387
  * @throws OciError when an error occurs
3340
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
3388
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
3341
3389
  */
3342
3390
  getSenderInvitation(getSenderInvitationRequest) {
3343
3391
  return __awaiter(this, void 0, void 0, function* () {
@@ -3401,7 +3449,7 @@ class SenderInvitationClient {
3401
3449
  * @param ListSenderInvitationsRequest
3402
3450
  * @return ListSenderInvitationsResponse
3403
3451
  * @throws OciError when an error occurs
3404
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
3452
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
3405
3453
  */
3406
3454
  listSenderInvitations(listSenderInvitationsRequest) {
3407
3455
  return __awaiter(this, void 0, void 0, function* () {
@@ -3472,7 +3520,7 @@ class SenderInvitationClient {
3472
3520
  * @param UpdateSenderInvitationRequest
3473
3521
  * @return UpdateSenderInvitationResponse
3474
3522
  * @throws OciError when an error occurs
3475
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
3523
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
3476
3524
  */
3477
3525
  updateSenderInvitation(updateSenderInvitationRequest) {
3478
3526
  return __awaiter(this, void 0, void 0, function* () {
@@ -3676,13 +3724,19 @@ class SubscriptionClient {
3676
3724
  this._circuitBreaker.shutdown();
3677
3725
  }
3678
3726
  }
3727
+ /**
3728
+ * Close the client once it is no longer needed
3729
+ */
3730
+ close() {
3731
+ this.shutdownCircuitBreaker();
3732
+ }
3679
3733
  /**
3680
3734
  * Assign the tenancy record identified by the compartment ID to the given subscription ID.
3681
3735
  * This operation does not retry by default if the user has not defined a retry configuration.
3682
3736
  * @param CreateSubscriptionMappingRequest
3683
3737
  * @return CreateSubscriptionMappingResponse
3684
3738
  * @throws OciError when an error occurs
3685
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
3739
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
3686
3740
  */
3687
3741
  createSubscriptionMapping(createSubscriptionMappingRequest) {
3688
3742
  return __awaiter(this, void 0, void 0, function* () {
@@ -3751,7 +3805,7 @@ class SubscriptionClient {
3751
3805
  * @param DeleteSubscriptionMappingRequest
3752
3806
  * @return DeleteSubscriptionMappingResponse
3753
3807
  * @throws OciError when an error occurs
3754
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
3808
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
3755
3809
  */
3756
3810
  deleteSubscriptionMapping(deleteSubscriptionMappingRequest) {
3757
3811
  return __awaiter(this, void 0, void 0, function* () {
@@ -3806,7 +3860,7 @@ class SubscriptionClient {
3806
3860
  * @param GetAssignedSubscriptionRequest
3807
3861
  * @return GetAssignedSubscriptionResponse
3808
3862
  * @throws OciError when an error occurs
3809
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
3863
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
3810
3864
  */
3811
3865
  getAssignedSubscription(getAssignedSubscriptionRequest) {
3812
3866
  return __awaiter(this, void 0, void 0, function* () {
@@ -3869,7 +3923,7 @@ class SubscriptionClient {
3869
3923
  * @param GetSubscriptionRequest
3870
3924
  * @return GetSubscriptionResponse
3871
3925
  * @throws OciError when an error occurs
3872
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
3926
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
3873
3927
  */
3874
3928
  getSubscription(getSubscriptionRequest) {
3875
3929
  return __awaiter(this, void 0, void 0, function* () {
@@ -3932,7 +3986,7 @@ class SubscriptionClient {
3932
3986
  * @param GetSubscriptionMappingRequest
3933
3987
  * @return GetSubscriptionMappingResponse
3934
3988
  * @throws OciError when an error occurs
3935
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
3989
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
3936
3990
  */
3937
3991
  getSubscriptionMapping(getSubscriptionMappingRequest) {
3938
3992
  return __awaiter(this, void 0, void 0, function* () {
@@ -3995,7 +4049,7 @@ class SubscriptionClient {
3995
4049
  * @param ListAssignedSubscriptionLineItemsRequest
3996
4050
  * @return ListAssignedSubscriptionLineItemsResponse
3997
4051
  * @throws OciError when an error occurs
3998
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListAssignedSubscriptionLineItems.ts.html |here} to see how to use ListAssignedSubscriptionLineItems API.
4052
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListAssignedSubscriptionLineItems.ts.html |here} to see how to use ListAssignedSubscriptionLineItems API.
3999
4053
  */
4000
4054
  listAssignedSubscriptionLineItems(listAssignedSubscriptionLineItemsRequest) {
4001
4055
  return __awaiter(this, void 0, void 0, function* () {
@@ -4063,7 +4117,7 @@ class SubscriptionClient {
4063
4117
  * @param ListAssignedSubscriptionsRequest
4064
4118
  * @return ListAssignedSubscriptionsResponse
4065
4119
  * @throws OciError when an error occurs
4066
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
4120
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
4067
4121
  */
4068
4122
  listAssignedSubscriptions(listAssignedSubscriptionsRequest) {
4069
4123
  return __awaiter(this, void 0, void 0, function* () {
@@ -4132,7 +4186,7 @@ class SubscriptionClient {
4132
4186
  * @param ListAvailableRegionsRequest
4133
4187
  * @return ListAvailableRegionsResponse
4134
4188
  * @throws OciError when an error occurs
4135
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
4189
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
4136
4190
  */
4137
4191
  listAvailableRegions(listAvailableRegionsRequest) {
4138
4192
  return __awaiter(this, void 0, void 0, function* () {
@@ -4197,7 +4251,7 @@ class SubscriptionClient {
4197
4251
  * @param ListSubscriptionLineItemsRequest
4198
4252
  * @return ListSubscriptionLineItemsResponse
4199
4253
  * @throws OciError when an error occurs
4200
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListSubscriptionLineItems.ts.html |here} to see how to use ListSubscriptionLineItems API.
4254
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListSubscriptionLineItems.ts.html |here} to see how to use ListSubscriptionLineItems API.
4201
4255
  */
4202
4256
  listSubscriptionLineItems(listSubscriptionLineItemsRequest) {
4203
4257
  return __awaiter(this, void 0, void 0, function* () {
@@ -4265,7 +4319,7 @@ class SubscriptionClient {
4265
4319
  * @param ListSubscriptionMappingsRequest
4266
4320
  * @return ListSubscriptionMappingsResponse
4267
4321
  * @throws OciError when an error occurs
4268
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
4322
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
4269
4323
  */
4270
4324
  listSubscriptionMappings(listSubscriptionMappingsRequest) {
4271
4325
  return __awaiter(this, void 0, void 0, function* () {
@@ -4335,7 +4389,7 @@ class SubscriptionClient {
4335
4389
  * @param ListSubscriptionsRequest
4336
4390
  * @return ListSubscriptionsResponse
4337
4391
  * @throws OciError when an error occurs
4338
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
4392
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
4339
4393
  */
4340
4394
  listSubscriptions(listSubscriptionsRequest) {
4341
4395
  return __awaiter(this, void 0, void 0, function* () {
@@ -4543,13 +4597,19 @@ class WorkRequestClient {
4543
4597
  this._circuitBreaker.shutdown();
4544
4598
  }
4545
4599
  }
4600
+ /**
4601
+ * Close the client once it is no longer needed
4602
+ */
4603
+ close() {
4604
+ this.shutdownCircuitBreaker();
4605
+ }
4546
4606
  /**
4547
4607
  * Gets the status of the work request with the given ID.
4548
4608
  * This operation does not retry by default if the user has not defined a retry configuration.
4549
4609
  * @param GetWorkRequestRequest
4550
4610
  * @return GetWorkRequestResponse
4551
4611
  * @throws OciError when an error occurs
4552
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
4612
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
4553
4613
  */
4554
4614
  getWorkRequest(getWorkRequestRequest) {
4555
4615
  return __awaiter(this, void 0, void 0, function* () {
@@ -4613,7 +4673,7 @@ class WorkRequestClient {
4613
4673
  * @param ListWorkRequestErrorsRequest
4614
4674
  * @return ListWorkRequestErrorsResponse
4615
4675
  * @throws OciError when an error occurs
4616
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4676
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
4617
4677
  */
4618
4678
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
4619
4679
  return __awaiter(this, void 0, void 0, function* () {
@@ -4681,7 +4741,7 @@ class WorkRequestClient {
4681
4741
  * @param ListWorkRequestLogsRequest
4682
4742
  * @return ListWorkRequestLogsResponse
4683
4743
  * @throws OciError when an error occurs
4684
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4744
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
4685
4745
  */
4686
4746
  listWorkRequestLogs(listWorkRequestLogsRequest) {
4687
4747
  return __awaiter(this, void 0, void 0, function* () {
@@ -4749,7 +4809,7 @@ class WorkRequestClient {
4749
4809
  * @param ListWorkRequestsRequest
4750
4810
  * @return ListWorkRequestsResponse
4751
4811
  * @throws OciError when an error occurs
4752
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4812
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
4753
4813
  */
4754
4814
  listWorkRequests(listWorkRequestsRequest) {
4755
4815
  return __awaiter(this, void 0, void 0, function* () {