cdk-cost-analyzer 0.1.47 → 0.1.49
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/.cdk-cost-analyzer-cache/metadata.json +8 -8
- package/dist/action/136.index.js +1027 -160
- package/dist/action/443.index.js +89 -115
- package/dist/action/579.index.js +16 -8
- package/dist/action/762.index.js +100 -143
- package/dist/action/998.index.js +90 -116
- package/dist/action/index.js +3 -3
- package/dist/releasetag.txt +1 -1
- package/package.json +2 -2
package/dist/action/443.index.js
CHANGED
|
@@ -64,6 +64,93 @@ const resolveHttpAuthSchemeConfig = (config) => {
|
|
|
64
64
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
|
65
65
|
|
|
66
66
|
|
|
67
|
+
/***/ }),
|
|
68
|
+
|
|
69
|
+
/***/ 3236:
|
|
70
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
74
|
+
exports.bdd = void 0;
|
|
75
|
+
const util_endpoints_1 = __webpack_require__(9674);
|
|
76
|
+
const k = "ref";
|
|
77
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
78
|
+
const _data = {
|
|
79
|
+
conditions: [
|
|
80
|
+
[c, [g]],
|
|
81
|
+
[c, j],
|
|
82
|
+
["aws.partition", j, d],
|
|
83
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
84
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
86
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
87
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]],
|
|
88
|
+
],
|
|
89
|
+
results: [
|
|
90
|
+
[a],
|
|
91
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
92
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
93
|
+
[g, i],
|
|
94
|
+
["https://oidc-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
95
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
96
|
+
["https://oidc.{Region}.amazonaws.com", i],
|
|
97
|
+
["https://oidc-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
99
|
+
["https://oidc.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
100
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
101
|
+
["https://oidc.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
102
|
+
[a, "Invalid Configuration: Missing Region"],
|
|
103
|
+
],
|
|
104
|
+
};
|
|
105
|
+
const root = 2;
|
|
106
|
+
const r = 100_000_000;
|
|
107
|
+
const nodes = new Int32Array([
|
|
108
|
+
-1,
|
|
109
|
+
1,
|
|
110
|
+
-1,
|
|
111
|
+
0,
|
|
112
|
+
13,
|
|
113
|
+
3,
|
|
114
|
+
1,
|
|
115
|
+
4,
|
|
116
|
+
r + 12,
|
|
117
|
+
2,
|
|
118
|
+
5,
|
|
119
|
+
r + 12,
|
|
120
|
+
3,
|
|
121
|
+
8,
|
|
122
|
+
6,
|
|
123
|
+
4,
|
|
124
|
+
7,
|
|
125
|
+
r + 11,
|
|
126
|
+
5,
|
|
127
|
+
r + 9,
|
|
128
|
+
r + 10,
|
|
129
|
+
4,
|
|
130
|
+
11,
|
|
131
|
+
9,
|
|
132
|
+
6,
|
|
133
|
+
10,
|
|
134
|
+
r + 8,
|
|
135
|
+
7,
|
|
136
|
+
r + 6,
|
|
137
|
+
r + 7,
|
|
138
|
+
5,
|
|
139
|
+
12,
|
|
140
|
+
r + 5,
|
|
141
|
+
6,
|
|
142
|
+
r + 4,
|
|
143
|
+
r + 5,
|
|
144
|
+
3,
|
|
145
|
+
r + 1,
|
|
146
|
+
14,
|
|
147
|
+
4,
|
|
148
|
+
r + 2,
|
|
149
|
+
r + 3,
|
|
150
|
+
]);
|
|
151
|
+
exports.bdd = util_endpoints_1.BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
152
|
+
|
|
153
|
+
|
|
67
154
|
/***/ }),
|
|
68
155
|
|
|
69
156
|
/***/ 546:
|
|
@@ -74,13 +161,13 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
74
161
|
exports.defaultEndpointResolver = void 0;
|
|
75
162
|
const util_endpoints_1 = __webpack_require__(3068);
|
|
76
163
|
const util_endpoints_2 = __webpack_require__(9674);
|
|
77
|
-
const
|
|
164
|
+
const bdd_1 = __webpack_require__(3236);
|
|
78
165
|
const cache = new util_endpoints_2.EndpointCache({
|
|
79
166
|
size: 50,
|
|
80
167
|
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
81
168
|
});
|
|
82
169
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
83
|
-
return cache.get(endpointParams, () => (0, util_endpoints_2.
|
|
170
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.decideEndpoint)(bdd_1.bdd, {
|
|
84
171
|
endpointParams: endpointParams,
|
|
85
172
|
logger: context.logger,
|
|
86
173
|
}));
|
|
@@ -89,119 +176,6 @@ exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
|
89
176
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
|
90
177
|
|
|
91
178
|
|
|
92
|
-
/***/ }),
|
|
93
|
-
|
|
94
|
-
/***/ 9947:
|
|
95
|
-
/***/ ((__unused_webpack_module, exports) => {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
99
|
-
exports.ruleSet = void 0;
|
|
100
|
-
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
101
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = { [u]: false, type: "string" }, j = { [u]: true, default: false, type: "boolean" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: h, [w]: [{ [x]: g }, "supportsFIPS"] }, p = { [x]: g }, q = { [v]: c, [w]: [true, { [v]: h, [w]: [p, "supportsDualStack"] }] }, r = [l], s = [m], t = [{ [x]: "Region" }];
|
|
102
|
-
const _data = {
|
|
103
|
-
version: "1.0",
|
|
104
|
-
parameters: { Region: i, UseDualStack: j, UseFIPS: j, Endpoint: i },
|
|
105
|
-
rules: [
|
|
106
|
-
{
|
|
107
|
-
conditions: [{ [v]: b, [w]: [k] }],
|
|
108
|
-
rules: [
|
|
109
|
-
{ conditions: r, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d },
|
|
110
|
-
{ conditions: s, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d },
|
|
111
|
-
{ endpoint: { url: k, properties: n, headers: n }, type: e },
|
|
112
|
-
],
|
|
113
|
-
type: f,
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
conditions: [{ [v]: b, [w]: t }],
|
|
117
|
-
rules: [
|
|
118
|
-
{
|
|
119
|
-
conditions: [{ [v]: "aws.partition", [w]: t, assign: g }],
|
|
120
|
-
rules: [
|
|
121
|
-
{
|
|
122
|
-
conditions: [l, m],
|
|
123
|
-
rules: [
|
|
124
|
-
{
|
|
125
|
-
conditions: [{ [v]: c, [w]: [a, o] }, q],
|
|
126
|
-
rules: [
|
|
127
|
-
{
|
|
128
|
-
endpoint: {
|
|
129
|
-
url: "https://oidc-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
130
|
-
properties: n,
|
|
131
|
-
headers: n,
|
|
132
|
-
},
|
|
133
|
-
type: e,
|
|
134
|
-
},
|
|
135
|
-
],
|
|
136
|
-
type: f,
|
|
137
|
-
},
|
|
138
|
-
{ error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d },
|
|
139
|
-
],
|
|
140
|
-
type: f,
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
conditions: r,
|
|
144
|
-
rules: [
|
|
145
|
-
{
|
|
146
|
-
conditions: [{ [v]: c, [w]: [o, a] }],
|
|
147
|
-
rules: [
|
|
148
|
-
{
|
|
149
|
-
conditions: [{ [v]: "stringEquals", [w]: [{ [v]: h, [w]: [p, "name"] }, "aws-us-gov"] }],
|
|
150
|
-
endpoint: { url: "https://oidc.{Region}.amazonaws.com", properties: n, headers: n },
|
|
151
|
-
type: e,
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
endpoint: {
|
|
155
|
-
url: "https://oidc-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
156
|
-
properties: n,
|
|
157
|
-
headers: n,
|
|
158
|
-
},
|
|
159
|
-
type: e,
|
|
160
|
-
},
|
|
161
|
-
],
|
|
162
|
-
type: f,
|
|
163
|
-
},
|
|
164
|
-
{ error: "FIPS is enabled but this partition does not support FIPS", type: d },
|
|
165
|
-
],
|
|
166
|
-
type: f,
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
conditions: s,
|
|
170
|
-
rules: [
|
|
171
|
-
{
|
|
172
|
-
conditions: [q],
|
|
173
|
-
rules: [
|
|
174
|
-
{
|
|
175
|
-
endpoint: {
|
|
176
|
-
url: "https://oidc.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
177
|
-
properties: n,
|
|
178
|
-
headers: n,
|
|
179
|
-
},
|
|
180
|
-
type: e,
|
|
181
|
-
},
|
|
182
|
-
],
|
|
183
|
-
type: f,
|
|
184
|
-
},
|
|
185
|
-
{ error: "DualStack is enabled but this partition does not support DualStack", type: d },
|
|
186
|
-
],
|
|
187
|
-
type: f,
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
endpoint: { url: "https://oidc.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n },
|
|
191
|
-
type: e,
|
|
192
|
-
},
|
|
193
|
-
],
|
|
194
|
-
type: f,
|
|
195
|
-
},
|
|
196
|
-
],
|
|
197
|
-
type: f,
|
|
198
|
-
},
|
|
199
|
-
{ error: "Invalid Configuration: Missing Region", type: d },
|
|
200
|
-
],
|
|
201
|
-
};
|
|
202
|
-
exports.ruleSet = _data;
|
|
203
|
-
|
|
204
|
-
|
|
205
179
|
/***/ }),
|
|
206
180
|
|
|
207
181
|
/***/ 9443:
|
package/dist/action/579.index.js
CHANGED
|
@@ -58,9 +58,13 @@ class EventStreamSerde {
|
|
|
58
58
|
body: event.body,
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
let unionMember = "";
|
|
62
|
+
for (const key in event) {
|
|
63
|
+
if (key !== "__type") {
|
|
64
|
+
unionMember = key;
|
|
65
|
+
break;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
64
68
|
const { additionalHeaders, body, eventType, explicitPayloadContentType } = this.writeEventBody(unionMember, unionSchema, event);
|
|
65
69
|
const headers = {
|
|
66
70
|
":event-type": { type: "string", value: eventType },
|
|
@@ -81,9 +85,13 @@ class EventStreamSerde {
|
|
|
81
85
|
const memberSchemas = unionSchema.getMemberSchemas();
|
|
82
86
|
const initialResponseMarker = Symbol("initialResponseMarker");
|
|
83
87
|
const asyncIterable = marshaller.deserialize(response.body, async (event) => {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
88
|
+
let unionMember = "";
|
|
89
|
+
for (const key in event) {
|
|
90
|
+
if (key !== "__type") {
|
|
91
|
+
unionMember = key;
|
|
92
|
+
break;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
87
95
|
const body = event[unionMember].body;
|
|
88
96
|
if (unionMember === "initial-response") {
|
|
89
97
|
const dataObject = await this.deserializer.read(responseSchema, body);
|
|
@@ -159,8 +167,8 @@ class EventStreamSerde {
|
|
|
159
167
|
if (!responseSchema) {
|
|
160
168
|
throw new Error("@smithy::core/protocols - initial-response event encountered in event stream but no response schema given.");
|
|
161
169
|
}
|
|
162
|
-
for (const
|
|
163
|
-
initialResponseContainer[key] = value;
|
|
170
|
+
for (const key in firstEvent.value) {
|
|
171
|
+
initialResponseContainer[key] = firstEvent.value[key];
|
|
164
172
|
}
|
|
165
173
|
}
|
|
166
174
|
return {
|
package/dist/action/762.index.js
CHANGED
|
@@ -64,6 +64,103 @@ const resolveHttpAuthSchemeConfig = (config) => {
|
|
|
64
64
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
|
65
65
|
|
|
66
66
|
|
|
67
|
+
/***/ }),
|
|
68
|
+
|
|
69
|
+
/***/ 4776:
|
|
70
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
74
|
+
exports.bdd = void 0;
|
|
75
|
+
const util_endpoints_1 = __webpack_require__(9674);
|
|
76
|
+
const m = "ref";
|
|
77
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { fn: f, argv: [i, "name"] }, k = {}, l = [{ [m]: "Region" }];
|
|
78
|
+
const _data = {
|
|
79
|
+
conditions: [
|
|
80
|
+
[c, [h]],
|
|
81
|
+
[c, l],
|
|
82
|
+
["aws.partition", l, d],
|
|
83
|
+
[e, [{ [m]: "UseFIPS" }, b]],
|
|
84
|
+
[e, [{ [m]: "UseDualStack" }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
|
|
86
|
+
[e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
|
|
87
|
+
[g, [j, "aws"]],
|
|
88
|
+
[g, [j, "aws-cn"]],
|
|
89
|
+
[g, [j, "aws-us-gov"]],
|
|
90
|
+
],
|
|
91
|
+
results: [
|
|
92
|
+
[a],
|
|
93
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
94
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
95
|
+
[h, k],
|
|
96
|
+
["https://{Region}.signin.aws.amazon.com", k],
|
|
97
|
+
["https://{Region}.signin.amazonaws.cn", k],
|
|
98
|
+
["https://{Region}.signin.amazonaws-us-gov.com", k],
|
|
99
|
+
["https://signin-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
100
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
101
|
+
["https://signin-fips.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
102
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
103
|
+
["https://signin.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
104
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
105
|
+
["https://signin.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
106
|
+
[a, "Invalid Configuration: Missing Region"],
|
|
107
|
+
],
|
|
108
|
+
};
|
|
109
|
+
const root = 2;
|
|
110
|
+
const r = 100_000_000;
|
|
111
|
+
const nodes = new Int32Array([
|
|
112
|
+
-1,
|
|
113
|
+
1,
|
|
114
|
+
-1,
|
|
115
|
+
0,
|
|
116
|
+
15,
|
|
117
|
+
3,
|
|
118
|
+
1,
|
|
119
|
+
4,
|
|
120
|
+
r + 14,
|
|
121
|
+
2,
|
|
122
|
+
5,
|
|
123
|
+
r + 14,
|
|
124
|
+
3,
|
|
125
|
+
11,
|
|
126
|
+
6,
|
|
127
|
+
4,
|
|
128
|
+
10,
|
|
129
|
+
7,
|
|
130
|
+
7,
|
|
131
|
+
r + 4,
|
|
132
|
+
8,
|
|
133
|
+
8,
|
|
134
|
+
r + 5,
|
|
135
|
+
9,
|
|
136
|
+
9,
|
|
137
|
+
r + 6,
|
|
138
|
+
r + 13,
|
|
139
|
+
5,
|
|
140
|
+
r + 11,
|
|
141
|
+
r + 12,
|
|
142
|
+
4,
|
|
143
|
+
13,
|
|
144
|
+
12,
|
|
145
|
+
6,
|
|
146
|
+
r + 9,
|
|
147
|
+
r + 10,
|
|
148
|
+
5,
|
|
149
|
+
14,
|
|
150
|
+
r + 8,
|
|
151
|
+
6,
|
|
152
|
+
r + 7,
|
|
153
|
+
r + 8,
|
|
154
|
+
3,
|
|
155
|
+
r + 1,
|
|
156
|
+
16,
|
|
157
|
+
4,
|
|
158
|
+
r + 2,
|
|
159
|
+
r + 3,
|
|
160
|
+
]);
|
|
161
|
+
exports.bdd = util_endpoints_1.BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
162
|
+
|
|
163
|
+
|
|
67
164
|
/***/ }),
|
|
68
165
|
|
|
69
166
|
/***/ 2547:
|
|
@@ -74,13 +171,13 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
74
171
|
exports.defaultEndpointResolver = void 0;
|
|
75
172
|
const util_endpoints_1 = __webpack_require__(3068);
|
|
76
173
|
const util_endpoints_2 = __webpack_require__(9674);
|
|
77
|
-
const
|
|
174
|
+
const bdd_1 = __webpack_require__(4776);
|
|
78
175
|
const cache = new util_endpoints_2.EndpointCache({
|
|
79
176
|
size: 50,
|
|
80
177
|
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
81
178
|
});
|
|
82
179
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
83
|
-
return cache.get(endpointParams, () => (0, util_endpoints_2.
|
|
180
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.decideEndpoint)(bdd_1.bdd, {
|
|
84
181
|
endpointParams: endpointParams,
|
|
85
182
|
logger: context.logger,
|
|
86
183
|
}));
|
|
@@ -89,146 +186,6 @@ exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
|
89
186
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
|
90
187
|
|
|
91
188
|
|
|
92
|
-
/***/ }),
|
|
93
|
-
|
|
94
|
-
/***/ 6904:
|
|
95
|
-
/***/ ((__unused_webpack_module, exports) => {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
99
|
-
exports.ruleSet = void 0;
|
|
100
|
-
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
101
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "stringEquals", i = { [u]: true, default: false, type: "boolean" }, j = { [u]: false, type: "string" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: "getAttr", [w]: [{ [x]: g }, "name"] }, p = { [v]: c, [w]: [{ [x]: "UseFIPS" }, false] }, q = { [v]: c, [w]: [{ [x]: "UseDualStack" }, false] }, r = { [v]: "getAttr", [w]: [{ [x]: g }, "supportsFIPS"] }, s = { [v]: c, [w]: [true, { [v]: "getAttr", [w]: [{ [x]: g }, "supportsDualStack"] }] }, t = [{ [x]: "Region" }];
|
|
102
|
-
const _data = {
|
|
103
|
-
version: "1.0",
|
|
104
|
-
parameters: { UseDualStack: i, UseFIPS: i, Endpoint: j, Region: j },
|
|
105
|
-
rules: [
|
|
106
|
-
{
|
|
107
|
-
conditions: [{ [v]: b, [w]: [k] }],
|
|
108
|
-
rules: [
|
|
109
|
-
{ conditions: [l], error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d },
|
|
110
|
-
{
|
|
111
|
-
rules: [
|
|
112
|
-
{
|
|
113
|
-
conditions: [m],
|
|
114
|
-
error: "Invalid Configuration: Dualstack and custom endpoint are not supported",
|
|
115
|
-
type: d,
|
|
116
|
-
},
|
|
117
|
-
{ endpoint: { url: k, properties: n, headers: n }, type: e },
|
|
118
|
-
],
|
|
119
|
-
type: f,
|
|
120
|
-
},
|
|
121
|
-
],
|
|
122
|
-
type: f,
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
rules: [
|
|
126
|
-
{
|
|
127
|
-
conditions: [{ [v]: b, [w]: t }],
|
|
128
|
-
rules: [
|
|
129
|
-
{
|
|
130
|
-
conditions: [{ [v]: "aws.partition", [w]: t, assign: g }],
|
|
131
|
-
rules: [
|
|
132
|
-
{
|
|
133
|
-
conditions: [{ [v]: h, [w]: [o, "aws"] }, p, q],
|
|
134
|
-
endpoint: { url: "https://{Region}.signin.aws.amazon.com", properties: n, headers: n },
|
|
135
|
-
type: e,
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
conditions: [{ [v]: h, [w]: [o, "aws-cn"] }, p, q],
|
|
139
|
-
endpoint: { url: "https://{Region}.signin.amazonaws.cn", properties: n, headers: n },
|
|
140
|
-
type: e,
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
conditions: [{ [v]: h, [w]: [o, "aws-us-gov"] }, p, q],
|
|
144
|
-
endpoint: { url: "https://{Region}.signin.amazonaws-us-gov.com", properties: n, headers: n },
|
|
145
|
-
type: e,
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
conditions: [l, m],
|
|
149
|
-
rules: [
|
|
150
|
-
{
|
|
151
|
-
conditions: [{ [v]: c, [w]: [a, r] }, s],
|
|
152
|
-
rules: [
|
|
153
|
-
{
|
|
154
|
-
endpoint: {
|
|
155
|
-
url: "https://signin-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
156
|
-
properties: n,
|
|
157
|
-
headers: n,
|
|
158
|
-
},
|
|
159
|
-
type: e,
|
|
160
|
-
},
|
|
161
|
-
],
|
|
162
|
-
type: f,
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
error: "FIPS and DualStack are enabled, but this partition does not support one or both",
|
|
166
|
-
type: d,
|
|
167
|
-
},
|
|
168
|
-
],
|
|
169
|
-
type: f,
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
conditions: [l, q],
|
|
173
|
-
rules: [
|
|
174
|
-
{
|
|
175
|
-
conditions: [{ [v]: c, [w]: [r, a] }],
|
|
176
|
-
rules: [
|
|
177
|
-
{
|
|
178
|
-
endpoint: {
|
|
179
|
-
url: "https://signin-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
180
|
-
properties: n,
|
|
181
|
-
headers: n,
|
|
182
|
-
},
|
|
183
|
-
type: e,
|
|
184
|
-
},
|
|
185
|
-
],
|
|
186
|
-
type: f,
|
|
187
|
-
},
|
|
188
|
-
{ error: "FIPS is enabled but this partition does not support FIPS", type: d },
|
|
189
|
-
],
|
|
190
|
-
type: f,
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
conditions: [p, m],
|
|
194
|
-
rules: [
|
|
195
|
-
{
|
|
196
|
-
conditions: [s],
|
|
197
|
-
rules: [
|
|
198
|
-
{
|
|
199
|
-
endpoint: {
|
|
200
|
-
url: "https://signin.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
201
|
-
properties: n,
|
|
202
|
-
headers: n,
|
|
203
|
-
},
|
|
204
|
-
type: e,
|
|
205
|
-
},
|
|
206
|
-
],
|
|
207
|
-
type: f,
|
|
208
|
-
},
|
|
209
|
-
{ error: "DualStack is enabled but this partition does not support DualStack", type: d },
|
|
210
|
-
],
|
|
211
|
-
type: f,
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
endpoint: { url: "https://signin.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n },
|
|
215
|
-
type: e,
|
|
216
|
-
},
|
|
217
|
-
],
|
|
218
|
-
type: f,
|
|
219
|
-
},
|
|
220
|
-
],
|
|
221
|
-
type: f,
|
|
222
|
-
},
|
|
223
|
-
{ error: "Invalid Configuration: Missing Region", type: d },
|
|
224
|
-
],
|
|
225
|
-
type: f,
|
|
226
|
-
},
|
|
227
|
-
],
|
|
228
|
-
};
|
|
229
|
-
exports.ruleSet = _data;
|
|
230
|
-
|
|
231
|
-
|
|
232
189
|
/***/ }),
|
|
233
190
|
|
|
234
191
|
/***/ 9762:
|
|
@@ -750,7 +707,7 @@ exports.CreateOAuth2Token$ = [
|
|
|
750
707
|
/***/ 9955:
|
|
751
708
|
/***/ ((module) => {
|
|
752
709
|
|
|
753
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.
|
|
710
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.997.0","description":"Nested clients for AWS SDK packages.","main":"./dist-cjs/index.js","module":"./dist-es/index.js","types":"./dist-types/index.d.ts","scripts":{"build":"yarn lint && concurrently \'yarn:build:types\' \'yarn:build:es\' && yarn build:cjs","build:cjs":"node ../../scripts/compilation/inline nested-clients","build:es":"tsc -p tsconfig.es.json","build:include:deps":"yarn g:turbo run build -F=\\"$npm_package_name\\"","build:types":"tsc -p tsconfig.types.json","build:types:downlevel":"downlevel-dts dist-types dist-types/ts3.4","clean":"premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo","lint":"node ../../scripts/validation/submodules-linter.js --pkg nested-clients","test":"yarn g:vitest run","test:watch":"yarn g:vitest watch"},"engines":{"node":">=20.0.0"},"sideEffects":false,"author":{"name":"AWS SDK for JavaScript Team","url":"https://aws.amazon.com/javascript/"},"license":"Apache-2.0","dependencies":{"@aws-crypto/sha256-browser":"5.2.0","@aws-crypto/sha256-js":"5.2.0","@aws-sdk/core":"^3.974.2","@aws-sdk/middleware-host-header":"^3.972.10","@aws-sdk/middleware-logger":"^3.972.10","@aws-sdk/middleware-recursion-detection":"^3.972.11","@aws-sdk/middleware-user-agent":"^3.972.32","@aws-sdk/region-config-resolver":"^3.972.12","@aws-sdk/signature-v4-multi-region":"^3.996.19","@aws-sdk/types":"^3.973.8","@aws-sdk/util-endpoints":"^3.996.7","@aws-sdk/util-user-agent-browser":"^3.972.10","@aws-sdk/util-user-agent-node":"^3.973.18","@smithy/config-resolver":"^4.4.16","@smithy/core":"^3.23.15","@smithy/fetch-http-handler":"^5.3.17","@smithy/hash-node":"^4.2.14","@smithy/invalid-dependency":"^4.2.14","@smithy/middleware-content-length":"^4.2.14","@smithy/middleware-endpoint":"^4.4.30","@smithy/middleware-retry":"^4.5.3","@smithy/middleware-serde":"^4.2.18","@smithy/middleware-stack":"^4.2.14","@smithy/node-config-provider":"^4.3.14","@smithy/node-http-handler":"^4.5.3","@smithy/protocol-http":"^5.3.14","@smithy/smithy-client":"^4.12.11","@smithy/types":"^4.14.1","@smithy/url-parser":"^4.2.14","@smithy/util-base64":"^4.3.2","@smithy/util-body-length-browser":"^4.2.2","@smithy/util-body-length-node":"^4.2.3","@smithy/util-defaults-mode-browser":"^4.3.47","@smithy/util-defaults-mode-node":"^4.2.52","@smithy/util-endpoints":"^3.4.1","@smithy/util-middleware":"^4.2.14","@smithy/util-retry":"^4.3.2","@smithy/util-utf8":"^4.2.2","tslib":"^2.6.2"},"devDependencies":{"concurrently":"7.0.0","downlevel-dts":"0.10.1","premove":"4.0.0","typescript":"~5.8.3"},"typesVersions":{"<4.5":{"dist-types/*":["dist-types/ts3.4/*"]}},"files":["./cognito-identity.d.ts","./cognito-identity.js","./signin.d.ts","./signin.js","./sso-oidc.d.ts","./sso-oidc.js","./sso.d.ts","./sso.js","./sts.d.ts","./sts.js","dist-*/**"],"browser":{"./dist-es/submodules/cognito-identity/runtimeConfig":"./dist-es/submodules/cognito-identity/runtimeConfig.browser","./dist-es/submodules/signin/runtimeConfig":"./dist-es/submodules/signin/runtimeConfig.browser","./dist-es/submodules/sso-oidc/runtimeConfig":"./dist-es/submodules/sso-oidc/runtimeConfig.browser","./dist-es/submodules/sso/runtimeConfig":"./dist-es/submodules/sso/runtimeConfig.browser","./dist-es/submodules/sts/runtimeConfig":"./dist-es/submodules/sts/runtimeConfig.browser"},"react-native":{},"homepage":"https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"packages/nested-clients"},"exports":{"./package.json":"./package.json","./sso-oidc":{"types":"./dist-types/submodules/sso-oidc/index.d.ts","module":"./dist-es/submodules/sso-oidc/index.js","node":"./dist-cjs/submodules/sso-oidc/index.js","import":"./dist-es/submodules/sso-oidc/index.js","require":"./dist-cjs/submodules/sso-oidc/index.js"},"./sts":{"types":"./dist-types/submodules/sts/index.d.ts","module":"./dist-es/submodules/sts/index.js","node":"./dist-cjs/submodules/sts/index.js","import":"./dist-es/submodules/sts/index.js","require":"./dist-cjs/submodules/sts/index.js"},"./signin":{"types":"./dist-types/submodules/signin/index.d.ts","module":"./dist-es/submodules/signin/index.js","node":"./dist-cjs/submodules/signin/index.js","import":"./dist-es/submodules/signin/index.js","require":"./dist-cjs/submodules/signin/index.js"},"./cognito-identity":{"types":"./dist-types/submodules/cognito-identity/index.d.ts","module":"./dist-es/submodules/cognito-identity/index.js","node":"./dist-cjs/submodules/cognito-identity/index.js","import":"./dist-es/submodules/cognito-identity/index.js","require":"./dist-cjs/submodules/cognito-identity/index.js"},"./sso":{"types":"./dist-types/submodules/sso/index.d.ts","module":"./dist-es/submodules/sso/index.js","node":"./dist-cjs/submodules/sso/index.js","import":"./dist-es/submodules/sso/index.js","require":"./dist-cjs/submodules/sso/index.js"}}}');
|
|
754
711
|
|
|
755
712
|
/***/ })
|
|
756
713
|
|