@aws-sdk/client-arc-zonal-shift 3.1068.0 → 3.1070.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/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +88 -108
- package/dist-cjs/models/ARCZonalShiftServiceException.js +4 -8
- package/dist-cjs/models/errors.js +13 -22
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +121 -83
- package/package.json +8 -8
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.
|
|
4
|
-
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
|
-
const client_1 = require("@smithy/core/client");
|
|
6
|
-
const defaultARCZonalShiftHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
1
|
+
const { resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
|
|
3
|
+
exports.defaultARCZonalShiftHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
4
|
return {
|
|
8
|
-
operation:
|
|
9
|
-
region: await
|
|
5
|
+
operation: getSmithyContext(context).operation,
|
|
6
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
10
7
|
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
11
8
|
})(),
|
|
12
9
|
};
|
|
13
10
|
};
|
|
14
|
-
exports.defaultARCZonalShiftHttpAuthSchemeParametersProvider = defaultARCZonalShiftHttpAuthSchemeParametersProvider;
|
|
15
11
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
16
12
|
return {
|
|
17
13
|
schemeId: "aws.auth#sigv4",
|
|
@@ -27,7 +23,7 @@ function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
|
27
23
|
}),
|
|
28
24
|
};
|
|
29
25
|
}
|
|
30
|
-
|
|
26
|
+
exports.defaultARCZonalShiftHttpAuthSchemeProvider = (authParameters) => {
|
|
31
27
|
const options = [];
|
|
32
28
|
switch (authParameters.operation) {
|
|
33
29
|
default: {
|
|
@@ -36,11 +32,9 @@ const defaultARCZonalShiftHttpAuthSchemeProvider = (authParameters) => {
|
|
|
36
32
|
}
|
|
37
33
|
return options;
|
|
38
34
|
};
|
|
39
|
-
exports.
|
|
40
|
-
const
|
|
41
|
-
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
35
|
+
exports.resolveHttpAuthSchemeConfig = (config) => {
|
|
36
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
42
37
|
return Object.assign(config_0, {
|
|
43
|
-
authSchemePreference:
|
|
38
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
44
39
|
});
|
|
45
40
|
};
|
|
46
|
-
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/endpoint/bdd.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.bdd = void 0;
|
|
4
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
1
|
+
const { BinaryDecisionDiagram } = require("@smithy/core/endpoints");
|
|
5
2
|
const k = "ref";
|
|
6
3
|
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
7
4
|
const _data = {
|
|
@@ -46,4 +43,4 @@ const nodes = new Int32Array([
|
|
|
46
43
|
3, r + 1, 13,
|
|
47
44
|
4, r + 2, r + 3,
|
|
48
45
|
]);
|
|
49
|
-
exports.bdd =
|
|
46
|
+
exports.bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
6
|
-
const bdd_1 = require("./bdd");
|
|
7
|
-
const cache = new endpoints_1.EndpointCache({
|
|
1
|
+
const { awsEndpointFunctions } = require("@aws-sdk/core/client");
|
|
2
|
+
const { customEndpointFunctions, decideEndpoint, EndpointCache } = require("@smithy/core/endpoints");
|
|
3
|
+
const { bdd } = require("./bdd");
|
|
4
|
+
const cache = new EndpointCache({
|
|
8
5
|
size: 50,
|
|
9
6
|
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
7
|
});
|
|
11
|
-
|
|
12
|
-
return cache.get(endpointParams, () =>
|
|
8
|
+
exports.defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
9
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
13
10
|
endpointParams: endpointParams,
|
|
14
11
|
logger: context.logger,
|
|
15
12
|
}));
|
|
16
13
|
};
|
|
17
|
-
|
|
18
|
-
endpoints_1.customEndpointFunctions.aws = client_1.awsEndpointFunctions;
|
|
14
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultARCZonalShiftHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { CancelPracticeRun$, CancelZonalShift$, CreatePracticeRunConfiguration$, DeletePracticeRunConfiguration$, GetAutoshiftObserverNotificationStatus$, GetManagedResource$, ListAutoshifts$, ListManagedResources$, ListZonalShifts$, StartPracticeRun$, StartZonalShift$, UpdateAutoshiftObserverNotificationStatus$, UpdatePracticeRunConfiguration$, UpdateZonalAutoshiftConfiguration$, UpdateZonalShift$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { ARCZonalShiftServiceException } = require("./models/ARCZonalShiftServiceException");
|
|
18
|
+
exports.ARCZonalShiftServiceException = ARCZonalShiftServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,231 +71,231 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class ARCZonalShiftClient extends
|
|
79
|
+
class ARCZonalShiftClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultARCZonalShiftHttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
}),
|
|
103
106
|
}));
|
|
104
|
-
this.middlewareStack.use(
|
|
107
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
105
108
|
}
|
|
106
109
|
destroy() {
|
|
107
110
|
super.destroy();
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class CancelPracticeRunCommand extends
|
|
114
|
+
class CancelPracticeRunCommand extends Command
|
|
112
115
|
.classBuilder()
|
|
113
116
|
.ep(commonParams)
|
|
114
117
|
.m(function (Command, cs, config, o) {
|
|
115
|
-
return [
|
|
118
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
116
119
|
})
|
|
117
120
|
.s("PercDataPlane", "CancelPracticeRun", {})
|
|
118
121
|
.n("ARCZonalShiftClient", "CancelPracticeRunCommand")
|
|
119
|
-
.sc(
|
|
122
|
+
.sc(CancelPracticeRun$)
|
|
120
123
|
.build() {
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
class CancelZonalShiftCommand extends
|
|
126
|
+
class CancelZonalShiftCommand extends Command
|
|
124
127
|
.classBuilder()
|
|
125
128
|
.ep(commonParams)
|
|
126
129
|
.m(function (Command, cs, config, o) {
|
|
127
|
-
return [
|
|
130
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
128
131
|
})
|
|
129
132
|
.s("PercDataPlane", "CancelZonalShift", {})
|
|
130
133
|
.n("ARCZonalShiftClient", "CancelZonalShiftCommand")
|
|
131
|
-
.sc(
|
|
134
|
+
.sc(CancelZonalShift$)
|
|
132
135
|
.build() {
|
|
133
136
|
}
|
|
134
137
|
|
|
135
|
-
class CreatePracticeRunConfigurationCommand extends
|
|
138
|
+
class CreatePracticeRunConfigurationCommand extends Command
|
|
136
139
|
.classBuilder()
|
|
137
140
|
.ep(commonParams)
|
|
138
141
|
.m(function (Command, cs, config, o) {
|
|
139
|
-
return [
|
|
142
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
140
143
|
})
|
|
141
144
|
.s("PercDataPlane", "CreatePracticeRunConfiguration", {})
|
|
142
145
|
.n("ARCZonalShiftClient", "CreatePracticeRunConfigurationCommand")
|
|
143
|
-
.sc(
|
|
146
|
+
.sc(CreatePracticeRunConfiguration$)
|
|
144
147
|
.build() {
|
|
145
148
|
}
|
|
146
149
|
|
|
147
|
-
class DeletePracticeRunConfigurationCommand extends
|
|
150
|
+
class DeletePracticeRunConfigurationCommand extends Command
|
|
148
151
|
.classBuilder()
|
|
149
152
|
.ep(commonParams)
|
|
150
153
|
.m(function (Command, cs, config, o) {
|
|
151
|
-
return [
|
|
154
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
152
155
|
})
|
|
153
156
|
.s("PercDataPlane", "DeletePracticeRunConfiguration", {})
|
|
154
157
|
.n("ARCZonalShiftClient", "DeletePracticeRunConfigurationCommand")
|
|
155
|
-
.sc(
|
|
158
|
+
.sc(DeletePracticeRunConfiguration$)
|
|
156
159
|
.build() {
|
|
157
160
|
}
|
|
158
161
|
|
|
159
|
-
class GetAutoshiftObserverNotificationStatusCommand extends
|
|
162
|
+
class GetAutoshiftObserverNotificationStatusCommand extends Command
|
|
160
163
|
.classBuilder()
|
|
161
164
|
.ep(commonParams)
|
|
162
165
|
.m(function (Command, cs, config, o) {
|
|
163
|
-
return [
|
|
166
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
164
167
|
})
|
|
165
168
|
.s("PercDataPlane", "GetAutoshiftObserverNotificationStatus", {})
|
|
166
169
|
.n("ARCZonalShiftClient", "GetAutoshiftObserverNotificationStatusCommand")
|
|
167
|
-
.sc(
|
|
170
|
+
.sc(GetAutoshiftObserverNotificationStatus$)
|
|
168
171
|
.build() {
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
class GetManagedResourceCommand extends
|
|
174
|
+
class GetManagedResourceCommand extends Command
|
|
172
175
|
.classBuilder()
|
|
173
176
|
.ep(commonParams)
|
|
174
177
|
.m(function (Command, cs, config, o) {
|
|
175
|
-
return [
|
|
178
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
176
179
|
})
|
|
177
180
|
.s("PercDataPlane", "GetManagedResource", {})
|
|
178
181
|
.n("ARCZonalShiftClient", "GetManagedResourceCommand")
|
|
179
|
-
.sc(
|
|
182
|
+
.sc(GetManagedResource$)
|
|
180
183
|
.build() {
|
|
181
184
|
}
|
|
182
185
|
|
|
183
|
-
class ListAutoshiftsCommand extends
|
|
186
|
+
class ListAutoshiftsCommand extends Command
|
|
184
187
|
.classBuilder()
|
|
185
188
|
.ep(commonParams)
|
|
186
189
|
.m(function (Command, cs, config, o) {
|
|
187
|
-
return [
|
|
190
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
188
191
|
})
|
|
189
192
|
.s("PercDataPlane", "ListAutoshifts", {})
|
|
190
193
|
.n("ARCZonalShiftClient", "ListAutoshiftsCommand")
|
|
191
|
-
.sc(
|
|
194
|
+
.sc(ListAutoshifts$)
|
|
192
195
|
.build() {
|
|
193
196
|
}
|
|
194
197
|
|
|
195
|
-
class ListManagedResourcesCommand extends
|
|
198
|
+
class ListManagedResourcesCommand extends Command
|
|
196
199
|
.classBuilder()
|
|
197
200
|
.ep(commonParams)
|
|
198
201
|
.m(function (Command, cs, config, o) {
|
|
199
|
-
return [
|
|
202
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
200
203
|
})
|
|
201
204
|
.s("PercDataPlane", "ListManagedResources", {})
|
|
202
205
|
.n("ARCZonalShiftClient", "ListManagedResourcesCommand")
|
|
203
|
-
.sc(
|
|
206
|
+
.sc(ListManagedResources$)
|
|
204
207
|
.build() {
|
|
205
208
|
}
|
|
206
209
|
|
|
207
|
-
class ListZonalShiftsCommand extends
|
|
210
|
+
class ListZonalShiftsCommand extends Command
|
|
208
211
|
.classBuilder()
|
|
209
212
|
.ep(commonParams)
|
|
210
213
|
.m(function (Command, cs, config, o) {
|
|
211
|
-
return [
|
|
214
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
212
215
|
})
|
|
213
216
|
.s("PercDataPlane", "ListZonalShifts", {})
|
|
214
217
|
.n("ARCZonalShiftClient", "ListZonalShiftsCommand")
|
|
215
|
-
.sc(
|
|
218
|
+
.sc(ListZonalShifts$)
|
|
216
219
|
.build() {
|
|
217
220
|
}
|
|
218
221
|
|
|
219
|
-
class StartPracticeRunCommand extends
|
|
222
|
+
class StartPracticeRunCommand extends Command
|
|
220
223
|
.classBuilder()
|
|
221
224
|
.ep(commonParams)
|
|
222
225
|
.m(function (Command, cs, config, o) {
|
|
223
|
-
return [
|
|
226
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
224
227
|
})
|
|
225
228
|
.s("PercDataPlane", "StartPracticeRun", {})
|
|
226
229
|
.n("ARCZonalShiftClient", "StartPracticeRunCommand")
|
|
227
|
-
.sc(
|
|
230
|
+
.sc(StartPracticeRun$)
|
|
228
231
|
.build() {
|
|
229
232
|
}
|
|
230
233
|
|
|
231
|
-
class StartZonalShiftCommand extends
|
|
234
|
+
class StartZonalShiftCommand extends Command
|
|
232
235
|
.classBuilder()
|
|
233
236
|
.ep(commonParams)
|
|
234
237
|
.m(function (Command, cs, config, o) {
|
|
235
|
-
return [
|
|
238
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
236
239
|
})
|
|
237
240
|
.s("PercDataPlane", "StartZonalShift", {})
|
|
238
241
|
.n("ARCZonalShiftClient", "StartZonalShiftCommand")
|
|
239
|
-
.sc(
|
|
242
|
+
.sc(StartZonalShift$)
|
|
240
243
|
.build() {
|
|
241
244
|
}
|
|
242
245
|
|
|
243
|
-
class UpdateAutoshiftObserverNotificationStatusCommand extends
|
|
246
|
+
class UpdateAutoshiftObserverNotificationStatusCommand extends Command
|
|
244
247
|
.classBuilder()
|
|
245
248
|
.ep(commonParams)
|
|
246
249
|
.m(function (Command, cs, config, o) {
|
|
247
|
-
return [
|
|
250
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
248
251
|
})
|
|
249
252
|
.s("PercDataPlane", "UpdateAutoshiftObserverNotificationStatus", {})
|
|
250
253
|
.n("ARCZonalShiftClient", "UpdateAutoshiftObserverNotificationStatusCommand")
|
|
251
|
-
.sc(
|
|
254
|
+
.sc(UpdateAutoshiftObserverNotificationStatus$)
|
|
252
255
|
.build() {
|
|
253
256
|
}
|
|
254
257
|
|
|
255
|
-
class UpdatePracticeRunConfigurationCommand extends
|
|
258
|
+
class UpdatePracticeRunConfigurationCommand extends Command
|
|
256
259
|
.classBuilder()
|
|
257
260
|
.ep(commonParams)
|
|
258
261
|
.m(function (Command, cs, config, o) {
|
|
259
|
-
return [
|
|
262
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
260
263
|
})
|
|
261
264
|
.s("PercDataPlane", "UpdatePracticeRunConfiguration", {})
|
|
262
265
|
.n("ARCZonalShiftClient", "UpdatePracticeRunConfigurationCommand")
|
|
263
|
-
.sc(
|
|
266
|
+
.sc(UpdatePracticeRunConfiguration$)
|
|
264
267
|
.build() {
|
|
265
268
|
}
|
|
266
269
|
|
|
267
|
-
class UpdateZonalAutoshiftConfigurationCommand extends
|
|
270
|
+
class UpdateZonalAutoshiftConfigurationCommand extends Command
|
|
268
271
|
.classBuilder()
|
|
269
272
|
.ep(commonParams)
|
|
270
273
|
.m(function (Command, cs, config, o) {
|
|
271
|
-
return [
|
|
274
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
272
275
|
})
|
|
273
276
|
.s("PercDataPlane", "UpdateZonalAutoshiftConfiguration", {})
|
|
274
277
|
.n("ARCZonalShiftClient", "UpdateZonalAutoshiftConfigurationCommand")
|
|
275
|
-
.sc(
|
|
278
|
+
.sc(UpdateZonalAutoshiftConfiguration$)
|
|
276
279
|
.build() {
|
|
277
280
|
}
|
|
278
281
|
|
|
279
|
-
class UpdateZonalShiftCommand extends
|
|
282
|
+
class UpdateZonalShiftCommand extends Command
|
|
280
283
|
.classBuilder()
|
|
281
284
|
.ep(commonParams)
|
|
282
285
|
.m(function (Command, cs, config, o) {
|
|
283
|
-
return [
|
|
286
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
284
287
|
})
|
|
285
288
|
.s("PercDataPlane", "UpdateZonalShift", {})
|
|
286
289
|
.n("ARCZonalShiftClient", "UpdateZonalShiftCommand")
|
|
287
|
-
.sc(
|
|
290
|
+
.sc(UpdateZonalShift$)
|
|
288
291
|
.build() {
|
|
289
292
|
}
|
|
290
293
|
|
|
291
|
-
const paginateListAutoshifts =
|
|
294
|
+
const paginateListAutoshifts = createPaginator(ARCZonalShiftClient, ListAutoshiftsCommand, "nextToken", "nextToken", "maxResults");
|
|
292
295
|
|
|
293
|
-
const paginateListManagedResources =
|
|
296
|
+
const paginateListManagedResources = createPaginator(ARCZonalShiftClient, ListManagedResourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
294
297
|
|
|
295
|
-
const paginateListZonalShifts =
|
|
298
|
+
const paginateListZonalShifts = createPaginator(ARCZonalShiftClient, ListZonalShiftsCommand, "nextToken", "nextToken", "maxResults");
|
|
296
299
|
|
|
297
300
|
const commands = {
|
|
298
301
|
CancelPracticeRunCommand,
|
|
@@ -318,7 +321,7 @@ const paginators = {
|
|
|
318
321
|
};
|
|
319
322
|
class ARCZonalShift extends ARCZonalShiftClient {
|
|
320
323
|
}
|
|
321
|
-
|
|
324
|
+
createAggregatedClient(commands, ARCZonalShift, { paginators });
|
|
322
325
|
|
|
323
326
|
const AppliedStatus = {
|
|
324
327
|
APPLIED: "APPLIED",
|
|
@@ -393,9 +396,6 @@ const ShiftType = {
|
|
|
393
396
|
ZONAL_SHIFT: "ZONAL_SHIFT",
|
|
394
397
|
};
|
|
395
398
|
|
|
396
|
-
exports.$Command = client.Command;
|
|
397
|
-
exports.__Client = client.Client;
|
|
398
|
-
exports.ARCZonalShiftServiceException = ARCZonalShiftServiceException.ARCZonalShiftServiceException;
|
|
399
399
|
exports.ARCZonalShift = ARCZonalShift;
|
|
400
400
|
exports.ARCZonalShiftClient = ARCZonalShiftClient;
|
|
401
401
|
exports.AppliedStatus = AppliedStatus;
|
|
@@ -427,23 +427,3 @@ exports.ZonalShiftStatus = ZonalShiftStatus;
|
|
|
427
427
|
exports.paginateListAutoshifts = paginateListAutoshifts;
|
|
428
428
|
exports.paginateListManagedResources = paginateListManagedResources;
|
|
429
429
|
exports.paginateListZonalShifts = paginateListZonalShifts;
|
|
430
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
431
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
432
|
-
Object.defineProperty(exports, '__proto__', {
|
|
433
|
-
enumerable: true,
|
|
434
|
-
value: schemas_0['__proto__']
|
|
435
|
-
});
|
|
436
|
-
|
|
437
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
438
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
439
|
-
});
|
|
440
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
441
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
442
|
-
Object.defineProperty(exports, '__proto__', {
|
|
443
|
-
enumerable: true,
|
|
444
|
-
value: errors['__proto__']
|
|
445
|
-
});
|
|
446
|
-
|
|
447
|
-
Object.keys(errors).forEach(function (k) {
|
|
448
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
449
|
-
});
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.ARCZonalShiftServiceException =
|
|
4
|
-
const client_1 = require("@smithy/core/client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return client_1.ServiceException; } });
|
|
6
|
-
class ARCZonalShiftServiceException extends client_1.ServiceException {
|
|
1
|
+
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
+
exports.__ServiceException = __ServiceException;
|
|
3
|
+
exports.ARCZonalShiftServiceException = class ARCZonalShiftServiceException extends __ServiceException {
|
|
7
4
|
constructor(options) {
|
|
8
5
|
super(options);
|
|
9
6
|
Object.setPrototypeOf(this, ARCZonalShiftServiceException.prototype);
|
|
10
7
|
}
|
|
11
|
-
}
|
|
12
|
-
exports.ARCZonalShiftServiceException = ARCZonalShiftServiceException;
|
|
8
|
+
};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.ResourceNotFoundException = exports.ConflictException = exports.ValidationException = exports.ThrottlingException = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
|
-
const ARCZonalShiftServiceException_1 = require("./ARCZonalShiftServiceException");
|
|
5
|
-
class AccessDeniedException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
1
|
+
const { ARCZonalShiftServiceException: __BaseException } = require("./ARCZonalShiftServiceException");
|
|
2
|
+
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
6
3
|
name = "AccessDeniedException";
|
|
7
4
|
$fault = "client";
|
|
8
5
|
constructor(opts) {
|
|
@@ -13,9 +10,8 @@ class AccessDeniedException extends ARCZonalShiftServiceException_1.ARCZonalShif
|
|
|
13
10
|
});
|
|
14
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
12
|
}
|
|
16
|
-
}
|
|
17
|
-
exports.
|
|
18
|
-
class InternalServerException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
13
|
+
};
|
|
14
|
+
exports.InternalServerException = class InternalServerException extends __BaseException {
|
|
19
15
|
name = "InternalServerException";
|
|
20
16
|
$fault = "server";
|
|
21
17
|
constructor(opts) {
|
|
@@ -26,9 +22,8 @@ class InternalServerException extends ARCZonalShiftServiceException_1.ARCZonalSh
|
|
|
26
22
|
});
|
|
27
23
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
28
24
|
}
|
|
29
|
-
}
|
|
30
|
-
exports.
|
|
31
|
-
class ThrottlingException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
25
|
+
};
|
|
26
|
+
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
32
27
|
name = "ThrottlingException";
|
|
33
28
|
$fault = "client";
|
|
34
29
|
constructor(opts) {
|
|
@@ -39,9 +34,8 @@ class ThrottlingException extends ARCZonalShiftServiceException_1.ARCZonalShiftS
|
|
|
39
34
|
});
|
|
40
35
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
41
36
|
}
|
|
42
|
-
}
|
|
43
|
-
exports.
|
|
44
|
-
class ValidationException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
37
|
+
};
|
|
38
|
+
exports.ValidationException = class ValidationException extends __BaseException {
|
|
45
39
|
name = "ValidationException";
|
|
46
40
|
$fault = "client";
|
|
47
41
|
reason;
|
|
@@ -54,9 +48,8 @@ class ValidationException extends ARCZonalShiftServiceException_1.ARCZonalShiftS
|
|
|
54
48
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
55
49
|
this.reason = opts.reason;
|
|
56
50
|
}
|
|
57
|
-
}
|
|
58
|
-
exports.
|
|
59
|
-
class ConflictException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
51
|
+
};
|
|
52
|
+
exports.ConflictException = class ConflictException extends __BaseException {
|
|
60
53
|
name = "ConflictException";
|
|
61
54
|
$fault = "client";
|
|
62
55
|
reason;
|
|
@@ -71,9 +64,8 @@ class ConflictException extends ARCZonalShiftServiceException_1.ARCZonalShiftSer
|
|
|
71
64
|
this.reason = opts.reason;
|
|
72
65
|
this.zonalShiftId = opts.zonalShiftId;
|
|
73
66
|
}
|
|
74
|
-
}
|
|
75
|
-
exports.
|
|
76
|
-
class ResourceNotFoundException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
67
|
+
};
|
|
68
|
+
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
77
69
|
name = "ResourceNotFoundException";
|
|
78
70
|
$fault = "client";
|
|
79
71
|
constructor(opts) {
|
|
@@ -84,5 +76,4 @@ class ResourceNotFoundException extends ARCZonalShiftServiceException_1.ARCZonal
|
|
|
84
76
|
});
|
|
85
77
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
86
78
|
}
|
|
87
|
-
}
|
|
88
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
79
|
+
};
|
|
@@ -1,36 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const retry_1 = require("@smithy/core/retry");
|
|
11
|
-
const serde_1 = require("@smithy/core/serde");
|
|
12
|
-
const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
|
|
13
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { Sha256 } = require("@aws-crypto/sha256-browser");
|
|
3
|
+
const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
|
|
4
|
+
const { invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
5
|
+
const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
6
|
+
const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
|
|
7
|
+
const { calculateBodyLength } = require("@smithy/core/serde");
|
|
8
|
+
const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
|
|
9
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
14
10
|
const getRuntimeConfig = (config) => {
|
|
15
|
-
const defaultsMode =
|
|
16
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
17
|
-
const clientSharedValues = (
|
|
11
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
12
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
13
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
18
14
|
return {
|
|
19
15
|
...clientSharedValues,
|
|
20
16
|
...config,
|
|
21
17
|
runtime: "browser",
|
|
22
18
|
defaultsMode,
|
|
23
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
19
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
24
20
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
25
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
26
|
-
maxAttempts: config?.maxAttempts ??
|
|
27
|
-
region: config?.region ??
|
|
28
|
-
requestHandler:
|
|
29
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode ||
|
|
30
|
-
sha256: config?.sha256 ??
|
|
31
|
-
streamCollector: config?.streamCollector ??
|
|
32
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(
|
|
33
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(
|
|
21
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
22
|
+
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
23
|
+
region: config?.region ?? invalidProvider("Region is missing"),
|
|
24
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
25
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
26
|
+
sha256: config?.sha256 ?? Sha256,
|
|
27
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
28
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
29
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
34
30
|
};
|
|
35
31
|
};
|
|
36
32
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion: awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS } = require("@aws-sdk/core/client");
|
|
3
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
4
|
+
const { defaultProvider: credentialDefaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
5
|
+
const { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
6
|
+
const { loadConfig: loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
7
|
+
const { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength, Hash } = require("@smithy/core/serde");
|
|
9
|
+
const { NodeHttpHandler: RequestHandler, streamCollector } = require("@smithy/node-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
|
|
17
|
-
const defaultsMode =
|
|
18
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
19
|
-
const clientSharedValues = (
|
|
20
|
-
(
|
|
12
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
13
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
14
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
15
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
16
|
+
awsCheckVersion(process.version);
|
|
21
17
|
const loaderConfig = {
|
|
22
18
|
profile: config?.profile,
|
|
23
19
|
logger: clientSharedValues.logger,
|
|
@@ -27,23 +23,23 @@ const getRuntimeConfig = (config) => {
|
|
|
27
23
|
...config,
|
|
28
24
|
runtime: "node",
|
|
29
25
|
defaultsMode,
|
|
30
|
-
authSchemePreference: config?.authSchemePreference ?? (
|
|
31
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
32
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
maxAttempts: config?.maxAttempts ?? (
|
|
35
|
-
region: config?.region ?? (
|
|
36
|
-
requestHandler:
|
|
26
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
27
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
28
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
29
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
30
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
31
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
32
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
37
33
|
retryMode: config?.retryMode ??
|
|
38
|
-
(
|
|
39
|
-
...
|
|
40
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
34
|
+
loadNodeConfig({
|
|
35
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
36
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
41
37
|
}, config),
|
|
42
|
-
sha256: config?.sha256 ??
|
|
43
|
-
streamCollector: config?.streamCollector ??
|
|
44
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (
|
|
45
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (
|
|
46
|
-
userAgentAppId: config?.userAgentAppId ?? (
|
|
38
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
39
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
40
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
41
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
42
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
47
43
|
};
|
|
48
44
|
};
|
|
49
45
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
|
-
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
1
|
+
const { Sha256 } = require("@aws-crypto/sha256-js");
|
|
2
|
+
const { getRuntimeConfig: getBrowserRuntimeConfig } = require("./runtimeConfig.browser");
|
|
6
3
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
const browserDefaults = (
|
|
4
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
8
5
|
return {
|
|
9
6
|
...browserDefaults,
|
|
10
7
|
...config,
|
|
11
8
|
runtime: "react-native",
|
|
12
|
-
sha256: config?.sha256 ??
|
|
9
|
+
sha256: config?.sha256 ?? Sha256,
|
|
13
10
|
};
|
|
14
11
|
};
|
|
15
12
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,42 +1,38 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
11
|
-
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
|
-
const getRuntimeConfig = (config) => {
|
|
1
|
+
const { AwsSdkSigV4Signer } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
3
|
+
const { NoOpLogger } = require("@smithy/core/client");
|
|
4
|
+
const { parseUrl } = require("@smithy/core/protocols");
|
|
5
|
+
const { fromBase64, fromUtf8, toBase64, toUtf8 } = require("@smithy/core/serde");
|
|
6
|
+
const { defaultARCZonalShiftHttpAuthSchemeProvider } = require("./auth/httpAuthSchemeProvider");
|
|
7
|
+
const { defaultEndpointResolver } = require("./endpoint/endpointResolver");
|
|
8
|
+
const { errorTypeRegistries } = require("./schemas/schemas_0");
|
|
9
|
+
exports.getRuntimeConfig = (config) => {
|
|
13
10
|
return {
|
|
14
11
|
apiVersion: "2022-10-30",
|
|
15
|
-
base64Decoder: config?.base64Decoder ??
|
|
16
|
-
base64Encoder: config?.base64Encoder ??
|
|
12
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
17
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
18
|
-
endpointProvider: config?.endpointProvider ??
|
|
15
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
19
16
|
extensions: config?.extensions ?? [],
|
|
20
|
-
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ??
|
|
17
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultARCZonalShiftHttpAuthSchemeProvider,
|
|
21
18
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
22
19
|
{
|
|
23
20
|
schemeId: "aws.auth#sigv4",
|
|
24
21
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
25
|
-
signer: new
|
|
22
|
+
signer: new AwsSdkSigV4Signer(),
|
|
26
23
|
},
|
|
27
24
|
],
|
|
28
|
-
logger: config?.logger ?? new
|
|
29
|
-
protocol: config?.protocol ??
|
|
25
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
30
27
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
28
|
defaultNamespace: "com.amazonaws.arczonalshift",
|
|
32
|
-
errorTypeRegistries
|
|
29
|
+
errorTypeRegistries,
|
|
33
30
|
version: "2022-10-30",
|
|
34
31
|
serviceTarget: "PercDataPlane",
|
|
35
32
|
},
|
|
36
33
|
serviceId: config?.serviceId ?? "ARC Zonal Shift",
|
|
37
|
-
urlParser: config?.urlParser ??
|
|
38
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
39
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
34
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
35
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
40
37
|
};
|
|
41
38
|
};
|
|
42
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListAutoshifts$ = exports.GetManagedResource$ = exports.GetAutoshiftObserverNotificationStatus$ = exports.DeletePracticeRunConfiguration$ = exports.CreatePracticeRunConfiguration$ = exports.CancelZonalShift$ = exports.CancelPracticeRun$ = exports.ZonalShiftSummary$ = exports.ZonalShiftInResource$ = exports.ZonalShift$ = exports.UpdateZonalShiftRequest$ = exports.UpdateZonalAutoshiftConfigurationResponse$ = exports.UpdateZonalAutoshiftConfigurationRequest$ = exports.UpdatePracticeRunConfigurationResponse$ = exports.UpdatePracticeRunConfigurationRequest$ = exports.UpdateAutoshiftObserverNotificationStatusResponse$ = exports.UpdateAutoshiftObserverNotificationStatusRequest$ = exports.StartZonalShiftRequest$ = exports.StartPracticeRunResponse$ = exports.StartPracticeRunRequest$ = exports.PracticeRunConfiguration$ = exports.ManagedResourceSummary$ = exports.ListZonalShiftsResponse$ = exports.ListZonalShiftsRequest$ = exports.ListManagedResourcesResponse$ = exports.ListManagedResourcesRequest$ = exports.ListAutoshiftsResponse$ = exports.ListAutoshiftsRequest$ = exports.GetManagedResourceResponse$ = exports.GetManagedResourceRequest$ = exports.GetAutoshiftObserverNotificationStatusResponse$ = exports.GetAutoshiftObserverNotificationStatusRequest$ = exports.DeletePracticeRunConfigurationResponse$ = exports.DeletePracticeRunConfigurationRequest$ = exports.CreatePracticeRunConfigurationResponse$ = exports.CreatePracticeRunConfigurationRequest$ = exports.ControlCondition$ = exports.CancelZonalShiftRequest$ = exports.CancelPracticeRunResponse$ = exports.CancelPracticeRunRequest$ = exports.AutoshiftSummary$ = exports.AutoshiftInResource$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.ARCZonalShiftServiceException$ = void 0;
|
|
4
|
-
exports.UpdateZonalShift$ = exports.UpdateZonalAutoshiftConfiguration$ = exports.UpdatePracticeRunConfiguration$ = exports.UpdateAutoshiftObserverNotificationStatus$ = exports.StartZonalShift$ = exports.StartPracticeRun$ = exports.ListZonalShifts$ = exports.ListManagedResources$ = void 0;
|
|
5
1
|
const _ADE = "AccessDeniedException";
|
|
6
2
|
const _AIR = "AutoshiftInResource";
|
|
7
3
|
const _AIRu = "AutoshiftsInResource";
|
|
@@ -106,296 +102,338 @@ const _zAS = "zonalAutoshiftStatus";
|
|
|
106
102
|
const _zS = "zonalShifts";
|
|
107
103
|
const _zSI = "zonalShiftId";
|
|
108
104
|
const n0 = "com.amazonaws.arczonalshift";
|
|
109
|
-
const
|
|
110
|
-
const
|
|
111
|
-
const
|
|
112
|
-
const _s_registry =
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
105
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
106
|
+
const { ARCZonalShiftServiceException } = require("../models/ARCZonalShiftServiceException");
|
|
107
|
+
const { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException } = require("../models/errors");
|
|
108
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
109
|
+
const ARCZonalShiftServiceException$ = [-3, _s, "ARCZonalShiftServiceException", 0, [], []];
|
|
110
|
+
exports.ARCZonalShiftServiceException$ = ARCZonalShiftServiceException$;
|
|
111
|
+
_s_registry.registerError(ARCZonalShiftServiceException$, ARCZonalShiftServiceException);
|
|
112
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
113
|
+
const AccessDeniedException$ = [-3, n0, _ADE,
|
|
117
114
|
{ [_e]: _c, [_hE]: 403 },
|
|
118
115
|
[_m],
|
|
119
116
|
[0]
|
|
120
117
|
];
|
|
121
|
-
|
|
122
|
-
|
|
118
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
119
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
120
|
+
const ConflictException$ = [-3, n0, _CE,
|
|
123
121
|
{ [_e]: _c, [_hE]: 409 },
|
|
124
122
|
[_m, _r, _zSI],
|
|
125
123
|
[0, 0, 0], 2
|
|
126
124
|
];
|
|
127
|
-
|
|
128
|
-
|
|
125
|
+
exports.ConflictException$ = ConflictException$;
|
|
126
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
127
|
+
const InternalServerException$ = [-3, n0, _ISE,
|
|
129
128
|
{ [_e]: _se, [_hE]: 500 },
|
|
130
129
|
[_m],
|
|
131
130
|
[0]
|
|
132
131
|
];
|
|
133
|
-
|
|
134
|
-
|
|
132
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
133
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
134
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
135
135
|
{ [_e]: _c, [_hE]: 404 },
|
|
136
136
|
[_m],
|
|
137
137
|
[0], 1
|
|
138
138
|
];
|
|
139
|
-
|
|
140
|
-
|
|
139
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
140
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
141
|
+
const ThrottlingException$ = [-3, n0, _TE,
|
|
141
142
|
{ [_e]: _c, [_hE]: 429 },
|
|
142
143
|
[_m],
|
|
143
144
|
[0]
|
|
144
145
|
];
|
|
145
|
-
|
|
146
|
-
|
|
146
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
147
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
148
|
+
const ValidationException$ = [-3, n0, _VE,
|
|
147
149
|
{ [_e]: _c, [_hE]: 400 },
|
|
148
150
|
[_m, _r],
|
|
149
151
|
[0, 0], 2
|
|
150
152
|
];
|
|
151
|
-
|
|
153
|
+
exports.ValidationException$ = ValidationException$;
|
|
154
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
152
155
|
exports.errorTypeRegistries = [
|
|
153
156
|
_s_registry,
|
|
154
157
|
n0_registry,
|
|
155
158
|
];
|
|
156
|
-
|
|
159
|
+
const AutoshiftInResource$ = [3, n0, _AIR,
|
|
157
160
|
0,
|
|
158
161
|
[_aS, _aF, _sT],
|
|
159
162
|
[0, 0, 4], 3
|
|
160
163
|
];
|
|
161
|
-
exports.
|
|
164
|
+
exports.AutoshiftInResource$ = AutoshiftInResource$;
|
|
165
|
+
const AutoshiftSummary$ = [3, n0, _AS,
|
|
162
166
|
0,
|
|
163
167
|
[_aF, _sT, _st, _eT],
|
|
164
168
|
[0, 4, 0, 4], 3
|
|
165
169
|
];
|
|
166
|
-
exports.
|
|
170
|
+
exports.AutoshiftSummary$ = AutoshiftSummary$;
|
|
171
|
+
const CancelPracticeRunRequest$ = [3, n0, _CPRR,
|
|
167
172
|
0,
|
|
168
173
|
[_zSI],
|
|
169
174
|
[[0, 1]], 1
|
|
170
175
|
];
|
|
171
|
-
exports.
|
|
176
|
+
exports.CancelPracticeRunRequest$ = CancelPracticeRunRequest$;
|
|
177
|
+
const CancelPracticeRunResponse$ = [3, n0, _CPRRa,
|
|
172
178
|
0,
|
|
173
179
|
[_zSI, _rI, _aF, _eTx, _sT, _st, _co],
|
|
174
180
|
[0, 0, 0, 4, 4, 0, 0], 7
|
|
175
181
|
];
|
|
176
|
-
exports.
|
|
182
|
+
exports.CancelPracticeRunResponse$ = CancelPracticeRunResponse$;
|
|
183
|
+
const CancelZonalShiftRequest$ = [3, n0, _CZSR,
|
|
177
184
|
0,
|
|
178
185
|
[_zSI],
|
|
179
186
|
[[0, 1]], 1
|
|
180
187
|
];
|
|
181
|
-
exports.
|
|
188
|
+
exports.CancelZonalShiftRequest$ = CancelZonalShiftRequest$;
|
|
189
|
+
const ControlCondition$ = [3, n0, _CC,
|
|
182
190
|
0,
|
|
183
191
|
[_t, _aI],
|
|
184
192
|
[0, 0], 2
|
|
185
193
|
];
|
|
186
|
-
exports.
|
|
194
|
+
exports.ControlCondition$ = ControlCondition$;
|
|
195
|
+
const CreatePracticeRunConfigurationRequest$ = [3, n0, _CPRCR,
|
|
187
196
|
0,
|
|
188
197
|
[_rI, _oA, _bW, _bD, _bA, _aW],
|
|
189
198
|
[0, () => OutcomeAlarms, 64 | 0, 64 | 0, () => BlockingAlarms, 64 | 0], 2
|
|
190
199
|
];
|
|
191
|
-
exports.
|
|
200
|
+
exports.CreatePracticeRunConfigurationRequest$ = CreatePracticeRunConfigurationRequest$;
|
|
201
|
+
const CreatePracticeRunConfigurationResponse$ = [3, n0, _CPRCRr,
|
|
192
202
|
0,
|
|
193
203
|
[_a, _n, _zAS, _pRC],
|
|
194
|
-
[0, 0, 0, () =>
|
|
204
|
+
[0, 0, 0, () => PracticeRunConfiguration$], 4
|
|
195
205
|
];
|
|
196
|
-
exports.
|
|
206
|
+
exports.CreatePracticeRunConfigurationResponse$ = CreatePracticeRunConfigurationResponse$;
|
|
207
|
+
const DeletePracticeRunConfigurationRequest$ = [3, n0, _DPRCR,
|
|
197
208
|
0,
|
|
198
209
|
[_rI],
|
|
199
210
|
[[0, 1]], 1
|
|
200
211
|
];
|
|
201
|
-
exports.
|
|
212
|
+
exports.DeletePracticeRunConfigurationRequest$ = DeletePracticeRunConfigurationRequest$;
|
|
213
|
+
const DeletePracticeRunConfigurationResponse$ = [3, n0, _DPRCRe,
|
|
202
214
|
0,
|
|
203
215
|
[_a, _n, _zAS],
|
|
204
216
|
[0, 0, 0], 3
|
|
205
217
|
];
|
|
206
|
-
exports.
|
|
218
|
+
exports.DeletePracticeRunConfigurationResponse$ = DeletePracticeRunConfigurationResponse$;
|
|
219
|
+
const GetAutoshiftObserverNotificationStatusRequest$ = [3, n0, _GAONSR,
|
|
207
220
|
0,
|
|
208
221
|
[],
|
|
209
222
|
[]
|
|
210
223
|
];
|
|
211
|
-
exports.
|
|
224
|
+
exports.GetAutoshiftObserverNotificationStatusRequest$ = GetAutoshiftObserverNotificationStatusRequest$;
|
|
225
|
+
const GetAutoshiftObserverNotificationStatusResponse$ = [3, n0, _GAONSRe,
|
|
212
226
|
0,
|
|
213
227
|
[_st],
|
|
214
228
|
[0], 1
|
|
215
229
|
];
|
|
216
|
-
exports.
|
|
230
|
+
exports.GetAutoshiftObserverNotificationStatusResponse$ = GetAutoshiftObserverNotificationStatusResponse$;
|
|
231
|
+
const GetManagedResourceRequest$ = [3, n0, _GMRR,
|
|
217
232
|
0,
|
|
218
233
|
[_rI],
|
|
219
234
|
[[0, 1]], 1
|
|
220
235
|
];
|
|
221
|
-
exports.
|
|
236
|
+
exports.GetManagedResourceRequest$ = GetManagedResourceRequest$;
|
|
237
|
+
const GetManagedResourceResponse$ = [3, n0, _GMRRe,
|
|
222
238
|
0,
|
|
223
239
|
[_aWp, _zS, _a, _n, _au, _pRC, _zAS],
|
|
224
|
-
[128 | 1, () => ZonalShiftsInResource, 0, 0, () => AutoshiftsInResource, () =>
|
|
240
|
+
[128 | 1, () => ZonalShiftsInResource, 0, 0, () => AutoshiftsInResource, () => PracticeRunConfiguration$, 0], 2
|
|
225
241
|
];
|
|
226
|
-
exports.
|
|
242
|
+
exports.GetManagedResourceResponse$ = GetManagedResourceResponse$;
|
|
243
|
+
const ListAutoshiftsRequest$ = [3, n0, _LAR,
|
|
227
244
|
0,
|
|
228
245
|
[_nT, _st, _mR],
|
|
229
246
|
[[0, { [_hQ]: _nT }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mR }]]
|
|
230
247
|
];
|
|
231
|
-
exports.
|
|
248
|
+
exports.ListAutoshiftsRequest$ = ListAutoshiftsRequest$;
|
|
249
|
+
const ListAutoshiftsResponse$ = [3, n0, _LARi,
|
|
232
250
|
0,
|
|
233
251
|
[_i, _nT],
|
|
234
252
|
[() => AutoshiftSummaries, 0]
|
|
235
253
|
];
|
|
236
|
-
exports.
|
|
254
|
+
exports.ListAutoshiftsResponse$ = ListAutoshiftsResponse$;
|
|
255
|
+
const ListManagedResourcesRequest$ = [3, n0, _LMRR,
|
|
237
256
|
0,
|
|
238
257
|
[_nT, _mR],
|
|
239
258
|
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
240
259
|
];
|
|
241
|
-
exports.
|
|
260
|
+
exports.ListManagedResourcesRequest$ = ListManagedResourcesRequest$;
|
|
261
|
+
const ListManagedResourcesResponse$ = [3, n0, _LMRRi,
|
|
242
262
|
0,
|
|
243
263
|
[_i, _nT],
|
|
244
264
|
[() => ManagedResourceSummaries, 0], 1
|
|
245
265
|
];
|
|
246
|
-
exports.
|
|
266
|
+
exports.ListManagedResourcesResponse$ = ListManagedResourcesResponse$;
|
|
267
|
+
const ListZonalShiftsRequest$ = [3, n0, _LZSR,
|
|
247
268
|
0,
|
|
248
269
|
[_nT, _st, _mR, _rI],
|
|
249
270
|
[[0, { [_hQ]: _nT }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _rI }]]
|
|
250
271
|
];
|
|
251
|
-
exports.
|
|
272
|
+
exports.ListZonalShiftsRequest$ = ListZonalShiftsRequest$;
|
|
273
|
+
const ListZonalShiftsResponse$ = [3, n0, _LZSRi,
|
|
252
274
|
0,
|
|
253
275
|
[_i, _nT],
|
|
254
276
|
[() => ZonalShiftSummaries, 0]
|
|
255
277
|
];
|
|
256
|
-
exports.
|
|
278
|
+
exports.ListZonalShiftsResponse$ = ListZonalShiftsResponse$;
|
|
279
|
+
const ManagedResourceSummary$ = [3, n0, _MRS,
|
|
257
280
|
0,
|
|
258
281
|
[_aZ, _a, _n, _aWp, _zS, _au, _zAS, _pRS],
|
|
259
282
|
[64 | 0, 0, 0, 128 | 1, () => ZonalShiftsInResource, () => AutoshiftsInResource, 0, 0], 1
|
|
260
283
|
];
|
|
261
|
-
exports.
|
|
284
|
+
exports.ManagedResourceSummary$ = ManagedResourceSummary$;
|
|
285
|
+
const PracticeRunConfiguration$ = [3, n0, _PRC,
|
|
262
286
|
0,
|
|
263
287
|
[_oA, _bA, _bW, _aW, _bD],
|
|
264
288
|
[() => OutcomeAlarms, () => BlockingAlarms, 64 | 0, 64 | 0, 64 | 0], 1
|
|
265
289
|
];
|
|
266
|
-
exports.
|
|
290
|
+
exports.PracticeRunConfiguration$ = PracticeRunConfiguration$;
|
|
291
|
+
const StartPracticeRunRequest$ = [3, n0, _SPRR,
|
|
267
292
|
0,
|
|
268
293
|
[_rI, _aF, _co],
|
|
269
294
|
[0, 0, 0], 3
|
|
270
295
|
];
|
|
271
|
-
exports.
|
|
296
|
+
exports.StartPracticeRunRequest$ = StartPracticeRunRequest$;
|
|
297
|
+
const StartPracticeRunResponse$ = [3, n0, _SPRRt,
|
|
272
298
|
0,
|
|
273
299
|
[_zSI, _rI, _aF, _eTx, _sT, _st, _co],
|
|
274
300
|
[0, 0, 0, 4, 4, 0, 0], 7
|
|
275
301
|
];
|
|
276
|
-
exports.
|
|
302
|
+
exports.StartPracticeRunResponse$ = StartPracticeRunResponse$;
|
|
303
|
+
const StartZonalShiftRequest$ = [3, n0, _SZSR,
|
|
277
304
|
0,
|
|
278
305
|
[_rI, _aF, _eI, _co],
|
|
279
306
|
[0, 0, 0, 0], 4
|
|
280
307
|
];
|
|
281
|
-
exports.
|
|
308
|
+
exports.StartZonalShiftRequest$ = StartZonalShiftRequest$;
|
|
309
|
+
const UpdateAutoshiftObserverNotificationStatusRequest$ = [3, n0, _UAONSR,
|
|
282
310
|
0,
|
|
283
311
|
[_st],
|
|
284
312
|
[0], 1
|
|
285
313
|
];
|
|
286
|
-
exports.
|
|
314
|
+
exports.UpdateAutoshiftObserverNotificationStatusRequest$ = UpdateAutoshiftObserverNotificationStatusRequest$;
|
|
315
|
+
const UpdateAutoshiftObserverNotificationStatusResponse$ = [3, n0, _UAONSRp,
|
|
287
316
|
0,
|
|
288
317
|
[_st],
|
|
289
318
|
[0], 1
|
|
290
319
|
];
|
|
291
|
-
exports.
|
|
320
|
+
exports.UpdateAutoshiftObserverNotificationStatusResponse$ = UpdateAutoshiftObserverNotificationStatusResponse$;
|
|
321
|
+
const UpdatePracticeRunConfigurationRequest$ = [3, n0, _UPRCR,
|
|
292
322
|
0,
|
|
293
323
|
[_rI, _bW, _bD, _bA, _aW, _oA],
|
|
294
324
|
[[0, 1], 64 | 0, 64 | 0, () => BlockingAlarms, 64 | 0, () => OutcomeAlarms], 1
|
|
295
325
|
];
|
|
296
|
-
exports.
|
|
326
|
+
exports.UpdatePracticeRunConfigurationRequest$ = UpdatePracticeRunConfigurationRequest$;
|
|
327
|
+
const UpdatePracticeRunConfigurationResponse$ = [3, n0, _UPRCRp,
|
|
297
328
|
0,
|
|
298
329
|
[_a, _n, _zAS, _pRC],
|
|
299
|
-
[0, 0, 0, () =>
|
|
330
|
+
[0, 0, 0, () => PracticeRunConfiguration$], 4
|
|
300
331
|
];
|
|
301
|
-
exports.
|
|
332
|
+
exports.UpdatePracticeRunConfigurationResponse$ = UpdatePracticeRunConfigurationResponse$;
|
|
333
|
+
const UpdateZonalAutoshiftConfigurationRequest$ = [3, n0, _UZACR,
|
|
302
334
|
0,
|
|
303
335
|
[_rI, _zAS],
|
|
304
336
|
[[0, 1], 0], 2
|
|
305
337
|
];
|
|
306
|
-
exports.
|
|
338
|
+
exports.UpdateZonalAutoshiftConfigurationRequest$ = UpdateZonalAutoshiftConfigurationRequest$;
|
|
339
|
+
const UpdateZonalAutoshiftConfigurationResponse$ = [3, n0, _UZACRp,
|
|
307
340
|
0,
|
|
308
341
|
[_rI, _zAS],
|
|
309
342
|
[0, 0], 2
|
|
310
343
|
];
|
|
311
|
-
exports.
|
|
344
|
+
exports.UpdateZonalAutoshiftConfigurationResponse$ = UpdateZonalAutoshiftConfigurationResponse$;
|
|
345
|
+
const UpdateZonalShiftRequest$ = [3, n0, _UZSR,
|
|
312
346
|
0,
|
|
313
347
|
[_zSI, _co, _eI],
|
|
314
348
|
[[0, 1], 0, 0], 1
|
|
315
349
|
];
|
|
316
|
-
exports.
|
|
350
|
+
exports.UpdateZonalShiftRequest$ = UpdateZonalShiftRequest$;
|
|
351
|
+
const ZonalShift$ = [3, n0, _ZS,
|
|
317
352
|
0,
|
|
318
353
|
[_zSI, _rI, _aF, _eTx, _sT, _st, _co],
|
|
319
354
|
[0, 0, 0, 4, 4, 0, 0], 7
|
|
320
355
|
];
|
|
321
|
-
exports.
|
|
356
|
+
exports.ZonalShift$ = ZonalShift$;
|
|
357
|
+
const ZonalShiftInResource$ = [3, n0, _ZSIR,
|
|
322
358
|
0,
|
|
323
359
|
[_aS, _zSI, _rI, _aF, _eTx, _sT, _co, _sTh, _pRO],
|
|
324
360
|
[0, 0, 0, 0, 4, 4, 0, 0, 0], 7
|
|
325
361
|
];
|
|
326
|
-
exports.
|
|
362
|
+
exports.ZonalShiftInResource$ = ZonalShiftInResource$;
|
|
363
|
+
const ZonalShiftSummary$ = [3, n0, _ZSS,
|
|
327
364
|
0,
|
|
328
365
|
[_zSI, _rI, _aF, _eTx, _sT, _st, _co, _sTh, _pRO],
|
|
329
366
|
[0, 0, 0, 4, 4, 0, 0, 0, 0], 7
|
|
330
367
|
];
|
|
368
|
+
exports.ZonalShiftSummary$ = ZonalShiftSummary$;
|
|
331
369
|
var AllowedWindows = 64 | 0;
|
|
332
370
|
var AutoshiftsInResource = [1, n0, _AIRu,
|
|
333
|
-
0, () =>
|
|
371
|
+
0, () => AutoshiftInResource$
|
|
334
372
|
];
|
|
335
373
|
var AutoshiftSummaries = [1, n0, _ASu,
|
|
336
|
-
0, () =>
|
|
374
|
+
0, () => AutoshiftSummary$
|
|
337
375
|
];
|
|
338
376
|
var AvailabilityZones = 64 | 0;
|
|
339
377
|
var BlockedDates = 64 | 0;
|
|
340
378
|
var BlockedWindows = 64 | 0;
|
|
341
379
|
var BlockingAlarms = [1, n0, _BA,
|
|
342
|
-
0, () =>
|
|
380
|
+
0, () => ControlCondition$
|
|
343
381
|
];
|
|
344
382
|
var ManagedResourceSummaries = [1, n0, _MRSa,
|
|
345
|
-
0, () =>
|
|
383
|
+
0, () => ManagedResourceSummary$
|
|
346
384
|
];
|
|
347
385
|
var OutcomeAlarms = [1, n0, _OA,
|
|
348
|
-
0, () =>
|
|
386
|
+
0, () => ControlCondition$
|
|
349
387
|
];
|
|
350
388
|
var ZonalShiftsInResource = [1, n0, _ZSIRo,
|
|
351
|
-
0, () =>
|
|
389
|
+
0, () => ZonalShiftInResource$
|
|
352
390
|
];
|
|
353
391
|
var ZonalShiftSummaries = [1, n0, _ZSSo,
|
|
354
|
-
0, () =>
|
|
392
|
+
0, () => ZonalShiftSummary$
|
|
355
393
|
];
|
|
356
394
|
var AppliedWeights = 128 | 1;
|
|
357
395
|
exports.CancelPracticeRun$ = [9, n0, _CPR,
|
|
358
|
-
{ [_h]: ["DELETE", "/practiceruns/{zonalShiftId}", 200] }, () =>
|
|
396
|
+
{ [_h]: ["DELETE", "/practiceruns/{zonalShiftId}", 200] }, () => CancelPracticeRunRequest$, () => CancelPracticeRunResponse$
|
|
359
397
|
];
|
|
360
398
|
exports.CancelZonalShift$ = [9, n0, _CZS,
|
|
361
|
-
{ [_h]: ["DELETE", "/zonalshifts/{zonalShiftId}", 200] }, () =>
|
|
399
|
+
{ [_h]: ["DELETE", "/zonalshifts/{zonalShiftId}", 200] }, () => CancelZonalShiftRequest$, () => ZonalShift$
|
|
362
400
|
];
|
|
363
401
|
exports.CreatePracticeRunConfiguration$ = [9, n0, _CPRC,
|
|
364
|
-
{ [_h]: ["POST", "/configuration", 201] }, () =>
|
|
402
|
+
{ [_h]: ["POST", "/configuration", 201] }, () => CreatePracticeRunConfigurationRequest$, () => CreatePracticeRunConfigurationResponse$
|
|
365
403
|
];
|
|
366
404
|
exports.DeletePracticeRunConfiguration$ = [9, n0, _DPRC,
|
|
367
|
-
{ [_h]: ["DELETE", "/configuration/{resourceIdentifier}", 200] }, () =>
|
|
405
|
+
{ [_h]: ["DELETE", "/configuration/{resourceIdentifier}", 200] }, () => DeletePracticeRunConfigurationRequest$, () => DeletePracticeRunConfigurationResponse$
|
|
368
406
|
];
|
|
369
407
|
exports.GetAutoshiftObserverNotificationStatus$ = [9, n0, _GAONS,
|
|
370
|
-
{ [_h]: ["GET", "/autoshift-observer-notification", 200] }, () =>
|
|
408
|
+
{ [_h]: ["GET", "/autoshift-observer-notification", 200] }, () => GetAutoshiftObserverNotificationStatusRequest$, () => GetAutoshiftObserverNotificationStatusResponse$
|
|
371
409
|
];
|
|
372
410
|
exports.GetManagedResource$ = [9, n0, _GMR,
|
|
373
|
-
{ [_h]: ["GET", "/managedresources/{resourceIdentifier}", 200] }, () =>
|
|
411
|
+
{ [_h]: ["GET", "/managedresources/{resourceIdentifier}", 200] }, () => GetManagedResourceRequest$, () => GetManagedResourceResponse$
|
|
374
412
|
];
|
|
375
413
|
exports.ListAutoshifts$ = [9, n0, _LA,
|
|
376
|
-
{ [_h]: ["GET", "/autoshifts", 200] }, () =>
|
|
414
|
+
{ [_h]: ["GET", "/autoshifts", 200] }, () => ListAutoshiftsRequest$, () => ListAutoshiftsResponse$
|
|
377
415
|
];
|
|
378
416
|
exports.ListManagedResources$ = [9, n0, _LMR,
|
|
379
|
-
{ [_h]: ["GET", "/managedresources", 200] }, () =>
|
|
417
|
+
{ [_h]: ["GET", "/managedresources", 200] }, () => ListManagedResourcesRequest$, () => ListManagedResourcesResponse$
|
|
380
418
|
];
|
|
381
419
|
exports.ListZonalShifts$ = [9, n0, _LZS,
|
|
382
|
-
{ [_h]: ["GET", "/zonalshifts", 200] }, () =>
|
|
420
|
+
{ [_h]: ["GET", "/zonalshifts", 200] }, () => ListZonalShiftsRequest$, () => ListZonalShiftsResponse$
|
|
383
421
|
];
|
|
384
422
|
exports.StartPracticeRun$ = [9, n0, _SPR,
|
|
385
|
-
{ [_h]: ["POST", "/practiceruns", 200] }, () =>
|
|
423
|
+
{ [_h]: ["POST", "/practiceruns", 200] }, () => StartPracticeRunRequest$, () => StartPracticeRunResponse$
|
|
386
424
|
];
|
|
387
425
|
exports.StartZonalShift$ = [9, n0, _SZS,
|
|
388
|
-
{ [_h]: ["POST", "/zonalshifts", 201] }, () =>
|
|
426
|
+
{ [_h]: ["POST", "/zonalshifts", 201] }, () => StartZonalShiftRequest$, () => ZonalShift$
|
|
389
427
|
];
|
|
390
428
|
exports.UpdateAutoshiftObserverNotificationStatus$ = [9, n0, _UAONS,
|
|
391
|
-
{ [_h]: ["PUT", "/autoshift-observer-notification", 200] }, () =>
|
|
429
|
+
{ [_h]: ["PUT", "/autoshift-observer-notification", 200] }, () => UpdateAutoshiftObserverNotificationStatusRequest$, () => UpdateAutoshiftObserverNotificationStatusResponse$
|
|
392
430
|
];
|
|
393
431
|
exports.UpdatePracticeRunConfiguration$ = [9, n0, _UPRC,
|
|
394
|
-
{ [_h]: ["PATCH", "/configuration/{resourceIdentifier}", 200] }, () =>
|
|
432
|
+
{ [_h]: ["PATCH", "/configuration/{resourceIdentifier}", 200] }, () => UpdatePracticeRunConfigurationRequest$, () => UpdatePracticeRunConfigurationResponse$
|
|
395
433
|
];
|
|
396
434
|
exports.UpdateZonalAutoshiftConfiguration$ = [9, n0, _UZAC,
|
|
397
|
-
{ [_h]: ["PUT", "/managedresources/{resourceIdentifier}", 200] }, () =>
|
|
435
|
+
{ [_h]: ["PUT", "/managedresources/{resourceIdentifier}", 200] }, () => UpdateZonalAutoshiftConfigurationRequest$, () => UpdateZonalAutoshiftConfigurationResponse$
|
|
398
436
|
];
|
|
399
437
|
exports.UpdateZonalShift$ = [9, n0, _UZS,
|
|
400
|
-
{ [_h]: ["PATCH", "/zonalshifts/{zonalShiftId}", 200] }, () =>
|
|
438
|
+
{ [_h]: ["PATCH", "/zonalshifts/{zonalShiftId}", 200] }, () => UpdateZonalShiftRequest$, () => ZonalShift$
|
|
401
439
|
];
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-arc-zonal-shift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Arc Zonal Shift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1070.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
15
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.21",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.56",
|
|
26
|
+
"@aws-sdk/types": "^3.973.13",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|