@aws-sdk/client-cloudformation 3.36.1 → 3.40.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/CHANGELOG.md +42 -0
- package/dist-cjs/commands/index.js +68 -0
- package/dist-cjs/endpoints.js +128 -20
- package/dist-cjs/index.js +5 -92
- package/dist-cjs/pagination/index.js +20 -0
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-cjs/waiters/index.js +11 -0
- package/dist-es/commands/index.js +65 -0
- package/dist-es/endpoints.js +128 -20
- package/dist-es/index.js +5 -92
- package/dist-es/pagination/index.js +17 -0
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-es/waiters/index.js +8 -0
- package/dist-types/CloudFormationClient.d.ts +8 -0
- package/dist-types/commands/index.d.ts +65 -0
- package/dist-types/index.d.ts +5 -92
- package/dist-types/pagination/index.d.ts +17 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/CloudFormationClient.d.ts +4 -0
- package/dist-types/ts3.4/commands/index.d.ts +65 -0
- package/dist-types/ts3.4/index.d.ts +5 -92
- package/dist-types/ts3.4/pagination/index.d.ts +17 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/waiters/index.d.ts +8 -0
- package/dist-types/waiters/index.d.ts +8 -0
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,48 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** populate variants in endpoints hashes ([#2974](https://github.com/aws/aws-sdk-js-v3/issues/2974)) ([0dd68ef](https://github.com/aws/aws-sdk-js-v3/commit/0dd68ef8b04ea0e96e43b05a9a10221e433fdf86))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.39.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.38.0...v3.39.0) (2021-10-29)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudformation
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **client-documentation-generator:** rename package ([#2916](https://github.com/aws/aws-sdk-js-v3/issues/2916)) ([1a80bfd](https://github.com/aws/aws-sdk-js-v3/commit/1a80bfd2dfc583001ddb4a21b6432eaaad699aa7))
|
|
31
|
+
* **clients:** export folder from index.ts ([#2912](https://github.com/aws/aws-sdk-js-v3/issues/2912)) ([183b46d](https://github.com/aws/aws-sdk-js-v3/commit/183b46dde7f5613128038bf1c076f3c0b693203b))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Features
|
|
41
|
+
|
|
42
|
+
* **clients:** update clients as of 10/15/2021 ([#2902](https://github.com/aws/aws-sdk-js-v3/issues/2902)) ([2730b54](https://github.com/aws/aws-sdk-js-v3/commit/2730b5424377944a5a2ad5e1ad7d3ca4135dae1c))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
6
48
|
## [3.36.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.0...v3.36.1) (2021-10-12)
|
|
7
49
|
|
|
8
50
|
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./ActivateTypeCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./BatchDescribeTypeConfigurationsCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./CancelUpdateStackCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./ContinueUpdateRollbackCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./CreateChangeSetCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./CreateStackCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./CreateStackInstancesCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./CreateStackSetCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./DeactivateTypeCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./DeleteChangeSetCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./DeleteStackCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./DeleteStackInstancesCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./DeleteStackSetCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./DeregisterTypeCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./DescribeAccountLimitsCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./DescribeChangeSetCommand"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./DescribePublisherCommand"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./DescribeStackDriftDetectionStatusCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./DescribeStackEventsCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./DescribeStackInstanceCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./DescribeStackResourceCommand"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./DescribeStackResourceDriftsCommand"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./DescribeStackResourcesCommand"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./DescribeStackSetCommand"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./DescribeStackSetOperationCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./DescribeStacksCommand"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./DescribeTypeCommand"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./DescribeTypeRegistrationCommand"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./DetectStackDriftCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./DetectStackResourceDriftCommand"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./DetectStackSetDriftCommand"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./EstimateTemplateCostCommand"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./ExecuteChangeSetCommand"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./GetStackPolicyCommand"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./GetTemplateCommand"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./GetTemplateSummaryCommand"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./ImportStacksToStackSetCommand"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./ListChangeSetsCommand"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./ListExportsCommand"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./ListImportsCommand"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./ListStackInstancesCommand"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./ListStackResourcesCommand"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./ListStackSetOperationResultsCommand"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./ListStackSetOperationsCommand"), exports);
|
|
48
|
+
tslib_1.__exportStar(require("./ListStackSetsCommand"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./ListStacksCommand"), exports);
|
|
50
|
+
tslib_1.__exportStar(require("./ListTypeRegistrationsCommand"), exports);
|
|
51
|
+
tslib_1.__exportStar(require("./ListTypeVersionsCommand"), exports);
|
|
52
|
+
tslib_1.__exportStar(require("./ListTypesCommand"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./PublishTypeCommand"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./RecordHandlerProgressCommand"), exports);
|
|
55
|
+
tslib_1.__exportStar(require("./RegisterPublisherCommand"), exports);
|
|
56
|
+
tslib_1.__exportStar(require("./RegisterTypeCommand"), exports);
|
|
57
|
+
tslib_1.__exportStar(require("./RollbackStackCommand"), exports);
|
|
58
|
+
tslib_1.__exportStar(require("./SetStackPolicyCommand"), exports);
|
|
59
|
+
tslib_1.__exportStar(require("./SetTypeConfigurationCommand"), exports);
|
|
60
|
+
tslib_1.__exportStar(require("./SetTypeDefaultVersionCommand"), exports);
|
|
61
|
+
tslib_1.__exportStar(require("./SignalResourceCommand"), exports);
|
|
62
|
+
tslib_1.__exportStar(require("./StopStackSetOperationCommand"), exports);
|
|
63
|
+
tslib_1.__exportStar(require("./TestTypeCommand"), exports);
|
|
64
|
+
tslib_1.__exportStar(require("./UpdateStackCommand"), exports);
|
|
65
|
+
tslib_1.__exportStar(require("./UpdateStackInstancesCommand"), exports);
|
|
66
|
+
tslib_1.__exportStar(require("./UpdateStackSetCommand"), exports);
|
|
67
|
+
tslib_1.__exportStar(require("./UpdateTerminationProtectionCommand"), exports);
|
|
68
|
+
tslib_1.__exportStar(require("./ValidateTemplateCommand"), exports);
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -3,29 +3,71 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.defaultRegionInfoProvider = void 0;
|
|
4
4
|
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
5
5
|
const regionHash = {
|
|
6
|
-
"us-east-1
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"us-east-1": {
|
|
7
|
+
variants: [
|
|
8
|
+
{
|
|
9
|
+
hostname: "cloudformation.us-east-1.amazonaws.com",
|
|
10
|
+
tags: [],
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
hostname: "cloudformation-fips.us-east-1.amazonaws.com",
|
|
14
|
+
tags: ["fips"],
|
|
15
|
+
},
|
|
16
|
+
],
|
|
9
17
|
},
|
|
10
|
-
"us-east-2
|
|
11
|
-
|
|
12
|
-
|
|
18
|
+
"us-east-2": {
|
|
19
|
+
variants: [
|
|
20
|
+
{
|
|
21
|
+
hostname: "cloudformation.us-east-2.amazonaws.com",
|
|
22
|
+
tags: [],
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
hostname: "cloudformation-fips.us-east-2.amazonaws.com",
|
|
26
|
+
tags: ["fips"],
|
|
27
|
+
},
|
|
28
|
+
],
|
|
13
29
|
},
|
|
14
30
|
"us-gov-east-1": {
|
|
15
|
-
|
|
31
|
+
variants: [
|
|
32
|
+
{
|
|
33
|
+
hostname: "cloudformation.us-gov-east-1.amazonaws.com",
|
|
34
|
+
tags: [],
|
|
35
|
+
},
|
|
36
|
+
],
|
|
16
37
|
signingRegion: "us-gov-east-1",
|
|
17
38
|
},
|
|
18
39
|
"us-gov-west-1": {
|
|
19
|
-
|
|
40
|
+
variants: [
|
|
41
|
+
{
|
|
42
|
+
hostname: "cloudformation.us-gov-west-1.amazonaws.com",
|
|
43
|
+
tags: [],
|
|
44
|
+
},
|
|
45
|
+
],
|
|
20
46
|
signingRegion: "us-gov-west-1",
|
|
21
47
|
},
|
|
22
|
-
"us-west-1
|
|
23
|
-
|
|
24
|
-
|
|
48
|
+
"us-west-1": {
|
|
49
|
+
variants: [
|
|
50
|
+
{
|
|
51
|
+
hostname: "cloudformation.us-west-1.amazonaws.com",
|
|
52
|
+
tags: [],
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
hostname: "cloudformation-fips.us-west-1.amazonaws.com",
|
|
56
|
+
tags: ["fips"],
|
|
57
|
+
},
|
|
58
|
+
],
|
|
25
59
|
},
|
|
26
|
-
"us-west-2
|
|
27
|
-
|
|
28
|
-
|
|
60
|
+
"us-west-2": {
|
|
61
|
+
variants: [
|
|
62
|
+
{
|
|
63
|
+
hostname: "cloudformation.us-west-2.amazonaws.com",
|
|
64
|
+
tags: [],
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
hostname: "cloudformation-fips.us-west-2.amazonaws.com",
|
|
68
|
+
tags: ["fips"],
|
|
69
|
+
},
|
|
70
|
+
],
|
|
29
71
|
},
|
|
30
72
|
};
|
|
31
73
|
const partitionHash = {
|
|
@@ -57,23 +99,89 @@ const partitionHash = {
|
|
|
57
99
|
"us-west-2",
|
|
58
100
|
"us-west-2-fips",
|
|
59
101
|
],
|
|
60
|
-
|
|
102
|
+
regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
|
|
103
|
+
variants: [
|
|
104
|
+
{
|
|
105
|
+
hostname: "cloudformation.{region}.amazonaws.com",
|
|
106
|
+
tags: [],
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
hostname: "cloudformation-fips.{region}.amazonaws.com",
|
|
110
|
+
tags: ["fips"],
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
hostname: "cloudformation-fips.{region}.api.aws",
|
|
114
|
+
tags: ["dualstack", "fips"],
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
hostname: "cloudformation.{region}.api.aws",
|
|
118
|
+
tags: ["dualstack"],
|
|
119
|
+
},
|
|
120
|
+
],
|
|
61
121
|
},
|
|
62
122
|
"aws-cn": {
|
|
63
123
|
regions: ["cn-north-1", "cn-northwest-1"],
|
|
64
|
-
|
|
124
|
+
regionRegex: "^cn\\-\\w+\\-\\d+$",
|
|
125
|
+
variants: [
|
|
126
|
+
{
|
|
127
|
+
hostname: "cloudformation.{region}.amazonaws.com.cn",
|
|
128
|
+
tags: [],
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
hostname: "cloudformation-fips.{region}.amazonaws.com.cn",
|
|
132
|
+
tags: ["fips"],
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
hostname: "cloudformation-fips.{region}.api.amazonwebservices.com.cn",
|
|
136
|
+
tags: ["dualstack", "fips"],
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
hostname: "cloudformation.{region}.api.amazonwebservices.com.cn",
|
|
140
|
+
tags: ["dualstack"],
|
|
141
|
+
},
|
|
142
|
+
],
|
|
65
143
|
},
|
|
66
144
|
"aws-iso": {
|
|
67
|
-
regions: ["us-iso-east-1"],
|
|
68
|
-
|
|
145
|
+
regions: ["us-iso-east-1", "us-iso-west-1"],
|
|
146
|
+
regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
|
|
147
|
+
variants: [
|
|
148
|
+
{
|
|
149
|
+
hostname: "cloudformation.{region}.c2s.ic.gov",
|
|
150
|
+
tags: [],
|
|
151
|
+
},
|
|
152
|
+
],
|
|
69
153
|
},
|
|
70
154
|
"aws-iso-b": {
|
|
71
155
|
regions: ["us-isob-east-1"],
|
|
72
|
-
|
|
156
|
+
regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
|
|
157
|
+
variants: [
|
|
158
|
+
{
|
|
159
|
+
hostname: "cloudformation.{region}.sc2s.sgov.gov",
|
|
160
|
+
tags: [],
|
|
161
|
+
},
|
|
162
|
+
],
|
|
73
163
|
},
|
|
74
164
|
"aws-us-gov": {
|
|
75
165
|
regions: ["us-gov-east-1", "us-gov-west-1"],
|
|
76
|
-
|
|
166
|
+
regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
|
|
167
|
+
variants: [
|
|
168
|
+
{
|
|
169
|
+
hostname: "cloudformation.{region}.amazonaws.com",
|
|
170
|
+
tags: [],
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
hostname: "cloudformation-fips.{region}.amazonaws.com",
|
|
174
|
+
tags: ["fips"],
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
hostname: "cloudformation-fips.{region}.api.aws",
|
|
178
|
+
tags: ["dualstack", "fips"],
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
hostname: "cloudformation.{region}.api.aws",
|
|
182
|
+
tags: ["dualstack"],
|
|
183
|
+
},
|
|
184
|
+
],
|
|
77
185
|
},
|
|
78
186
|
};
|
|
79
187
|
const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,96 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./CloudFormationClient"), exports);
|
|
5
4
|
tslib_1.__exportStar(require("./CloudFormation"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./
|
|
7
|
-
tslib_1.__exportStar(require("./commands
|
|
8
|
-
tslib_1.__exportStar(require("./
|
|
9
|
-
tslib_1.__exportStar(require("./
|
|
10
|
-
tslib_1.__exportStar(require("./
|
|
11
|
-
tslib_1.__exportStar(require("./commands/CreateStackCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./commands/CreateStackInstancesCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./commands/CreateStackSetCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./commands/DeactivateTypeCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./commands/DeleteChangeSetCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./commands/DeleteStackCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./commands/DeleteStackInstancesCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./commands/DeleteStackSetCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./commands/DeregisterTypeCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./commands/DescribeAccountLimitsCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./pagination/DescribeAccountLimitsPaginator"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./commands/DescribeChangeSetCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./waiters/waitForChangeSetCreateComplete"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./commands/DescribePublisherCommand"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./commands/DescribeStackDriftDetectionStatusCommand"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./commands/DescribeStackEventsCommand"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./pagination/DescribeStackEventsPaginator"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./commands/DescribeStackInstanceCommand"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./commands/DescribeStackResourceCommand"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./commands/DescribeStackResourceDriftsCommand"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./pagination/DescribeStackResourceDriftsPaginator"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./commands/DescribeStackResourcesCommand"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./commands/DescribeStacksCommand"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./pagination/DescribeStacksPaginator"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./waiters/waitForStackCreateComplete"), exports);
|
|
36
|
-
tslib_1.__exportStar(require("./waiters/waitForStackDeleteComplete"), exports);
|
|
37
|
-
tslib_1.__exportStar(require("./waiters/waitForStackExists"), exports);
|
|
38
|
-
tslib_1.__exportStar(require("./waiters/waitForStackImportComplete"), exports);
|
|
39
|
-
tslib_1.__exportStar(require("./waiters/waitForStackRollbackComplete"), exports);
|
|
40
|
-
tslib_1.__exportStar(require("./waiters/waitForStackUpdateComplete"), exports);
|
|
41
|
-
tslib_1.__exportStar(require("./commands/DescribeStackSetCommand"), exports);
|
|
42
|
-
tslib_1.__exportStar(require("./commands/DescribeStackSetOperationCommand"), exports);
|
|
43
|
-
tslib_1.__exportStar(require("./commands/DescribeTypeCommand"), exports);
|
|
44
|
-
tslib_1.__exportStar(require("./commands/DescribeTypeRegistrationCommand"), exports);
|
|
45
|
-
tslib_1.__exportStar(require("./waiters/waitForTypeRegistrationComplete"), exports);
|
|
46
|
-
tslib_1.__exportStar(require("./commands/DetectStackDriftCommand"), exports);
|
|
47
|
-
tslib_1.__exportStar(require("./commands/DetectStackResourceDriftCommand"), exports);
|
|
48
|
-
tslib_1.__exportStar(require("./commands/DetectStackSetDriftCommand"), exports);
|
|
49
|
-
tslib_1.__exportStar(require("./commands/EstimateTemplateCostCommand"), exports);
|
|
50
|
-
tslib_1.__exportStar(require("./commands/ExecuteChangeSetCommand"), exports);
|
|
51
|
-
tslib_1.__exportStar(require("./commands/GetStackPolicyCommand"), exports);
|
|
52
|
-
tslib_1.__exportStar(require("./commands/GetTemplateCommand"), exports);
|
|
53
|
-
tslib_1.__exportStar(require("./commands/GetTemplateSummaryCommand"), exports);
|
|
54
|
-
tslib_1.__exportStar(require("./commands/ImportStacksToStackSetCommand"), exports);
|
|
55
|
-
tslib_1.__exportStar(require("./commands/ListChangeSetsCommand"), exports);
|
|
56
|
-
tslib_1.__exportStar(require("./pagination/ListChangeSetsPaginator"), exports);
|
|
57
|
-
tslib_1.__exportStar(require("./commands/ListExportsCommand"), exports);
|
|
58
|
-
tslib_1.__exportStar(require("./pagination/ListExportsPaginator"), exports);
|
|
59
|
-
tslib_1.__exportStar(require("./commands/ListImportsCommand"), exports);
|
|
60
|
-
tslib_1.__exportStar(require("./pagination/ListImportsPaginator"), exports);
|
|
61
|
-
tslib_1.__exportStar(require("./commands/ListStackInstancesCommand"), exports);
|
|
62
|
-
tslib_1.__exportStar(require("./pagination/ListStackInstancesPaginator"), exports);
|
|
63
|
-
tslib_1.__exportStar(require("./commands/ListStackResourcesCommand"), exports);
|
|
64
|
-
tslib_1.__exportStar(require("./pagination/ListStackResourcesPaginator"), exports);
|
|
65
|
-
tslib_1.__exportStar(require("./commands/ListStacksCommand"), exports);
|
|
66
|
-
tslib_1.__exportStar(require("./pagination/ListStacksPaginator"), exports);
|
|
67
|
-
tslib_1.__exportStar(require("./commands/ListStackSetOperationResultsCommand"), exports);
|
|
68
|
-
tslib_1.__exportStar(require("./pagination/ListStackSetOperationResultsPaginator"), exports);
|
|
69
|
-
tslib_1.__exportStar(require("./commands/ListStackSetOperationsCommand"), exports);
|
|
70
|
-
tslib_1.__exportStar(require("./pagination/ListStackSetOperationsPaginator"), exports);
|
|
71
|
-
tslib_1.__exportStar(require("./commands/ListStackSetsCommand"), exports);
|
|
72
|
-
tslib_1.__exportStar(require("./pagination/ListStackSetsPaginator"), exports);
|
|
73
|
-
tslib_1.__exportStar(require("./commands/ListTypeRegistrationsCommand"), exports);
|
|
74
|
-
tslib_1.__exportStar(require("./pagination/ListTypeRegistrationsPaginator"), exports);
|
|
75
|
-
tslib_1.__exportStar(require("./commands/ListTypesCommand"), exports);
|
|
76
|
-
tslib_1.__exportStar(require("./pagination/ListTypesPaginator"), exports);
|
|
77
|
-
tslib_1.__exportStar(require("./commands/ListTypeVersionsCommand"), exports);
|
|
78
|
-
tslib_1.__exportStar(require("./pagination/ListTypeVersionsPaginator"), exports);
|
|
79
|
-
tslib_1.__exportStar(require("./commands/PublishTypeCommand"), exports);
|
|
80
|
-
tslib_1.__exportStar(require("./commands/RecordHandlerProgressCommand"), exports);
|
|
81
|
-
tslib_1.__exportStar(require("./commands/RegisterPublisherCommand"), exports);
|
|
82
|
-
tslib_1.__exportStar(require("./commands/RegisterTypeCommand"), exports);
|
|
83
|
-
tslib_1.__exportStar(require("./commands/RollbackStackCommand"), exports);
|
|
84
|
-
tslib_1.__exportStar(require("./commands/SetStackPolicyCommand"), exports);
|
|
85
|
-
tslib_1.__exportStar(require("./commands/SetTypeConfigurationCommand"), exports);
|
|
86
|
-
tslib_1.__exportStar(require("./commands/SetTypeDefaultVersionCommand"), exports);
|
|
87
|
-
tslib_1.__exportStar(require("./commands/SignalResourceCommand"), exports);
|
|
88
|
-
tslib_1.__exportStar(require("./commands/StopStackSetOperationCommand"), exports);
|
|
89
|
-
tslib_1.__exportStar(require("./commands/TestTypeCommand"), exports);
|
|
90
|
-
tslib_1.__exportStar(require("./commands/UpdateStackCommand"), exports);
|
|
91
|
-
tslib_1.__exportStar(require("./commands/UpdateStackInstancesCommand"), exports);
|
|
92
|
-
tslib_1.__exportStar(require("./commands/UpdateStackSetCommand"), exports);
|
|
93
|
-
tslib_1.__exportStar(require("./commands/UpdateTerminationProtectionCommand"), exports);
|
|
94
|
-
tslib_1.__exportStar(require("./commands/ValidateTemplateCommand"), exports);
|
|
95
|
-
tslib_1.__exportStar(require("./pagination/Interfaces"), exports);
|
|
96
|
-
tslib_1.__exportStar(require("./models/index"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./CloudFormationClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./waiters"), exports);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./DescribeAccountLimitsPaginator"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./DescribeStackEventsPaginator"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./DescribeStackResourceDriftsPaginator"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./DescribeStacksPaginator"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./ListChangeSetsPaginator"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./ListExportsPaginator"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./ListImportsPaginator"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./ListStackInstancesPaginator"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./ListStackResourcesPaginator"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./ListStackSetOperationResultsPaginator"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./ListStackSetOperationsPaginator"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./ListStackSetsPaginator"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./ListStacksPaginator"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./ListTypeRegistrationsPaginator"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./ListTypeVersionsPaginator"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./ListTypesPaginator"), exports);
|
|
@@ -4,6 +4,7 @@ exports.getRuntimeConfig = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
6
|
const sha256_browser_1 = require("@aws-crypto/sha256-browser");
|
|
7
|
+
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
7
8
|
const fetch_http_handler_1 = require("@aws-sdk/fetch-http-handler");
|
|
8
9
|
const invalid_dependency_1 = require("@aws-sdk/invalid-dependency");
|
|
9
10
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
@@ -13,7 +14,7 @@ const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
|
|
|
13
14
|
const util_utf8_browser_1 = require("@aws-sdk/util-utf8-browser");
|
|
14
15
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
15
16
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
17
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
17
18
|
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
18
19
|
return {
|
|
19
20
|
...clientSharedValues,
|
|
@@ -30,8 +31,10 @@ const getRuntimeConfig = (config) => {
|
|
|
30
31
|
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (() => Promise.resolve(middleware_retry_1.DEFAULT_RETRY_MODE)),
|
|
31
32
|
sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : sha256_browser_1.Sha256,
|
|
32
33
|
streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : fetch_http_handler_1.streamCollector,
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
35
|
+
useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)),
|
|
36
|
+
utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_browser_1.fromUtf8,
|
|
37
|
+
utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_browser_1.toUtf8,
|
|
35
38
|
};
|
|
36
39
|
};
|
|
37
40
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -17,7 +17,7 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
|
|
|
17
17
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
18
18
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
19
19
|
const getRuntimeConfig = (config) => {
|
|
20
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
20
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
21
21
|
smithy_client_1.emitWarningIfUnsupportedVersion(process.version);
|
|
22
22
|
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
23
23
|
return {
|
|
@@ -35,8 +35,10 @@ const getRuntimeConfig = (config) => {
|
|
|
35
35
|
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig(middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS),
|
|
36
36
|
sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : hash_node_1.Hash.bind(null, "sha256"),
|
|
37
37
|
streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : node_http_handler_1.streamCollector,
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
39
|
+
useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
40
|
+
utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_node_1.fromUtf8,
|
|
41
|
+
utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_node_1.toUtf8,
|
|
40
42
|
};
|
|
41
43
|
};
|
|
42
44
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./waitForChangeSetCreateComplete"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./waitForStackCreateComplete"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./waitForStackDeleteComplete"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./waitForStackExists"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./waitForStackImportComplete"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./waitForStackRollbackComplete"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./waitForStackUpdateComplete"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./waitForTypeRegistrationComplete"), exports);
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
export * from "./ActivateTypeCommand";
|
|
2
|
+
export * from "./BatchDescribeTypeConfigurationsCommand";
|
|
3
|
+
export * from "./CancelUpdateStackCommand";
|
|
4
|
+
export * from "./ContinueUpdateRollbackCommand";
|
|
5
|
+
export * from "./CreateChangeSetCommand";
|
|
6
|
+
export * from "./CreateStackCommand";
|
|
7
|
+
export * from "./CreateStackInstancesCommand";
|
|
8
|
+
export * from "./CreateStackSetCommand";
|
|
9
|
+
export * from "./DeactivateTypeCommand";
|
|
10
|
+
export * from "./DeleteChangeSetCommand";
|
|
11
|
+
export * from "./DeleteStackCommand";
|
|
12
|
+
export * from "./DeleteStackInstancesCommand";
|
|
13
|
+
export * from "./DeleteStackSetCommand";
|
|
14
|
+
export * from "./DeregisterTypeCommand";
|
|
15
|
+
export * from "./DescribeAccountLimitsCommand";
|
|
16
|
+
export * from "./DescribeChangeSetCommand";
|
|
17
|
+
export * from "./DescribePublisherCommand";
|
|
18
|
+
export * from "./DescribeStackDriftDetectionStatusCommand";
|
|
19
|
+
export * from "./DescribeStackEventsCommand";
|
|
20
|
+
export * from "./DescribeStackInstanceCommand";
|
|
21
|
+
export * from "./DescribeStackResourceCommand";
|
|
22
|
+
export * from "./DescribeStackResourceDriftsCommand";
|
|
23
|
+
export * from "./DescribeStackResourcesCommand";
|
|
24
|
+
export * from "./DescribeStackSetCommand";
|
|
25
|
+
export * from "./DescribeStackSetOperationCommand";
|
|
26
|
+
export * from "./DescribeStacksCommand";
|
|
27
|
+
export * from "./DescribeTypeCommand";
|
|
28
|
+
export * from "./DescribeTypeRegistrationCommand";
|
|
29
|
+
export * from "./DetectStackDriftCommand";
|
|
30
|
+
export * from "./DetectStackResourceDriftCommand";
|
|
31
|
+
export * from "./DetectStackSetDriftCommand";
|
|
32
|
+
export * from "./EstimateTemplateCostCommand";
|
|
33
|
+
export * from "./ExecuteChangeSetCommand";
|
|
34
|
+
export * from "./GetStackPolicyCommand";
|
|
35
|
+
export * from "./GetTemplateCommand";
|
|
36
|
+
export * from "./GetTemplateSummaryCommand";
|
|
37
|
+
export * from "./ImportStacksToStackSetCommand";
|
|
38
|
+
export * from "./ListChangeSetsCommand";
|
|
39
|
+
export * from "./ListExportsCommand";
|
|
40
|
+
export * from "./ListImportsCommand";
|
|
41
|
+
export * from "./ListStackInstancesCommand";
|
|
42
|
+
export * from "./ListStackResourcesCommand";
|
|
43
|
+
export * from "./ListStackSetOperationResultsCommand";
|
|
44
|
+
export * from "./ListStackSetOperationsCommand";
|
|
45
|
+
export * from "./ListStackSetsCommand";
|
|
46
|
+
export * from "./ListStacksCommand";
|
|
47
|
+
export * from "./ListTypeRegistrationsCommand";
|
|
48
|
+
export * from "./ListTypeVersionsCommand";
|
|
49
|
+
export * from "./ListTypesCommand";
|
|
50
|
+
export * from "./PublishTypeCommand";
|
|
51
|
+
export * from "./RecordHandlerProgressCommand";
|
|
52
|
+
export * from "./RegisterPublisherCommand";
|
|
53
|
+
export * from "./RegisterTypeCommand";
|
|
54
|
+
export * from "./RollbackStackCommand";
|
|
55
|
+
export * from "./SetStackPolicyCommand";
|
|
56
|
+
export * from "./SetTypeConfigurationCommand";
|
|
57
|
+
export * from "./SetTypeDefaultVersionCommand";
|
|
58
|
+
export * from "./SignalResourceCommand";
|
|
59
|
+
export * from "./StopStackSetOperationCommand";
|
|
60
|
+
export * from "./TestTypeCommand";
|
|
61
|
+
export * from "./UpdateStackCommand";
|
|
62
|
+
export * from "./UpdateStackInstancesCommand";
|
|
63
|
+
export * from "./UpdateStackSetCommand";
|
|
64
|
+
export * from "./UpdateTerminationProtectionCommand";
|
|
65
|
+
export * from "./ValidateTemplateCommand";
|