@itentialopensource/adapter-aws_cloudformation 0.2.4 → 0.2.6
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/CHANGELOG.md +16 -0
- package/adapter.js +914 -72
- package/package.json +4 -4
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +3 -3
- package/test/unit/adapterTestUnit.js +2 -2
- package/storage/metrics.json +0 -1141
package/adapter.js
CHANGED
|
@@ -19,6 +19,7 @@ const callOptions = {
|
|
|
19
19
|
response: 'XML2JSON'
|
|
20
20
|
}
|
|
21
21
|
};
|
|
22
|
+
const authMethod = 'aws_authentication';
|
|
22
23
|
|
|
23
24
|
/* Fetch in the other needed components for the this Adaptor */
|
|
24
25
|
const AdapterBaseCl = require(path.join(__dirname, 'adapterBase.js'));
|
|
@@ -64,11 +65,24 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
64
65
|
* AwsCloudFormation Adapter
|
|
65
66
|
* @constructor
|
|
66
67
|
*/
|
|
67
|
-
/* Working on changing the way we do Emit methods due to size and time constrainsts
|
|
68
68
|
constructor(prongid, properties) {
|
|
69
|
+
// make sure properties are set - so that we do not break
|
|
70
|
+
const myProperties = properties;
|
|
71
|
+
|
|
72
|
+
// service should exist and be ec2
|
|
73
|
+
if (myProperties && !myProperties.service) {
|
|
74
|
+
myProperties.service = callOptions.service;
|
|
75
|
+
}
|
|
76
|
+
// auth_method should now be aws_authentication
|
|
77
|
+
if (myProperties && myProperties.authentication && (!myProperties.authentication.auth_method
|
|
78
|
+
|| myProperties.authentication.auth_method === 'no_authentication')) {
|
|
79
|
+
myProperties.authentication.auth_method = authMethod;
|
|
80
|
+
}
|
|
81
|
+
|
|
69
82
|
// Instantiate the AdapterBase super class
|
|
70
|
-
super(prongid,
|
|
83
|
+
super(prongid, myProperties);
|
|
71
84
|
|
|
85
|
+
/*
|
|
72
86
|
const restFunctionNames = this.getWorkflowFunctions();
|
|
73
87
|
|
|
74
88
|
// Dynamically bind emit functions
|
|
@@ -104,8 +118,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
104
118
|
// if (this.allProps && this.allProps.myownproperty) {
|
|
105
119
|
// mypropvariable = this.allProps.myownproperty;
|
|
106
120
|
// }
|
|
121
|
+
*/
|
|
107
122
|
}
|
|
108
|
-
*/
|
|
109
123
|
|
|
110
124
|
/**
|
|
111
125
|
* @callback healthCallback
|
|
@@ -809,6 +823,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
809
823
|
}
|
|
810
824
|
}
|
|
811
825
|
|
|
826
|
+
let callProperties = null;
|
|
827
|
+
if (stsParams && stsParams.region) {
|
|
828
|
+
callProperties = {};
|
|
829
|
+
callProperties.region = stsParams.region;
|
|
830
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
831
|
+
delete stsParams.region;
|
|
832
|
+
if (Object.keys(stsParams).length === 0) {
|
|
833
|
+
stsParams = null;
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
|
|
812
837
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
813
838
|
const reqObj = {
|
|
814
839
|
payload: bodyVars,
|
|
@@ -818,7 +843,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
818
843
|
authData: {
|
|
819
844
|
stsParams,
|
|
820
845
|
roleName
|
|
821
|
-
}
|
|
846
|
+
},
|
|
847
|
+
callProperties
|
|
822
848
|
};
|
|
823
849
|
|
|
824
850
|
try {
|
|
@@ -921,6 +947,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
921
947
|
}
|
|
922
948
|
}
|
|
923
949
|
|
|
950
|
+
let callProperties = null;
|
|
951
|
+
if (stsParams && stsParams.region) {
|
|
952
|
+
callProperties = {};
|
|
953
|
+
callProperties.region = stsParams.region;
|
|
954
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
955
|
+
delete stsParams.region;
|
|
956
|
+
if (Object.keys(stsParams).length === 0) {
|
|
957
|
+
stsParams = null;
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
|
|
924
961
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
925
962
|
const reqObj = {
|
|
926
963
|
payload: bodyVars,
|
|
@@ -930,7 +967,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
930
967
|
authData: {
|
|
931
968
|
stsParams,
|
|
932
969
|
roleName
|
|
933
|
-
}
|
|
970
|
+
},
|
|
971
|
+
callProperties
|
|
934
972
|
};
|
|
935
973
|
|
|
936
974
|
try {
|
|
@@ -1093,6 +1131,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1093
1131
|
}
|
|
1094
1132
|
}
|
|
1095
1133
|
|
|
1134
|
+
let callProperties = null;
|
|
1135
|
+
if (stsParams && stsParams.region) {
|
|
1136
|
+
callProperties = {};
|
|
1137
|
+
callProperties.region = stsParams.region;
|
|
1138
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
1139
|
+
delete stsParams.region;
|
|
1140
|
+
if (Object.keys(stsParams).length === 0) {
|
|
1141
|
+
stsParams = null;
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1096
1145
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
1097
1146
|
const reqObj = {
|
|
1098
1147
|
payload: bodyVars,
|
|
@@ -1102,7 +1151,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1102
1151
|
authData: {
|
|
1103
1152
|
stsParams,
|
|
1104
1153
|
roleName
|
|
1105
|
-
}
|
|
1154
|
+
},
|
|
1155
|
+
callProperties
|
|
1106
1156
|
};
|
|
1107
1157
|
|
|
1108
1158
|
try {
|
|
@@ -1262,6 +1312,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1262
1312
|
}
|
|
1263
1313
|
}
|
|
1264
1314
|
|
|
1315
|
+
let callProperties = null;
|
|
1316
|
+
if (stsParams && stsParams.region) {
|
|
1317
|
+
callProperties = {};
|
|
1318
|
+
callProperties.region = stsParams.region;
|
|
1319
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
1320
|
+
delete stsParams.region;
|
|
1321
|
+
if (Object.keys(stsParams).length === 0) {
|
|
1322
|
+
stsParams = null;
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1265
1326
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
1266
1327
|
const reqObj = {
|
|
1267
1328
|
payload: bodyVars,
|
|
@@ -1271,7 +1332,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1271
1332
|
authData: {
|
|
1272
1333
|
stsParams,
|
|
1273
1334
|
roleName
|
|
1274
|
-
}
|
|
1335
|
+
},
|
|
1336
|
+
callProperties
|
|
1275
1337
|
};
|
|
1276
1338
|
|
|
1277
1339
|
try {
|
|
@@ -1384,6 +1446,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1384
1446
|
}
|
|
1385
1447
|
}
|
|
1386
1448
|
|
|
1449
|
+
let callProperties = null;
|
|
1450
|
+
if (stsParams && stsParams.region) {
|
|
1451
|
+
callProperties = {};
|
|
1452
|
+
callProperties.region = stsParams.region;
|
|
1453
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
1454
|
+
delete stsParams.region;
|
|
1455
|
+
if (Object.keys(stsParams).length === 0) {
|
|
1456
|
+
stsParams = null;
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1387
1460
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
1388
1461
|
const reqObj = {
|
|
1389
1462
|
payload: bodyVars,
|
|
@@ -1393,7 +1466,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1393
1466
|
authData: {
|
|
1394
1467
|
stsParams,
|
|
1395
1468
|
roleName
|
|
1396
|
-
}
|
|
1469
|
+
},
|
|
1470
|
+
callProperties
|
|
1397
1471
|
};
|
|
1398
1472
|
|
|
1399
1473
|
try {
|
|
@@ -1509,6 +1583,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1509
1583
|
}
|
|
1510
1584
|
}
|
|
1511
1585
|
|
|
1586
|
+
let callProperties = null;
|
|
1587
|
+
if (stsParams && stsParams.region) {
|
|
1588
|
+
callProperties = {};
|
|
1589
|
+
callProperties.region = stsParams.region;
|
|
1590
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
1591
|
+
delete stsParams.region;
|
|
1592
|
+
if (Object.keys(stsParams).length === 0) {
|
|
1593
|
+
stsParams = null;
|
|
1594
|
+
}
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1512
1597
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
1513
1598
|
const reqObj = {
|
|
1514
1599
|
payload: bodyVars,
|
|
@@ -1518,7 +1603,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1518
1603
|
authData: {
|
|
1519
1604
|
stsParams,
|
|
1520
1605
|
roleName
|
|
1521
|
-
}
|
|
1606
|
+
},
|
|
1607
|
+
callProperties
|
|
1522
1608
|
};
|
|
1523
1609
|
|
|
1524
1610
|
try {
|
|
@@ -1635,6 +1721,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1635
1721
|
}
|
|
1636
1722
|
}
|
|
1637
1723
|
|
|
1724
|
+
let callProperties = null;
|
|
1725
|
+
if (stsParams && stsParams.region) {
|
|
1726
|
+
callProperties = {};
|
|
1727
|
+
callProperties.region = stsParams.region;
|
|
1728
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
1729
|
+
delete stsParams.region;
|
|
1730
|
+
if (Object.keys(stsParams).length === 0) {
|
|
1731
|
+
stsParams = null;
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1638
1735
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
1639
1736
|
const reqObj = {
|
|
1640
1737
|
payload: bodyVars,
|
|
@@ -1644,7 +1741,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1644
1741
|
authData: {
|
|
1645
1742
|
stsParams,
|
|
1646
1743
|
roleName
|
|
1647
|
-
}
|
|
1744
|
+
},
|
|
1745
|
+
callProperties
|
|
1648
1746
|
};
|
|
1649
1747
|
|
|
1650
1748
|
try {
|
|
@@ -1765,6 +1863,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1765
1863
|
}
|
|
1766
1864
|
}
|
|
1767
1865
|
|
|
1866
|
+
let callProperties = null;
|
|
1867
|
+
if (stsParams && stsParams.region) {
|
|
1868
|
+
callProperties = {};
|
|
1869
|
+
callProperties.region = stsParams.region;
|
|
1870
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
1871
|
+
delete stsParams.region;
|
|
1872
|
+
if (Object.keys(stsParams).length === 0) {
|
|
1873
|
+
stsParams = null;
|
|
1874
|
+
}
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1768
1877
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
1769
1878
|
const reqObj = {
|
|
1770
1879
|
payload: bodyVars,
|
|
@@ -1774,7 +1883,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1774
1883
|
authData: {
|
|
1775
1884
|
stsParams,
|
|
1776
1885
|
roleName
|
|
1777
|
-
}
|
|
1886
|
+
},
|
|
1887
|
+
callProperties
|
|
1778
1888
|
};
|
|
1779
1889
|
|
|
1780
1890
|
try {
|
|
@@ -1908,6 +2018,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1908
2018
|
}
|
|
1909
2019
|
}
|
|
1910
2020
|
|
|
2021
|
+
let callProperties = null;
|
|
2022
|
+
if (stsParams && stsParams.region) {
|
|
2023
|
+
callProperties = {};
|
|
2024
|
+
callProperties.region = stsParams.region;
|
|
2025
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
2026
|
+
delete stsParams.region;
|
|
2027
|
+
if (Object.keys(stsParams).length === 0) {
|
|
2028
|
+
stsParams = null;
|
|
2029
|
+
}
|
|
2030
|
+
}
|
|
2031
|
+
|
|
1911
2032
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
1912
2033
|
const reqObj = {
|
|
1913
2034
|
payload: bodyVars,
|
|
@@ -1917,7 +2038,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
1917
2038
|
authData: {
|
|
1918
2039
|
stsParams,
|
|
1919
2040
|
roleName
|
|
1920
|
-
}
|
|
2041
|
+
},
|
|
2042
|
+
callProperties
|
|
1921
2043
|
};
|
|
1922
2044
|
|
|
1923
2045
|
try {
|
|
@@ -2051,6 +2173,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2051
2173
|
}
|
|
2052
2174
|
}
|
|
2053
2175
|
|
|
2176
|
+
let callProperties = null;
|
|
2177
|
+
if (stsParams && stsParams.region) {
|
|
2178
|
+
callProperties = {};
|
|
2179
|
+
callProperties.region = stsParams.region;
|
|
2180
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
2181
|
+
delete stsParams.region;
|
|
2182
|
+
if (Object.keys(stsParams).length === 0) {
|
|
2183
|
+
stsParams = null;
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2054
2187
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
2055
2188
|
const reqObj = {
|
|
2056
2189
|
payload: bodyVars,
|
|
@@ -2060,7 +2193,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2060
2193
|
authData: {
|
|
2061
2194
|
stsParams,
|
|
2062
2195
|
roleName
|
|
2063
|
-
}
|
|
2196
|
+
},
|
|
2197
|
+
callProperties
|
|
2064
2198
|
};
|
|
2065
2199
|
|
|
2066
2200
|
try {
|
|
@@ -2197,6 +2331,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2197
2331
|
}
|
|
2198
2332
|
}
|
|
2199
2333
|
|
|
2334
|
+
let callProperties = null;
|
|
2335
|
+
if (stsParams && stsParams.region) {
|
|
2336
|
+
callProperties = {};
|
|
2337
|
+
callProperties.region = stsParams.region;
|
|
2338
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
2339
|
+
delete stsParams.region;
|
|
2340
|
+
if (Object.keys(stsParams).length === 0) {
|
|
2341
|
+
stsParams = null;
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2200
2345
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
2201
2346
|
const reqObj = {
|
|
2202
2347
|
payload: bodyVars,
|
|
@@ -2206,7 +2351,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2206
2351
|
authData: {
|
|
2207
2352
|
stsParams,
|
|
2208
2353
|
roleName
|
|
2209
|
-
}
|
|
2354
|
+
},
|
|
2355
|
+
callProperties
|
|
2210
2356
|
};
|
|
2211
2357
|
|
|
2212
2358
|
try {
|
|
@@ -2312,6 +2458,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2312
2458
|
}
|
|
2313
2459
|
}
|
|
2314
2460
|
|
|
2461
|
+
let callProperties = null;
|
|
2462
|
+
if (stsParams && stsParams.region) {
|
|
2463
|
+
callProperties = {};
|
|
2464
|
+
callProperties.region = stsParams.region;
|
|
2465
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
2466
|
+
delete stsParams.region;
|
|
2467
|
+
if (Object.keys(stsParams).length === 0) {
|
|
2468
|
+
stsParams = null;
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2315
2472
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
2316
2473
|
const reqObj = {
|
|
2317
2474
|
payload: bodyVars,
|
|
@@ -2321,7 +2478,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2321
2478
|
authData: {
|
|
2322
2479
|
stsParams,
|
|
2323
2480
|
roleName
|
|
2324
|
-
}
|
|
2481
|
+
},
|
|
2482
|
+
callProperties
|
|
2325
2483
|
};
|
|
2326
2484
|
|
|
2327
2485
|
try {
|
|
@@ -2426,6 +2584,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2426
2584
|
}
|
|
2427
2585
|
}
|
|
2428
2586
|
|
|
2587
|
+
let callProperties = null;
|
|
2588
|
+
if (stsParams && stsParams.region) {
|
|
2589
|
+
callProperties = {};
|
|
2590
|
+
callProperties.region = stsParams.region;
|
|
2591
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
2592
|
+
delete stsParams.region;
|
|
2593
|
+
if (Object.keys(stsParams).length === 0) {
|
|
2594
|
+
stsParams = null;
|
|
2595
|
+
}
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2429
2598
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
2430
2599
|
const reqObj = {
|
|
2431
2600
|
payload: bodyVars,
|
|
@@ -2435,7 +2604,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2435
2604
|
authData: {
|
|
2436
2605
|
stsParams,
|
|
2437
2606
|
roleName
|
|
2438
|
-
}
|
|
2607
|
+
},
|
|
2608
|
+
callProperties
|
|
2439
2609
|
};
|
|
2440
2610
|
|
|
2441
2611
|
try {
|
|
@@ -2579,6 +2749,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2579
2749
|
}
|
|
2580
2750
|
}
|
|
2581
2751
|
|
|
2752
|
+
let callProperties = null;
|
|
2753
|
+
if (stsParams && stsParams.region) {
|
|
2754
|
+
callProperties = {};
|
|
2755
|
+
callProperties.region = stsParams.region;
|
|
2756
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
2757
|
+
delete stsParams.region;
|
|
2758
|
+
if (Object.keys(stsParams).length === 0) {
|
|
2759
|
+
stsParams = null;
|
|
2760
|
+
}
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2582
2763
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
2583
2764
|
const reqObj = {
|
|
2584
2765
|
payload: bodyVars,
|
|
@@ -2588,7 +2769,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2588
2769
|
authData: {
|
|
2589
2770
|
stsParams,
|
|
2590
2771
|
roleName
|
|
2591
|
-
}
|
|
2772
|
+
},
|
|
2773
|
+
callProperties
|
|
2592
2774
|
};
|
|
2593
2775
|
|
|
2594
2776
|
try {
|
|
@@ -2751,6 +2933,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2751
2933
|
}
|
|
2752
2934
|
}
|
|
2753
2935
|
|
|
2936
|
+
let callProperties = null;
|
|
2937
|
+
if (stsParams && stsParams.region) {
|
|
2938
|
+
callProperties = {};
|
|
2939
|
+
callProperties.region = stsParams.region;
|
|
2940
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
2941
|
+
delete stsParams.region;
|
|
2942
|
+
if (Object.keys(stsParams).length === 0) {
|
|
2943
|
+
stsParams = null;
|
|
2944
|
+
}
|
|
2945
|
+
}
|
|
2946
|
+
|
|
2754
2947
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
2755
2948
|
const reqObj = {
|
|
2756
2949
|
payload: bodyVars,
|
|
@@ -2760,7 +2953,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2760
2953
|
authData: {
|
|
2761
2954
|
stsParams,
|
|
2762
2955
|
roleName
|
|
2763
|
-
}
|
|
2956
|
+
},
|
|
2957
|
+
callProperties
|
|
2764
2958
|
};
|
|
2765
2959
|
|
|
2766
2960
|
try {
|
|
@@ -2865,6 +3059,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2865
3059
|
}
|
|
2866
3060
|
}
|
|
2867
3061
|
|
|
3062
|
+
let callProperties = null;
|
|
3063
|
+
if (stsParams && stsParams.region) {
|
|
3064
|
+
callProperties = {};
|
|
3065
|
+
callProperties.region = stsParams.region;
|
|
3066
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
3067
|
+
delete stsParams.region;
|
|
3068
|
+
if (Object.keys(stsParams).length === 0) {
|
|
3069
|
+
stsParams = null;
|
|
3070
|
+
}
|
|
3071
|
+
}
|
|
3072
|
+
|
|
2868
3073
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
2869
3074
|
const reqObj = {
|
|
2870
3075
|
payload: bodyVars,
|
|
@@ -2874,7 +3079,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2874
3079
|
authData: {
|
|
2875
3080
|
stsParams,
|
|
2876
3081
|
roleName
|
|
2877
|
-
}
|
|
3082
|
+
},
|
|
3083
|
+
callProperties
|
|
2878
3084
|
};
|
|
2879
3085
|
|
|
2880
3086
|
try {
|
|
@@ -2984,6 +3190,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2984
3190
|
}
|
|
2985
3191
|
}
|
|
2986
3192
|
|
|
3193
|
+
let callProperties = null;
|
|
3194
|
+
if (stsParams && stsParams.region) {
|
|
3195
|
+
callProperties = {};
|
|
3196
|
+
callProperties.region = stsParams.region;
|
|
3197
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
3198
|
+
delete stsParams.region;
|
|
3199
|
+
if (Object.keys(stsParams).length === 0) {
|
|
3200
|
+
stsParams = null;
|
|
3201
|
+
}
|
|
3202
|
+
}
|
|
3203
|
+
|
|
2987
3204
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
2988
3205
|
const reqObj = {
|
|
2989
3206
|
payload: bodyVars,
|
|
@@ -2993,7 +3210,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
2993
3210
|
authData: {
|
|
2994
3211
|
stsParams,
|
|
2995
3212
|
roleName
|
|
2996
|
-
}
|
|
3213
|
+
},
|
|
3214
|
+
callProperties
|
|
2997
3215
|
};
|
|
2998
3216
|
|
|
2999
3217
|
try {
|
|
@@ -3104,6 +3322,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3104
3322
|
}
|
|
3105
3323
|
}
|
|
3106
3324
|
|
|
3325
|
+
let callProperties = null;
|
|
3326
|
+
if (stsParams && stsParams.region) {
|
|
3327
|
+
callProperties = {};
|
|
3328
|
+
callProperties.region = stsParams.region;
|
|
3329
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
3330
|
+
delete stsParams.region;
|
|
3331
|
+
if (Object.keys(stsParams).length === 0) {
|
|
3332
|
+
stsParams = null;
|
|
3333
|
+
}
|
|
3334
|
+
}
|
|
3335
|
+
|
|
3107
3336
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
3108
3337
|
const reqObj = {
|
|
3109
3338
|
payload: bodyVars,
|
|
@@ -3113,7 +3342,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3113
3342
|
authData: {
|
|
3114
3343
|
stsParams,
|
|
3115
3344
|
roleName
|
|
3116
|
-
}
|
|
3345
|
+
},
|
|
3346
|
+
callProperties
|
|
3117
3347
|
};
|
|
3118
3348
|
|
|
3119
3349
|
try {
|
|
@@ -3232,6 +3462,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3232
3462
|
}
|
|
3233
3463
|
}
|
|
3234
3464
|
|
|
3465
|
+
let callProperties = null;
|
|
3466
|
+
if (stsParams && stsParams.region) {
|
|
3467
|
+
callProperties = {};
|
|
3468
|
+
callProperties.region = stsParams.region;
|
|
3469
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
3470
|
+
delete stsParams.region;
|
|
3471
|
+
if (Object.keys(stsParams).length === 0) {
|
|
3472
|
+
stsParams = null;
|
|
3473
|
+
}
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3235
3476
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
3236
3477
|
const reqObj = {
|
|
3237
3478
|
payload: bodyVars,
|
|
@@ -3241,7 +3482,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3241
3482
|
authData: {
|
|
3242
3483
|
stsParams,
|
|
3243
3484
|
roleName
|
|
3244
|
-
}
|
|
3485
|
+
},
|
|
3486
|
+
callProperties
|
|
3245
3487
|
};
|
|
3246
3488
|
|
|
3247
3489
|
try {
|
|
@@ -3354,6 +3596,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3354
3596
|
}
|
|
3355
3597
|
}
|
|
3356
3598
|
|
|
3599
|
+
let callProperties = null;
|
|
3600
|
+
if (stsParams && stsParams.region) {
|
|
3601
|
+
callProperties = {};
|
|
3602
|
+
callProperties.region = stsParams.region;
|
|
3603
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
3604
|
+
delete stsParams.region;
|
|
3605
|
+
if (Object.keys(stsParams).length === 0) {
|
|
3606
|
+
stsParams = null;
|
|
3607
|
+
}
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3357
3610
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
3358
3611
|
const reqObj = {
|
|
3359
3612
|
payload: bodyVars,
|
|
@@ -3363,7 +3616,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3363
3616
|
authData: {
|
|
3364
3617
|
stsParams,
|
|
3365
3618
|
roleName
|
|
3366
|
-
}
|
|
3619
|
+
},
|
|
3620
|
+
callProperties
|
|
3367
3621
|
};
|
|
3368
3622
|
|
|
3369
3623
|
try {
|
|
@@ -3476,6 +3730,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3476
3730
|
}
|
|
3477
3731
|
}
|
|
3478
3732
|
|
|
3733
|
+
let callProperties = null;
|
|
3734
|
+
if (stsParams && stsParams.region) {
|
|
3735
|
+
callProperties = {};
|
|
3736
|
+
callProperties.region = stsParams.region;
|
|
3737
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
3738
|
+
delete stsParams.region;
|
|
3739
|
+
if (Object.keys(stsParams).length === 0) {
|
|
3740
|
+
stsParams = null;
|
|
3741
|
+
}
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3479
3744
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
3480
3745
|
const reqObj = {
|
|
3481
3746
|
payload: bodyVars,
|
|
@@ -3485,7 +3750,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3485
3750
|
authData: {
|
|
3486
3751
|
stsParams,
|
|
3487
3752
|
roleName
|
|
3488
|
-
}
|
|
3753
|
+
},
|
|
3754
|
+
callProperties
|
|
3489
3755
|
};
|
|
3490
3756
|
|
|
3491
3757
|
try {
|
|
@@ -3588,6 +3854,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3588
3854
|
}
|
|
3589
3855
|
}
|
|
3590
3856
|
|
|
3857
|
+
let callProperties = null;
|
|
3858
|
+
if (stsParams && stsParams.region) {
|
|
3859
|
+
callProperties = {};
|
|
3860
|
+
callProperties.region = stsParams.region;
|
|
3861
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
3862
|
+
delete stsParams.region;
|
|
3863
|
+
if (Object.keys(stsParams).length === 0) {
|
|
3864
|
+
stsParams = null;
|
|
3865
|
+
}
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3591
3868
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
3592
3869
|
const reqObj = {
|
|
3593
3870
|
payload: bodyVars,
|
|
@@ -3597,7 +3874,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3597
3874
|
authData: {
|
|
3598
3875
|
stsParams,
|
|
3599
3876
|
roleName
|
|
3600
|
-
}
|
|
3877
|
+
},
|
|
3878
|
+
callProperties
|
|
3601
3879
|
};
|
|
3602
3880
|
|
|
3603
3881
|
try {
|
|
@@ -3705,6 +3983,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3705
3983
|
}
|
|
3706
3984
|
}
|
|
3707
3985
|
|
|
3986
|
+
let callProperties = null;
|
|
3987
|
+
if (stsParams && stsParams.region) {
|
|
3988
|
+
callProperties = {};
|
|
3989
|
+
callProperties.region = stsParams.region;
|
|
3990
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
3991
|
+
delete stsParams.region;
|
|
3992
|
+
if (Object.keys(stsParams).length === 0) {
|
|
3993
|
+
stsParams = null;
|
|
3994
|
+
}
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3708
3997
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
3709
3998
|
const reqObj = {
|
|
3710
3999
|
payload: bodyVars,
|
|
@@ -3714,7 +4003,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3714
4003
|
authData: {
|
|
3715
4004
|
stsParams,
|
|
3716
4005
|
roleName
|
|
3717
|
-
}
|
|
4006
|
+
},
|
|
4007
|
+
callProperties
|
|
3718
4008
|
};
|
|
3719
4009
|
|
|
3720
4010
|
try {
|
|
@@ -3827,6 +4117,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3827
4117
|
}
|
|
3828
4118
|
}
|
|
3829
4119
|
|
|
4120
|
+
let callProperties = null;
|
|
4121
|
+
if (stsParams && stsParams.region) {
|
|
4122
|
+
callProperties = {};
|
|
4123
|
+
callProperties.region = stsParams.region;
|
|
4124
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
4125
|
+
delete stsParams.region;
|
|
4126
|
+
if (Object.keys(stsParams).length === 0) {
|
|
4127
|
+
stsParams = null;
|
|
4128
|
+
}
|
|
4129
|
+
}
|
|
4130
|
+
|
|
3830
4131
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
3831
4132
|
const reqObj = {
|
|
3832
4133
|
payload: bodyVars,
|
|
@@ -3836,7 +4137,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3836
4137
|
authData: {
|
|
3837
4138
|
stsParams,
|
|
3838
4139
|
roleName
|
|
3839
|
-
}
|
|
4140
|
+
},
|
|
4141
|
+
callProperties
|
|
3840
4142
|
};
|
|
3841
4143
|
|
|
3842
4144
|
try {
|
|
@@ -3942,6 +4244,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3942
4244
|
}
|
|
3943
4245
|
}
|
|
3944
4246
|
|
|
4247
|
+
let callProperties = null;
|
|
4248
|
+
if (stsParams && stsParams.region) {
|
|
4249
|
+
callProperties = {};
|
|
4250
|
+
callProperties.region = stsParams.region;
|
|
4251
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
4252
|
+
delete stsParams.region;
|
|
4253
|
+
if (Object.keys(stsParams).length === 0) {
|
|
4254
|
+
stsParams = null;
|
|
4255
|
+
}
|
|
4256
|
+
}
|
|
4257
|
+
|
|
3945
4258
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
3946
4259
|
const reqObj = {
|
|
3947
4260
|
payload: bodyVars,
|
|
@@ -3951,7 +4264,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
3951
4264
|
authData: {
|
|
3952
4265
|
stsParams,
|
|
3953
4266
|
roleName
|
|
3954
|
-
}
|
|
4267
|
+
},
|
|
4268
|
+
callProperties
|
|
3955
4269
|
};
|
|
3956
4270
|
|
|
3957
4271
|
try {
|
|
@@ -4067,6 +4381,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4067
4381
|
}
|
|
4068
4382
|
}
|
|
4069
4383
|
|
|
4384
|
+
let callProperties = null;
|
|
4385
|
+
if (stsParams && stsParams.region) {
|
|
4386
|
+
callProperties = {};
|
|
4387
|
+
callProperties.region = stsParams.region;
|
|
4388
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
4389
|
+
delete stsParams.region;
|
|
4390
|
+
if (Object.keys(stsParams).length === 0) {
|
|
4391
|
+
stsParams = null;
|
|
4392
|
+
}
|
|
4393
|
+
}
|
|
4394
|
+
|
|
4070
4395
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
4071
4396
|
const reqObj = {
|
|
4072
4397
|
payload: bodyVars,
|
|
@@ -4076,7 +4401,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4076
4401
|
authData: {
|
|
4077
4402
|
stsParams,
|
|
4078
4403
|
roleName
|
|
4079
|
-
}
|
|
4404
|
+
},
|
|
4405
|
+
callProperties
|
|
4080
4406
|
};
|
|
4081
4407
|
|
|
4082
4408
|
try {
|
|
@@ -4189,6 +4515,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4189
4515
|
}
|
|
4190
4516
|
}
|
|
4191
4517
|
|
|
4518
|
+
let callProperties = null;
|
|
4519
|
+
if (stsParams && stsParams.region) {
|
|
4520
|
+
callProperties = {};
|
|
4521
|
+
callProperties.region = stsParams.region;
|
|
4522
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
4523
|
+
delete stsParams.region;
|
|
4524
|
+
if (Object.keys(stsParams).length === 0) {
|
|
4525
|
+
stsParams = null;
|
|
4526
|
+
}
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4192
4529
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
4193
4530
|
const reqObj = {
|
|
4194
4531
|
payload: bodyVars,
|
|
@@ -4198,7 +4535,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4198
4535
|
authData: {
|
|
4199
4536
|
stsParams,
|
|
4200
4537
|
roleName
|
|
4201
|
-
}
|
|
4538
|
+
},
|
|
4539
|
+
callProperties
|
|
4202
4540
|
};
|
|
4203
4541
|
|
|
4204
4542
|
try {
|
|
@@ -4303,6 +4641,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4303
4641
|
}
|
|
4304
4642
|
}
|
|
4305
4643
|
|
|
4644
|
+
let callProperties = null;
|
|
4645
|
+
if (stsParams && stsParams.region) {
|
|
4646
|
+
callProperties = {};
|
|
4647
|
+
callProperties.region = stsParams.region;
|
|
4648
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
4649
|
+
delete stsParams.region;
|
|
4650
|
+
if (Object.keys(stsParams).length === 0) {
|
|
4651
|
+
stsParams = null;
|
|
4652
|
+
}
|
|
4653
|
+
}
|
|
4654
|
+
|
|
4306
4655
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
4307
4656
|
const reqObj = {
|
|
4308
4657
|
payload: bodyVars,
|
|
@@ -4312,7 +4661,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4312
4661
|
authData: {
|
|
4313
4662
|
stsParams,
|
|
4314
4663
|
roleName
|
|
4315
|
-
}
|
|
4664
|
+
},
|
|
4665
|
+
callProperties
|
|
4316
4666
|
};
|
|
4317
4667
|
|
|
4318
4668
|
try {
|
|
@@ -4422,6 +4772,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4422
4772
|
}
|
|
4423
4773
|
}
|
|
4424
4774
|
|
|
4775
|
+
let callProperties = null;
|
|
4776
|
+
if (stsParams && stsParams.region) {
|
|
4777
|
+
callProperties = {};
|
|
4778
|
+
callProperties.region = stsParams.region;
|
|
4779
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
4780
|
+
delete stsParams.region;
|
|
4781
|
+
if (Object.keys(stsParams).length === 0) {
|
|
4782
|
+
stsParams = null;
|
|
4783
|
+
}
|
|
4784
|
+
}
|
|
4785
|
+
|
|
4425
4786
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
4426
4787
|
const reqObj = {
|
|
4427
4788
|
payload: bodyVars,
|
|
@@ -4431,7 +4792,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4431
4792
|
authData: {
|
|
4432
4793
|
stsParams,
|
|
4433
4794
|
roleName
|
|
4434
|
-
}
|
|
4795
|
+
},
|
|
4796
|
+
callProperties
|
|
4435
4797
|
};
|
|
4436
4798
|
|
|
4437
4799
|
try {
|
|
@@ -4542,6 +4904,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4542
4904
|
}
|
|
4543
4905
|
}
|
|
4544
4906
|
|
|
4907
|
+
let callProperties = null;
|
|
4908
|
+
if (stsParams && stsParams.region) {
|
|
4909
|
+
callProperties = {};
|
|
4910
|
+
callProperties.region = stsParams.region;
|
|
4911
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
4912
|
+
delete stsParams.region;
|
|
4913
|
+
if (Object.keys(stsParams).length === 0) {
|
|
4914
|
+
stsParams = null;
|
|
4915
|
+
}
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4545
4918
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
4546
4919
|
const reqObj = {
|
|
4547
4920
|
payload: bodyVars,
|
|
@@ -4551,7 +4924,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4551
4924
|
authData: {
|
|
4552
4925
|
stsParams,
|
|
4553
4926
|
roleName
|
|
4554
|
-
}
|
|
4927
|
+
},
|
|
4928
|
+
callProperties
|
|
4555
4929
|
};
|
|
4556
4930
|
|
|
4557
4931
|
try {
|
|
@@ -4656,6 +5030,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4656
5030
|
}
|
|
4657
5031
|
}
|
|
4658
5032
|
|
|
5033
|
+
let callProperties = null;
|
|
5034
|
+
if (stsParams && stsParams.region) {
|
|
5035
|
+
callProperties = {};
|
|
5036
|
+
callProperties.region = stsParams.region;
|
|
5037
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
5038
|
+
delete stsParams.region;
|
|
5039
|
+
if (Object.keys(stsParams).length === 0) {
|
|
5040
|
+
stsParams = null;
|
|
5041
|
+
}
|
|
5042
|
+
}
|
|
5043
|
+
|
|
4659
5044
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
4660
5045
|
const reqObj = {
|
|
4661
5046
|
payload: bodyVars,
|
|
@@ -4665,7 +5050,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4665
5050
|
authData: {
|
|
4666
5051
|
stsParams,
|
|
4667
5052
|
roleName
|
|
4668
|
-
}
|
|
5053
|
+
},
|
|
5054
|
+
callProperties
|
|
4669
5055
|
};
|
|
4670
5056
|
|
|
4671
5057
|
try {
|
|
@@ -4776,6 +5162,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4776
5162
|
}
|
|
4777
5163
|
}
|
|
4778
5164
|
|
|
5165
|
+
let callProperties = null;
|
|
5166
|
+
if (stsParams && stsParams.region) {
|
|
5167
|
+
callProperties = {};
|
|
5168
|
+
callProperties.region = stsParams.region;
|
|
5169
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
5170
|
+
delete stsParams.region;
|
|
5171
|
+
if (Object.keys(stsParams).length === 0) {
|
|
5172
|
+
stsParams = null;
|
|
5173
|
+
}
|
|
5174
|
+
}
|
|
5175
|
+
|
|
4779
5176
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
4780
5177
|
const reqObj = {
|
|
4781
5178
|
payload: bodyVars,
|
|
@@ -4785,7 +5182,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4785
5182
|
authData: {
|
|
4786
5183
|
stsParams,
|
|
4787
5184
|
roleName
|
|
4788
|
-
}
|
|
5185
|
+
},
|
|
5186
|
+
callProperties
|
|
4789
5187
|
};
|
|
4790
5188
|
|
|
4791
5189
|
try {
|
|
@@ -4901,6 +5299,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4901
5299
|
}
|
|
4902
5300
|
}
|
|
4903
5301
|
|
|
5302
|
+
let callProperties = null;
|
|
5303
|
+
if (stsParams && stsParams.region) {
|
|
5304
|
+
callProperties = {};
|
|
5305
|
+
callProperties.region = stsParams.region;
|
|
5306
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
5307
|
+
delete stsParams.region;
|
|
5308
|
+
if (Object.keys(stsParams).length === 0) {
|
|
5309
|
+
stsParams = null;
|
|
5310
|
+
}
|
|
5311
|
+
}
|
|
5312
|
+
|
|
4904
5313
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
4905
5314
|
const reqObj = {
|
|
4906
5315
|
payload: bodyVars,
|
|
@@ -4910,7 +5319,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
4910
5319
|
authData: {
|
|
4911
5320
|
stsParams,
|
|
4912
5321
|
roleName
|
|
4913
|
-
}
|
|
5322
|
+
},
|
|
5323
|
+
callProperties
|
|
4914
5324
|
};
|
|
4915
5325
|
|
|
4916
5326
|
try {
|
|
@@ -5018,6 +5428,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5018
5428
|
}
|
|
5019
5429
|
}
|
|
5020
5430
|
|
|
5431
|
+
let callProperties = null;
|
|
5432
|
+
if (stsParams && stsParams.region) {
|
|
5433
|
+
callProperties = {};
|
|
5434
|
+
callProperties.region = stsParams.region;
|
|
5435
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
5436
|
+
delete stsParams.region;
|
|
5437
|
+
if (Object.keys(stsParams).length === 0) {
|
|
5438
|
+
stsParams = null;
|
|
5439
|
+
}
|
|
5440
|
+
}
|
|
5441
|
+
|
|
5021
5442
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
5022
5443
|
const reqObj = {
|
|
5023
5444
|
payload: bodyVars,
|
|
@@ -5027,7 +5448,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5027
5448
|
authData: {
|
|
5028
5449
|
stsParams,
|
|
5029
5450
|
roleName
|
|
5030
|
-
}
|
|
5451
|
+
},
|
|
5452
|
+
callProperties
|
|
5031
5453
|
};
|
|
5032
5454
|
|
|
5033
5455
|
try {
|
|
@@ -5138,6 +5560,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5138
5560
|
}
|
|
5139
5561
|
}
|
|
5140
5562
|
|
|
5563
|
+
let callProperties = null;
|
|
5564
|
+
if (stsParams && stsParams.region) {
|
|
5565
|
+
callProperties = {};
|
|
5566
|
+
callProperties.region = stsParams.region;
|
|
5567
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
5568
|
+
delete stsParams.region;
|
|
5569
|
+
if (Object.keys(stsParams).length === 0) {
|
|
5570
|
+
stsParams = null;
|
|
5571
|
+
}
|
|
5572
|
+
}
|
|
5573
|
+
|
|
5141
5574
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
5142
5575
|
const reqObj = {
|
|
5143
5576
|
payload: bodyVars,
|
|
@@ -5147,7 +5580,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5147
5580
|
authData: {
|
|
5148
5581
|
stsParams,
|
|
5149
5582
|
roleName
|
|
5150
|
-
}
|
|
5583
|
+
},
|
|
5584
|
+
callProperties
|
|
5151
5585
|
};
|
|
5152
5586
|
|
|
5153
5587
|
try {
|
|
@@ -5258,6 +5692,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5258
5692
|
}
|
|
5259
5693
|
}
|
|
5260
5694
|
|
|
5695
|
+
let callProperties = null;
|
|
5696
|
+
if (stsParams && stsParams.region) {
|
|
5697
|
+
callProperties = {};
|
|
5698
|
+
callProperties.region = stsParams.region;
|
|
5699
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
5700
|
+
delete stsParams.region;
|
|
5701
|
+
if (Object.keys(stsParams).length === 0) {
|
|
5702
|
+
stsParams = null;
|
|
5703
|
+
}
|
|
5704
|
+
}
|
|
5705
|
+
|
|
5261
5706
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
5262
5707
|
const reqObj = {
|
|
5263
5708
|
payload: bodyVars,
|
|
@@ -5267,7 +5712,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5267
5712
|
authData: {
|
|
5268
5713
|
stsParams,
|
|
5269
5714
|
roleName
|
|
5270
|
-
}
|
|
5715
|
+
},
|
|
5716
|
+
callProperties
|
|
5271
5717
|
};
|
|
5272
5718
|
|
|
5273
5719
|
try {
|
|
@@ -5434,6 +5880,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5434
5880
|
}
|
|
5435
5881
|
}
|
|
5436
5882
|
|
|
5883
|
+
let callProperties = null;
|
|
5884
|
+
if (stsParams && stsParams.region) {
|
|
5885
|
+
callProperties = {};
|
|
5886
|
+
callProperties.region = stsParams.region;
|
|
5887
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
5888
|
+
delete stsParams.region;
|
|
5889
|
+
if (Object.keys(stsParams).length === 0) {
|
|
5890
|
+
stsParams = null;
|
|
5891
|
+
}
|
|
5892
|
+
}
|
|
5893
|
+
|
|
5437
5894
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
5438
5895
|
const reqObj = {
|
|
5439
5896
|
payload: bodyVars,
|
|
@@ -5443,7 +5900,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5443
5900
|
authData: {
|
|
5444
5901
|
stsParams,
|
|
5445
5902
|
roleName
|
|
5446
|
-
}
|
|
5903
|
+
},
|
|
5904
|
+
callProperties
|
|
5447
5905
|
};
|
|
5448
5906
|
|
|
5449
5907
|
try {
|
|
@@ -5551,6 +6009,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5551
6009
|
}
|
|
5552
6010
|
}
|
|
5553
6011
|
|
|
6012
|
+
let callProperties = null;
|
|
6013
|
+
if (stsParams && stsParams.region) {
|
|
6014
|
+
callProperties = {};
|
|
6015
|
+
callProperties.region = stsParams.region;
|
|
6016
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
6017
|
+
delete stsParams.region;
|
|
6018
|
+
if (Object.keys(stsParams).length === 0) {
|
|
6019
|
+
stsParams = null;
|
|
6020
|
+
}
|
|
6021
|
+
}
|
|
6022
|
+
|
|
5554
6023
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
5555
6024
|
const reqObj = {
|
|
5556
6025
|
payload: bodyVars,
|
|
@@ -5560,7 +6029,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5560
6029
|
authData: {
|
|
5561
6030
|
stsParams,
|
|
5562
6031
|
roleName
|
|
5563
|
-
}
|
|
6032
|
+
},
|
|
6033
|
+
callProperties
|
|
5564
6034
|
};
|
|
5565
6035
|
|
|
5566
6036
|
try {
|
|
@@ -5672,6 +6142,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5672
6142
|
}
|
|
5673
6143
|
}
|
|
5674
6144
|
|
|
6145
|
+
let callProperties = null;
|
|
6146
|
+
if (stsParams && stsParams.region) {
|
|
6147
|
+
callProperties = {};
|
|
6148
|
+
callProperties.region = stsParams.region;
|
|
6149
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
6150
|
+
delete stsParams.region;
|
|
6151
|
+
if (Object.keys(stsParams).length === 0) {
|
|
6152
|
+
stsParams = null;
|
|
6153
|
+
}
|
|
6154
|
+
}
|
|
6155
|
+
|
|
5675
6156
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
5676
6157
|
const reqObj = {
|
|
5677
6158
|
payload: bodyVars,
|
|
@@ -5681,7 +6162,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5681
6162
|
authData: {
|
|
5682
6163
|
stsParams,
|
|
5683
6164
|
roleName
|
|
5684
|
-
}
|
|
6165
|
+
},
|
|
6166
|
+
callProperties
|
|
5685
6167
|
};
|
|
5686
6168
|
|
|
5687
6169
|
try {
|
|
@@ -5790,6 +6272,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5790
6272
|
}
|
|
5791
6273
|
}
|
|
5792
6274
|
|
|
6275
|
+
let callProperties = null;
|
|
6276
|
+
if (stsParams && stsParams.region) {
|
|
6277
|
+
callProperties = {};
|
|
6278
|
+
callProperties.region = stsParams.region;
|
|
6279
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
6280
|
+
delete stsParams.region;
|
|
6281
|
+
if (Object.keys(stsParams).length === 0) {
|
|
6282
|
+
stsParams = null;
|
|
6283
|
+
}
|
|
6284
|
+
}
|
|
6285
|
+
|
|
5793
6286
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
5794
6287
|
const reqObj = {
|
|
5795
6288
|
payload: bodyVars,
|
|
@@ -5799,7 +6292,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5799
6292
|
authData: {
|
|
5800
6293
|
stsParams,
|
|
5801
6294
|
roleName
|
|
5802
|
-
}
|
|
6295
|
+
},
|
|
6296
|
+
callProperties
|
|
5803
6297
|
};
|
|
5804
6298
|
|
|
5805
6299
|
try {
|
|
@@ -5914,6 +6408,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5914
6408
|
}
|
|
5915
6409
|
}
|
|
5916
6410
|
|
|
6411
|
+
let callProperties = null;
|
|
6412
|
+
if (stsParams && stsParams.region) {
|
|
6413
|
+
callProperties = {};
|
|
6414
|
+
callProperties.region = stsParams.region;
|
|
6415
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
6416
|
+
delete stsParams.region;
|
|
6417
|
+
if (Object.keys(stsParams).length === 0) {
|
|
6418
|
+
stsParams = null;
|
|
6419
|
+
}
|
|
6420
|
+
}
|
|
6421
|
+
|
|
5917
6422
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
5918
6423
|
const reqObj = {
|
|
5919
6424
|
payload: bodyVars,
|
|
@@ -5923,7 +6428,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
5923
6428
|
authData: {
|
|
5924
6429
|
stsParams,
|
|
5925
6430
|
roleName
|
|
5926
|
-
}
|
|
6431
|
+
},
|
|
6432
|
+
callProperties
|
|
5927
6433
|
};
|
|
5928
6434
|
|
|
5929
6435
|
try {
|
|
@@ -6028,6 +6534,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6028
6534
|
}
|
|
6029
6535
|
}
|
|
6030
6536
|
|
|
6537
|
+
let callProperties = null;
|
|
6538
|
+
if (stsParams && stsParams.region) {
|
|
6539
|
+
callProperties = {};
|
|
6540
|
+
callProperties.region = stsParams.region;
|
|
6541
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
6542
|
+
delete stsParams.region;
|
|
6543
|
+
if (Object.keys(stsParams).length === 0) {
|
|
6544
|
+
stsParams = null;
|
|
6545
|
+
}
|
|
6546
|
+
}
|
|
6547
|
+
|
|
6031
6548
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6032
6549
|
const reqObj = {
|
|
6033
6550
|
payload: bodyVars,
|
|
@@ -6037,7 +6554,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6037
6554
|
authData: {
|
|
6038
6555
|
stsParams,
|
|
6039
6556
|
roleName
|
|
6040
|
-
}
|
|
6557
|
+
},
|
|
6558
|
+
callProperties
|
|
6041
6559
|
};
|
|
6042
6560
|
|
|
6043
6561
|
try {
|
|
@@ -6157,6 +6675,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6157
6675
|
}
|
|
6158
6676
|
}
|
|
6159
6677
|
|
|
6678
|
+
let callProperties = null;
|
|
6679
|
+
if (stsParams && stsParams.region) {
|
|
6680
|
+
callProperties = {};
|
|
6681
|
+
callProperties.region = stsParams.region;
|
|
6682
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
6683
|
+
delete stsParams.region;
|
|
6684
|
+
if (Object.keys(stsParams).length === 0) {
|
|
6685
|
+
stsParams = null;
|
|
6686
|
+
}
|
|
6687
|
+
}
|
|
6688
|
+
|
|
6160
6689
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6161
6690
|
const reqObj = {
|
|
6162
6691
|
payload: bodyVars,
|
|
@@ -6166,7 +6695,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6166
6695
|
authData: {
|
|
6167
6696
|
stsParams,
|
|
6168
6697
|
roleName
|
|
6169
|
-
}
|
|
6698
|
+
},
|
|
6699
|
+
callProperties
|
|
6170
6700
|
};
|
|
6171
6701
|
|
|
6172
6702
|
try {
|
|
@@ -6275,6 +6805,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6275
6805
|
}
|
|
6276
6806
|
}
|
|
6277
6807
|
|
|
6808
|
+
let callProperties = null;
|
|
6809
|
+
if (stsParams && stsParams.region) {
|
|
6810
|
+
callProperties = {};
|
|
6811
|
+
callProperties.region = stsParams.region;
|
|
6812
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
6813
|
+
delete stsParams.region;
|
|
6814
|
+
if (Object.keys(stsParams).length === 0) {
|
|
6815
|
+
stsParams = null;
|
|
6816
|
+
}
|
|
6817
|
+
}
|
|
6818
|
+
|
|
6278
6819
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6279
6820
|
const reqObj = {
|
|
6280
6821
|
payload: bodyVars,
|
|
@@ -6284,7 +6825,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6284
6825
|
authData: {
|
|
6285
6826
|
stsParams,
|
|
6286
6827
|
roleName
|
|
6287
|
-
}
|
|
6828
|
+
},
|
|
6829
|
+
callProperties
|
|
6288
6830
|
};
|
|
6289
6831
|
|
|
6290
6832
|
try {
|
|
@@ -6399,6 +6941,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6399
6941
|
}
|
|
6400
6942
|
}
|
|
6401
6943
|
|
|
6944
|
+
let callProperties = null;
|
|
6945
|
+
if (stsParams && stsParams.region) {
|
|
6946
|
+
callProperties = {};
|
|
6947
|
+
callProperties.region = stsParams.region;
|
|
6948
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
6949
|
+
delete stsParams.region;
|
|
6950
|
+
if (Object.keys(stsParams).length === 0) {
|
|
6951
|
+
stsParams = null;
|
|
6952
|
+
}
|
|
6953
|
+
}
|
|
6954
|
+
|
|
6402
6955
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6403
6956
|
const reqObj = {
|
|
6404
6957
|
payload: bodyVars,
|
|
@@ -6408,7 +6961,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6408
6961
|
authData: {
|
|
6409
6962
|
stsParams,
|
|
6410
6963
|
roleName
|
|
6411
|
-
}
|
|
6964
|
+
},
|
|
6965
|
+
callProperties
|
|
6412
6966
|
};
|
|
6413
6967
|
|
|
6414
6968
|
try {
|
|
@@ -6517,6 +7071,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6517
7071
|
}
|
|
6518
7072
|
}
|
|
6519
7073
|
|
|
7074
|
+
let callProperties = null;
|
|
7075
|
+
if (stsParams && stsParams.region) {
|
|
7076
|
+
callProperties = {};
|
|
7077
|
+
callProperties.region = stsParams.region;
|
|
7078
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
7079
|
+
delete stsParams.region;
|
|
7080
|
+
if (Object.keys(stsParams).length === 0) {
|
|
7081
|
+
stsParams = null;
|
|
7082
|
+
}
|
|
7083
|
+
}
|
|
7084
|
+
|
|
6520
7085
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6521
7086
|
const reqObj = {
|
|
6522
7087
|
payload: bodyVars,
|
|
@@ -6526,7 +7091,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6526
7091
|
authData: {
|
|
6527
7092
|
stsParams,
|
|
6528
7093
|
roleName
|
|
6529
|
-
}
|
|
7094
|
+
},
|
|
7095
|
+
callProperties
|
|
6530
7096
|
};
|
|
6531
7097
|
|
|
6532
7098
|
try {
|
|
@@ -6634,6 +7200,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6634
7200
|
}
|
|
6635
7201
|
}
|
|
6636
7202
|
|
|
7203
|
+
let callProperties = null;
|
|
7204
|
+
if (stsParams && stsParams.region) {
|
|
7205
|
+
callProperties = {};
|
|
7206
|
+
callProperties.region = stsParams.region;
|
|
7207
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
7208
|
+
delete stsParams.region;
|
|
7209
|
+
if (Object.keys(stsParams).length === 0) {
|
|
7210
|
+
stsParams = null;
|
|
7211
|
+
}
|
|
7212
|
+
}
|
|
7213
|
+
|
|
6637
7214
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6638
7215
|
const reqObj = {
|
|
6639
7216
|
payload: bodyVars,
|
|
@@ -6643,7 +7220,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6643
7220
|
authData: {
|
|
6644
7221
|
stsParams,
|
|
6645
7222
|
roleName
|
|
6646
|
-
}
|
|
7223
|
+
},
|
|
7224
|
+
callProperties
|
|
6647
7225
|
};
|
|
6648
7226
|
|
|
6649
7227
|
try {
|
|
@@ -6743,6 +7321,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6743
7321
|
}
|
|
6744
7322
|
}
|
|
6745
7323
|
|
|
7324
|
+
let callProperties = null;
|
|
7325
|
+
if (stsParams && stsParams.region) {
|
|
7326
|
+
callProperties = {};
|
|
7327
|
+
callProperties.region = stsParams.region;
|
|
7328
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
7329
|
+
delete stsParams.region;
|
|
7330
|
+
if (Object.keys(stsParams).length === 0) {
|
|
7331
|
+
stsParams = null;
|
|
7332
|
+
}
|
|
7333
|
+
}
|
|
7334
|
+
|
|
6746
7335
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6747
7336
|
const reqObj = {
|
|
6748
7337
|
payload: bodyVars,
|
|
@@ -6752,7 +7341,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6752
7341
|
authData: {
|
|
6753
7342
|
stsParams,
|
|
6754
7343
|
roleName
|
|
6755
|
-
}
|
|
7344
|
+
},
|
|
7345
|
+
callProperties
|
|
6756
7346
|
};
|
|
6757
7347
|
|
|
6758
7348
|
try {
|
|
@@ -6852,6 +7442,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6852
7442
|
}
|
|
6853
7443
|
}
|
|
6854
7444
|
|
|
7445
|
+
let callProperties = null;
|
|
7446
|
+
if (stsParams && stsParams.region) {
|
|
7447
|
+
callProperties = {};
|
|
7448
|
+
callProperties.region = stsParams.region;
|
|
7449
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
7450
|
+
delete stsParams.region;
|
|
7451
|
+
if (Object.keys(stsParams).length === 0) {
|
|
7452
|
+
stsParams = null;
|
|
7453
|
+
}
|
|
7454
|
+
}
|
|
7455
|
+
|
|
6855
7456
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6856
7457
|
const reqObj = {
|
|
6857
7458
|
payload: bodyVars,
|
|
@@ -6861,7 +7462,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6861
7462
|
authData: {
|
|
6862
7463
|
stsParams,
|
|
6863
7464
|
roleName
|
|
6864
|
-
}
|
|
7465
|
+
},
|
|
7466
|
+
callProperties
|
|
6865
7467
|
};
|
|
6866
7468
|
|
|
6867
7469
|
try {
|
|
@@ -6967,6 +7569,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6967
7569
|
}
|
|
6968
7570
|
}
|
|
6969
7571
|
|
|
7572
|
+
let callProperties = null;
|
|
7573
|
+
if (stsParams && stsParams.region) {
|
|
7574
|
+
callProperties = {};
|
|
7575
|
+
callProperties.region = stsParams.region;
|
|
7576
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
7577
|
+
delete stsParams.region;
|
|
7578
|
+
if (Object.keys(stsParams).length === 0) {
|
|
7579
|
+
stsParams = null;
|
|
7580
|
+
}
|
|
7581
|
+
}
|
|
7582
|
+
|
|
6970
7583
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
6971
7584
|
const reqObj = {
|
|
6972
7585
|
payload: bodyVars,
|
|
@@ -6976,7 +7589,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
6976
7589
|
authData: {
|
|
6977
7590
|
stsParams,
|
|
6978
7591
|
roleName
|
|
6979
|
-
}
|
|
7592
|
+
},
|
|
7593
|
+
callProperties
|
|
6980
7594
|
};
|
|
6981
7595
|
|
|
6982
7596
|
try {
|
|
@@ -7085,6 +7699,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7085
7699
|
}
|
|
7086
7700
|
}
|
|
7087
7701
|
|
|
7702
|
+
let callProperties = null;
|
|
7703
|
+
if (stsParams && stsParams.region) {
|
|
7704
|
+
callProperties = {};
|
|
7705
|
+
callProperties.region = stsParams.region;
|
|
7706
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
7707
|
+
delete stsParams.region;
|
|
7708
|
+
if (Object.keys(stsParams).length === 0) {
|
|
7709
|
+
stsParams = null;
|
|
7710
|
+
}
|
|
7711
|
+
}
|
|
7712
|
+
|
|
7088
7713
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
7089
7714
|
const reqObj = {
|
|
7090
7715
|
payload: bodyVars,
|
|
@@ -7094,7 +7719,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7094
7719
|
authData: {
|
|
7095
7720
|
stsParams,
|
|
7096
7721
|
roleName
|
|
7097
|
-
}
|
|
7722
|
+
},
|
|
7723
|
+
callProperties
|
|
7098
7724
|
};
|
|
7099
7725
|
|
|
7100
7726
|
try {
|
|
@@ -7197,6 +7823,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7197
7823
|
}
|
|
7198
7824
|
}
|
|
7199
7825
|
|
|
7826
|
+
let callProperties = null;
|
|
7827
|
+
if (stsParams && stsParams.region) {
|
|
7828
|
+
callProperties = {};
|
|
7829
|
+
callProperties.region = stsParams.region;
|
|
7830
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
7831
|
+
delete stsParams.region;
|
|
7832
|
+
if (Object.keys(stsParams).length === 0) {
|
|
7833
|
+
stsParams = null;
|
|
7834
|
+
}
|
|
7835
|
+
}
|
|
7836
|
+
|
|
7200
7837
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
7201
7838
|
const reqObj = {
|
|
7202
7839
|
payload: bodyVars,
|
|
@@ -7206,7 +7843,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7206
7843
|
authData: {
|
|
7207
7844
|
stsParams,
|
|
7208
7845
|
roleName
|
|
7209
|
-
}
|
|
7846
|
+
},
|
|
7847
|
+
callProperties
|
|
7210
7848
|
};
|
|
7211
7849
|
|
|
7212
7850
|
try {
|
|
@@ -7314,6 +7952,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7314
7952
|
}
|
|
7315
7953
|
}
|
|
7316
7954
|
|
|
7955
|
+
let callProperties = null;
|
|
7956
|
+
if (stsParams && stsParams.region) {
|
|
7957
|
+
callProperties = {};
|
|
7958
|
+
callProperties.region = stsParams.region;
|
|
7959
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
7960
|
+
delete stsParams.region;
|
|
7961
|
+
if (Object.keys(stsParams).length === 0) {
|
|
7962
|
+
stsParams = null;
|
|
7963
|
+
}
|
|
7964
|
+
}
|
|
7965
|
+
|
|
7317
7966
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
7318
7967
|
const reqObj = {
|
|
7319
7968
|
payload: bodyVars,
|
|
@@ -7323,7 +7972,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7323
7972
|
authData: {
|
|
7324
7973
|
stsParams,
|
|
7325
7974
|
roleName
|
|
7326
|
-
}
|
|
7975
|
+
},
|
|
7976
|
+
callProperties
|
|
7327
7977
|
};
|
|
7328
7978
|
|
|
7329
7979
|
try {
|
|
@@ -7452,6 +8102,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7452
8102
|
}
|
|
7453
8103
|
}
|
|
7454
8104
|
|
|
8105
|
+
let callProperties = null;
|
|
8106
|
+
if (stsParams && stsParams.region) {
|
|
8107
|
+
callProperties = {};
|
|
8108
|
+
callProperties.region = stsParams.region;
|
|
8109
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
8110
|
+
delete stsParams.region;
|
|
8111
|
+
if (Object.keys(stsParams).length === 0) {
|
|
8112
|
+
stsParams = null;
|
|
8113
|
+
}
|
|
8114
|
+
}
|
|
8115
|
+
|
|
7455
8116
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
7456
8117
|
const reqObj = {
|
|
7457
8118
|
payload: bodyVars,
|
|
@@ -7461,7 +8122,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7461
8122
|
authData: {
|
|
7462
8123
|
stsParams,
|
|
7463
8124
|
roleName
|
|
7464
|
-
}
|
|
8125
|
+
},
|
|
8126
|
+
callProperties
|
|
7465
8127
|
};
|
|
7466
8128
|
|
|
7467
8129
|
try {
|
|
@@ -7575,6 +8237,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7575
8237
|
}
|
|
7576
8238
|
}
|
|
7577
8239
|
|
|
8240
|
+
let callProperties = null;
|
|
8241
|
+
if (stsParams && stsParams.region) {
|
|
8242
|
+
callProperties = {};
|
|
8243
|
+
callProperties.region = stsParams.region;
|
|
8244
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
8245
|
+
delete stsParams.region;
|
|
8246
|
+
if (Object.keys(stsParams).length === 0) {
|
|
8247
|
+
stsParams = null;
|
|
8248
|
+
}
|
|
8249
|
+
}
|
|
8250
|
+
|
|
7578
8251
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
7579
8252
|
const reqObj = {
|
|
7580
8253
|
payload: bodyVars,
|
|
@@ -7584,7 +8257,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7584
8257
|
authData: {
|
|
7585
8258
|
stsParams,
|
|
7586
8259
|
roleName
|
|
7587
|
-
}
|
|
8260
|
+
},
|
|
8261
|
+
callProperties
|
|
7588
8262
|
};
|
|
7589
8263
|
|
|
7590
8264
|
try {
|
|
@@ -7711,6 +8385,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7711
8385
|
}
|
|
7712
8386
|
}
|
|
7713
8387
|
|
|
8388
|
+
let callProperties = null;
|
|
8389
|
+
if (stsParams && stsParams.region) {
|
|
8390
|
+
callProperties = {};
|
|
8391
|
+
callProperties.region = stsParams.region;
|
|
8392
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
8393
|
+
delete stsParams.region;
|
|
8394
|
+
if (Object.keys(stsParams).length === 0) {
|
|
8395
|
+
stsParams = null;
|
|
8396
|
+
}
|
|
8397
|
+
}
|
|
8398
|
+
|
|
7714
8399
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
7715
8400
|
const reqObj = {
|
|
7716
8401
|
payload: bodyVars,
|
|
@@ -7720,7 +8405,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7720
8405
|
authData: {
|
|
7721
8406
|
stsParams,
|
|
7722
8407
|
roleName
|
|
7723
|
-
}
|
|
8408
|
+
},
|
|
8409
|
+
callProperties
|
|
7724
8410
|
};
|
|
7725
8411
|
|
|
7726
8412
|
try {
|
|
@@ -7827,6 +8513,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7827
8513
|
}
|
|
7828
8514
|
}
|
|
7829
8515
|
|
|
8516
|
+
let callProperties = null;
|
|
8517
|
+
if (stsParams && stsParams.region) {
|
|
8518
|
+
callProperties = {};
|
|
8519
|
+
callProperties.region = stsParams.region;
|
|
8520
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
8521
|
+
delete stsParams.region;
|
|
8522
|
+
if (Object.keys(stsParams).length === 0) {
|
|
8523
|
+
stsParams = null;
|
|
8524
|
+
}
|
|
8525
|
+
}
|
|
8526
|
+
|
|
7830
8527
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
7831
8528
|
const reqObj = {
|
|
7832
8529
|
payload: bodyVars,
|
|
@@ -7836,7 +8533,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7836
8533
|
authData: {
|
|
7837
8534
|
stsParams,
|
|
7838
8535
|
roleName
|
|
7839
|
-
}
|
|
8536
|
+
},
|
|
8537
|
+
callProperties
|
|
7840
8538
|
};
|
|
7841
8539
|
|
|
7842
8540
|
try {
|
|
@@ -7942,6 +8640,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7942
8640
|
}
|
|
7943
8641
|
}
|
|
7944
8642
|
|
|
8643
|
+
let callProperties = null;
|
|
8644
|
+
if (stsParams && stsParams.region) {
|
|
8645
|
+
callProperties = {};
|
|
8646
|
+
callProperties.region = stsParams.region;
|
|
8647
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
8648
|
+
delete stsParams.region;
|
|
8649
|
+
if (Object.keys(stsParams).length === 0) {
|
|
8650
|
+
stsParams = null;
|
|
8651
|
+
}
|
|
8652
|
+
}
|
|
8653
|
+
|
|
7945
8654
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
7946
8655
|
const reqObj = {
|
|
7947
8656
|
payload: bodyVars,
|
|
@@ -7951,7 +8660,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
7951
8660
|
authData: {
|
|
7952
8661
|
stsParams,
|
|
7953
8662
|
roleName
|
|
7954
|
-
}
|
|
8663
|
+
},
|
|
8664
|
+
callProperties
|
|
7955
8665
|
};
|
|
7956
8666
|
|
|
7957
8667
|
try {
|
|
@@ -8060,6 +8770,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8060
8770
|
}
|
|
8061
8771
|
}
|
|
8062
8772
|
|
|
8773
|
+
let callProperties = null;
|
|
8774
|
+
if (stsParams && stsParams.region) {
|
|
8775
|
+
callProperties = {};
|
|
8776
|
+
callProperties.region = stsParams.region;
|
|
8777
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
8778
|
+
delete stsParams.region;
|
|
8779
|
+
if (Object.keys(stsParams).length === 0) {
|
|
8780
|
+
stsParams = null;
|
|
8781
|
+
}
|
|
8782
|
+
}
|
|
8783
|
+
|
|
8063
8784
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8064
8785
|
const reqObj = {
|
|
8065
8786
|
payload: bodyVars,
|
|
@@ -8069,7 +8790,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8069
8790
|
authData: {
|
|
8070
8791
|
stsParams,
|
|
8071
8792
|
roleName
|
|
8072
|
-
}
|
|
8793
|
+
},
|
|
8794
|
+
callProperties
|
|
8073
8795
|
};
|
|
8074
8796
|
|
|
8075
8797
|
try {
|
|
@@ -8186,6 +8908,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8186
8908
|
}
|
|
8187
8909
|
}
|
|
8188
8910
|
|
|
8911
|
+
let callProperties = null;
|
|
8912
|
+
if (stsParams && stsParams.region) {
|
|
8913
|
+
callProperties = {};
|
|
8914
|
+
callProperties.region = stsParams.region;
|
|
8915
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
8916
|
+
delete stsParams.region;
|
|
8917
|
+
if (Object.keys(stsParams).length === 0) {
|
|
8918
|
+
stsParams = null;
|
|
8919
|
+
}
|
|
8920
|
+
}
|
|
8921
|
+
|
|
8189
8922
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8190
8923
|
const reqObj = {
|
|
8191
8924
|
payload: bodyVars,
|
|
@@ -8195,7 +8928,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8195
8928
|
authData: {
|
|
8196
8929
|
stsParams,
|
|
8197
8930
|
roleName
|
|
8198
|
-
}
|
|
8931
|
+
},
|
|
8932
|
+
callProperties
|
|
8199
8933
|
};
|
|
8200
8934
|
|
|
8201
8935
|
try {
|
|
@@ -8309,6 +9043,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8309
9043
|
}
|
|
8310
9044
|
}
|
|
8311
9045
|
|
|
9046
|
+
let callProperties = null;
|
|
9047
|
+
if (stsParams && stsParams.region) {
|
|
9048
|
+
callProperties = {};
|
|
9049
|
+
callProperties.region = stsParams.region;
|
|
9050
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
9051
|
+
delete stsParams.region;
|
|
9052
|
+
if (Object.keys(stsParams).length === 0) {
|
|
9053
|
+
stsParams = null;
|
|
9054
|
+
}
|
|
9055
|
+
}
|
|
9056
|
+
|
|
8312
9057
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8313
9058
|
const reqObj = {
|
|
8314
9059
|
payload: bodyVars,
|
|
@@ -8318,7 +9063,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8318
9063
|
authData: {
|
|
8319
9064
|
stsParams,
|
|
8320
9065
|
roleName
|
|
8321
|
-
}
|
|
9066
|
+
},
|
|
9067
|
+
callProperties
|
|
8322
9068
|
};
|
|
8323
9069
|
|
|
8324
9070
|
try {
|
|
@@ -8413,6 +9159,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8413
9159
|
}
|
|
8414
9160
|
}
|
|
8415
9161
|
|
|
9162
|
+
let callProperties = null;
|
|
9163
|
+
if (stsParams && stsParams.region) {
|
|
9164
|
+
callProperties = {};
|
|
9165
|
+
callProperties.region = stsParams.region;
|
|
9166
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
9167
|
+
delete stsParams.region;
|
|
9168
|
+
if (Object.keys(stsParams).length === 0) {
|
|
9169
|
+
stsParams = null;
|
|
9170
|
+
}
|
|
9171
|
+
}
|
|
9172
|
+
|
|
8416
9173
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8417
9174
|
const reqObj = {
|
|
8418
9175
|
payload: bodyVars,
|
|
@@ -8422,7 +9179,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8422
9179
|
authData: {
|
|
8423
9180
|
stsParams,
|
|
8424
9181
|
roleName
|
|
8425
|
-
}
|
|
9182
|
+
},
|
|
9183
|
+
callProperties
|
|
8426
9184
|
};
|
|
8427
9185
|
|
|
8428
9186
|
try {
|
|
@@ -8517,6 +9275,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8517
9275
|
}
|
|
8518
9276
|
}
|
|
8519
9277
|
|
|
9278
|
+
let callProperties = null;
|
|
9279
|
+
if (stsParams && stsParams.region) {
|
|
9280
|
+
callProperties = {};
|
|
9281
|
+
callProperties.region = stsParams.region;
|
|
9282
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
9283
|
+
delete stsParams.region;
|
|
9284
|
+
if (Object.keys(stsParams).length === 0) {
|
|
9285
|
+
stsParams = null;
|
|
9286
|
+
}
|
|
9287
|
+
}
|
|
9288
|
+
|
|
8520
9289
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8521
9290
|
const reqObj = {
|
|
8522
9291
|
payload: bodyVars,
|
|
@@ -8526,7 +9295,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8526
9295
|
authData: {
|
|
8527
9296
|
stsParams,
|
|
8528
9297
|
roleName
|
|
8529
|
-
}
|
|
9298
|
+
},
|
|
9299
|
+
callProperties
|
|
8530
9300
|
};
|
|
8531
9301
|
|
|
8532
9302
|
try {
|
|
@@ -8624,6 +9394,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8624
9394
|
}
|
|
8625
9395
|
}
|
|
8626
9396
|
|
|
9397
|
+
let callProperties = null;
|
|
9398
|
+
if (stsParams && stsParams.region) {
|
|
9399
|
+
callProperties = {};
|
|
9400
|
+
callProperties.region = stsParams.region;
|
|
9401
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
9402
|
+
delete stsParams.region;
|
|
9403
|
+
if (Object.keys(stsParams).length === 0) {
|
|
9404
|
+
stsParams = null;
|
|
9405
|
+
}
|
|
9406
|
+
}
|
|
9407
|
+
|
|
8627
9408
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8628
9409
|
const reqObj = {
|
|
8629
9410
|
payload: bodyVars,
|
|
@@ -8633,7 +9414,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8633
9414
|
authData: {
|
|
8634
9415
|
stsParams,
|
|
8635
9416
|
roleName
|
|
8636
|
-
}
|
|
9417
|
+
},
|
|
9418
|
+
callProperties
|
|
8637
9419
|
};
|
|
8638
9420
|
|
|
8639
9421
|
try {
|
|
@@ -8761,6 +9543,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8761
9543
|
}
|
|
8762
9544
|
}
|
|
8763
9545
|
|
|
9546
|
+
let callProperties = null;
|
|
9547
|
+
if (stsParams && stsParams.region) {
|
|
9548
|
+
callProperties = {};
|
|
9549
|
+
callProperties.region = stsParams.region;
|
|
9550
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
9551
|
+
delete stsParams.region;
|
|
9552
|
+
if (Object.keys(stsParams).length === 0) {
|
|
9553
|
+
stsParams = null;
|
|
9554
|
+
}
|
|
9555
|
+
}
|
|
9556
|
+
|
|
8764
9557
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8765
9558
|
const reqObj = {
|
|
8766
9559
|
payload: bodyVars,
|
|
@@ -8770,7 +9563,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8770
9563
|
authData: {
|
|
8771
9564
|
stsParams,
|
|
8772
9565
|
roleName
|
|
8773
|
-
}
|
|
9566
|
+
},
|
|
9567
|
+
callProperties
|
|
8774
9568
|
};
|
|
8775
9569
|
|
|
8776
9570
|
try {
|
|
@@ -8881,6 +9675,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8881
9675
|
}
|
|
8882
9676
|
}
|
|
8883
9677
|
|
|
9678
|
+
let callProperties = null;
|
|
9679
|
+
if (stsParams && stsParams.region) {
|
|
9680
|
+
callProperties = {};
|
|
9681
|
+
callProperties.region = stsParams.region;
|
|
9682
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
9683
|
+
delete stsParams.region;
|
|
9684
|
+
if (Object.keys(stsParams).length === 0) {
|
|
9685
|
+
stsParams = null;
|
|
9686
|
+
}
|
|
9687
|
+
}
|
|
9688
|
+
|
|
8884
9689
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8885
9690
|
const reqObj = {
|
|
8886
9691
|
payload: bodyVars,
|
|
@@ -8890,7 +9695,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8890
9695
|
authData: {
|
|
8891
9696
|
stsParams,
|
|
8892
9697
|
roleName
|
|
8893
|
-
}
|
|
9698
|
+
},
|
|
9699
|
+
callProperties
|
|
8894
9700
|
};
|
|
8895
9701
|
|
|
8896
9702
|
try {
|
|
@@ -8993,6 +9799,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
8993
9799
|
}
|
|
8994
9800
|
}
|
|
8995
9801
|
|
|
9802
|
+
let callProperties = null;
|
|
9803
|
+
if (stsParams && stsParams.region) {
|
|
9804
|
+
callProperties = {};
|
|
9805
|
+
callProperties.region = stsParams.region;
|
|
9806
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
9807
|
+
delete stsParams.region;
|
|
9808
|
+
if (Object.keys(stsParams).length === 0) {
|
|
9809
|
+
stsParams = null;
|
|
9810
|
+
}
|
|
9811
|
+
}
|
|
9812
|
+
|
|
8996
9813
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
8997
9814
|
const reqObj = {
|
|
8998
9815
|
payload: bodyVars,
|
|
@@ -9002,7 +9819,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
9002
9819
|
authData: {
|
|
9003
9820
|
stsParams,
|
|
9004
9821
|
roleName
|
|
9005
|
-
}
|
|
9822
|
+
},
|
|
9823
|
+
callProperties
|
|
9006
9824
|
};
|
|
9007
9825
|
|
|
9008
9826
|
try {
|
|
@@ -9102,6 +9920,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
9102
9920
|
}
|
|
9103
9921
|
}
|
|
9104
9922
|
|
|
9923
|
+
let callProperties = null;
|
|
9924
|
+
if (stsParams && stsParams.region) {
|
|
9925
|
+
callProperties = {};
|
|
9926
|
+
callProperties.region = stsParams.region;
|
|
9927
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
9928
|
+
delete stsParams.region;
|
|
9929
|
+
if (Object.keys(stsParams).length === 0) {
|
|
9930
|
+
stsParams = null;
|
|
9931
|
+
}
|
|
9932
|
+
}
|
|
9933
|
+
|
|
9105
9934
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
9106
9935
|
const reqObj = {
|
|
9107
9936
|
payload: bodyVars,
|
|
@@ -9111,7 +9940,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
9111
9940
|
authData: {
|
|
9112
9941
|
stsParams,
|
|
9113
9942
|
roleName
|
|
9114
|
-
}
|
|
9943
|
+
},
|
|
9944
|
+
callProperties
|
|
9115
9945
|
};
|
|
9116
9946
|
|
|
9117
9947
|
try {
|
|
@@ -9239,6 +10069,17 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
9239
10069
|
}
|
|
9240
10070
|
}
|
|
9241
10071
|
|
|
10072
|
+
let callProperties = null;
|
|
10073
|
+
if (stsParams && stsParams.region) {
|
|
10074
|
+
callProperties = {};
|
|
10075
|
+
callProperties.region = stsParams.region;
|
|
10076
|
+
callProperties.host = `${this.allProps.service}.${stsParams.region}.amazonaws.com`;
|
|
10077
|
+
delete stsParams.region;
|
|
10078
|
+
if (Object.keys(stsParams).length === 0) {
|
|
10079
|
+
stsParams = null;
|
|
10080
|
+
}
|
|
10081
|
+
}
|
|
10082
|
+
|
|
9242
10083
|
// set up the request object - payload, uriPathVars, uriQuery, uriOptions, addlHeaders
|
|
9243
10084
|
const reqObj = {
|
|
9244
10085
|
payload: bodyVars,
|
|
@@ -9248,7 +10089,8 @@ class AwsCloudFormation extends AdapterBaseCl {
|
|
|
9248
10089
|
authData: {
|
|
9249
10090
|
stsParams,
|
|
9250
10091
|
roleName
|
|
9251
|
-
}
|
|
10092
|
+
},
|
|
10093
|
+
callProperties
|
|
9252
10094
|
};
|
|
9253
10095
|
|
|
9254
10096
|
try {
|