oci-tenantmanagercontrolplane 2.66.0 → 2.68.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 +62 -52
- package/lib/client.js +102 -62
- package/lib/client.js.map +1 -1
- package/lib/request/accept-recipient-invitation-request.d.ts +1 -1
- package/lib/request/activate-order-request.d.ts +1 -1
- package/lib/request/add-governance-request.d.ts +1 -1
- package/lib/request/approve-organization-tenancy-for-transfer-request.d.ts +1 -1
- package/lib/request/cancel-sender-invitation-request.d.ts +1 -1
- package/lib/request/create-child-tenancy-request.d.ts +1 -1
- package/lib/request/create-domain-governance-request.d.ts +1 -1
- package/lib/request/create-domain-request.d.ts +1 -1
- package/lib/request/create-sender-invitation-request.d.ts +1 -1
- package/lib/request/create-subscription-mapping-request.d.ts +1 -1
- package/lib/request/delete-domain-governance-request.d.ts +1 -1
- package/lib/request/delete-domain-request.d.ts +1 -1
- package/lib/request/delete-link-request.d.ts +1 -1
- package/lib/request/delete-organization-tenancy-request.d.ts +1 -1
- package/lib/request/delete-subscription-mapping-request.d.ts +1 -1
- package/lib/request/get-assigned-subscription-request.d.ts +1 -1
- package/lib/request/get-domain-governance-request.d.ts +1 -1
- package/lib/request/get-domain-request.d.ts +1 -1
- package/lib/request/get-link-request.d.ts +1 -1
- package/lib/request/get-order-request.d.ts +1 -1
- package/lib/request/get-organization-request.d.ts +1 -1
- package/lib/request/get-organization-tenancy-request.d.ts +1 -1
- package/lib/request/get-recipient-invitation-request.d.ts +1 -1
- package/lib/request/get-sender-invitation-request.d.ts +1 -1
- package/lib/request/get-subscription-mapping-request.d.ts +1 -1
- package/lib/request/get-subscription-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/ignore-recipient-invitation-request.d.ts +1 -1
- package/lib/request/list-assigned-subscription-line-items-request.d.ts +1 -1
- package/lib/request/list-assigned-subscriptions-request.d.ts +1 -1
- package/lib/request/list-available-regions-request.d.ts +1 -1
- package/lib/request/list-domain-governances-request.d.ts +1 -1
- package/lib/request/list-domains-request.d.ts +1 -1
- package/lib/request/list-links-request.d.ts +1 -1
- package/lib/request/list-organization-tenancies-request.d.ts +1 -1
- package/lib/request/list-organizations-request.d.ts +1 -1
- package/lib/request/list-recipient-invitations-request.d.ts +1 -1
- package/lib/request/list-sender-invitations-request.d.ts +1 -1
- package/lib/request/list-subscription-line-items-request.d.ts +1 -1
- package/lib/request/list-subscription-mappings-request.d.ts +1 -1
- package/lib/request/list-subscriptions-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/remove-governance-request.d.ts +1 -1
- package/lib/request/restore-organization-tenancy-request.d.ts +1 -1
- package/lib/request/unapprove-organization-tenancy-for-transfer-request.d.ts +1 -1
- package/lib/request/update-domain-governance-request.d.ts +1 -1
- package/lib/request/update-domain-request.d.ts +1 -1
- package/lib/request/update-organization-request.d.ts +1 -1
- package/lib/request/update-recipient-invitation-request.d.ts +1 -1
- package/lib/request/update-sender-invitation-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -68,6 +68,7 @@ class DomainClient {
|
|
|
68
68
|
this["_defaultHeaders"] = {};
|
|
69
69
|
this._circuitBreaker = null;
|
|
70
70
|
this._httpOptions = undefined;
|
|
71
|
+
this._bodyDuplexMode = undefined;
|
|
71
72
|
this.targetService = "Domain";
|
|
72
73
|
this._regionId = "";
|
|
73
74
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -82,6 +83,9 @@ class DomainClient {
|
|
|
82
83
|
this._httpOptions = clientConfiguration.httpOptions
|
|
83
84
|
? clientConfiguration.httpOptions
|
|
84
85
|
: undefined;
|
|
86
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
87
|
+
? clientConfiguration.bodyDuplexMode
|
|
88
|
+
: undefined;
|
|
85
89
|
}
|
|
86
90
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
87
91
|
const specCircuitBreakerEnabled = true;
|
|
@@ -92,7 +96,7 @@ class DomainClient {
|
|
|
92
96
|
}
|
|
93
97
|
this._httpClient =
|
|
94
98
|
params.httpClient ||
|
|
95
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
99
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
96
100
|
if (params.authenticationDetailsProvider &&
|
|
97
101
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
98
102
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -186,7 +190,7 @@ class DomainClient {
|
|
|
186
190
|
* @param CreateDomainRequest
|
|
187
191
|
* @return CreateDomainResponse
|
|
188
192
|
* @throws OciError when an error occurs
|
|
189
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
193
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/CreateDomain.ts.html |here} to see how to use CreateDomain API.
|
|
190
194
|
*/
|
|
191
195
|
createDomain(createDomainRequest) {
|
|
192
196
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -254,7 +258,7 @@ class DomainClient {
|
|
|
254
258
|
* @param DeleteDomainRequest
|
|
255
259
|
* @return DeleteDomainResponse
|
|
256
260
|
* @throws OciError when an error occurs
|
|
257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
261
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/DeleteDomain.ts.html |here} to see how to use DeleteDomain API.
|
|
258
262
|
*/
|
|
259
263
|
deleteDomain(deleteDomainRequest) {
|
|
260
264
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -309,7 +313,7 @@ class DomainClient {
|
|
|
309
313
|
* @param GetDomainRequest
|
|
310
314
|
* @return GetDomainResponse
|
|
311
315
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
316
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetDomain.ts.html |here} to see how to use GetDomain API.
|
|
313
317
|
*/
|
|
314
318
|
getDomain(getDomainRequest) {
|
|
315
319
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -373,7 +377,7 @@ class DomainClient {
|
|
|
373
377
|
* @param ListDomainsRequest
|
|
374
378
|
* @return ListDomainsResponse
|
|
375
379
|
* @throws OciError when an error occurs
|
|
376
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
380
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListDomains.ts.html |here} to see how to use ListDomains API.
|
|
377
381
|
*/
|
|
378
382
|
listDomains(listDomainsRequest) {
|
|
379
383
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -444,7 +448,7 @@ class DomainClient {
|
|
|
444
448
|
* @param UpdateDomainRequest
|
|
445
449
|
* @return UpdateDomainResponse
|
|
446
450
|
* @throws OciError when an error occurs
|
|
447
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
451
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/UpdateDomain.ts.html |here} to see how to use UpdateDomain API.
|
|
448
452
|
*/
|
|
449
453
|
updateDomain(updateDomainRequest) {
|
|
450
454
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -520,6 +524,7 @@ class DomainGovernanceClient {
|
|
|
520
524
|
this["_defaultHeaders"] = {};
|
|
521
525
|
this._circuitBreaker = null;
|
|
522
526
|
this._httpOptions = undefined;
|
|
527
|
+
this._bodyDuplexMode = undefined;
|
|
523
528
|
this.targetService = "DomainGovernance";
|
|
524
529
|
this._regionId = "";
|
|
525
530
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -534,6 +539,9 @@ class DomainGovernanceClient {
|
|
|
534
539
|
this._httpOptions = clientConfiguration.httpOptions
|
|
535
540
|
? clientConfiguration.httpOptions
|
|
536
541
|
: undefined;
|
|
542
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
543
|
+
? clientConfiguration.bodyDuplexMode
|
|
544
|
+
: undefined;
|
|
537
545
|
}
|
|
538
546
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
539
547
|
const specCircuitBreakerEnabled = true;
|
|
@@ -544,7 +552,7 @@ class DomainGovernanceClient {
|
|
|
544
552
|
}
|
|
545
553
|
this._httpClient =
|
|
546
554
|
params.httpClient ||
|
|
547
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
555
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
548
556
|
if (params.authenticationDetailsProvider &&
|
|
549
557
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
550
558
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -638,7 +646,7 @@ class DomainGovernanceClient {
|
|
|
638
646
|
* @param CreateDomainGovernanceRequest
|
|
639
647
|
* @return CreateDomainGovernanceResponse
|
|
640
648
|
* @throws OciError when an error occurs
|
|
641
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
649
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
|
|
642
650
|
*/
|
|
643
651
|
createDomainGovernance(createDomainGovernanceRequest) {
|
|
644
652
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -701,7 +709,7 @@ class DomainGovernanceClient {
|
|
|
701
709
|
* @param DeleteDomainGovernanceRequest
|
|
702
710
|
* @return DeleteDomainGovernanceResponse
|
|
703
711
|
* @throws OciError when an error occurs
|
|
704
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
712
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
|
|
705
713
|
*/
|
|
706
714
|
deleteDomainGovernance(deleteDomainGovernanceRequest) {
|
|
707
715
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -756,7 +764,7 @@ class DomainGovernanceClient {
|
|
|
756
764
|
* @param GetDomainGovernanceRequest
|
|
757
765
|
* @return GetDomainGovernanceResponse
|
|
758
766
|
* @throws OciError when an error occurs
|
|
759
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
767
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
|
|
760
768
|
*/
|
|
761
769
|
getDomainGovernance(getDomainGovernanceRequest) {
|
|
762
770
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -820,7 +828,7 @@ class DomainGovernanceClient {
|
|
|
820
828
|
* @param ListDomainGovernancesRequest
|
|
821
829
|
* @return ListDomainGovernancesResponse
|
|
822
830
|
* @throws OciError when an error occurs
|
|
823
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
831
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
|
|
824
832
|
*/
|
|
825
833
|
listDomainGovernances(listDomainGovernancesRequest) {
|
|
826
834
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -891,7 +899,7 @@ class DomainGovernanceClient {
|
|
|
891
899
|
* @param UpdateDomainGovernanceRequest
|
|
892
900
|
* @return UpdateDomainGovernanceResponse
|
|
893
901
|
* @throws OciError when an error occurs
|
|
894
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
902
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
|
|
895
903
|
*/
|
|
896
904
|
updateDomainGovernance(updateDomainGovernanceRequest) {
|
|
897
905
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -967,6 +975,7 @@ class GovernanceClient {
|
|
|
967
975
|
this["_defaultHeaders"] = {};
|
|
968
976
|
this._circuitBreaker = null;
|
|
969
977
|
this._httpOptions = undefined;
|
|
978
|
+
this._bodyDuplexMode = undefined;
|
|
970
979
|
this.targetService = "Governance";
|
|
971
980
|
this._regionId = "";
|
|
972
981
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -981,6 +990,9 @@ class GovernanceClient {
|
|
|
981
990
|
this._httpOptions = clientConfiguration.httpOptions
|
|
982
991
|
? clientConfiguration.httpOptions
|
|
983
992
|
: undefined;
|
|
993
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
994
|
+
? clientConfiguration.bodyDuplexMode
|
|
995
|
+
: undefined;
|
|
984
996
|
}
|
|
985
997
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
986
998
|
const specCircuitBreakerEnabled = true;
|
|
@@ -991,7 +1003,7 @@ class GovernanceClient {
|
|
|
991
1003
|
}
|
|
992
1004
|
this._httpClient =
|
|
993
1005
|
params.httpClient ||
|
|
994
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
1006
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
995
1007
|
if (params.authenticationDetailsProvider &&
|
|
996
1008
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
997
1009
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -1064,7 +1076,7 @@ class GovernanceClient {
|
|
|
1064
1076
|
* @param AddGovernanceRequest
|
|
1065
1077
|
* @return AddGovernanceResponse
|
|
1066
1078
|
* @throws OciError when an error occurs
|
|
1067
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1079
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/AddGovernance.ts.html |here} to see how to use AddGovernance API.
|
|
1068
1080
|
*/
|
|
1069
1081
|
addGovernance(addGovernanceRequest) {
|
|
1070
1082
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1126,7 +1138,7 @@ class GovernanceClient {
|
|
|
1126
1138
|
* @param RemoveGovernanceRequest
|
|
1127
1139
|
* @return RemoveGovernanceResponse
|
|
1128
1140
|
* @throws OciError when an error occurs
|
|
1129
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1141
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/RemoveGovernance.ts.html |here} to see how to use RemoveGovernance API.
|
|
1130
1142
|
*/
|
|
1131
1143
|
removeGovernance(removeGovernanceRequest) {
|
|
1132
1144
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1199,6 +1211,7 @@ class LinkClient {
|
|
|
1199
1211
|
this["_defaultHeaders"] = {};
|
|
1200
1212
|
this._circuitBreaker = null;
|
|
1201
1213
|
this._httpOptions = undefined;
|
|
1214
|
+
this._bodyDuplexMode = undefined;
|
|
1202
1215
|
this.targetService = "Link";
|
|
1203
1216
|
this._regionId = "";
|
|
1204
1217
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -1213,6 +1226,9 @@ class LinkClient {
|
|
|
1213
1226
|
this._httpOptions = clientConfiguration.httpOptions
|
|
1214
1227
|
? clientConfiguration.httpOptions
|
|
1215
1228
|
: undefined;
|
|
1229
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
1230
|
+
? clientConfiguration.bodyDuplexMode
|
|
1231
|
+
: undefined;
|
|
1216
1232
|
}
|
|
1217
1233
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1218
1234
|
const specCircuitBreakerEnabled = true;
|
|
@@ -1223,7 +1239,7 @@ class LinkClient {
|
|
|
1223
1239
|
}
|
|
1224
1240
|
this._httpClient =
|
|
1225
1241
|
params.httpClient ||
|
|
1226
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
1242
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
1227
1243
|
if (params.authenticationDetailsProvider &&
|
|
1228
1244
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
1229
1245
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -1317,7 +1333,7 @@ class LinkClient {
|
|
|
1317
1333
|
* @param DeleteLinkRequest
|
|
1318
1334
|
* @return DeleteLinkResponse
|
|
1319
1335
|
* @throws OciError when an error occurs
|
|
1320
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1336
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
|
|
1321
1337
|
*/
|
|
1322
1338
|
deleteLink(deleteLinkRequest) {
|
|
1323
1339
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1377,7 +1393,7 @@ class LinkClient {
|
|
|
1377
1393
|
* @param GetLinkRequest
|
|
1378
1394
|
* @return GetLinkResponse
|
|
1379
1395
|
* @throws OciError when an error occurs
|
|
1380
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1396
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
|
|
1381
1397
|
*/
|
|
1382
1398
|
getLink(getLinkRequest) {
|
|
1383
1399
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1440,7 +1456,7 @@ class LinkClient {
|
|
|
1440
1456
|
* @param ListLinksRequest
|
|
1441
1457
|
* @return ListLinksResponse
|
|
1442
1458
|
* @throws OciError when an error occurs
|
|
1443
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1459
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
|
|
1444
1460
|
*/
|
|
1445
1461
|
listLinks(listLinksRequest) {
|
|
1446
1462
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1519,6 +1535,7 @@ class OrdersClient {
|
|
|
1519
1535
|
this["_defaultHeaders"] = {};
|
|
1520
1536
|
this._circuitBreaker = null;
|
|
1521
1537
|
this._httpOptions = undefined;
|
|
1538
|
+
this._bodyDuplexMode = undefined;
|
|
1522
1539
|
this.targetService = "Orders";
|
|
1523
1540
|
this._regionId = "";
|
|
1524
1541
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -1533,6 +1550,9 @@ class OrdersClient {
|
|
|
1533
1550
|
this._httpOptions = clientConfiguration.httpOptions
|
|
1534
1551
|
? clientConfiguration.httpOptions
|
|
1535
1552
|
: undefined;
|
|
1553
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
1554
|
+
? clientConfiguration.bodyDuplexMode
|
|
1555
|
+
: undefined;
|
|
1536
1556
|
}
|
|
1537
1557
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1538
1558
|
const specCircuitBreakerEnabled = true;
|
|
@@ -1543,7 +1563,7 @@ class OrdersClient {
|
|
|
1543
1563
|
}
|
|
1544
1564
|
this._httpClient =
|
|
1545
1565
|
params.httpClient ||
|
|
1546
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
1566
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
1547
1567
|
if (params.authenticationDetailsProvider &&
|
|
1548
1568
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
1549
1569
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -1616,7 +1636,7 @@ class OrdersClient {
|
|
|
1616
1636
|
* @param ActivateOrderRequest
|
|
1617
1637
|
* @return ActivateOrderResponse
|
|
1618
1638
|
* @throws OciError when an error occurs
|
|
1619
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1639
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
|
|
1620
1640
|
*/
|
|
1621
1641
|
activateOrder(activateOrderRequest) {
|
|
1622
1642
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1678,7 +1698,7 @@ class OrdersClient {
|
|
|
1678
1698
|
* @param GetOrderRequest
|
|
1679
1699
|
* @return GetOrderResponse
|
|
1680
1700
|
* @throws OciError when an error occurs
|
|
1681
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1701
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
|
|
1682
1702
|
*/
|
|
1683
1703
|
getOrder(getOrderRequest) {
|
|
1684
1704
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1747,6 +1767,7 @@ class OrganizationClient {
|
|
|
1747
1767
|
this["_defaultHeaders"] = {};
|
|
1748
1768
|
this._circuitBreaker = null;
|
|
1749
1769
|
this._httpOptions = undefined;
|
|
1770
|
+
this._bodyDuplexMode = undefined;
|
|
1750
1771
|
this.targetService = "Organization";
|
|
1751
1772
|
this._regionId = "";
|
|
1752
1773
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -1761,6 +1782,9 @@ class OrganizationClient {
|
|
|
1761
1782
|
this._httpOptions = clientConfiguration.httpOptions
|
|
1762
1783
|
? clientConfiguration.httpOptions
|
|
1763
1784
|
: undefined;
|
|
1785
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
1786
|
+
? clientConfiguration.bodyDuplexMode
|
|
1787
|
+
: undefined;
|
|
1764
1788
|
}
|
|
1765
1789
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1766
1790
|
const specCircuitBreakerEnabled = true;
|
|
@@ -1771,7 +1795,7 @@ class OrganizationClient {
|
|
|
1771
1795
|
}
|
|
1772
1796
|
this._httpClient =
|
|
1773
1797
|
params.httpClient ||
|
|
1774
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
1798
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
1775
1799
|
if (params.authenticationDetailsProvider &&
|
|
1776
1800
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
1777
1801
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -1865,7 +1889,7 @@ class OrganizationClient {
|
|
|
1865
1889
|
* @param ApproveOrganizationTenancyForTransferRequest
|
|
1866
1890
|
* @return ApproveOrganizationTenancyForTransferResponse
|
|
1867
1891
|
* @throws OciError when an error occurs
|
|
1868
|
-
* @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.68.0/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
|
|
1869
1893
|
*/
|
|
1870
1894
|
approveOrganizationTenancyForTransfer(approveOrganizationTenancyForTransferRequest) {
|
|
1871
1895
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1932,7 +1956,7 @@ class OrganizationClient {
|
|
|
1932
1956
|
* @param CreateChildTenancyRequest
|
|
1933
1957
|
* @return CreateChildTenancyResponse
|
|
1934
1958
|
* @throws OciError when an error occurs
|
|
1935
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1959
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
|
|
1936
1960
|
*/
|
|
1937
1961
|
createChildTenancy(createChildTenancyRequest) {
|
|
1938
1962
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1991,7 +2015,7 @@ class OrganizationClient {
|
|
|
1991
2015
|
* @param DeleteOrganizationTenancyRequest
|
|
1992
2016
|
* @return DeleteOrganizationTenancyResponse
|
|
1993
2017
|
* @throws OciError when an error occurs
|
|
1994
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2018
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
|
|
1995
2019
|
*/
|
|
1996
2020
|
deleteOrganizationTenancy(deleteOrganizationTenancyRequest) {
|
|
1997
2021
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2052,7 +2076,7 @@ class OrganizationClient {
|
|
|
2052
2076
|
* @param GetOrganizationRequest
|
|
2053
2077
|
* @return GetOrganizationResponse
|
|
2054
2078
|
* @throws OciError when an error occurs
|
|
2055
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2079
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
|
|
2056
2080
|
*/
|
|
2057
2081
|
getOrganization(getOrganizationRequest) {
|
|
2058
2082
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2115,7 +2139,7 @@ class OrganizationClient {
|
|
|
2115
2139
|
* @param GetOrganizationTenancyRequest
|
|
2116
2140
|
* @return GetOrganizationTenancyResponse
|
|
2117
2141
|
* @throws OciError when an error occurs
|
|
2118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2142
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
|
|
2119
2143
|
*/
|
|
2120
2144
|
getOrganizationTenancy(getOrganizationTenancyRequest) {
|
|
2121
2145
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2179,7 +2203,7 @@ class OrganizationClient {
|
|
|
2179
2203
|
* @param ListOrganizationTenanciesRequest
|
|
2180
2204
|
* @return ListOrganizationTenanciesResponse
|
|
2181
2205
|
* @throws OciError when an error occurs
|
|
2182
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2206
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
|
|
2183
2207
|
*/
|
|
2184
2208
|
listOrganizationTenancies(listOrganizationTenanciesRequest) {
|
|
2185
2209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2245,7 +2269,7 @@ class OrganizationClient {
|
|
|
2245
2269
|
* @param ListOrganizationsRequest
|
|
2246
2270
|
* @return ListOrganizationsResponse
|
|
2247
2271
|
* @throws OciError when an error occurs
|
|
2248
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
|
|
2249
2273
|
*/
|
|
2250
2274
|
listOrganizations(listOrganizationsRequest) {
|
|
2251
2275
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2310,7 +2334,7 @@ class OrganizationClient {
|
|
|
2310
2334
|
* @param RestoreOrganizationTenancyRequest
|
|
2311
2335
|
* @return RestoreOrganizationTenancyResponse
|
|
2312
2336
|
* @throws OciError when an error occurs
|
|
2313
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2337
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/RestoreOrganizationTenancy.ts.html |here} to see how to use RestoreOrganizationTenancy API.
|
|
2314
2338
|
*/
|
|
2315
2339
|
restoreOrganizationTenancy(restoreOrganizationTenancyRequest) {
|
|
2316
2340
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2370,7 +2394,7 @@ class OrganizationClient {
|
|
|
2370
2394
|
* @param UnapproveOrganizationTenancyForTransferRequest
|
|
2371
2395
|
* @return UnapproveOrganizationTenancyForTransferResponse
|
|
2372
2396
|
* @throws OciError when an error occurs
|
|
2373
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2397
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
|
|
2374
2398
|
*/
|
|
2375
2399
|
unapproveOrganizationTenancyForTransfer(unapproveOrganizationTenancyForTransferRequest) {
|
|
2376
2400
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2437,7 +2461,7 @@ class OrganizationClient {
|
|
|
2437
2461
|
* @param UpdateOrganizationRequest
|
|
2438
2462
|
* @return UpdateOrganizationResponse
|
|
2439
2463
|
* @throws OciError when an error occurs
|
|
2440
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2464
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
|
|
2441
2465
|
*/
|
|
2442
2466
|
updateOrganization(updateOrganizationRequest) {
|
|
2443
2467
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2510,6 +2534,7 @@ class RecipientInvitationClient {
|
|
|
2510
2534
|
this["_defaultHeaders"] = {};
|
|
2511
2535
|
this._circuitBreaker = null;
|
|
2512
2536
|
this._httpOptions = undefined;
|
|
2537
|
+
this._bodyDuplexMode = undefined;
|
|
2513
2538
|
this.targetService = "RecipientInvitation";
|
|
2514
2539
|
this._regionId = "";
|
|
2515
2540
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -2524,6 +2549,9 @@ class RecipientInvitationClient {
|
|
|
2524
2549
|
this._httpOptions = clientConfiguration.httpOptions
|
|
2525
2550
|
? clientConfiguration.httpOptions
|
|
2526
2551
|
: undefined;
|
|
2552
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
2553
|
+
? clientConfiguration.bodyDuplexMode
|
|
2554
|
+
: undefined;
|
|
2527
2555
|
}
|
|
2528
2556
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
2529
2557
|
const specCircuitBreakerEnabled = true;
|
|
@@ -2534,7 +2562,7 @@ class RecipientInvitationClient {
|
|
|
2534
2562
|
}
|
|
2535
2563
|
this._httpClient =
|
|
2536
2564
|
params.httpClient ||
|
|
2537
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
2565
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
2538
2566
|
if (params.authenticationDetailsProvider &&
|
|
2539
2567
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
2540
2568
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -2628,7 +2656,7 @@ class RecipientInvitationClient {
|
|
|
2628
2656
|
* @param AcceptRecipientInvitationRequest
|
|
2629
2657
|
* @return AcceptRecipientInvitationResponse
|
|
2630
2658
|
* @throws OciError when an error occurs
|
|
2631
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2659
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
|
|
2632
2660
|
*/
|
|
2633
2661
|
acceptRecipientInvitation(acceptRecipientInvitationRequest) {
|
|
2634
2662
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2689,7 +2717,7 @@ class RecipientInvitationClient {
|
|
|
2689
2717
|
* @param GetRecipientInvitationRequest
|
|
2690
2718
|
* @return GetRecipientInvitationResponse
|
|
2691
2719
|
* @throws OciError when an error occurs
|
|
2692
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2720
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
|
|
2693
2721
|
*/
|
|
2694
2722
|
getRecipientInvitation(getRecipientInvitationRequest) {
|
|
2695
2723
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2752,7 +2780,7 @@ class RecipientInvitationClient {
|
|
|
2752
2780
|
* @param IgnoreRecipientInvitationRequest
|
|
2753
2781
|
* @return IgnoreRecipientInvitationResponse
|
|
2754
2782
|
* @throws OciError when an error occurs
|
|
2755
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2783
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
|
|
2756
2784
|
*/
|
|
2757
2785
|
ignoreRecipientInvitation(ignoreRecipientInvitationRequest) {
|
|
2758
2786
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2818,7 +2846,7 @@ class RecipientInvitationClient {
|
|
|
2818
2846
|
* @param ListRecipientInvitationsRequest
|
|
2819
2847
|
* @return ListRecipientInvitationsResponse
|
|
2820
2848
|
* @throws OciError when an error occurs
|
|
2821
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2849
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
|
|
2822
2850
|
*/
|
|
2823
2851
|
listRecipientInvitations(listRecipientInvitationsRequest) {
|
|
2824
2852
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2885,7 +2913,7 @@ class RecipientInvitationClient {
|
|
|
2885
2913
|
* @param UpdateRecipientInvitationRequest
|
|
2886
2914
|
* @return UpdateRecipientInvitationResponse
|
|
2887
2915
|
* @throws OciError when an error occurs
|
|
2888
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2916
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
|
|
2889
2917
|
*/
|
|
2890
2918
|
updateRecipientInvitation(updateRecipientInvitationRequest) {
|
|
2891
2919
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2961,6 +2989,7 @@ class SenderInvitationClient {
|
|
|
2961
2989
|
this["_defaultHeaders"] = {};
|
|
2962
2990
|
this._circuitBreaker = null;
|
|
2963
2991
|
this._httpOptions = undefined;
|
|
2992
|
+
this._bodyDuplexMode = undefined;
|
|
2964
2993
|
this.targetService = "SenderInvitation";
|
|
2965
2994
|
this._regionId = "";
|
|
2966
2995
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -2975,6 +3004,9 @@ class SenderInvitationClient {
|
|
|
2975
3004
|
this._httpOptions = clientConfiguration.httpOptions
|
|
2976
3005
|
? clientConfiguration.httpOptions
|
|
2977
3006
|
: undefined;
|
|
3007
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
3008
|
+
? clientConfiguration.bodyDuplexMode
|
|
3009
|
+
: undefined;
|
|
2978
3010
|
}
|
|
2979
3011
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
2980
3012
|
const specCircuitBreakerEnabled = true;
|
|
@@ -2985,7 +3017,7 @@ class SenderInvitationClient {
|
|
|
2985
3017
|
}
|
|
2986
3018
|
this._httpClient =
|
|
2987
3019
|
params.httpClient ||
|
|
2988
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
3020
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
2989
3021
|
if (params.authenticationDetailsProvider &&
|
|
2990
3022
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
2991
3023
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -3079,7 +3111,7 @@ class SenderInvitationClient {
|
|
|
3079
3111
|
* @param CancelSenderInvitationRequest
|
|
3080
3112
|
* @return CancelSenderInvitationResponse
|
|
3081
3113
|
* @throws OciError when an error occurs
|
|
3082
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3114
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
|
|
3083
3115
|
*/
|
|
3084
3116
|
cancelSenderInvitation(cancelSenderInvitationRequest) {
|
|
3085
3117
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3140,7 +3172,7 @@ class SenderInvitationClient {
|
|
|
3140
3172
|
* @param CreateSenderInvitationRequest
|
|
3141
3173
|
* @return CreateSenderInvitationResponse
|
|
3142
3174
|
* @throws OciError when an error occurs
|
|
3143
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3175
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
|
|
3144
3176
|
*/
|
|
3145
3177
|
createSenderInvitation(createSenderInvitationRequest) {
|
|
3146
3178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3208,7 +3240,7 @@ class SenderInvitationClient {
|
|
|
3208
3240
|
* @param GetSenderInvitationRequest
|
|
3209
3241
|
* @return GetSenderInvitationResponse
|
|
3210
3242
|
* @throws OciError when an error occurs
|
|
3211
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3243
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
|
|
3212
3244
|
*/
|
|
3213
3245
|
getSenderInvitation(getSenderInvitationRequest) {
|
|
3214
3246
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3272,7 +3304,7 @@ class SenderInvitationClient {
|
|
|
3272
3304
|
* @param ListSenderInvitationsRequest
|
|
3273
3305
|
* @return ListSenderInvitationsResponse
|
|
3274
3306
|
* @throws OciError when an error occurs
|
|
3275
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3307
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
|
|
3276
3308
|
*/
|
|
3277
3309
|
listSenderInvitations(listSenderInvitationsRequest) {
|
|
3278
3310
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3343,7 +3375,7 @@ class SenderInvitationClient {
|
|
|
3343
3375
|
* @param UpdateSenderInvitationRequest
|
|
3344
3376
|
* @return UpdateSenderInvitationResponse
|
|
3345
3377
|
* @throws OciError when an error occurs
|
|
3346
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3378
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
|
|
3347
3379
|
*/
|
|
3348
3380
|
updateSenderInvitation(updateSenderInvitationRequest) {
|
|
3349
3381
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3419,6 +3451,7 @@ class SubscriptionClient {
|
|
|
3419
3451
|
this["_defaultHeaders"] = {};
|
|
3420
3452
|
this._circuitBreaker = null;
|
|
3421
3453
|
this._httpOptions = undefined;
|
|
3454
|
+
this._bodyDuplexMode = undefined;
|
|
3422
3455
|
this.targetService = "Subscription";
|
|
3423
3456
|
this._regionId = "";
|
|
3424
3457
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -3433,6 +3466,9 @@ class SubscriptionClient {
|
|
|
3433
3466
|
this._httpOptions = clientConfiguration.httpOptions
|
|
3434
3467
|
? clientConfiguration.httpOptions
|
|
3435
3468
|
: undefined;
|
|
3469
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
3470
|
+
? clientConfiguration.bodyDuplexMode
|
|
3471
|
+
: undefined;
|
|
3436
3472
|
}
|
|
3437
3473
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
3438
3474
|
const specCircuitBreakerEnabled = true;
|
|
@@ -3443,7 +3479,7 @@ class SubscriptionClient {
|
|
|
3443
3479
|
}
|
|
3444
3480
|
this._httpClient =
|
|
3445
3481
|
params.httpClient ||
|
|
3446
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
3482
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
3447
3483
|
if (params.authenticationDetailsProvider &&
|
|
3448
3484
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
3449
3485
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -3537,7 +3573,7 @@ class SubscriptionClient {
|
|
|
3537
3573
|
* @param CreateSubscriptionMappingRequest
|
|
3538
3574
|
* @return CreateSubscriptionMappingResponse
|
|
3539
3575
|
* @throws OciError when an error occurs
|
|
3540
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3576
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
|
|
3541
3577
|
*/
|
|
3542
3578
|
createSubscriptionMapping(createSubscriptionMappingRequest) {
|
|
3543
3579
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3606,7 +3642,7 @@ class SubscriptionClient {
|
|
|
3606
3642
|
* @param DeleteSubscriptionMappingRequest
|
|
3607
3643
|
* @return DeleteSubscriptionMappingResponse
|
|
3608
3644
|
* @throws OciError when an error occurs
|
|
3609
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3645
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
|
|
3610
3646
|
*/
|
|
3611
3647
|
deleteSubscriptionMapping(deleteSubscriptionMappingRequest) {
|
|
3612
3648
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3661,7 +3697,7 @@ class SubscriptionClient {
|
|
|
3661
3697
|
* @param GetAssignedSubscriptionRequest
|
|
3662
3698
|
* @return GetAssignedSubscriptionResponse
|
|
3663
3699
|
* @throws OciError when an error occurs
|
|
3664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3700
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
|
|
3665
3701
|
*/
|
|
3666
3702
|
getAssignedSubscription(getAssignedSubscriptionRequest) {
|
|
3667
3703
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3724,7 +3760,7 @@ class SubscriptionClient {
|
|
|
3724
3760
|
* @param GetSubscriptionRequest
|
|
3725
3761
|
* @return GetSubscriptionResponse
|
|
3726
3762
|
* @throws OciError when an error occurs
|
|
3727
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3763
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
|
|
3728
3764
|
*/
|
|
3729
3765
|
getSubscription(getSubscriptionRequest) {
|
|
3730
3766
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3787,7 +3823,7 @@ class SubscriptionClient {
|
|
|
3787
3823
|
* @param GetSubscriptionMappingRequest
|
|
3788
3824
|
* @return GetSubscriptionMappingResponse
|
|
3789
3825
|
* @throws OciError when an error occurs
|
|
3790
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3826
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
|
|
3791
3827
|
*/
|
|
3792
3828
|
getSubscriptionMapping(getSubscriptionMappingRequest) {
|
|
3793
3829
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3850,7 +3886,7 @@ class SubscriptionClient {
|
|
|
3850
3886
|
* @param ListAssignedSubscriptionLineItemsRequest
|
|
3851
3887
|
* @return ListAssignedSubscriptionLineItemsResponse
|
|
3852
3888
|
* @throws OciError when an error occurs
|
|
3853
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3889
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListAssignedSubscriptionLineItems.ts.html |here} to see how to use ListAssignedSubscriptionLineItems API.
|
|
3854
3890
|
*/
|
|
3855
3891
|
listAssignedSubscriptionLineItems(listAssignedSubscriptionLineItemsRequest) {
|
|
3856
3892
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3918,7 +3954,7 @@ class SubscriptionClient {
|
|
|
3918
3954
|
* @param ListAssignedSubscriptionsRequest
|
|
3919
3955
|
* @return ListAssignedSubscriptionsResponse
|
|
3920
3956
|
* @throws OciError when an error occurs
|
|
3921
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3957
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
|
|
3922
3958
|
*/
|
|
3923
3959
|
listAssignedSubscriptions(listAssignedSubscriptionsRequest) {
|
|
3924
3960
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3987,7 +4023,7 @@ class SubscriptionClient {
|
|
|
3987
4023
|
* @param ListAvailableRegionsRequest
|
|
3988
4024
|
* @return ListAvailableRegionsResponse
|
|
3989
4025
|
* @throws OciError when an error occurs
|
|
3990
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4026
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
|
|
3991
4027
|
*/
|
|
3992
4028
|
listAvailableRegions(listAvailableRegionsRequest) {
|
|
3993
4029
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4052,7 +4088,7 @@ class SubscriptionClient {
|
|
|
4052
4088
|
* @param ListSubscriptionLineItemsRequest
|
|
4053
4089
|
* @return ListSubscriptionLineItemsResponse
|
|
4054
4090
|
* @throws OciError when an error occurs
|
|
4055
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4091
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListSubscriptionLineItems.ts.html |here} to see how to use ListSubscriptionLineItems API.
|
|
4056
4092
|
*/
|
|
4057
4093
|
listSubscriptionLineItems(listSubscriptionLineItemsRequest) {
|
|
4058
4094
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4120,7 +4156,7 @@ class SubscriptionClient {
|
|
|
4120
4156
|
* @param ListSubscriptionMappingsRequest
|
|
4121
4157
|
* @return ListSubscriptionMappingsResponse
|
|
4122
4158
|
* @throws OciError when an error occurs
|
|
4123
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4159
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
|
|
4124
4160
|
*/
|
|
4125
4161
|
listSubscriptionMappings(listSubscriptionMappingsRequest) {
|
|
4126
4162
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4190,7 +4226,7 @@ class SubscriptionClient {
|
|
|
4190
4226
|
* @param ListSubscriptionsRequest
|
|
4191
4227
|
* @return ListSubscriptionsResponse
|
|
4192
4228
|
* @throws OciError when an error occurs
|
|
4193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
|
|
4194
4230
|
*/
|
|
4195
4231
|
listSubscriptions(listSubscriptionsRequest) {
|
|
4196
4232
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4270,6 +4306,7 @@ class WorkRequestClient {
|
|
|
4270
4306
|
this["_defaultHeaders"] = {};
|
|
4271
4307
|
this._circuitBreaker = null;
|
|
4272
4308
|
this._httpOptions = undefined;
|
|
4309
|
+
this._bodyDuplexMode = undefined;
|
|
4273
4310
|
this.targetService = "WorkRequest";
|
|
4274
4311
|
this._regionId = "";
|
|
4275
4312
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -4284,6 +4321,9 @@ class WorkRequestClient {
|
|
|
4284
4321
|
this._httpOptions = clientConfiguration.httpOptions
|
|
4285
4322
|
? clientConfiguration.httpOptions
|
|
4286
4323
|
: undefined;
|
|
4324
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
4325
|
+
? clientConfiguration.bodyDuplexMode
|
|
4326
|
+
: undefined;
|
|
4287
4327
|
}
|
|
4288
4328
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
4289
4329
|
const specCircuitBreakerEnabled = true;
|
|
@@ -4294,7 +4334,7 @@ class WorkRequestClient {
|
|
|
4294
4334
|
}
|
|
4295
4335
|
this._httpClient =
|
|
4296
4336
|
params.httpClient ||
|
|
4297
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
4337
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
4298
4338
|
if (params.authenticationDetailsProvider &&
|
|
4299
4339
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
4300
4340
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -4388,7 +4428,7 @@ class WorkRequestClient {
|
|
|
4388
4428
|
* @param GetWorkRequestRequest
|
|
4389
4429
|
* @return GetWorkRequestResponse
|
|
4390
4430
|
* @throws OciError when an error occurs
|
|
4391
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4431
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
4392
4432
|
*/
|
|
4393
4433
|
getWorkRequest(getWorkRequestRequest) {
|
|
4394
4434
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4452,7 +4492,7 @@ class WorkRequestClient {
|
|
|
4452
4492
|
* @param ListWorkRequestErrorsRequest
|
|
4453
4493
|
* @return ListWorkRequestErrorsResponse
|
|
4454
4494
|
* @throws OciError when an error occurs
|
|
4455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4495
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
4456
4496
|
*/
|
|
4457
4497
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
4458
4498
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4520,7 +4560,7 @@ class WorkRequestClient {
|
|
|
4520
4560
|
* @param ListWorkRequestLogsRequest
|
|
4521
4561
|
* @return ListWorkRequestLogsResponse
|
|
4522
4562
|
* @throws OciError when an error occurs
|
|
4523
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4563
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
4524
4564
|
*/
|
|
4525
4565
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
4526
4566
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4588,7 +4628,7 @@ class WorkRequestClient {
|
|
|
4588
4628
|
* @param ListWorkRequestsRequest
|
|
4589
4629
|
* @return ListWorkRequestsResponse
|
|
4590
4630
|
* @throws OciError when an error occurs
|
|
4591
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4631
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
4592
4632
|
*/
|
|
4593
4633
|
listWorkRequests(listWorkRequestsRequest) {
|
|
4594
4634
|
return __awaiter(this, void 0, void 0, function* () {
|