oci-tenantmanagercontrolplane 2.75.0 → 2.76.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.
- package/lib/client.d.ts +52 -52
- package/lib/client.js +92 -52
- package/lib/client.js.map +1 -1
- package/lib/request/accept-recipient-invitation-request.d.ts +1 -1
- package/lib/request/activate-order-request.d.ts +1 -1
- package/lib/request/add-governance-request.d.ts +1 -1
- package/lib/request/approve-organization-tenancy-for-transfer-request.d.ts +1 -1
- package/lib/request/cancel-sender-invitation-request.d.ts +1 -1
- package/lib/request/create-child-tenancy-request.d.ts +1 -1
- package/lib/request/create-domain-governance-request.d.ts +1 -1
- package/lib/request/create-domain-request.d.ts +1 -1
- package/lib/request/create-sender-invitation-request.d.ts +1 -1
- package/lib/request/create-subscription-mapping-request.d.ts +1 -1
- package/lib/request/delete-domain-governance-request.d.ts +1 -1
- package/lib/request/delete-domain-request.d.ts +1 -1
- package/lib/request/delete-link-request.d.ts +1 -1
- package/lib/request/delete-organization-tenancy-request.d.ts +1 -1
- package/lib/request/delete-subscription-mapping-request.d.ts +1 -1
- package/lib/request/get-assigned-subscription-request.d.ts +1 -1
- package/lib/request/get-domain-governance-request.d.ts +1 -1
- package/lib/request/get-domain-request.d.ts +1 -1
- package/lib/request/get-link-request.d.ts +1 -1
- package/lib/request/get-order-request.d.ts +1 -1
- package/lib/request/get-organization-request.d.ts +1 -1
- package/lib/request/get-organization-tenancy-request.d.ts +1 -1
- package/lib/request/get-recipient-invitation-request.d.ts +1 -1
- package/lib/request/get-sender-invitation-request.d.ts +1 -1
- package/lib/request/get-subscription-mapping-request.d.ts +1 -1
- package/lib/request/get-subscription-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/ignore-recipient-invitation-request.d.ts +1 -1
- package/lib/request/list-assigned-subscription-line-items-request.d.ts +1 -1
- package/lib/request/list-assigned-subscriptions-request.d.ts +1 -1
- package/lib/request/list-available-regions-request.d.ts +1 -1
- package/lib/request/list-domain-governances-request.d.ts +1 -1
- package/lib/request/list-domains-request.d.ts +1 -1
- package/lib/request/list-links-request.d.ts +1 -1
- package/lib/request/list-organization-tenancies-request.d.ts +1 -1
- package/lib/request/list-organizations-request.d.ts +1 -1
- package/lib/request/list-recipient-invitations-request.d.ts +1 -1
- package/lib/request/list-sender-invitations-request.d.ts +1 -1
- package/lib/request/list-subscription-line-items-request.d.ts +1 -1
- package/lib/request/list-subscription-mappings-request.d.ts +1 -1
- package/lib/request/list-subscriptions-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/remove-governance-request.d.ts +1 -1
- package/lib/request/restore-organization-tenancy-request.d.ts +1 -1
- package/lib/request/unapprove-organization-tenancy-for-transfer-request.d.ts +1 -1
- package/lib/request/update-domain-governance-request.d.ts +1 -1
- package/lib/request/update-domain-request.d.ts +1 -1
- package/lib/request/update-organization-request.d.ts +1 -1
- package/lib/request/update-recipient-invitation-request.d.ts +1 -1
- package/lib/request/update-sender-invitation-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -87,6 +87,10 @@ class DomainClient {
|
|
|
87
87
|
? clientConfiguration.bodyDuplexMode
|
|
88
88
|
: undefined;
|
|
89
89
|
}
|
|
90
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
91
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
92
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
93
|
+
}
|
|
90
94
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
91
95
|
const specCircuitBreakerEnabled = true;
|
|
92
96
|
if (!this._circuitBreaker &&
|
|
@@ -190,7 +194,7 @@ class DomainClient {
|
|
|
190
194
|
* @param CreateDomainRequest
|
|
191
195
|
* @return CreateDomainResponse
|
|
192
196
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/CreateDomain.ts.html |here} to see how to use CreateDomain API.
|
|
194
198
|
*/
|
|
195
199
|
createDomain(createDomainRequest) {
|
|
196
200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -258,7 +262,7 @@ class DomainClient {
|
|
|
258
262
|
* @param DeleteDomainRequest
|
|
259
263
|
* @return DeleteDomainResponse
|
|
260
264
|
* @throws OciError when an error occurs
|
|
261
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
265
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/DeleteDomain.ts.html |here} to see how to use DeleteDomain API.
|
|
262
266
|
*/
|
|
263
267
|
deleteDomain(deleteDomainRequest) {
|
|
264
268
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -313,7 +317,7 @@ class DomainClient {
|
|
|
313
317
|
* @param GetDomainRequest
|
|
314
318
|
* @return GetDomainResponse
|
|
315
319
|
* @throws OciError when an error occurs
|
|
316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
320
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetDomain.ts.html |here} to see how to use GetDomain API.
|
|
317
321
|
*/
|
|
318
322
|
getDomain(getDomainRequest) {
|
|
319
323
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -377,7 +381,7 @@ class DomainClient {
|
|
|
377
381
|
* @param ListDomainsRequest
|
|
378
382
|
* @return ListDomainsResponse
|
|
379
383
|
* @throws OciError when an error occurs
|
|
380
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
384
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListDomains.ts.html |here} to see how to use ListDomains API.
|
|
381
385
|
*/
|
|
382
386
|
listDomains(listDomainsRequest) {
|
|
383
387
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -448,7 +452,7 @@ class DomainClient {
|
|
|
448
452
|
* @param UpdateDomainRequest
|
|
449
453
|
* @return UpdateDomainResponse
|
|
450
454
|
* @throws OciError when an error occurs
|
|
451
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/UpdateDomain.ts.html |here} to see how to use UpdateDomain API.
|
|
452
456
|
*/
|
|
453
457
|
updateDomain(updateDomainRequest) {
|
|
454
458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -543,6 +547,10 @@ class DomainGovernanceClient {
|
|
|
543
547
|
? clientConfiguration.bodyDuplexMode
|
|
544
548
|
: undefined;
|
|
545
549
|
}
|
|
550
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
551
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
552
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
553
|
+
}
|
|
546
554
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
547
555
|
const specCircuitBreakerEnabled = true;
|
|
548
556
|
if (!this._circuitBreaker &&
|
|
@@ -646,7 +654,7 @@ class DomainGovernanceClient {
|
|
|
646
654
|
* @param CreateDomainGovernanceRequest
|
|
647
655
|
* @return CreateDomainGovernanceResponse
|
|
648
656
|
* @throws OciError when an error occurs
|
|
649
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
657
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
|
|
650
658
|
*/
|
|
651
659
|
createDomainGovernance(createDomainGovernanceRequest) {
|
|
652
660
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -709,7 +717,7 @@ class DomainGovernanceClient {
|
|
|
709
717
|
* @param DeleteDomainGovernanceRequest
|
|
710
718
|
* @return DeleteDomainGovernanceResponse
|
|
711
719
|
* @throws OciError when an error occurs
|
|
712
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
720
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
|
|
713
721
|
*/
|
|
714
722
|
deleteDomainGovernance(deleteDomainGovernanceRequest) {
|
|
715
723
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -764,7 +772,7 @@ class DomainGovernanceClient {
|
|
|
764
772
|
* @param GetDomainGovernanceRequest
|
|
765
773
|
* @return GetDomainGovernanceResponse
|
|
766
774
|
* @throws OciError when an error occurs
|
|
767
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
775
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
|
|
768
776
|
*/
|
|
769
777
|
getDomainGovernance(getDomainGovernanceRequest) {
|
|
770
778
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -828,7 +836,7 @@ class DomainGovernanceClient {
|
|
|
828
836
|
* @param ListDomainGovernancesRequest
|
|
829
837
|
* @return ListDomainGovernancesResponse
|
|
830
838
|
* @throws OciError when an error occurs
|
|
831
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
839
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
|
|
832
840
|
*/
|
|
833
841
|
listDomainGovernances(listDomainGovernancesRequest) {
|
|
834
842
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -899,7 +907,7 @@ class DomainGovernanceClient {
|
|
|
899
907
|
* @param UpdateDomainGovernanceRequest
|
|
900
908
|
* @return UpdateDomainGovernanceResponse
|
|
901
909
|
* @throws OciError when an error occurs
|
|
902
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
910
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
|
|
903
911
|
*/
|
|
904
912
|
updateDomainGovernance(updateDomainGovernanceRequest) {
|
|
905
913
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -994,6 +1002,10 @@ class GovernanceClient {
|
|
|
994
1002
|
? clientConfiguration.bodyDuplexMode
|
|
995
1003
|
: undefined;
|
|
996
1004
|
}
|
|
1005
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
1006
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
1007
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
1008
|
+
}
|
|
997
1009
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
998
1010
|
const specCircuitBreakerEnabled = true;
|
|
999
1011
|
if (!this._circuitBreaker &&
|
|
@@ -1076,7 +1088,7 @@ class GovernanceClient {
|
|
|
1076
1088
|
* @param AddGovernanceRequest
|
|
1077
1089
|
* @return AddGovernanceResponse
|
|
1078
1090
|
* @throws OciError when an error occurs
|
|
1079
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1091
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/AddGovernance.ts.html |here} to see how to use AddGovernance API.
|
|
1080
1092
|
*/
|
|
1081
1093
|
addGovernance(addGovernanceRequest) {
|
|
1082
1094
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1138,7 +1150,7 @@ class GovernanceClient {
|
|
|
1138
1150
|
* @param RemoveGovernanceRequest
|
|
1139
1151
|
* @return RemoveGovernanceResponse
|
|
1140
1152
|
* @throws OciError when an error occurs
|
|
1141
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1153
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/RemoveGovernance.ts.html |here} to see how to use RemoveGovernance API.
|
|
1142
1154
|
*/
|
|
1143
1155
|
removeGovernance(removeGovernanceRequest) {
|
|
1144
1156
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1230,6 +1242,10 @@ class LinkClient {
|
|
|
1230
1242
|
? clientConfiguration.bodyDuplexMode
|
|
1231
1243
|
: undefined;
|
|
1232
1244
|
}
|
|
1245
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
1246
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
1247
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
1248
|
+
}
|
|
1233
1249
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1234
1250
|
const specCircuitBreakerEnabled = true;
|
|
1235
1251
|
if (!this._circuitBreaker &&
|
|
@@ -1333,7 +1349,7 @@ class LinkClient {
|
|
|
1333
1349
|
* @param DeleteLinkRequest
|
|
1334
1350
|
* @return DeleteLinkResponse
|
|
1335
1351
|
* @throws OciError when an error occurs
|
|
1336
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1352
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
|
|
1337
1353
|
*/
|
|
1338
1354
|
deleteLink(deleteLinkRequest) {
|
|
1339
1355
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1393,7 +1409,7 @@ class LinkClient {
|
|
|
1393
1409
|
* @param GetLinkRequest
|
|
1394
1410
|
* @return GetLinkResponse
|
|
1395
1411
|
* @throws OciError when an error occurs
|
|
1396
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1412
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
|
|
1397
1413
|
*/
|
|
1398
1414
|
getLink(getLinkRequest) {
|
|
1399
1415
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1456,7 +1472,7 @@ class LinkClient {
|
|
|
1456
1472
|
* @param ListLinksRequest
|
|
1457
1473
|
* @return ListLinksResponse
|
|
1458
1474
|
* @throws OciError when an error occurs
|
|
1459
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1475
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
|
|
1460
1476
|
*/
|
|
1461
1477
|
listLinks(listLinksRequest) {
|
|
1462
1478
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1554,6 +1570,10 @@ class OrdersClient {
|
|
|
1554
1570
|
? clientConfiguration.bodyDuplexMode
|
|
1555
1571
|
: undefined;
|
|
1556
1572
|
}
|
|
1573
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
1574
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
1575
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
1576
|
+
}
|
|
1557
1577
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1558
1578
|
const specCircuitBreakerEnabled = true;
|
|
1559
1579
|
if (!this._circuitBreaker &&
|
|
@@ -1636,7 +1656,7 @@ class OrdersClient {
|
|
|
1636
1656
|
* @param ActivateOrderRequest
|
|
1637
1657
|
* @return ActivateOrderResponse
|
|
1638
1658
|
* @throws OciError when an error occurs
|
|
1639
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1659
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
|
|
1640
1660
|
*/
|
|
1641
1661
|
activateOrder(activateOrderRequest) {
|
|
1642
1662
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1698,7 +1718,7 @@ class OrdersClient {
|
|
|
1698
1718
|
* @param GetOrderRequest
|
|
1699
1719
|
* @return GetOrderResponse
|
|
1700
1720
|
* @throws OciError when an error occurs
|
|
1701
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1721
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
|
|
1702
1722
|
*/
|
|
1703
1723
|
getOrder(getOrderRequest) {
|
|
1704
1724
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1786,6 +1806,10 @@ class OrganizationClient {
|
|
|
1786
1806
|
? clientConfiguration.bodyDuplexMode
|
|
1787
1807
|
: undefined;
|
|
1788
1808
|
}
|
|
1809
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
1810
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
1811
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
1812
|
+
}
|
|
1789
1813
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1790
1814
|
const specCircuitBreakerEnabled = true;
|
|
1791
1815
|
if (!this._circuitBreaker &&
|
|
@@ -1889,7 +1913,7 @@ class OrganizationClient {
|
|
|
1889
1913
|
* @param ApproveOrganizationTenancyForTransferRequest
|
|
1890
1914
|
* @return ApproveOrganizationTenancyForTransferResponse
|
|
1891
1915
|
* @throws OciError when an error occurs
|
|
1892
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1916
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
|
|
1893
1917
|
*/
|
|
1894
1918
|
approveOrganizationTenancyForTransfer(approveOrganizationTenancyForTransferRequest) {
|
|
1895
1919
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1956,7 +1980,7 @@ class OrganizationClient {
|
|
|
1956
1980
|
* @param CreateChildTenancyRequest
|
|
1957
1981
|
* @return CreateChildTenancyResponse
|
|
1958
1982
|
* @throws OciError when an error occurs
|
|
1959
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1983
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
|
|
1960
1984
|
*/
|
|
1961
1985
|
createChildTenancy(createChildTenancyRequest) {
|
|
1962
1986
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2015,7 +2039,7 @@ class OrganizationClient {
|
|
|
2015
2039
|
* @param DeleteOrganizationTenancyRequest
|
|
2016
2040
|
* @return DeleteOrganizationTenancyResponse
|
|
2017
2041
|
* @throws OciError when an error occurs
|
|
2018
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2042
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
|
|
2019
2043
|
*/
|
|
2020
2044
|
deleteOrganizationTenancy(deleteOrganizationTenancyRequest) {
|
|
2021
2045
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2076,7 +2100,7 @@ class OrganizationClient {
|
|
|
2076
2100
|
* @param GetOrganizationRequest
|
|
2077
2101
|
* @return GetOrganizationResponse
|
|
2078
2102
|
* @throws OciError when an error occurs
|
|
2079
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
|
|
2080
2104
|
*/
|
|
2081
2105
|
getOrganization(getOrganizationRequest) {
|
|
2082
2106
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2139,7 +2163,7 @@ class OrganizationClient {
|
|
|
2139
2163
|
* @param GetOrganizationTenancyRequest
|
|
2140
2164
|
* @return GetOrganizationTenancyResponse
|
|
2141
2165
|
* @throws OciError when an error occurs
|
|
2142
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2166
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
|
|
2143
2167
|
*/
|
|
2144
2168
|
getOrganizationTenancy(getOrganizationTenancyRequest) {
|
|
2145
2169
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2203,7 +2227,7 @@ class OrganizationClient {
|
|
|
2203
2227
|
* @param ListOrganizationTenanciesRequest
|
|
2204
2228
|
* @return ListOrganizationTenanciesResponse
|
|
2205
2229
|
* @throws OciError when an error occurs
|
|
2206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2230
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
|
|
2207
2231
|
*/
|
|
2208
2232
|
listOrganizationTenancies(listOrganizationTenanciesRequest) {
|
|
2209
2233
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2269,7 +2293,7 @@ class OrganizationClient {
|
|
|
2269
2293
|
* @param ListOrganizationsRequest
|
|
2270
2294
|
* @return ListOrganizationsResponse
|
|
2271
2295
|
* @throws OciError when an error occurs
|
|
2272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2296
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
|
|
2273
2297
|
*/
|
|
2274
2298
|
listOrganizations(listOrganizationsRequest) {
|
|
2275
2299
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2334,7 +2358,7 @@ class OrganizationClient {
|
|
|
2334
2358
|
* @param RestoreOrganizationTenancyRequest
|
|
2335
2359
|
* @return RestoreOrganizationTenancyResponse
|
|
2336
2360
|
* @throws OciError when an error occurs
|
|
2337
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2361
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/RestoreOrganizationTenancy.ts.html |here} to see how to use RestoreOrganizationTenancy API.
|
|
2338
2362
|
*/
|
|
2339
2363
|
restoreOrganizationTenancy(restoreOrganizationTenancyRequest) {
|
|
2340
2364
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2394,7 +2418,7 @@ class OrganizationClient {
|
|
|
2394
2418
|
* @param UnapproveOrganizationTenancyForTransferRequest
|
|
2395
2419
|
* @return UnapproveOrganizationTenancyForTransferResponse
|
|
2396
2420
|
* @throws OciError when an error occurs
|
|
2397
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2421
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
|
|
2398
2422
|
*/
|
|
2399
2423
|
unapproveOrganizationTenancyForTransfer(unapproveOrganizationTenancyForTransferRequest) {
|
|
2400
2424
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2461,7 +2485,7 @@ class OrganizationClient {
|
|
|
2461
2485
|
* @param UpdateOrganizationRequest
|
|
2462
2486
|
* @return UpdateOrganizationResponse
|
|
2463
2487
|
* @throws OciError when an error occurs
|
|
2464
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2488
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
|
|
2465
2489
|
*/
|
|
2466
2490
|
updateOrganization(updateOrganizationRequest) {
|
|
2467
2491
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2553,6 +2577,10 @@ class RecipientInvitationClient {
|
|
|
2553
2577
|
? clientConfiguration.bodyDuplexMode
|
|
2554
2578
|
: undefined;
|
|
2555
2579
|
}
|
|
2580
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
2581
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
2582
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
2583
|
+
}
|
|
2556
2584
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
2557
2585
|
const specCircuitBreakerEnabled = true;
|
|
2558
2586
|
if (!this._circuitBreaker &&
|
|
@@ -2656,7 +2684,7 @@ class RecipientInvitationClient {
|
|
|
2656
2684
|
* @param AcceptRecipientInvitationRequest
|
|
2657
2685
|
* @return AcceptRecipientInvitationResponse
|
|
2658
2686
|
* @throws OciError when an error occurs
|
|
2659
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2687
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
|
|
2660
2688
|
*/
|
|
2661
2689
|
acceptRecipientInvitation(acceptRecipientInvitationRequest) {
|
|
2662
2690
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2717,7 +2745,7 @@ class RecipientInvitationClient {
|
|
|
2717
2745
|
* @param GetRecipientInvitationRequest
|
|
2718
2746
|
* @return GetRecipientInvitationResponse
|
|
2719
2747
|
* @throws OciError when an error occurs
|
|
2720
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2748
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
|
|
2721
2749
|
*/
|
|
2722
2750
|
getRecipientInvitation(getRecipientInvitationRequest) {
|
|
2723
2751
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2780,7 +2808,7 @@ class RecipientInvitationClient {
|
|
|
2780
2808
|
* @param IgnoreRecipientInvitationRequest
|
|
2781
2809
|
* @return IgnoreRecipientInvitationResponse
|
|
2782
2810
|
* @throws OciError when an error occurs
|
|
2783
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2811
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
|
|
2784
2812
|
*/
|
|
2785
2813
|
ignoreRecipientInvitation(ignoreRecipientInvitationRequest) {
|
|
2786
2814
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2846,7 +2874,7 @@ class RecipientInvitationClient {
|
|
|
2846
2874
|
* @param ListRecipientInvitationsRequest
|
|
2847
2875
|
* @return ListRecipientInvitationsResponse
|
|
2848
2876
|
* @throws OciError when an error occurs
|
|
2849
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2877
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
|
|
2850
2878
|
*/
|
|
2851
2879
|
listRecipientInvitations(listRecipientInvitationsRequest) {
|
|
2852
2880
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2913,7 +2941,7 @@ class RecipientInvitationClient {
|
|
|
2913
2941
|
* @param UpdateRecipientInvitationRequest
|
|
2914
2942
|
* @return UpdateRecipientInvitationResponse
|
|
2915
2943
|
* @throws OciError when an error occurs
|
|
2916
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2944
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
|
|
2917
2945
|
*/
|
|
2918
2946
|
updateRecipientInvitation(updateRecipientInvitationRequest) {
|
|
2919
2947
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3008,6 +3036,10 @@ class SenderInvitationClient {
|
|
|
3008
3036
|
? clientConfiguration.bodyDuplexMode
|
|
3009
3037
|
: undefined;
|
|
3010
3038
|
}
|
|
3039
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
3040
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
3041
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
3042
|
+
}
|
|
3011
3043
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
3012
3044
|
const specCircuitBreakerEnabled = true;
|
|
3013
3045
|
if (!this._circuitBreaker &&
|
|
@@ -3111,7 +3143,7 @@ class SenderInvitationClient {
|
|
|
3111
3143
|
* @param CancelSenderInvitationRequest
|
|
3112
3144
|
* @return CancelSenderInvitationResponse
|
|
3113
3145
|
* @throws OciError when an error occurs
|
|
3114
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3146
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
|
|
3115
3147
|
*/
|
|
3116
3148
|
cancelSenderInvitation(cancelSenderInvitationRequest) {
|
|
3117
3149
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3172,7 +3204,7 @@ class SenderInvitationClient {
|
|
|
3172
3204
|
* @param CreateSenderInvitationRequest
|
|
3173
3205
|
* @return CreateSenderInvitationResponse
|
|
3174
3206
|
* @throws OciError when an error occurs
|
|
3175
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3207
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
|
|
3176
3208
|
*/
|
|
3177
3209
|
createSenderInvitation(createSenderInvitationRequest) {
|
|
3178
3210
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3240,7 +3272,7 @@ class SenderInvitationClient {
|
|
|
3240
3272
|
* @param GetSenderInvitationRequest
|
|
3241
3273
|
* @return GetSenderInvitationResponse
|
|
3242
3274
|
* @throws OciError when an error occurs
|
|
3243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3275
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
|
|
3244
3276
|
*/
|
|
3245
3277
|
getSenderInvitation(getSenderInvitationRequest) {
|
|
3246
3278
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3304,7 +3336,7 @@ class SenderInvitationClient {
|
|
|
3304
3336
|
* @param ListSenderInvitationsRequest
|
|
3305
3337
|
* @return ListSenderInvitationsResponse
|
|
3306
3338
|
* @throws OciError when an error occurs
|
|
3307
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3339
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
|
|
3308
3340
|
*/
|
|
3309
3341
|
listSenderInvitations(listSenderInvitationsRequest) {
|
|
3310
3342
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3375,7 +3407,7 @@ class SenderInvitationClient {
|
|
|
3375
3407
|
* @param UpdateSenderInvitationRequest
|
|
3376
3408
|
* @return UpdateSenderInvitationResponse
|
|
3377
3409
|
* @throws OciError when an error occurs
|
|
3378
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
|
|
3379
3411
|
*/
|
|
3380
3412
|
updateSenderInvitation(updateSenderInvitationRequest) {
|
|
3381
3413
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3470,6 +3502,10 @@ class SubscriptionClient {
|
|
|
3470
3502
|
? clientConfiguration.bodyDuplexMode
|
|
3471
3503
|
: undefined;
|
|
3472
3504
|
}
|
|
3505
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
3506
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
3507
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
3508
|
+
}
|
|
3473
3509
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
3474
3510
|
const specCircuitBreakerEnabled = true;
|
|
3475
3511
|
if (!this._circuitBreaker &&
|
|
@@ -3573,7 +3609,7 @@ class SubscriptionClient {
|
|
|
3573
3609
|
* @param CreateSubscriptionMappingRequest
|
|
3574
3610
|
* @return CreateSubscriptionMappingResponse
|
|
3575
3611
|
* @throws OciError when an error occurs
|
|
3576
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3612
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
|
|
3577
3613
|
*/
|
|
3578
3614
|
createSubscriptionMapping(createSubscriptionMappingRequest) {
|
|
3579
3615
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3642,7 +3678,7 @@ class SubscriptionClient {
|
|
|
3642
3678
|
* @param DeleteSubscriptionMappingRequest
|
|
3643
3679
|
* @return DeleteSubscriptionMappingResponse
|
|
3644
3680
|
* @throws OciError when an error occurs
|
|
3645
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3681
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
|
|
3646
3682
|
*/
|
|
3647
3683
|
deleteSubscriptionMapping(deleteSubscriptionMappingRequest) {
|
|
3648
3684
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3697,7 +3733,7 @@ class SubscriptionClient {
|
|
|
3697
3733
|
* @param GetAssignedSubscriptionRequest
|
|
3698
3734
|
* @return GetAssignedSubscriptionResponse
|
|
3699
3735
|
* @throws OciError when an error occurs
|
|
3700
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3736
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
|
|
3701
3737
|
*/
|
|
3702
3738
|
getAssignedSubscription(getAssignedSubscriptionRequest) {
|
|
3703
3739
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3760,7 +3796,7 @@ class SubscriptionClient {
|
|
|
3760
3796
|
* @param GetSubscriptionRequest
|
|
3761
3797
|
* @return GetSubscriptionResponse
|
|
3762
3798
|
* @throws OciError when an error occurs
|
|
3763
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3799
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
|
|
3764
3800
|
*/
|
|
3765
3801
|
getSubscription(getSubscriptionRequest) {
|
|
3766
3802
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3823,7 +3859,7 @@ class SubscriptionClient {
|
|
|
3823
3859
|
* @param GetSubscriptionMappingRequest
|
|
3824
3860
|
* @return GetSubscriptionMappingResponse
|
|
3825
3861
|
* @throws OciError when an error occurs
|
|
3826
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3862
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
|
|
3827
3863
|
*/
|
|
3828
3864
|
getSubscriptionMapping(getSubscriptionMappingRequest) {
|
|
3829
3865
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3886,7 +3922,7 @@ class SubscriptionClient {
|
|
|
3886
3922
|
* @param ListAssignedSubscriptionLineItemsRequest
|
|
3887
3923
|
* @return ListAssignedSubscriptionLineItemsResponse
|
|
3888
3924
|
* @throws OciError when an error occurs
|
|
3889
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3925
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListAssignedSubscriptionLineItems.ts.html |here} to see how to use ListAssignedSubscriptionLineItems API.
|
|
3890
3926
|
*/
|
|
3891
3927
|
listAssignedSubscriptionLineItems(listAssignedSubscriptionLineItemsRequest) {
|
|
3892
3928
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3954,7 +3990,7 @@ class SubscriptionClient {
|
|
|
3954
3990
|
* @param ListAssignedSubscriptionsRequest
|
|
3955
3991
|
* @return ListAssignedSubscriptionsResponse
|
|
3956
3992
|
* @throws OciError when an error occurs
|
|
3957
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3993
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
|
|
3958
3994
|
*/
|
|
3959
3995
|
listAssignedSubscriptions(listAssignedSubscriptionsRequest) {
|
|
3960
3996
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4023,7 +4059,7 @@ class SubscriptionClient {
|
|
|
4023
4059
|
* @param ListAvailableRegionsRequest
|
|
4024
4060
|
* @return ListAvailableRegionsResponse
|
|
4025
4061
|
* @throws OciError when an error occurs
|
|
4026
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4062
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
|
|
4027
4063
|
*/
|
|
4028
4064
|
listAvailableRegions(listAvailableRegionsRequest) {
|
|
4029
4065
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4088,7 +4124,7 @@ class SubscriptionClient {
|
|
|
4088
4124
|
* @param ListSubscriptionLineItemsRequest
|
|
4089
4125
|
* @return ListSubscriptionLineItemsResponse
|
|
4090
4126
|
* @throws OciError when an error occurs
|
|
4091
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4127
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListSubscriptionLineItems.ts.html |here} to see how to use ListSubscriptionLineItems API.
|
|
4092
4128
|
*/
|
|
4093
4129
|
listSubscriptionLineItems(listSubscriptionLineItemsRequest) {
|
|
4094
4130
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4156,7 +4192,7 @@ class SubscriptionClient {
|
|
|
4156
4192
|
* @param ListSubscriptionMappingsRequest
|
|
4157
4193
|
* @return ListSubscriptionMappingsResponse
|
|
4158
4194
|
* @throws OciError when an error occurs
|
|
4159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4195
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
|
|
4160
4196
|
*/
|
|
4161
4197
|
listSubscriptionMappings(listSubscriptionMappingsRequest) {
|
|
4162
4198
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4226,7 +4262,7 @@ class SubscriptionClient {
|
|
|
4226
4262
|
* @param ListSubscriptionsRequest
|
|
4227
4263
|
* @return ListSubscriptionsResponse
|
|
4228
4264
|
* @throws OciError when an error occurs
|
|
4229
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4265
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
|
|
4230
4266
|
*/
|
|
4231
4267
|
listSubscriptions(listSubscriptionsRequest) {
|
|
4232
4268
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4325,6 +4361,10 @@ class WorkRequestClient {
|
|
|
4325
4361
|
? clientConfiguration.bodyDuplexMode
|
|
4326
4362
|
: undefined;
|
|
4327
4363
|
}
|
|
4364
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("tenantmanagercontrolplane")) {
|
|
4365
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
4366
|
+
throw errmsg.concat("tenantmanagercontrolplane");
|
|
4367
|
+
}
|
|
4328
4368
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
4329
4369
|
const specCircuitBreakerEnabled = true;
|
|
4330
4370
|
if (!this._circuitBreaker &&
|
|
@@ -4428,7 +4468,7 @@ class WorkRequestClient {
|
|
|
4428
4468
|
* @param GetWorkRequestRequest
|
|
4429
4469
|
* @return GetWorkRequestResponse
|
|
4430
4470
|
* @throws OciError when an error occurs
|
|
4431
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4471
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
4432
4472
|
*/
|
|
4433
4473
|
getWorkRequest(getWorkRequestRequest) {
|
|
4434
4474
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4492,7 +4532,7 @@ class WorkRequestClient {
|
|
|
4492
4532
|
* @param ListWorkRequestErrorsRequest
|
|
4493
4533
|
* @return ListWorkRequestErrorsResponse
|
|
4494
4534
|
* @throws OciError when an error occurs
|
|
4495
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4535
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
4496
4536
|
*/
|
|
4497
4537
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
4498
4538
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4560,7 +4600,7 @@ class WorkRequestClient {
|
|
|
4560
4600
|
* @param ListWorkRequestLogsRequest
|
|
4561
4601
|
* @return ListWorkRequestLogsResponse
|
|
4562
4602
|
* @throws OciError when an error occurs
|
|
4563
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4603
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
4564
4604
|
*/
|
|
4565
4605
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
4566
4606
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4628,7 +4668,7 @@ class WorkRequestClient {
|
|
|
4628
4668
|
* @param ListWorkRequestsRequest
|
|
4629
4669
|
* @return ListWorkRequestsResponse
|
|
4630
4670
|
* @throws OciError when an error occurs
|
|
4631
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4671
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
4632
4672
|
*/
|
|
4633
4673
|
listWorkRequests(listWorkRequestsRequest) {
|
|
4634
4674
|
return __awaiter(this, void 0, void 0, function* () {
|