oci-tenantmanagercontrolplane 2.7.0 → 2.10.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 +56 -56
- package/lib/client.js +65 -65
- 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/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-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-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/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
|
@@ -59,7 +59,7 @@ var DomainApiKeys;
|
|
|
59
59
|
(function (DomainApiKeys) {
|
|
60
60
|
})(DomainApiKeys = exports.DomainApiKeys || (exports.DomainApiKeys = {}));
|
|
61
61
|
/**
|
|
62
|
-
* This service client
|
|
62
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
63
63
|
*/
|
|
64
64
|
class DomainClient {
|
|
65
65
|
constructor(params, clientConfiguration) {
|
|
@@ -76,7 +76,7 @@ class DomainClient {
|
|
|
76
76
|
: null;
|
|
77
77
|
}
|
|
78
78
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
79
|
-
const specCircuitBreakerEnabled =
|
|
79
|
+
const specCircuitBreakerEnabled = true;
|
|
80
80
|
if (!this._circuitBreaker &&
|
|
81
81
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
82
82
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -157,7 +157,7 @@ class DomainClient {
|
|
|
157
157
|
* @param CreateDomainRequest
|
|
158
158
|
* @return CreateDomainResponse
|
|
159
159
|
* @throws OciError when an error occurs
|
|
160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
160
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/CreateDomain.ts.html |here} to see how to use CreateDomain API.
|
|
161
161
|
*/
|
|
162
162
|
createDomain(createDomainRequest) {
|
|
163
163
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -223,7 +223,7 @@ class DomainClient {
|
|
|
223
223
|
* @param DeleteDomainRequest
|
|
224
224
|
* @return DeleteDomainResponse
|
|
225
225
|
* @throws OciError when an error occurs
|
|
226
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
226
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/DeleteDomain.ts.html |here} to see how to use DeleteDomain API.
|
|
227
227
|
*/
|
|
228
228
|
deleteDomain(deleteDomainRequest) {
|
|
229
229
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -276,7 +276,7 @@ class DomainClient {
|
|
|
276
276
|
* @param GetDomainRequest
|
|
277
277
|
* @return GetDomainResponse
|
|
278
278
|
* @throws OciError when an error occurs
|
|
279
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
279
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetDomain.ts.html |here} to see how to use GetDomain API.
|
|
280
280
|
*/
|
|
281
281
|
getDomain(getDomainRequest) {
|
|
282
282
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -338,7 +338,7 @@ class DomainClient {
|
|
|
338
338
|
* @param ListDomainsRequest
|
|
339
339
|
* @return ListDomainsResponse
|
|
340
340
|
* @throws OciError when an error occurs
|
|
341
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
341
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListDomains.ts.html |here} to see how to use ListDomains API.
|
|
342
342
|
*/
|
|
343
343
|
listDomains(listDomainsRequest) {
|
|
344
344
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -407,7 +407,7 @@ class DomainClient {
|
|
|
407
407
|
* @param UpdateDomainRequest
|
|
408
408
|
* @return UpdateDomainResponse
|
|
409
409
|
* @throws OciError when an error occurs
|
|
410
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/UpdateDomain.ts.html |here} to see how to use UpdateDomain API.
|
|
411
411
|
*/
|
|
412
412
|
updateDomain(updateDomainRequest) {
|
|
413
413
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -471,7 +471,7 @@ var DomainGovernanceApiKeys;
|
|
|
471
471
|
(function (DomainGovernanceApiKeys) {
|
|
472
472
|
})(DomainGovernanceApiKeys = exports.DomainGovernanceApiKeys || (exports.DomainGovernanceApiKeys = {}));
|
|
473
473
|
/**
|
|
474
|
-
* This service client
|
|
474
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
475
475
|
*/
|
|
476
476
|
class DomainGovernanceClient {
|
|
477
477
|
constructor(params, clientConfiguration) {
|
|
@@ -488,7 +488,7 @@ class DomainGovernanceClient {
|
|
|
488
488
|
: null;
|
|
489
489
|
}
|
|
490
490
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
491
|
-
const specCircuitBreakerEnabled =
|
|
491
|
+
const specCircuitBreakerEnabled = true;
|
|
492
492
|
if (!this._circuitBreaker &&
|
|
493
493
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
494
494
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -569,7 +569,7 @@ class DomainGovernanceClient {
|
|
|
569
569
|
* @param CreateDomainGovernanceRequest
|
|
570
570
|
* @return CreateDomainGovernanceResponse
|
|
571
571
|
* @throws OciError when an error occurs
|
|
572
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
572
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
|
|
573
573
|
*/
|
|
574
574
|
createDomainGovernance(createDomainGovernanceRequest) {
|
|
575
575
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -630,7 +630,7 @@ class DomainGovernanceClient {
|
|
|
630
630
|
* @param DeleteDomainGovernanceRequest
|
|
631
631
|
* @return DeleteDomainGovernanceResponse
|
|
632
632
|
* @throws OciError when an error occurs
|
|
633
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
633
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
|
|
634
634
|
*/
|
|
635
635
|
deleteDomainGovernance(deleteDomainGovernanceRequest) {
|
|
636
636
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -683,7 +683,7 @@ class DomainGovernanceClient {
|
|
|
683
683
|
* @param GetDomainGovernanceRequest
|
|
684
684
|
* @return GetDomainGovernanceResponse
|
|
685
685
|
* @throws OciError when an error occurs
|
|
686
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
686
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
|
|
687
687
|
*/
|
|
688
688
|
getDomainGovernance(getDomainGovernanceRequest) {
|
|
689
689
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -745,7 +745,7 @@ class DomainGovernanceClient {
|
|
|
745
745
|
* @param ListDomainGovernancesRequest
|
|
746
746
|
* @return ListDomainGovernancesResponse
|
|
747
747
|
* @throws OciError when an error occurs
|
|
748
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
748
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
|
|
749
749
|
*/
|
|
750
750
|
listDomainGovernances(listDomainGovernancesRequest) {
|
|
751
751
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -814,7 +814,7 @@ class DomainGovernanceClient {
|
|
|
814
814
|
* @param UpdateDomainGovernanceRequest
|
|
815
815
|
* @return UpdateDomainGovernanceResponse
|
|
816
816
|
* @throws OciError when an error occurs
|
|
817
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
817
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
|
|
818
818
|
*/
|
|
819
819
|
updateDomainGovernance(updateDomainGovernanceRequest) {
|
|
820
820
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -878,7 +878,7 @@ var LinkApiKeys;
|
|
|
878
878
|
(function (LinkApiKeys) {
|
|
879
879
|
})(LinkApiKeys = exports.LinkApiKeys || (exports.LinkApiKeys = {}));
|
|
880
880
|
/**
|
|
881
|
-
* This service client
|
|
881
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
882
882
|
*/
|
|
883
883
|
class LinkClient {
|
|
884
884
|
constructor(params, clientConfiguration) {
|
|
@@ -895,7 +895,7 @@ class LinkClient {
|
|
|
895
895
|
: null;
|
|
896
896
|
}
|
|
897
897
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
898
|
-
const specCircuitBreakerEnabled =
|
|
898
|
+
const specCircuitBreakerEnabled = true;
|
|
899
899
|
if (!this._circuitBreaker &&
|
|
900
900
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
901
901
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -976,7 +976,7 @@ class LinkClient {
|
|
|
976
976
|
* @param DeleteLinkRequest
|
|
977
977
|
* @return DeleteLinkResponse
|
|
978
978
|
* @throws OciError when an error occurs
|
|
979
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
979
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
|
|
980
980
|
*/
|
|
981
981
|
deleteLink(deleteLinkRequest) {
|
|
982
982
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1034,7 +1034,7 @@ class LinkClient {
|
|
|
1034
1034
|
* @param GetLinkRequest
|
|
1035
1035
|
* @return GetLinkResponse
|
|
1036
1036
|
* @throws OciError when an error occurs
|
|
1037
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1037
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
|
|
1038
1038
|
*/
|
|
1039
1039
|
getLink(getLinkRequest) {
|
|
1040
1040
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1095,7 +1095,7 @@ class LinkClient {
|
|
|
1095
1095
|
* @param ListLinksRequest
|
|
1096
1096
|
* @return ListLinksResponse
|
|
1097
1097
|
* @throws OciError when an error occurs
|
|
1098
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1098
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
|
|
1099
1099
|
*/
|
|
1100
1100
|
listLinks(listLinksRequest) {
|
|
1101
1101
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1162,7 +1162,7 @@ var OrdersApiKeys;
|
|
|
1162
1162
|
(function (OrdersApiKeys) {
|
|
1163
1163
|
})(OrdersApiKeys = exports.OrdersApiKeys || (exports.OrdersApiKeys = {}));
|
|
1164
1164
|
/**
|
|
1165
|
-
* This service client
|
|
1165
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
1166
1166
|
*/
|
|
1167
1167
|
class OrdersClient {
|
|
1168
1168
|
constructor(params, clientConfiguration) {
|
|
@@ -1179,7 +1179,7 @@ class OrdersClient {
|
|
|
1179
1179
|
: null;
|
|
1180
1180
|
}
|
|
1181
1181
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1182
|
-
const specCircuitBreakerEnabled =
|
|
1182
|
+
const specCircuitBreakerEnabled = true;
|
|
1183
1183
|
if (!this._circuitBreaker &&
|
|
1184
1184
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
1185
1185
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -1239,7 +1239,7 @@ class OrdersClient {
|
|
|
1239
1239
|
* @param ActivateOrderRequest
|
|
1240
1240
|
* @return ActivateOrderResponse
|
|
1241
1241
|
* @throws OciError when an error occurs
|
|
1242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1242
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
|
|
1243
1243
|
*/
|
|
1244
1244
|
activateOrder(activateOrderRequest) {
|
|
1245
1245
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1299,7 +1299,7 @@ class OrdersClient {
|
|
|
1299
1299
|
* @param GetOrderRequest
|
|
1300
1300
|
* @return GetOrderResponse
|
|
1301
1301
|
* @throws OciError when an error occurs
|
|
1302
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1302
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
|
|
1303
1303
|
*/
|
|
1304
1304
|
getOrder(getOrderRequest) {
|
|
1305
1305
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1356,7 +1356,7 @@ var OrganizationApiKeys;
|
|
|
1356
1356
|
(function (OrganizationApiKeys) {
|
|
1357
1357
|
})(OrganizationApiKeys = exports.OrganizationApiKeys || (exports.OrganizationApiKeys = {}));
|
|
1358
1358
|
/**
|
|
1359
|
-
* This service client
|
|
1359
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
1360
1360
|
*/
|
|
1361
1361
|
class OrganizationClient {
|
|
1362
1362
|
constructor(params, clientConfiguration) {
|
|
@@ -1373,7 +1373,7 @@ class OrganizationClient {
|
|
|
1373
1373
|
: null;
|
|
1374
1374
|
}
|
|
1375
1375
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1376
|
-
const specCircuitBreakerEnabled =
|
|
1376
|
+
const specCircuitBreakerEnabled = true;
|
|
1377
1377
|
if (!this._circuitBreaker &&
|
|
1378
1378
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
1379
1379
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -1454,7 +1454,7 @@ class OrganizationClient {
|
|
|
1454
1454
|
* @param ApproveOrganizationTenancyForTransferRequest
|
|
1455
1455
|
* @return ApproveOrganizationTenancyForTransferResponse
|
|
1456
1456
|
* @throws OciError when an error occurs
|
|
1457
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1457
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
|
|
1458
1458
|
*/
|
|
1459
1459
|
approveOrganizationTenancyForTransfer(approveOrganizationTenancyForTransferRequest) {
|
|
1460
1460
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1519,7 +1519,7 @@ class OrganizationClient {
|
|
|
1519
1519
|
* @param CreateChildTenancyRequest
|
|
1520
1520
|
* @return CreateChildTenancyResponse
|
|
1521
1521
|
* @throws OciError when an error occurs
|
|
1522
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1522
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
|
|
1523
1523
|
*/
|
|
1524
1524
|
createChildTenancy(createChildTenancyRequest) {
|
|
1525
1525
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1576,7 +1576,7 @@ class OrganizationClient {
|
|
|
1576
1576
|
* @param DeleteOrganizationTenancyRequest
|
|
1577
1577
|
* @return DeleteOrganizationTenancyResponse
|
|
1578
1578
|
* @throws OciError when an error occurs
|
|
1579
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1579
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
|
|
1580
1580
|
*/
|
|
1581
1581
|
deleteOrganizationTenancy(deleteOrganizationTenancyRequest) {
|
|
1582
1582
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1635,7 +1635,7 @@ class OrganizationClient {
|
|
|
1635
1635
|
* @param GetOrganizationRequest
|
|
1636
1636
|
* @return GetOrganizationResponse
|
|
1637
1637
|
* @throws OciError when an error occurs
|
|
1638
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1638
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
|
|
1639
1639
|
*/
|
|
1640
1640
|
getOrganization(getOrganizationRequest) {
|
|
1641
1641
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1696,7 +1696,7 @@ class OrganizationClient {
|
|
|
1696
1696
|
* @param GetOrganizationTenancyRequest
|
|
1697
1697
|
* @return GetOrganizationTenancyResponse
|
|
1698
1698
|
* @throws OciError when an error occurs
|
|
1699
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1699
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
|
|
1700
1700
|
*/
|
|
1701
1701
|
getOrganizationTenancy(getOrganizationTenancyRequest) {
|
|
1702
1702
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1758,7 +1758,7 @@ class OrganizationClient {
|
|
|
1758
1758
|
* @param ListOrganizationTenanciesRequest
|
|
1759
1759
|
* @return ListOrganizationTenanciesResponse
|
|
1760
1760
|
* @throws OciError when an error occurs
|
|
1761
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1761
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
|
|
1762
1762
|
*/
|
|
1763
1763
|
listOrganizationTenancies(listOrganizationTenanciesRequest) {
|
|
1764
1764
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1822,7 +1822,7 @@ class OrganizationClient {
|
|
|
1822
1822
|
* @param ListOrganizationsRequest
|
|
1823
1823
|
* @return ListOrganizationsResponse
|
|
1824
1824
|
* @throws OciError when an error occurs
|
|
1825
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1825
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
|
|
1826
1826
|
*/
|
|
1827
1827
|
listOrganizations(listOrganizationsRequest) {
|
|
1828
1828
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1885,7 +1885,7 @@ class OrganizationClient {
|
|
|
1885
1885
|
* @param UnapproveOrganizationTenancyForTransferRequest
|
|
1886
1886
|
* @return UnapproveOrganizationTenancyForTransferResponse
|
|
1887
1887
|
* @throws OciError when an error occurs
|
|
1888
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1888
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
|
|
1889
1889
|
*/
|
|
1890
1890
|
unapproveOrganizationTenancyForTransfer(unapproveOrganizationTenancyForTransferRequest) {
|
|
1891
1891
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1950,7 +1950,7 @@ class OrganizationClient {
|
|
|
1950
1950
|
* @param UpdateOrganizationRequest
|
|
1951
1951
|
* @return UpdateOrganizationResponse
|
|
1952
1952
|
* @throws OciError when an error occurs
|
|
1953
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1953
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
|
|
1954
1954
|
*/
|
|
1955
1955
|
updateOrganization(updateOrganizationRequest) {
|
|
1956
1956
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2011,7 +2011,7 @@ var RecipientInvitationApiKeys;
|
|
|
2011
2011
|
(function (RecipientInvitationApiKeys) {
|
|
2012
2012
|
})(RecipientInvitationApiKeys = exports.RecipientInvitationApiKeys || (exports.RecipientInvitationApiKeys = {}));
|
|
2013
2013
|
/**
|
|
2014
|
-
* This service client
|
|
2014
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
2015
2015
|
*/
|
|
2016
2016
|
class RecipientInvitationClient {
|
|
2017
2017
|
constructor(params, clientConfiguration) {
|
|
@@ -2028,7 +2028,7 @@ class RecipientInvitationClient {
|
|
|
2028
2028
|
: null;
|
|
2029
2029
|
}
|
|
2030
2030
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
2031
|
-
const specCircuitBreakerEnabled =
|
|
2031
|
+
const specCircuitBreakerEnabled = true;
|
|
2032
2032
|
if (!this._circuitBreaker &&
|
|
2033
2033
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
2034
2034
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -2109,7 +2109,7 @@ class RecipientInvitationClient {
|
|
|
2109
2109
|
* @param AcceptRecipientInvitationRequest
|
|
2110
2110
|
* @return AcceptRecipientInvitationResponse
|
|
2111
2111
|
* @throws OciError when an error occurs
|
|
2112
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2112
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
|
|
2113
2113
|
*/
|
|
2114
2114
|
acceptRecipientInvitation(acceptRecipientInvitationRequest) {
|
|
2115
2115
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2168,7 +2168,7 @@ class RecipientInvitationClient {
|
|
|
2168
2168
|
* @param GetRecipientInvitationRequest
|
|
2169
2169
|
* @return GetRecipientInvitationResponse
|
|
2170
2170
|
* @throws OciError when an error occurs
|
|
2171
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2171
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
|
|
2172
2172
|
*/
|
|
2173
2173
|
getRecipientInvitation(getRecipientInvitationRequest) {
|
|
2174
2174
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2229,7 +2229,7 @@ class RecipientInvitationClient {
|
|
|
2229
2229
|
* @param IgnoreRecipientInvitationRequest
|
|
2230
2230
|
* @return IgnoreRecipientInvitationResponse
|
|
2231
2231
|
* @throws OciError when an error occurs
|
|
2232
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2232
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
|
|
2233
2233
|
*/
|
|
2234
2234
|
ignoreRecipientInvitation(ignoreRecipientInvitationRequest) {
|
|
2235
2235
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2293,7 +2293,7 @@ class RecipientInvitationClient {
|
|
|
2293
2293
|
* @param ListRecipientInvitationsRequest
|
|
2294
2294
|
* @return ListRecipientInvitationsResponse
|
|
2295
2295
|
* @throws OciError when an error occurs
|
|
2296
|
-
* @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.10.0/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
|
|
2297
2297
|
*/
|
|
2298
2298
|
listRecipientInvitations(listRecipientInvitationsRequest) {
|
|
2299
2299
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2358,7 +2358,7 @@ class RecipientInvitationClient {
|
|
|
2358
2358
|
* @param UpdateRecipientInvitationRequest
|
|
2359
2359
|
* @return UpdateRecipientInvitationResponse
|
|
2360
2360
|
* @throws OciError when an error occurs
|
|
2361
|
-
* @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.10.0/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
|
|
2362
2362
|
*/
|
|
2363
2363
|
updateRecipientInvitation(updateRecipientInvitationRequest) {
|
|
2364
2364
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2422,7 +2422,7 @@ var SenderInvitationApiKeys;
|
|
|
2422
2422
|
(function (SenderInvitationApiKeys) {
|
|
2423
2423
|
})(SenderInvitationApiKeys = exports.SenderInvitationApiKeys || (exports.SenderInvitationApiKeys = {}));
|
|
2424
2424
|
/**
|
|
2425
|
-
* This service client
|
|
2425
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
2426
2426
|
*/
|
|
2427
2427
|
class SenderInvitationClient {
|
|
2428
2428
|
constructor(params, clientConfiguration) {
|
|
@@ -2439,7 +2439,7 @@ class SenderInvitationClient {
|
|
|
2439
2439
|
: null;
|
|
2440
2440
|
}
|
|
2441
2441
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
2442
|
-
const specCircuitBreakerEnabled =
|
|
2442
|
+
const specCircuitBreakerEnabled = true;
|
|
2443
2443
|
if (!this._circuitBreaker &&
|
|
2444
2444
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
2445
2445
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -2520,7 +2520,7 @@ class SenderInvitationClient {
|
|
|
2520
2520
|
* @param CancelSenderInvitationRequest
|
|
2521
2521
|
* @return CancelSenderInvitationResponse
|
|
2522
2522
|
* @throws OciError when an error occurs
|
|
2523
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2523
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
|
|
2524
2524
|
*/
|
|
2525
2525
|
cancelSenderInvitation(cancelSenderInvitationRequest) {
|
|
2526
2526
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2579,7 +2579,7 @@ class SenderInvitationClient {
|
|
|
2579
2579
|
* @param CreateSenderInvitationRequest
|
|
2580
2580
|
* @return CreateSenderInvitationResponse
|
|
2581
2581
|
* @throws OciError when an error occurs
|
|
2582
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2582
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
|
|
2583
2583
|
*/
|
|
2584
2584
|
createSenderInvitation(createSenderInvitationRequest) {
|
|
2585
2585
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2645,7 +2645,7 @@ class SenderInvitationClient {
|
|
|
2645
2645
|
* @param GetSenderInvitationRequest
|
|
2646
2646
|
* @return GetSenderInvitationResponse
|
|
2647
2647
|
* @throws OciError when an error occurs
|
|
2648
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2648
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
|
|
2649
2649
|
*/
|
|
2650
2650
|
getSenderInvitation(getSenderInvitationRequest) {
|
|
2651
2651
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2707,7 +2707,7 @@ class SenderInvitationClient {
|
|
|
2707
2707
|
* @param ListSenderInvitationsRequest
|
|
2708
2708
|
* @return ListSenderInvitationsResponse
|
|
2709
2709
|
* @throws OciError when an error occurs
|
|
2710
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2710
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
|
|
2711
2711
|
*/
|
|
2712
2712
|
listSenderInvitations(listSenderInvitationsRequest) {
|
|
2713
2713
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2776,7 +2776,7 @@ class SenderInvitationClient {
|
|
|
2776
2776
|
* @param UpdateSenderInvitationRequest
|
|
2777
2777
|
* @return UpdateSenderInvitationResponse
|
|
2778
2778
|
* @throws OciError when an error occurs
|
|
2779
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2779
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
|
|
2780
2780
|
*/
|
|
2781
2781
|
updateSenderInvitation(updateSenderInvitationRequest) {
|
|
2782
2782
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2840,7 +2840,7 @@ var SubscriptionApiKeys;
|
|
|
2840
2840
|
(function (SubscriptionApiKeys) {
|
|
2841
2841
|
})(SubscriptionApiKeys = exports.SubscriptionApiKeys || (exports.SubscriptionApiKeys = {}));
|
|
2842
2842
|
/**
|
|
2843
|
-
* This service client
|
|
2843
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
2844
2844
|
*/
|
|
2845
2845
|
class SubscriptionClient {
|
|
2846
2846
|
constructor(params, clientConfiguration) {
|
|
@@ -2857,7 +2857,7 @@ class SubscriptionClient {
|
|
|
2857
2857
|
: null;
|
|
2858
2858
|
}
|
|
2859
2859
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
2860
|
-
const specCircuitBreakerEnabled =
|
|
2860
|
+
const specCircuitBreakerEnabled = true;
|
|
2861
2861
|
if (!this._circuitBreaker &&
|
|
2862
2862
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
2863
2863
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -2938,7 +2938,7 @@ class SubscriptionClient {
|
|
|
2938
2938
|
* @param CreateSubscriptionMappingRequest
|
|
2939
2939
|
* @return CreateSubscriptionMappingResponse
|
|
2940
2940
|
* @throws OciError when an error occurs
|
|
2941
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2941
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
|
|
2942
2942
|
*/
|
|
2943
2943
|
createSubscriptionMapping(createSubscriptionMappingRequest) {
|
|
2944
2944
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3005,7 +3005,7 @@ class SubscriptionClient {
|
|
|
3005
3005
|
* @param DeleteSubscriptionMappingRequest
|
|
3006
3006
|
* @return DeleteSubscriptionMappingResponse
|
|
3007
3007
|
* @throws OciError when an error occurs
|
|
3008
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3008
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
|
|
3009
3009
|
*/
|
|
3010
3010
|
deleteSubscriptionMapping(deleteSubscriptionMappingRequest) {
|
|
3011
3011
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3058,7 +3058,7 @@ class SubscriptionClient {
|
|
|
3058
3058
|
* @param GetAssignedSubscriptionRequest
|
|
3059
3059
|
* @return GetAssignedSubscriptionResponse
|
|
3060
3060
|
* @throws OciError when an error occurs
|
|
3061
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3061
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
|
|
3062
3062
|
*/
|
|
3063
3063
|
getAssignedSubscription(getAssignedSubscriptionRequest) {
|
|
3064
3064
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3119,7 +3119,7 @@ class SubscriptionClient {
|
|
|
3119
3119
|
* @param GetSubscriptionRequest
|
|
3120
3120
|
* @return GetSubscriptionResponse
|
|
3121
3121
|
* @throws OciError when an error occurs
|
|
3122
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3122
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
|
|
3123
3123
|
*/
|
|
3124
3124
|
getSubscription(getSubscriptionRequest) {
|
|
3125
3125
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3180,7 +3180,7 @@ class SubscriptionClient {
|
|
|
3180
3180
|
* @param GetSubscriptionMappingRequest
|
|
3181
3181
|
* @return GetSubscriptionMappingResponse
|
|
3182
3182
|
* @throws OciError when an error occurs
|
|
3183
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
|
|
3184
3184
|
*/
|
|
3185
3185
|
getSubscriptionMapping(getSubscriptionMappingRequest) {
|
|
3186
3186
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3241,7 +3241,7 @@ class SubscriptionClient {
|
|
|
3241
3241
|
* @param ListAssignedSubscriptionsRequest
|
|
3242
3242
|
* @return ListAssignedSubscriptionsResponse
|
|
3243
3243
|
* @throws OciError when an error occurs
|
|
3244
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3244
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
|
|
3245
3245
|
*/
|
|
3246
3246
|
listAssignedSubscriptions(listAssignedSubscriptionsRequest) {
|
|
3247
3247
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3307,7 +3307,7 @@ class SubscriptionClient {
|
|
|
3307
3307
|
* @param ListAvailableRegionsRequest
|
|
3308
3308
|
* @return ListAvailableRegionsResponse
|
|
3309
3309
|
* @throws OciError when an error occurs
|
|
3310
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3310
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
|
|
3311
3311
|
*/
|
|
3312
3312
|
listAvailableRegions(listAvailableRegionsRequest) {
|
|
3313
3313
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3370,7 +3370,7 @@ class SubscriptionClient {
|
|
|
3370
3370
|
* @param ListSubscriptionMappingsRequest
|
|
3371
3371
|
* @return ListSubscriptionMappingsResponse
|
|
3372
3372
|
* @throws OciError when an error occurs
|
|
3373
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3373
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
|
|
3374
3374
|
*/
|
|
3375
3375
|
listSubscriptionMappings(listSubscriptionMappingsRequest) {
|
|
3376
3376
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3438,7 +3438,7 @@ class SubscriptionClient {
|
|
|
3438
3438
|
* @param ListSubscriptionsRequest
|
|
3439
3439
|
* @return ListSubscriptionsResponse
|
|
3440
3440
|
* @throws OciError when an error occurs
|
|
3441
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3441
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
|
|
3442
3442
|
*/
|
|
3443
3443
|
listSubscriptions(listSubscriptionsRequest) {
|
|
3444
3444
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3505,7 +3505,7 @@ var WorkRequestApiKeys;
|
|
|
3505
3505
|
(function (WorkRequestApiKeys) {
|
|
3506
3506
|
})(WorkRequestApiKeys = exports.WorkRequestApiKeys || (exports.WorkRequestApiKeys = {}));
|
|
3507
3507
|
/**
|
|
3508
|
-
* This service client
|
|
3508
|
+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
|
|
3509
3509
|
*/
|
|
3510
3510
|
class WorkRequestClient {
|
|
3511
3511
|
constructor(params, clientConfiguration) {
|
|
@@ -3522,7 +3522,7 @@ class WorkRequestClient {
|
|
|
3522
3522
|
: null;
|
|
3523
3523
|
}
|
|
3524
3524
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
3525
|
-
const specCircuitBreakerEnabled =
|
|
3525
|
+
const specCircuitBreakerEnabled = true;
|
|
3526
3526
|
if (!this._circuitBreaker &&
|
|
3527
3527
|
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
3528
3528
|
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
@@ -3603,7 +3603,7 @@ class WorkRequestClient {
|
|
|
3603
3603
|
* @param GetWorkRequestRequest
|
|
3604
3604
|
* @return GetWorkRequestResponse
|
|
3605
3605
|
* @throws OciError when an error occurs
|
|
3606
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3606
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
3607
3607
|
*/
|
|
3608
3608
|
getWorkRequest(getWorkRequestRequest) {
|
|
3609
3609
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3665,7 +3665,7 @@ class WorkRequestClient {
|
|
|
3665
3665
|
* @param ListWorkRequestErrorsRequest
|
|
3666
3666
|
* @return ListWorkRequestErrorsResponse
|
|
3667
3667
|
* @throws OciError when an error occurs
|
|
3668
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3668
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
3669
3669
|
*/
|
|
3670
3670
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
3671
3671
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3731,7 +3731,7 @@ class WorkRequestClient {
|
|
|
3731
3731
|
* @param ListWorkRequestLogsRequest
|
|
3732
3732
|
* @return ListWorkRequestLogsResponse
|
|
3733
3733
|
* @throws OciError when an error occurs
|
|
3734
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3734
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
3735
3735
|
*/
|
|
3736
3736
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
3737
3737
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3797,7 +3797,7 @@ class WorkRequestClient {
|
|
|
3797
3797
|
* @param ListWorkRequestsRequest
|
|
3798
3798
|
* @return ListWorkRequestsResponse
|
|
3799
3799
|
* @throws OciError when an error occurs
|
|
3800
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3800
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.10.0/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
3801
3801
|
*/
|
|
3802
3802
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3803
3803
|
return __awaiter(this, void 0, void 0, function* () {
|