oci-tenantmanagercontrolplane 2.12.1 → 2.15.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 -47
- package/lib/client.js +74 -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
|
@@ -117,7 +117,7 @@ class DomainClient {
|
|
|
117
117
|
* @param region The region of the service.
|
|
118
118
|
*/
|
|
119
119
|
set region(region) {
|
|
120
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(DomainClient.serviceEndpointTemplate, region);
|
|
120
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(DomainClient.serviceEndpointTemplate, region, DomainClient.endpointServiceName);
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
123
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -128,7 +128,7 @@ class DomainClient {
|
|
|
128
128
|
* @param regionId The public region ID.
|
|
129
129
|
*/
|
|
130
130
|
set regionId(regionId) {
|
|
131
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(DomainClient.serviceEndpointTemplate, regionId);
|
|
131
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(DomainClient.serviceEndpointTemplate, regionId, DomainClient.endpointServiceName);
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
134
|
* Creates a new DomainWaiter for resources for this service.
|
|
@@ -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.15.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.15.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.15.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.15.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.15.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* () {
|
|
@@ -467,6 +467,7 @@ class DomainClient {
|
|
|
467
467
|
}
|
|
468
468
|
exports.DomainClient = DomainClient;
|
|
469
469
|
DomainClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
470
|
+
DomainClient.endpointServiceName = "";
|
|
470
471
|
var DomainGovernanceApiKeys;
|
|
471
472
|
(function (DomainGovernanceApiKeys) {
|
|
472
473
|
})(DomainGovernanceApiKeys = exports.DomainGovernanceApiKeys || (exports.DomainGovernanceApiKeys = {}));
|
|
@@ -529,7 +530,7 @@ class DomainGovernanceClient {
|
|
|
529
530
|
* @param region The region of the service.
|
|
530
531
|
*/
|
|
531
532
|
set region(region) {
|
|
532
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(DomainGovernanceClient.serviceEndpointTemplate, region);
|
|
533
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(DomainGovernanceClient.serviceEndpointTemplate, region, DomainGovernanceClient.endpointServiceName);
|
|
533
534
|
}
|
|
534
535
|
/**
|
|
535
536
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -540,7 +541,7 @@ class DomainGovernanceClient {
|
|
|
540
541
|
* @param regionId The public region ID.
|
|
541
542
|
*/
|
|
542
543
|
set regionId(regionId) {
|
|
543
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(DomainGovernanceClient.serviceEndpointTemplate, regionId);
|
|
544
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(DomainGovernanceClient.serviceEndpointTemplate, regionId, DomainGovernanceClient.endpointServiceName);
|
|
544
545
|
}
|
|
545
546
|
/**
|
|
546
547
|
* Creates a new DomainGovernanceWaiter for resources for this service.
|
|
@@ -569,7 +570,7 @@ class DomainGovernanceClient {
|
|
|
569
570
|
* @param CreateDomainGovernanceRequest
|
|
570
571
|
* @return CreateDomainGovernanceResponse
|
|
571
572
|
* @throws OciError when an error occurs
|
|
572
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
573
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
|
|
573
574
|
*/
|
|
574
575
|
createDomainGovernance(createDomainGovernanceRequest) {
|
|
575
576
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -630,7 +631,7 @@ class DomainGovernanceClient {
|
|
|
630
631
|
* @param DeleteDomainGovernanceRequest
|
|
631
632
|
* @return DeleteDomainGovernanceResponse
|
|
632
633
|
* @throws OciError when an error occurs
|
|
633
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
634
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
|
|
634
635
|
*/
|
|
635
636
|
deleteDomainGovernance(deleteDomainGovernanceRequest) {
|
|
636
637
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -683,7 +684,7 @@ class DomainGovernanceClient {
|
|
|
683
684
|
* @param GetDomainGovernanceRequest
|
|
684
685
|
* @return GetDomainGovernanceResponse
|
|
685
686
|
* @throws OciError when an error occurs
|
|
686
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
687
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
|
|
687
688
|
*/
|
|
688
689
|
getDomainGovernance(getDomainGovernanceRequest) {
|
|
689
690
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -745,7 +746,7 @@ class DomainGovernanceClient {
|
|
|
745
746
|
* @param ListDomainGovernancesRequest
|
|
746
747
|
* @return ListDomainGovernancesResponse
|
|
747
748
|
* @throws OciError when an error occurs
|
|
748
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
749
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
|
|
749
750
|
*/
|
|
750
751
|
listDomainGovernances(listDomainGovernancesRequest) {
|
|
751
752
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -814,7 +815,7 @@ class DomainGovernanceClient {
|
|
|
814
815
|
* @param UpdateDomainGovernanceRequest
|
|
815
816
|
* @return UpdateDomainGovernanceResponse
|
|
816
817
|
* @throws OciError when an error occurs
|
|
817
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
818
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
|
|
818
819
|
*/
|
|
819
820
|
updateDomainGovernance(updateDomainGovernanceRequest) {
|
|
820
821
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -874,6 +875,7 @@ class DomainGovernanceClient {
|
|
|
874
875
|
}
|
|
875
876
|
exports.DomainGovernanceClient = DomainGovernanceClient;
|
|
876
877
|
DomainGovernanceClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
878
|
+
DomainGovernanceClient.endpointServiceName = "";
|
|
877
879
|
var LinkApiKeys;
|
|
878
880
|
(function (LinkApiKeys) {
|
|
879
881
|
})(LinkApiKeys = exports.LinkApiKeys || (exports.LinkApiKeys = {}));
|
|
@@ -936,7 +938,7 @@ class LinkClient {
|
|
|
936
938
|
* @param region The region of the service.
|
|
937
939
|
*/
|
|
938
940
|
set region(region) {
|
|
939
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(LinkClient.serviceEndpointTemplate, region);
|
|
941
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(LinkClient.serviceEndpointTemplate, region, LinkClient.endpointServiceName);
|
|
940
942
|
}
|
|
941
943
|
/**
|
|
942
944
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -947,7 +949,7 @@ class LinkClient {
|
|
|
947
949
|
* @param regionId The public region ID.
|
|
948
950
|
*/
|
|
949
951
|
set regionId(regionId) {
|
|
950
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(LinkClient.serviceEndpointTemplate, regionId);
|
|
952
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(LinkClient.serviceEndpointTemplate, regionId, LinkClient.endpointServiceName);
|
|
951
953
|
}
|
|
952
954
|
/**
|
|
953
955
|
* Creates a new LinkWaiter for resources for this service.
|
|
@@ -976,7 +978,7 @@ class LinkClient {
|
|
|
976
978
|
* @param DeleteLinkRequest
|
|
977
979
|
* @return DeleteLinkResponse
|
|
978
980
|
* @throws OciError when an error occurs
|
|
979
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
981
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
|
|
980
982
|
*/
|
|
981
983
|
deleteLink(deleteLinkRequest) {
|
|
982
984
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1034,7 +1036,7 @@ class LinkClient {
|
|
|
1034
1036
|
* @param GetLinkRequest
|
|
1035
1037
|
* @return GetLinkResponse
|
|
1036
1038
|
* @throws OciError when an error occurs
|
|
1037
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1039
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
|
|
1038
1040
|
*/
|
|
1039
1041
|
getLink(getLinkRequest) {
|
|
1040
1042
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1095,7 +1097,7 @@ class LinkClient {
|
|
|
1095
1097
|
* @param ListLinksRequest
|
|
1096
1098
|
* @return ListLinksResponse
|
|
1097
1099
|
* @throws OciError when an error occurs
|
|
1098
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
|
|
1099
1101
|
*/
|
|
1100
1102
|
listLinks(listLinksRequest) {
|
|
1101
1103
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1158,6 +1160,7 @@ class LinkClient {
|
|
|
1158
1160
|
}
|
|
1159
1161
|
exports.LinkClient = LinkClient;
|
|
1160
1162
|
LinkClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
1163
|
+
LinkClient.endpointServiceName = "";
|
|
1161
1164
|
var OrdersApiKeys;
|
|
1162
1165
|
(function (OrdersApiKeys) {
|
|
1163
1166
|
})(OrdersApiKeys = exports.OrdersApiKeys || (exports.OrdersApiKeys = {}));
|
|
@@ -1220,7 +1223,7 @@ class OrdersClient {
|
|
|
1220
1223
|
* @param region The region of the service.
|
|
1221
1224
|
*/
|
|
1222
1225
|
set region(region) {
|
|
1223
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(OrdersClient.serviceEndpointTemplate, region);
|
|
1226
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(OrdersClient.serviceEndpointTemplate, region, OrdersClient.endpointServiceName);
|
|
1224
1227
|
}
|
|
1225
1228
|
/**
|
|
1226
1229
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -1231,7 +1234,7 @@ class OrdersClient {
|
|
|
1231
1234
|
* @param regionId The public region ID.
|
|
1232
1235
|
*/
|
|
1233
1236
|
set regionId(regionId) {
|
|
1234
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(OrdersClient.serviceEndpointTemplate, regionId);
|
|
1237
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(OrdersClient.serviceEndpointTemplate, regionId, OrdersClient.endpointServiceName);
|
|
1235
1238
|
}
|
|
1236
1239
|
/**
|
|
1237
1240
|
* Triggers an order activation workflow on behalf of the tenant, given by compartment ID in the body.
|
|
@@ -1239,7 +1242,7 @@ class OrdersClient {
|
|
|
1239
1242
|
* @param ActivateOrderRequest
|
|
1240
1243
|
* @return ActivateOrderResponse
|
|
1241
1244
|
* @throws OciError when an error occurs
|
|
1242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1245
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
|
|
1243
1246
|
*/
|
|
1244
1247
|
activateOrder(activateOrderRequest) {
|
|
1245
1248
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1299,7 +1302,7 @@ class OrdersClient {
|
|
|
1299
1302
|
* @param GetOrderRequest
|
|
1300
1303
|
* @return GetOrderResponse
|
|
1301
1304
|
* @throws OciError when an error occurs
|
|
1302
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1305
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
|
|
1303
1306
|
*/
|
|
1304
1307
|
getOrder(getOrderRequest) {
|
|
1305
1308
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1352,6 +1355,7 @@ class OrdersClient {
|
|
|
1352
1355
|
}
|
|
1353
1356
|
exports.OrdersClient = OrdersClient;
|
|
1354
1357
|
OrdersClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
1358
|
+
OrdersClient.endpointServiceName = "";
|
|
1355
1359
|
var OrganizationApiKeys;
|
|
1356
1360
|
(function (OrganizationApiKeys) {
|
|
1357
1361
|
})(OrganizationApiKeys = exports.OrganizationApiKeys || (exports.OrganizationApiKeys = {}));
|
|
@@ -1414,7 +1418,7 @@ class OrganizationClient {
|
|
|
1414
1418
|
* @param region The region of the service.
|
|
1415
1419
|
*/
|
|
1416
1420
|
set region(region) {
|
|
1417
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(OrganizationClient.serviceEndpointTemplate, region);
|
|
1421
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(OrganizationClient.serviceEndpointTemplate, region, OrganizationClient.endpointServiceName);
|
|
1418
1422
|
}
|
|
1419
1423
|
/**
|
|
1420
1424
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -1425,7 +1429,7 @@ class OrganizationClient {
|
|
|
1425
1429
|
* @param regionId The public region ID.
|
|
1426
1430
|
*/
|
|
1427
1431
|
set regionId(regionId) {
|
|
1428
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(OrganizationClient.serviceEndpointTemplate, regionId);
|
|
1432
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(OrganizationClient.serviceEndpointTemplate, regionId, OrganizationClient.endpointServiceName);
|
|
1429
1433
|
}
|
|
1430
1434
|
/**
|
|
1431
1435
|
* Creates a new OrganizationWaiter for resources for this service.
|
|
@@ -1454,7 +1458,7 @@ class OrganizationClient {
|
|
|
1454
1458
|
* @param ApproveOrganizationTenancyForTransferRequest
|
|
1455
1459
|
* @return ApproveOrganizationTenancyForTransferResponse
|
|
1456
1460
|
* @throws OciError when an error occurs
|
|
1457
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1461
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
|
|
1458
1462
|
*/
|
|
1459
1463
|
approveOrganizationTenancyForTransfer(approveOrganizationTenancyForTransferRequest) {
|
|
1460
1464
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1519,7 +1523,7 @@ class OrganizationClient {
|
|
|
1519
1523
|
* @param CreateChildTenancyRequest
|
|
1520
1524
|
* @return CreateChildTenancyResponse
|
|
1521
1525
|
* @throws OciError when an error occurs
|
|
1522
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1526
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
|
|
1523
1527
|
*/
|
|
1524
1528
|
createChildTenancy(createChildTenancyRequest) {
|
|
1525
1529
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1576,7 +1580,7 @@ class OrganizationClient {
|
|
|
1576
1580
|
* @param DeleteOrganizationTenancyRequest
|
|
1577
1581
|
* @return DeleteOrganizationTenancyResponse
|
|
1578
1582
|
* @throws OciError when an error occurs
|
|
1579
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1583
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
|
|
1580
1584
|
*/
|
|
1581
1585
|
deleteOrganizationTenancy(deleteOrganizationTenancyRequest) {
|
|
1582
1586
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1635,7 +1639,7 @@ class OrganizationClient {
|
|
|
1635
1639
|
* @param GetOrganizationRequest
|
|
1636
1640
|
* @return GetOrganizationResponse
|
|
1637
1641
|
* @throws OciError when an error occurs
|
|
1638
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1642
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
|
|
1639
1643
|
*/
|
|
1640
1644
|
getOrganization(getOrganizationRequest) {
|
|
1641
1645
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1696,7 +1700,7 @@ class OrganizationClient {
|
|
|
1696
1700
|
* @param GetOrganizationTenancyRequest
|
|
1697
1701
|
* @return GetOrganizationTenancyResponse
|
|
1698
1702
|
* @throws OciError when an error occurs
|
|
1699
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1703
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
|
|
1700
1704
|
*/
|
|
1701
1705
|
getOrganizationTenancy(getOrganizationTenancyRequest) {
|
|
1702
1706
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1758,7 +1762,7 @@ class OrganizationClient {
|
|
|
1758
1762
|
* @param ListOrganizationTenanciesRequest
|
|
1759
1763
|
* @return ListOrganizationTenanciesResponse
|
|
1760
1764
|
* @throws OciError when an error occurs
|
|
1761
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1765
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
|
|
1762
1766
|
*/
|
|
1763
1767
|
listOrganizationTenancies(listOrganizationTenanciesRequest) {
|
|
1764
1768
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1822,7 +1826,7 @@ class OrganizationClient {
|
|
|
1822
1826
|
* @param ListOrganizationsRequest
|
|
1823
1827
|
* @return ListOrganizationsResponse
|
|
1824
1828
|
* @throws OciError when an error occurs
|
|
1825
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1829
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
|
|
1826
1830
|
*/
|
|
1827
1831
|
listOrganizations(listOrganizationsRequest) {
|
|
1828
1832
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1885,7 +1889,7 @@ class OrganizationClient {
|
|
|
1885
1889
|
* @param UnapproveOrganizationTenancyForTransferRequest
|
|
1886
1890
|
* @return UnapproveOrganizationTenancyForTransferResponse
|
|
1887
1891
|
* @throws OciError when an error occurs
|
|
1888
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1892
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
|
|
1889
1893
|
*/
|
|
1890
1894
|
unapproveOrganizationTenancyForTransfer(unapproveOrganizationTenancyForTransferRequest) {
|
|
1891
1895
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1950,7 +1954,7 @@ class OrganizationClient {
|
|
|
1950
1954
|
* @param UpdateOrganizationRequest
|
|
1951
1955
|
* @return UpdateOrganizationResponse
|
|
1952
1956
|
* @throws OciError when an error occurs
|
|
1953
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1957
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
|
|
1954
1958
|
*/
|
|
1955
1959
|
updateOrganization(updateOrganizationRequest) {
|
|
1956
1960
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2007,6 +2011,7 @@ class OrganizationClient {
|
|
|
2007
2011
|
}
|
|
2008
2012
|
exports.OrganizationClient = OrganizationClient;
|
|
2009
2013
|
OrganizationClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
2014
|
+
OrganizationClient.endpointServiceName = "";
|
|
2010
2015
|
var RecipientInvitationApiKeys;
|
|
2011
2016
|
(function (RecipientInvitationApiKeys) {
|
|
2012
2017
|
})(RecipientInvitationApiKeys = exports.RecipientInvitationApiKeys || (exports.RecipientInvitationApiKeys = {}));
|
|
@@ -2069,7 +2074,7 @@ class RecipientInvitationClient {
|
|
|
2069
2074
|
* @param region The region of the service.
|
|
2070
2075
|
*/
|
|
2071
2076
|
set region(region) {
|
|
2072
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(RecipientInvitationClient.serviceEndpointTemplate, region);
|
|
2077
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(RecipientInvitationClient.serviceEndpointTemplate, region, RecipientInvitationClient.endpointServiceName);
|
|
2073
2078
|
}
|
|
2074
2079
|
/**
|
|
2075
2080
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -2080,7 +2085,7 @@ class RecipientInvitationClient {
|
|
|
2080
2085
|
* @param regionId The public region ID.
|
|
2081
2086
|
*/
|
|
2082
2087
|
set regionId(regionId) {
|
|
2083
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(RecipientInvitationClient.serviceEndpointTemplate, regionId);
|
|
2088
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(RecipientInvitationClient.serviceEndpointTemplate, regionId, RecipientInvitationClient.endpointServiceName);
|
|
2084
2089
|
}
|
|
2085
2090
|
/**
|
|
2086
2091
|
* Creates a new RecipientInvitationWaiter for resources for this service.
|
|
@@ -2109,7 +2114,7 @@ class RecipientInvitationClient {
|
|
|
2109
2114
|
* @param AcceptRecipientInvitationRequest
|
|
2110
2115
|
* @return AcceptRecipientInvitationResponse
|
|
2111
2116
|
* @throws OciError when an error occurs
|
|
2112
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2117
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
|
|
2113
2118
|
*/
|
|
2114
2119
|
acceptRecipientInvitation(acceptRecipientInvitationRequest) {
|
|
2115
2120
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2168,7 +2173,7 @@ class RecipientInvitationClient {
|
|
|
2168
2173
|
* @param GetRecipientInvitationRequest
|
|
2169
2174
|
* @return GetRecipientInvitationResponse
|
|
2170
2175
|
* @throws OciError when an error occurs
|
|
2171
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2176
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
|
|
2172
2177
|
*/
|
|
2173
2178
|
getRecipientInvitation(getRecipientInvitationRequest) {
|
|
2174
2179
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2229,7 +2234,7 @@ class RecipientInvitationClient {
|
|
|
2229
2234
|
* @param IgnoreRecipientInvitationRequest
|
|
2230
2235
|
* @return IgnoreRecipientInvitationResponse
|
|
2231
2236
|
* @throws OciError when an error occurs
|
|
2232
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2237
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
|
|
2233
2238
|
*/
|
|
2234
2239
|
ignoreRecipientInvitation(ignoreRecipientInvitationRequest) {
|
|
2235
2240
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2293,7 +2298,7 @@ class RecipientInvitationClient {
|
|
|
2293
2298
|
* @param ListRecipientInvitationsRequest
|
|
2294
2299
|
* @return ListRecipientInvitationsResponse
|
|
2295
2300
|
* @throws OciError when an error occurs
|
|
2296
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2301
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
|
|
2297
2302
|
*/
|
|
2298
2303
|
listRecipientInvitations(listRecipientInvitationsRequest) {
|
|
2299
2304
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2358,7 +2363,7 @@ class RecipientInvitationClient {
|
|
|
2358
2363
|
* @param UpdateRecipientInvitationRequest
|
|
2359
2364
|
* @return UpdateRecipientInvitationResponse
|
|
2360
2365
|
* @throws OciError when an error occurs
|
|
2361
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2366
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
|
|
2362
2367
|
*/
|
|
2363
2368
|
updateRecipientInvitation(updateRecipientInvitationRequest) {
|
|
2364
2369
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2418,6 +2423,7 @@ class RecipientInvitationClient {
|
|
|
2418
2423
|
}
|
|
2419
2424
|
exports.RecipientInvitationClient = RecipientInvitationClient;
|
|
2420
2425
|
RecipientInvitationClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
2426
|
+
RecipientInvitationClient.endpointServiceName = "";
|
|
2421
2427
|
var SenderInvitationApiKeys;
|
|
2422
2428
|
(function (SenderInvitationApiKeys) {
|
|
2423
2429
|
})(SenderInvitationApiKeys = exports.SenderInvitationApiKeys || (exports.SenderInvitationApiKeys = {}));
|
|
@@ -2480,7 +2486,7 @@ class SenderInvitationClient {
|
|
|
2480
2486
|
* @param region The region of the service.
|
|
2481
2487
|
*/
|
|
2482
2488
|
set region(region) {
|
|
2483
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(SenderInvitationClient.serviceEndpointTemplate, region);
|
|
2489
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(SenderInvitationClient.serviceEndpointTemplate, region, SenderInvitationClient.endpointServiceName);
|
|
2484
2490
|
}
|
|
2485
2491
|
/**
|
|
2486
2492
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -2491,7 +2497,7 @@ class SenderInvitationClient {
|
|
|
2491
2497
|
* @param regionId The public region ID.
|
|
2492
2498
|
*/
|
|
2493
2499
|
set regionId(regionId) {
|
|
2494
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(SenderInvitationClient.serviceEndpointTemplate, regionId);
|
|
2500
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(SenderInvitationClient.serviceEndpointTemplate, regionId, SenderInvitationClient.endpointServiceName);
|
|
2495
2501
|
}
|
|
2496
2502
|
/**
|
|
2497
2503
|
* Creates a new SenderInvitationWaiter for resources for this service.
|
|
@@ -2520,7 +2526,7 @@ class SenderInvitationClient {
|
|
|
2520
2526
|
* @param CancelSenderInvitationRequest
|
|
2521
2527
|
* @return CancelSenderInvitationResponse
|
|
2522
2528
|
* @throws OciError when an error occurs
|
|
2523
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2529
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
|
|
2524
2530
|
*/
|
|
2525
2531
|
cancelSenderInvitation(cancelSenderInvitationRequest) {
|
|
2526
2532
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2579,7 +2585,7 @@ class SenderInvitationClient {
|
|
|
2579
2585
|
* @param CreateSenderInvitationRequest
|
|
2580
2586
|
* @return CreateSenderInvitationResponse
|
|
2581
2587
|
* @throws OciError when an error occurs
|
|
2582
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2588
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
|
|
2583
2589
|
*/
|
|
2584
2590
|
createSenderInvitation(createSenderInvitationRequest) {
|
|
2585
2591
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2645,7 +2651,7 @@ class SenderInvitationClient {
|
|
|
2645
2651
|
* @param GetSenderInvitationRequest
|
|
2646
2652
|
* @return GetSenderInvitationResponse
|
|
2647
2653
|
* @throws OciError when an error occurs
|
|
2648
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2654
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
|
|
2649
2655
|
*/
|
|
2650
2656
|
getSenderInvitation(getSenderInvitationRequest) {
|
|
2651
2657
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2707,7 +2713,7 @@ class SenderInvitationClient {
|
|
|
2707
2713
|
* @param ListSenderInvitationsRequest
|
|
2708
2714
|
* @return ListSenderInvitationsResponse
|
|
2709
2715
|
* @throws OciError when an error occurs
|
|
2710
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2716
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
|
|
2711
2717
|
*/
|
|
2712
2718
|
listSenderInvitations(listSenderInvitationsRequest) {
|
|
2713
2719
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2776,7 +2782,7 @@ class SenderInvitationClient {
|
|
|
2776
2782
|
* @param UpdateSenderInvitationRequest
|
|
2777
2783
|
* @return UpdateSenderInvitationResponse
|
|
2778
2784
|
* @throws OciError when an error occurs
|
|
2779
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2785
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
|
|
2780
2786
|
*/
|
|
2781
2787
|
updateSenderInvitation(updateSenderInvitationRequest) {
|
|
2782
2788
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2836,6 +2842,7 @@ class SenderInvitationClient {
|
|
|
2836
2842
|
}
|
|
2837
2843
|
exports.SenderInvitationClient = SenderInvitationClient;
|
|
2838
2844
|
SenderInvitationClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
2845
|
+
SenderInvitationClient.endpointServiceName = "";
|
|
2839
2846
|
var SubscriptionApiKeys;
|
|
2840
2847
|
(function (SubscriptionApiKeys) {
|
|
2841
2848
|
})(SubscriptionApiKeys = exports.SubscriptionApiKeys || (exports.SubscriptionApiKeys = {}));
|
|
@@ -2898,7 +2905,7 @@ class SubscriptionClient {
|
|
|
2898
2905
|
* @param region The region of the service.
|
|
2899
2906
|
*/
|
|
2900
2907
|
set region(region) {
|
|
2901
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(SubscriptionClient.serviceEndpointTemplate, region);
|
|
2908
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(SubscriptionClient.serviceEndpointTemplate, region, SubscriptionClient.endpointServiceName);
|
|
2902
2909
|
}
|
|
2903
2910
|
/**
|
|
2904
2911
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -2909,7 +2916,7 @@ class SubscriptionClient {
|
|
|
2909
2916
|
* @param regionId The public region ID.
|
|
2910
2917
|
*/
|
|
2911
2918
|
set regionId(regionId) {
|
|
2912
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(SubscriptionClient.serviceEndpointTemplate, regionId);
|
|
2919
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(SubscriptionClient.serviceEndpointTemplate, regionId, SubscriptionClient.endpointServiceName);
|
|
2913
2920
|
}
|
|
2914
2921
|
/**
|
|
2915
2922
|
* Creates a new SubscriptionWaiter for resources for this service.
|
|
@@ -2938,7 +2945,7 @@ class SubscriptionClient {
|
|
|
2938
2945
|
* @param CreateSubscriptionMappingRequest
|
|
2939
2946
|
* @return CreateSubscriptionMappingResponse
|
|
2940
2947
|
* @throws OciError when an error occurs
|
|
2941
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2948
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
|
|
2942
2949
|
*/
|
|
2943
2950
|
createSubscriptionMapping(createSubscriptionMappingRequest) {
|
|
2944
2951
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3005,7 +3012,7 @@ class SubscriptionClient {
|
|
|
3005
3012
|
* @param DeleteSubscriptionMappingRequest
|
|
3006
3013
|
* @return DeleteSubscriptionMappingResponse
|
|
3007
3014
|
* @throws OciError when an error occurs
|
|
3008
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3015
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
|
|
3009
3016
|
*/
|
|
3010
3017
|
deleteSubscriptionMapping(deleteSubscriptionMappingRequest) {
|
|
3011
3018
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3058,7 +3065,7 @@ class SubscriptionClient {
|
|
|
3058
3065
|
* @param GetAssignedSubscriptionRequest
|
|
3059
3066
|
* @return GetAssignedSubscriptionResponse
|
|
3060
3067
|
* @throws OciError when an error occurs
|
|
3061
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3068
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
|
|
3062
3069
|
*/
|
|
3063
3070
|
getAssignedSubscription(getAssignedSubscriptionRequest) {
|
|
3064
3071
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3119,7 +3126,7 @@ class SubscriptionClient {
|
|
|
3119
3126
|
* @param GetSubscriptionRequest
|
|
3120
3127
|
* @return GetSubscriptionResponse
|
|
3121
3128
|
* @throws OciError when an error occurs
|
|
3122
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3129
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
|
|
3123
3130
|
*/
|
|
3124
3131
|
getSubscription(getSubscriptionRequest) {
|
|
3125
3132
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3180,7 +3187,7 @@ class SubscriptionClient {
|
|
|
3180
3187
|
* @param GetSubscriptionMappingRequest
|
|
3181
3188
|
* @return GetSubscriptionMappingResponse
|
|
3182
3189
|
* @throws OciError when an error occurs
|
|
3183
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3190
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
|
|
3184
3191
|
*/
|
|
3185
3192
|
getSubscriptionMapping(getSubscriptionMappingRequest) {
|
|
3186
3193
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3241,7 +3248,7 @@ class SubscriptionClient {
|
|
|
3241
3248
|
* @param ListAssignedSubscriptionsRequest
|
|
3242
3249
|
* @return ListAssignedSubscriptionsResponse
|
|
3243
3250
|
* @throws OciError when an error occurs
|
|
3244
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3251
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
|
|
3245
3252
|
*/
|
|
3246
3253
|
listAssignedSubscriptions(listAssignedSubscriptionsRequest) {
|
|
3247
3254
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3307,7 +3314,7 @@ class SubscriptionClient {
|
|
|
3307
3314
|
* @param ListAvailableRegionsRequest
|
|
3308
3315
|
* @return ListAvailableRegionsResponse
|
|
3309
3316
|
* @throws OciError when an error occurs
|
|
3310
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3317
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
|
|
3311
3318
|
*/
|
|
3312
3319
|
listAvailableRegions(listAvailableRegionsRequest) {
|
|
3313
3320
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3370,7 +3377,7 @@ class SubscriptionClient {
|
|
|
3370
3377
|
* @param ListSubscriptionMappingsRequest
|
|
3371
3378
|
* @return ListSubscriptionMappingsResponse
|
|
3372
3379
|
* @throws OciError when an error occurs
|
|
3373
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3380
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
|
|
3374
3381
|
*/
|
|
3375
3382
|
listSubscriptionMappings(listSubscriptionMappingsRequest) {
|
|
3376
3383
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3438,7 +3445,7 @@ class SubscriptionClient {
|
|
|
3438
3445
|
* @param ListSubscriptionsRequest
|
|
3439
3446
|
* @return ListSubscriptionsResponse
|
|
3440
3447
|
* @throws OciError when an error occurs
|
|
3441
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3448
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
|
|
3442
3449
|
*/
|
|
3443
3450
|
listSubscriptions(listSubscriptionsRequest) {
|
|
3444
3451
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3501,6 +3508,7 @@ class SubscriptionClient {
|
|
|
3501
3508
|
}
|
|
3502
3509
|
exports.SubscriptionClient = SubscriptionClient;
|
|
3503
3510
|
SubscriptionClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
3511
|
+
SubscriptionClient.endpointServiceName = "";
|
|
3504
3512
|
var WorkRequestApiKeys;
|
|
3505
3513
|
(function (WorkRequestApiKeys) {
|
|
3506
3514
|
})(WorkRequestApiKeys = exports.WorkRequestApiKeys || (exports.WorkRequestApiKeys = {}));
|
|
@@ -3563,7 +3571,7 @@ class WorkRequestClient {
|
|
|
3563
3571
|
* @param region The region of the service.
|
|
3564
3572
|
*/
|
|
3565
3573
|
set region(region) {
|
|
3566
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(WorkRequestClient.serviceEndpointTemplate, region);
|
|
3574
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(WorkRequestClient.serviceEndpointTemplate, region, WorkRequestClient.endpointServiceName);
|
|
3567
3575
|
}
|
|
3568
3576
|
/**
|
|
3569
3577
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -3574,7 +3582,7 @@ class WorkRequestClient {
|
|
|
3574
3582
|
* @param regionId The public region ID.
|
|
3575
3583
|
*/
|
|
3576
3584
|
set regionId(regionId) {
|
|
3577
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(WorkRequestClient.serviceEndpointTemplate, regionId);
|
|
3585
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(WorkRequestClient.serviceEndpointTemplate, regionId, WorkRequestClient.endpointServiceName);
|
|
3578
3586
|
}
|
|
3579
3587
|
/**
|
|
3580
3588
|
* Creates a new WorkRequestWaiter for resources for this service.
|
|
@@ -3603,7 +3611,7 @@ class WorkRequestClient {
|
|
|
3603
3611
|
* @param GetWorkRequestRequest
|
|
3604
3612
|
* @return GetWorkRequestResponse
|
|
3605
3613
|
* @throws OciError when an error occurs
|
|
3606
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3614
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
3607
3615
|
*/
|
|
3608
3616
|
getWorkRequest(getWorkRequestRequest) {
|
|
3609
3617
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3665,7 +3673,7 @@ class WorkRequestClient {
|
|
|
3665
3673
|
* @param ListWorkRequestErrorsRequest
|
|
3666
3674
|
* @return ListWorkRequestErrorsResponse
|
|
3667
3675
|
* @throws OciError when an error occurs
|
|
3668
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3676
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
3669
3677
|
*/
|
|
3670
3678
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
3671
3679
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3731,7 +3739,7 @@ class WorkRequestClient {
|
|
|
3731
3739
|
* @param ListWorkRequestLogsRequest
|
|
3732
3740
|
* @return ListWorkRequestLogsResponse
|
|
3733
3741
|
* @throws OciError when an error occurs
|
|
3734
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3742
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
3735
3743
|
*/
|
|
3736
3744
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
3737
3745
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3797,7 +3805,7 @@ class WorkRequestClient {
|
|
|
3797
3805
|
* @param ListWorkRequestsRequest
|
|
3798
3806
|
* @return ListWorkRequestsResponse
|
|
3799
3807
|
* @throws OciError when an error occurs
|
|
3800
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3808
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.15.0/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
3801
3809
|
*/
|
|
3802
3810
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3803
3811
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3858,4 +3866,5 @@ class WorkRequestClient {
|
|
|
3858
3866
|
}
|
|
3859
3867
|
exports.WorkRequestClient = WorkRequestClient;
|
|
3860
3868
|
WorkRequestClient.serviceEndpointTemplate = "https://organizations.{region}.oci.{secondLevelDomain}";
|
|
3869
|
+
WorkRequestClient.endpointServiceName = "";
|
|
3861
3870
|
//# sourceMappingURL=client.js.map
|