@aws-sdk/client-snow-device-management 3.1067.0 → 3.1069.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.
@@ -1,23 +1,19 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getRuntimeConfig = void 0;
4
- const tslib_1 = require("tslib");
5
- const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
- const client_1 = require("@aws-sdk/core/client");
7
- const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
8
- const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
9
- const client_2 = require("@smithy/core/client");
10
- const config_1 = require("@smithy/core/config");
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
- (0, client_2.emitWarningIfUnsupportedVersion)(process.version);
17
- const defaultsMode = (0, config_1.resolveDefaultsModeConfig)(config);
18
- const defaultConfigProvider = () => defaultsMode().then(client_2.loadConfigsForDefaultMode);
19
- const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
20
- (0, client_1.emitWarningIfUnsupportedVersion)(process.version);
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 ?? (0, config_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
31
- bodyLengthChecker: config?.bodyLengthChecker ?? serde_1.calculateBodyLength,
32
- credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
33
- defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, client_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
34
- maxAttempts: config?.maxAttempts ?? (0, config_1.loadConfig)(retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
35
- region: config?.region ?? (0, config_1.loadConfig)(config_1.NODE_REGION_CONFIG_OPTIONS, { ...config_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
36
- requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
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
- (0, config_1.loadConfig)({
39
- ...retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
40
- default: async () => (await defaultConfigProvider()).retryMode || retry_1.DEFAULT_RETRY_MODE,
34
+ loadNodeConfig({
35
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
36
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
41
37
  }, config),
42
- sha256: config?.sha256 ?? serde_1.Hash.bind(null, "sha256"),
43
- streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
44
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, config_1.loadConfig)(config_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
45
- useFipsEndpoint: config?.useFipsEndpoint ?? (0, config_1.loadConfig)(config_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
46
- userAgentAppId: config?.userAgentAppId ?? (0, config_1.loadConfig)(client_1.NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
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
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
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 = (0, runtimeConfig_browser_1.getRuntimeConfig)(config);
4
+ const browserDefaults = getBrowserRuntimeConfig(config);
8
5
  return {
9
6
  ...browserDefaults,
10
7
  ...config,
11
8
  runtime: "react-native",
12
- sha256: config?.sha256 ?? sha256_js_1.Sha256,
9
+ sha256: config?.sha256 ?? Sha256,
13
10
  };
14
11
  };
15
12
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -1,42 +1,38 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getRuntimeConfig = void 0;
4
- const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
- const protocols_1 = require("@aws-sdk/core/protocols");
6
- const client_1 = require("@smithy/core/client");
7
- const protocols_2 = require("@smithy/core/protocols");
8
- const serde_1 = require("@smithy/core/serde");
9
- const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
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 { defaultSnowDeviceManagementHttpAuthSchemeProvider } = 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: "2021-08-04",
15
- base64Decoder: config?.base64Decoder ?? serde_1.fromBase64,
16
- base64Encoder: config?.base64Encoder ?? serde_1.toBase64,
12
+ base64Decoder: config?.base64Decoder ?? fromBase64,
13
+ base64Encoder: config?.base64Encoder ?? toBase64,
17
14
  disableHostPrefix: config?.disableHostPrefix ?? false,
18
- endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
15
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
19
16
  extensions: config?.extensions ?? [],
20
- httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? httpAuthSchemeProvider_1.defaultSnowDeviceManagementHttpAuthSchemeProvider,
17
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSnowDeviceManagementHttpAuthSchemeProvider,
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 httpAuthSchemes_1.AwsSdkSigV4Signer(),
22
+ signer: new AwsSdkSigV4Signer(),
26
23
  },
27
24
  ],
28
- logger: config?.logger ?? new client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
25
+ logger: config?.logger ?? new NoOpLogger(),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
30
27
  protocolSettings: config?.protocolSettings ?? {
31
28
  defaultNamespace: "com.amazonaws.snowdevicemanagement",
32
- errorTypeRegistries: schemas_0_1.errorTypeRegistries,
29
+ errorTypeRegistries,
33
30
  version: "2021-08-04",
34
31
  serviceTarget: "SnowDeviceManagement",
35
32
  },
36
33
  serviceId: config?.serviceId ?? "Snow Device Management",
37
- urlParser: config?.urlParser ?? protocols_2.parseUrl,
38
- utf8Decoder: config?.utf8Decoder ?? serde_1.fromUtf8,
39
- utf8Encoder: config?.utf8Encoder ?? serde_1.toUtf8,
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.CancelTask$ = exports.Command$ = exports.UntagResourceInput$ = exports.Unlock$ = exports.TaskSummary$ = exports.TagResourceInput$ = exports.SoftwareInformation$ = exports.SecurityGroupIdentifier$ = exports.ResourceSummary$ = exports.Reboot$ = exports.PhysicalNetworkInterface$ = exports.ListTasksOutput$ = exports.ListTasksInput$ = exports.ListTagsForResourceOutput$ = exports.ListTagsForResourceInput$ = exports.ListExecutionsOutput$ = exports.ListExecutionsInput$ = exports.ListDevicesOutput$ = exports.ListDevicesInput$ = exports.ListDeviceResourcesOutput$ = exports.ListDeviceResourcesInput$ = exports.InstanceSummary$ = exports.InstanceState$ = exports.InstanceBlockDeviceMapping$ = exports.Instance$ = exports.ExecutionSummary$ = exports.EbsInstanceBlockDevice$ = exports.DeviceSummary$ = exports.DescribeTaskOutput$ = exports.DescribeTaskInput$ = exports.DescribeExecutionOutput$ = exports.DescribeExecutionInput$ = exports.DescribeDeviceOutput$ = exports.DescribeDeviceInput$ = exports.DescribeDeviceEc2Output$ = exports.DescribeDeviceEc2Input$ = exports.CreateTaskOutput$ = exports.CreateTaskInput$ = exports.CpuOptions$ = exports.Capacity$ = exports.CancelTaskOutput$ = exports.CancelTaskInput$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.AccessDeniedException$ = exports.SnowDeviceManagementServiceException$ = void 0;
4
- exports.UntagResource$ = exports.TagResource$ = exports.ListTasks$ = exports.ListTagsForResource$ = exports.ListExecutions$ = exports.ListDevices$ = exports.ListDeviceResources$ = exports.DescribeTask$ = exports.DescribeExecution$ = exports.DescribeDeviceEc2Instances$ = exports.DescribeDevice$ = exports.CreateTask$ = void 0;
5
1
  const _ADE = "AccessDeniedException";
6
2
  const _C = "Capacity";
7
3
  const _CL = "CapacityList";
@@ -157,326 +153,374 @@ const _un = "unlock";
157
153
  const _us = "used";
158
154
  const _vI = "volumeId";
159
155
  const n0 = "com.amazonaws.snowdevicemanagement";
160
- const schema_1 = require("@smithy/core/schema");
161
- const errors_1 = require("../models/errors");
162
- const SnowDeviceManagementServiceException_1 = require("../models/SnowDeviceManagementServiceException");
163
- const _s_registry = schema_1.TypeRegistry.for(_s);
164
- exports.SnowDeviceManagementServiceException$ = [-3, _s, "SnowDeviceManagementServiceException", 0, [], []];
165
- _s_registry.registerError(exports.SnowDeviceManagementServiceException$, SnowDeviceManagementServiceException_1.SnowDeviceManagementServiceException);
166
- const n0_registry = schema_1.TypeRegistry.for(n0);
167
- exports.AccessDeniedException$ = [-3, n0, _ADE,
156
+ const { TypeRegistry } = require("@smithy/core/schema");
157
+ const { AccessDeniedException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException } = require("../models/errors");
158
+ const { SnowDeviceManagementServiceException } = require("../models/SnowDeviceManagementServiceException");
159
+ const _s_registry = TypeRegistry.for(_s);
160
+ const SnowDeviceManagementServiceException$ = [-3, _s, "SnowDeviceManagementServiceException", 0, [], []];
161
+ exports.SnowDeviceManagementServiceException$ = SnowDeviceManagementServiceException$;
162
+ _s_registry.registerError(SnowDeviceManagementServiceException$, SnowDeviceManagementServiceException);
163
+ const n0_registry = TypeRegistry.for(n0);
164
+ const AccessDeniedException$ = [-3, n0, _ADE,
168
165
  { [_e]: _c, [_hE]: 403 },
169
166
  [_m],
170
167
  [0], 1
171
168
  ];
172
- n0_registry.registerError(exports.AccessDeniedException$, errors_1.AccessDeniedException);
173
- exports.InternalServerException$ = [-3, n0, _ISE,
169
+ exports.AccessDeniedException$ = AccessDeniedException$;
170
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
171
+ const InternalServerException$ = [-3, n0, _ISE,
174
172
  { [_e]: _se, [_hE]: 500 },
175
173
  [_m],
176
174
  [0], 1
177
175
  ];
178
- n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
179
- exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
176
+ exports.InternalServerException$ = InternalServerException$;
177
+ n0_registry.registerError(InternalServerException$, InternalServerException);
178
+ const ResourceNotFoundException$ = [-3, n0, _RNFE,
180
179
  { [_e]: _c, [_hE]: 404 },
181
180
  [_m],
182
181
  [0], 1
183
182
  ];
184
- n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
185
- exports.ServiceQuotaExceededException$ = [-3, n0, _SQEE,
183
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
184
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
185
+ const ServiceQuotaExceededException$ = [-3, n0, _SQEE,
186
186
  { [_e]: _c, [_hE]: 402 },
187
187
  [_m],
188
188
  [0], 1
189
189
  ];
190
- n0_registry.registerError(exports.ServiceQuotaExceededException$, errors_1.ServiceQuotaExceededException);
191
- exports.ThrottlingException$ = [-3, n0, _TE,
190
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
191
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
192
+ const ThrottlingException$ = [-3, n0, _TE,
192
193
  { [_e]: _c, [_hE]: 429 },
193
194
  [_m],
194
195
  [0], 1
195
196
  ];
196
- n0_registry.registerError(exports.ThrottlingException$, errors_1.ThrottlingException);
197
- exports.ValidationException$ = [-3, n0, _VE,
197
+ exports.ThrottlingException$ = ThrottlingException$;
198
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
199
+ const ValidationException$ = [-3, n0, _VE,
198
200
  { [_e]: _c, [_hE]: 400 },
199
201
  [_m],
200
202
  [0], 1
201
203
  ];
202
- n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
204
+ exports.ValidationException$ = ValidationException$;
205
+ n0_registry.registerError(ValidationException$, ValidationException);
203
206
  exports.errorTypeRegistries = [
204
207
  _s_registry,
205
208
  n0_registry,
206
209
  ];
207
- exports.CancelTaskInput$ = [3, n0, _CTI,
210
+ const CancelTaskInput$ = [3, n0, _CTI,
208
211
  0,
209
212
  [_tI],
210
213
  [[0, 1]], 1
211
214
  ];
212
- exports.CancelTaskOutput$ = [3, n0, _CTO,
215
+ exports.CancelTaskInput$ = CancelTaskInput$;
216
+ const CancelTaskOutput$ = [3, n0, _CTO,
213
217
  0,
214
218
  [_tI],
215
219
  [0]
216
220
  ];
217
- exports.Capacity$ = [3, n0, _C,
221
+ exports.CancelTaskOutput$ = CancelTaskOutput$;
222
+ const Capacity$ = [3, n0, _C,
218
223
  0,
219
224
  [_n, _u, _t, _us, _a],
220
225
  [0, 0, 1, 1, 1]
221
226
  ];
222
- exports.CpuOptions$ = [3, n0, _CO,
227
+ exports.Capacity$ = Capacity$;
228
+ const CpuOptions$ = [3, n0, _CO,
223
229
  0,
224
230
  [_cC, _tPC],
225
231
  [1, 1]
226
232
  ];
227
- exports.CreateTaskInput$ = [3, n0, _CTIr,
233
+ exports.CpuOptions$ = CpuOptions$;
234
+ const CreateTaskInput$ = [3, n0, _CTIr,
228
235
  0,
229
236
  [_ta, _co, _d, _tag, _cT],
230
- [64 | 0, () => exports.Command$, 0, 128 | 0, [0, 4]], 2
237
+ [64 | 0, () => Command$, 0, 128 | 0, [0, 4]], 2
231
238
  ];
232
- exports.CreateTaskOutput$ = [3, n0, _CTOr,
239
+ exports.CreateTaskInput$ = CreateTaskInput$;
240
+ const CreateTaskOutput$ = [3, n0, _CTOr,
233
241
  0,
234
242
  [_tI, _tA],
235
243
  [0, 0]
236
244
  ];
237
- exports.DescribeDeviceEc2Input$ = [3, n0, _DDEI,
245
+ exports.CreateTaskOutput$ = CreateTaskOutput$;
246
+ const DescribeDeviceEc2Input$ = [3, n0, _DDEI,
238
247
  0,
239
248
  [_mDI, _iI],
240
249
  [[0, 1], 64 | 0], 2
241
250
  ];
242
- exports.DescribeDeviceEc2Output$ = [3, n0, _DDEO,
251
+ exports.DescribeDeviceEc2Input$ = DescribeDeviceEc2Input$;
252
+ const DescribeDeviceEc2Output$ = [3, n0, _DDEO,
243
253
  0,
244
254
  [_i],
245
255
  [() => InstanceSummaryList]
246
256
  ];
247
- exports.DescribeDeviceInput$ = [3, n0, _DDI,
257
+ exports.DescribeDeviceEc2Output$ = DescribeDeviceEc2Output$;
258
+ const DescribeDeviceInput$ = [3, n0, _DDI,
248
259
  0,
249
260
  [_mDI],
250
261
  [[0, 1]], 1
251
262
  ];
252
- exports.DescribeDeviceOutput$ = [3, n0, _DDO,
263
+ exports.DescribeDeviceInput$ = DescribeDeviceInput$;
264
+ const DescribeDeviceOutput$ = [3, n0, _DDO,
253
265
  0,
254
266
  [_lROA, _lUA, _tag, _mDI, _mDA, _dT, _aWJ, _dS, _pNI, _dC, _so],
255
- [4, 4, 128 | 0, 0, 0, 0, 0, 0, () => PhysicalNetworkInterfaceList, () => CapacityList, () => exports.SoftwareInformation$]
267
+ [4, 4, 128 | 0, 0, 0, 0, 0, 0, () => PhysicalNetworkInterfaceList, () => CapacityList, () => SoftwareInformation$]
256
268
  ];
257
- exports.DescribeExecutionInput$ = [3, n0, _DEI,
269
+ exports.DescribeDeviceOutput$ = DescribeDeviceOutput$;
270
+ const DescribeExecutionInput$ = [3, n0, _DEI,
258
271
  0,
259
272
  [_tI, _mDI],
260
273
  [[0, 1], [0, 1]], 2
261
274
  ];
262
- exports.DescribeExecutionOutput$ = [3, n0, _DEO,
275
+ exports.DescribeExecutionInput$ = DescribeExecutionInput$;
276
+ const DescribeExecutionOutput$ = [3, n0, _DEO,
263
277
  0,
264
278
  [_tI, _eI, _mDI, _st, _sA, _lUA],
265
279
  [0, 0, 0, 0, 4, 4]
266
280
  ];
267
- exports.DescribeTaskInput$ = [3, n0, _DTI,
281
+ exports.DescribeExecutionOutput$ = DescribeExecutionOutput$;
282
+ const DescribeTaskInput$ = [3, n0, _DTI,
268
283
  0,
269
284
  [_tI],
270
285
  [[0, 1]], 1
271
286
  ];
272
- exports.DescribeTaskOutput$ = [3, n0, _DTO,
287
+ exports.DescribeTaskInput$ = DescribeTaskInput$;
288
+ const DescribeTaskOutput$ = [3, n0, _DTO,
273
289
  0,
274
290
  [_tI, _tA, _ta, _st, _cA, _lUA, _cAo, _d, _tag],
275
291
  [0, 0, 64 | 0, 0, 4, 4, 4, 0, 128 | 0]
276
292
  ];
277
- exports.DeviceSummary$ = [3, n0, _DS,
293
+ exports.DescribeTaskOutput$ = DescribeTaskOutput$;
294
+ const DeviceSummary$ = [3, n0, _DS,
278
295
  0,
279
296
  [_mDI, _mDA, _aWJ, _tag],
280
297
  [0, 0, 0, 128 | 0]
281
298
  ];
282
- exports.EbsInstanceBlockDevice$ = [3, n0, _EIBD,
299
+ exports.DeviceSummary$ = DeviceSummary$;
300
+ const EbsInstanceBlockDevice$ = [3, n0, _EIBD,
283
301
  0,
284
302
  [_aT, _dOT, _sta, _vI],
285
303
  [4, 2, 0, 0]
286
304
  ];
287
- exports.ExecutionSummary$ = [3, n0, _ES,
305
+ exports.EbsInstanceBlockDevice$ = EbsInstanceBlockDevice$;
306
+ const ExecutionSummary$ = [3, n0, _ES,
288
307
  0,
289
308
  [_tI, _eI, _mDI, _st],
290
309
  [0, 0, 0, 0]
291
310
  ];
292
- exports.Instance$ = [3, n0, _I,
311
+ exports.ExecutionSummary$ = ExecutionSummary$;
312
+ const Instance$ = [3, n0, _I,
293
313
  0,
294
314
  [_iIm, _aLI, _iIn, _st, _iT, _pIA, _pIAu, _cA, _uA, _bDM, _sG, _cO, _rDN],
295
- [0, 1, 0, () => exports.InstanceState$, 0, 0, 0, 4, 4, () => InstanceBlockDeviceMappingList, () => SecurityGroupIdentifierList, () => exports.CpuOptions$, 0]
315
+ [0, 1, 0, () => InstanceState$, 0, 0, 0, 4, 4, () => InstanceBlockDeviceMappingList, () => SecurityGroupIdentifierList, () => CpuOptions$, 0]
296
316
  ];
297
- exports.InstanceBlockDeviceMapping$ = [3, n0, _IBDM,
317
+ exports.Instance$ = Instance$;
318
+ const InstanceBlockDeviceMapping$ = [3, n0, _IBDM,
298
319
  0,
299
320
  [_dN, _eb],
300
- [0, () => exports.EbsInstanceBlockDevice$]
321
+ [0, () => EbsInstanceBlockDevice$]
301
322
  ];
302
- exports.InstanceState$ = [3, n0, _IS,
323
+ exports.InstanceBlockDeviceMapping$ = InstanceBlockDeviceMapping$;
324
+ const InstanceState$ = [3, n0, _IS,
303
325
  0,
304
326
  [_cod, _n],
305
327
  [1, 0]
306
328
  ];
307
- exports.InstanceSummary$ = [3, n0, _ISn,
329
+ exports.InstanceState$ = InstanceState$;
330
+ const InstanceSummary$ = [3, n0, _ISn,
308
331
  0,
309
332
  [_in, _lUA],
310
- [() => exports.Instance$, 4]
333
+ [() => Instance$, 4]
311
334
  ];
312
- exports.ListDeviceResourcesInput$ = [3, n0, _LDRI,
335
+ exports.InstanceSummary$ = InstanceSummary$;
336
+ const ListDeviceResourcesInput$ = [3, n0, _LDRI,
313
337
  0,
314
338
  [_mDI, _ty, _mR, _nT],
315
339
  [[0, 1], [0, { [_hQ]: _ty }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
316
340
  ];
317
- exports.ListDeviceResourcesOutput$ = [3, n0, _LDRO,
341
+ exports.ListDeviceResourcesInput$ = ListDeviceResourcesInput$;
342
+ const ListDeviceResourcesOutput$ = [3, n0, _LDRO,
318
343
  0,
319
344
  [_r, _nT],
320
345
  [() => ResourceSummaryList, 0]
321
346
  ];
322
- exports.ListDevicesInput$ = [3, n0, _LDI,
347
+ exports.ListDeviceResourcesOutput$ = ListDeviceResourcesOutput$;
348
+ const ListDevicesInput$ = [3, n0, _LDI,
323
349
  0,
324
350
  [_jI, _mR, _nT],
325
351
  [[0, { [_hQ]: _jI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
326
352
  ];
327
- exports.ListDevicesOutput$ = [3, n0, _LDO,
353
+ exports.ListDevicesInput$ = ListDevicesInput$;
354
+ const ListDevicesOutput$ = [3, n0, _LDO,
328
355
  0,
329
356
  [_de, _nT],
330
357
  [() => DeviceSummaryList, 0]
331
358
  ];
332
- exports.ListExecutionsInput$ = [3, n0, _LEI,
359
+ exports.ListDevicesOutput$ = ListDevicesOutput$;
360
+ const ListExecutionsInput$ = [3, n0, _LEI,
333
361
  0,
334
362
  [_tI, _st, _mR, _nT],
335
363
  [[0, { [_hQ]: _tI }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
336
364
  ];
337
- exports.ListExecutionsOutput$ = [3, n0, _LEO,
365
+ exports.ListExecutionsInput$ = ListExecutionsInput$;
366
+ const ListExecutionsOutput$ = [3, n0, _LEO,
338
367
  0,
339
368
  [_ex, _nT],
340
369
  [() => ExecutionSummaryList, 0]
341
370
  ];
342
- exports.ListTagsForResourceInput$ = [3, n0, _LTFRI,
371
+ exports.ListExecutionsOutput$ = ListExecutionsOutput$;
372
+ const ListTagsForResourceInput$ = [3, n0, _LTFRI,
343
373
  0,
344
374
  [_rA],
345
375
  [[0, 1]], 1
346
376
  ];
347
- exports.ListTagsForResourceOutput$ = [3, n0, _LTFRO,
377
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
378
+ const ListTagsForResourceOutput$ = [3, n0, _LTFRO,
348
379
  0,
349
380
  [_tag],
350
381
  [128 | 0]
351
382
  ];
352
- exports.ListTasksInput$ = [3, n0, _LTI,
383
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
384
+ const ListTasksInput$ = [3, n0, _LTI,
353
385
  0,
354
386
  [_st, _mR, _nT],
355
387
  [[0, { [_hQ]: _st }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
356
388
  ];
357
- exports.ListTasksOutput$ = [3, n0, _LTO,
389
+ exports.ListTasksInput$ = ListTasksInput$;
390
+ const ListTasksOutput$ = [3, n0, _LTO,
358
391
  0,
359
392
  [_tas, _nT],
360
393
  [() => TaskSummaryList, 0]
361
394
  ];
362
- exports.PhysicalNetworkInterface$ = [3, n0, _PNI,
395
+ exports.ListTasksOutput$ = ListTasksOutput$;
396
+ const PhysicalNetworkInterface$ = [3, n0, _PNI,
363
397
  0,
364
398
  [_pNII, _pCT, _iAA, _iA, _ne, _dG, _mA],
365
399
  [0, 0, 0, 0, 0, 0, 0]
366
400
  ];
367
- exports.Reboot$ = [3, n0, _R,
401
+ exports.PhysicalNetworkInterface$ = PhysicalNetworkInterface$;
402
+ const Reboot$ = [3, n0, _R,
368
403
  0,
369
404
  [],
370
405
  []
371
406
  ];
372
- exports.ResourceSummary$ = [3, n0, _RS,
407
+ exports.Reboot$ = Reboot$;
408
+ const ResourceSummary$ = [3, n0, _RS,
373
409
  0,
374
410
  [_rT, _ar, _id],
375
411
  [0, 0, 0], 1
376
412
  ];
377
- exports.SecurityGroupIdentifier$ = [3, n0, _SGI,
413
+ exports.ResourceSummary$ = ResourceSummary$;
414
+ const SecurityGroupIdentifier$ = [3, n0, _SGI,
378
415
  0,
379
416
  [_gI, _gN],
380
417
  [0, 0]
381
418
  ];
382
- exports.SoftwareInformation$ = [3, n0, _SI,
419
+ exports.SecurityGroupIdentifier$ = SecurityGroupIdentifier$;
420
+ const SoftwareInformation$ = [3, n0, _SI,
383
421
  0,
384
422
  [_iV, _iVn, _iS],
385
423
  [0, 0, 0]
386
424
  ];
387
- exports.TagResourceInput$ = [3, n0, _TRI,
425
+ exports.SoftwareInformation$ = SoftwareInformation$;
426
+ const TagResourceInput$ = [3, n0, _TRI,
388
427
  0,
389
428
  [_rA, _tag],
390
429
  [[0, 1], 128 | 0], 2
391
430
  ];
392
- exports.TaskSummary$ = [3, n0, _TS,
431
+ exports.TagResourceInput$ = TagResourceInput$;
432
+ const TaskSummary$ = [3, n0, _TS,
393
433
  0,
394
434
  [_tI, _tA, _st, _tag],
395
435
  [0, 0, 0, 128 | 0], 1
396
436
  ];
397
- exports.Unlock$ = [3, n0, _U,
437
+ exports.TaskSummary$ = TaskSummary$;
438
+ const Unlock$ = [3, n0, _U,
398
439
  0,
399
440
  [],
400
441
  []
401
442
  ];
402
- exports.UntagResourceInput$ = [3, n0, _URI,
443
+ exports.Unlock$ = Unlock$;
444
+ const UntagResourceInput$ = [3, n0, _URI,
403
445
  0,
404
446
  [_rA, _tK],
405
447
  [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
406
448
  ];
449
+ exports.UntagResourceInput$ = UntagResourceInput$;
407
450
  var __Unit = "unit";
408
451
  var CapacityList = [1, n0, _CL,
409
- 0, () => exports.Capacity$
452
+ 0, () => Capacity$
410
453
  ];
411
454
  var DeviceSummaryList = [1, n0, _DSL,
412
- 0, () => exports.DeviceSummary$
455
+ 0, () => DeviceSummary$
413
456
  ];
414
457
  var ExecutionSummaryList = [1, n0, _ESL,
415
- 0, () => exports.ExecutionSummary$
458
+ 0, () => ExecutionSummary$
416
459
  ];
417
460
  var InstanceBlockDeviceMappingList = [1, n0, _IBDML,
418
- 0, () => exports.InstanceBlockDeviceMapping$
461
+ 0, () => InstanceBlockDeviceMapping$
419
462
  ];
420
463
  var InstanceIdsList = 64 | 0;
421
464
  var InstanceSummaryList = [1, n0, _ISL,
422
- 0, () => exports.InstanceSummary$
465
+ 0, () => InstanceSummary$
423
466
  ];
424
467
  var PhysicalNetworkInterfaceList = [1, n0, _PNIL,
425
- 0, () => exports.PhysicalNetworkInterface$
468
+ 0, () => PhysicalNetworkInterface$
426
469
  ];
427
470
  var ResourceSummaryList = [1, n0, _RSL,
428
- 0, () => exports.ResourceSummary$
471
+ 0, () => ResourceSummary$
429
472
  ];
430
473
  var SecurityGroupIdentifierList = [1, n0, _SGIL,
431
- 0, () => exports.SecurityGroupIdentifier$
474
+ 0, () => SecurityGroupIdentifier$
432
475
  ];
433
476
  var TagKeys = 64 | 0;
434
477
  var TargetList = 64 | 0;
435
478
  var TaskSummaryList = [1, n0, _TSL,
436
- 0, () => exports.TaskSummary$
479
+ 0, () => TaskSummary$
437
480
  ];
438
481
  var TagMap = 128 | 0;
439
- exports.Command$ = [4, n0, _Co,
482
+ const Command$ = [4, n0, _Co,
440
483
  0,
441
484
  [_un, _re],
442
- [() => exports.Unlock$, () => exports.Reboot$]
485
+ [() => Unlock$, () => Reboot$]
443
486
  ];
487
+ exports.Command$ = Command$;
444
488
  exports.CancelTask$ = [9, n0, _CT,
445
- { [_h]: ["POST", "/task/{taskId}/cancel", 200] }, () => exports.CancelTaskInput$, () => exports.CancelTaskOutput$
489
+ { [_h]: ["POST", "/task/{taskId}/cancel", 200] }, () => CancelTaskInput$, () => CancelTaskOutput$
446
490
  ];
447
491
  exports.CreateTask$ = [9, n0, _CTr,
448
- { [_h]: ["POST", "/task", 200] }, () => exports.CreateTaskInput$, () => exports.CreateTaskOutput$
492
+ { [_h]: ["POST", "/task", 200] }, () => CreateTaskInput$, () => CreateTaskOutput$
449
493
  ];
450
494
  exports.DescribeDevice$ = [9, n0, _DD,
451
- { [_h]: ["POST", "/managed-device/{managedDeviceId}/describe", 200] }, () => exports.DescribeDeviceInput$, () => exports.DescribeDeviceOutput$
495
+ { [_h]: ["POST", "/managed-device/{managedDeviceId}/describe", 200] }, () => DescribeDeviceInput$, () => DescribeDeviceOutput$
452
496
  ];
453
497
  exports.DescribeDeviceEc2Instances$ = [9, n0, _DDEIe,
454
- { [_h]: ["POST", "/managed-device/{managedDeviceId}/resources/ec2/describe", 200] }, () => exports.DescribeDeviceEc2Input$, () => exports.DescribeDeviceEc2Output$
498
+ { [_h]: ["POST", "/managed-device/{managedDeviceId}/resources/ec2/describe", 200] }, () => DescribeDeviceEc2Input$, () => DescribeDeviceEc2Output$
455
499
  ];
456
500
  exports.DescribeExecution$ = [9, n0, _DE,
457
- { [_h]: ["POST", "/task/{taskId}/execution/{managedDeviceId}", 200] }, () => exports.DescribeExecutionInput$, () => exports.DescribeExecutionOutput$
501
+ { [_h]: ["POST", "/task/{taskId}/execution/{managedDeviceId}", 200] }, () => DescribeExecutionInput$, () => DescribeExecutionOutput$
458
502
  ];
459
503
  exports.DescribeTask$ = [9, n0, _DT,
460
- { [_h]: ["POST", "/task/{taskId}", 200] }, () => exports.DescribeTaskInput$, () => exports.DescribeTaskOutput$
504
+ { [_h]: ["POST", "/task/{taskId}", 200] }, () => DescribeTaskInput$, () => DescribeTaskOutput$
461
505
  ];
462
506
  exports.ListDeviceResources$ = [9, n0, _LDR,
463
- { [_h]: ["GET", "/managed-device/{managedDeviceId}/resources", 200] }, () => exports.ListDeviceResourcesInput$, () => exports.ListDeviceResourcesOutput$
507
+ { [_h]: ["GET", "/managed-device/{managedDeviceId}/resources", 200] }, () => ListDeviceResourcesInput$, () => ListDeviceResourcesOutput$
464
508
  ];
465
509
  exports.ListDevices$ = [9, n0, _LD,
466
- { [_h]: ["GET", "/managed-devices", 200] }, () => exports.ListDevicesInput$, () => exports.ListDevicesOutput$
510
+ { [_h]: ["GET", "/managed-devices", 200] }, () => ListDevicesInput$, () => ListDevicesOutput$
467
511
  ];
468
512
  exports.ListExecutions$ = [9, n0, _LE,
469
- { [_h]: ["GET", "/executions", 200] }, () => exports.ListExecutionsInput$, () => exports.ListExecutionsOutput$
513
+ { [_h]: ["GET", "/executions", 200] }, () => ListExecutionsInput$, () => ListExecutionsOutput$
470
514
  ];
471
515
  exports.ListTagsForResource$ = [9, n0, _LTFR,
472
- { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => exports.ListTagsForResourceInput$, () => exports.ListTagsForResourceOutput$
516
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
473
517
  ];
474
518
  exports.ListTasks$ = [9, n0, _LT,
475
- { [_h]: ["GET", "/tasks", 200] }, () => exports.ListTasksInput$, () => exports.ListTasksOutput$
519
+ { [_h]: ["GET", "/tasks", 200] }, () => ListTasksInput$, () => ListTasksOutput$
476
520
  ];
477
521
  exports.TagResource$ = [9, n0, _TR,
478
- { [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => exports.TagResourceInput$, () => __Unit
522
+ { [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceInput$, () => __Unit
479
523
  ];
480
524
  exports.UntagResource$ = [9, n0, _UR,
481
- { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => exports.UntagResourceInput$, () => __Unit
525
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceInput$, () => __Unit
482
526
  ];