@aws-sdk/client-snow-device-management 3.1077.0 → 3.1078.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.
Files changed (47) hide show
  1. package/dist-cjs/index.js +21 -133
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CancelTaskCommand.js +2 -14
  4. package/dist-es/commands/CreateTaskCommand.js +2 -14
  5. package/dist-es/commands/DescribeDeviceCommand.js +2 -14
  6. package/dist-es/commands/DescribeDeviceEc2InstancesCommand.js +2 -14
  7. package/dist-es/commands/DescribeExecutionCommand.js +2 -14
  8. package/dist-es/commands/DescribeTaskCommand.js +2 -14
  9. package/dist-es/commands/ListDeviceResourcesCommand.js +2 -14
  10. package/dist-es/commands/ListDevicesCommand.js +2 -14
  11. package/dist-es/commands/ListExecutionsCommand.js +2 -14
  12. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  13. package/dist-es/commands/ListTasksCommand.js +2 -14
  14. package/dist-es/commands/TagResourceCommand.js +2 -14
  15. package/dist-es/commands/UntagResourceCommand.js +2 -14
  16. package/dist-es/index.js +1 -0
  17. package/dist-types/commandBuilder.d.ts +18 -0
  18. package/dist-types/commands/CancelTaskCommand.d.ts +3 -8
  19. package/dist-types/commands/CreateTaskCommand.d.ts +3 -8
  20. package/dist-types/commands/DescribeDeviceCommand.d.ts +3 -8
  21. package/dist-types/commands/DescribeDeviceEc2InstancesCommand.d.ts +3 -8
  22. package/dist-types/commands/DescribeExecutionCommand.d.ts +3 -8
  23. package/dist-types/commands/DescribeTaskCommand.d.ts +3 -8
  24. package/dist-types/commands/ListDeviceResourcesCommand.d.ts +3 -8
  25. package/dist-types/commands/ListDevicesCommand.d.ts +3 -8
  26. package/dist-types/commands/ListExecutionsCommand.d.ts +3 -8
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  28. package/dist-types/commands/ListTasksCommand.d.ts +3 -8
  29. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  30. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  31. package/dist-types/index.d.ts +1 -0
  32. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  33. package/dist-types/ts3.4/commands/CancelTaskCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/CreateTaskCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/DescribeDeviceCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/DescribeDeviceEc2InstancesCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +7 -16
  38. package/dist-types/ts3.4/commands/DescribeTaskCommand.d.ts +7 -16
  39. package/dist-types/ts3.4/commands/ListDeviceResourcesCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +7 -16
  41. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/index.d.ts +1 -0
  47. package/package.json +8 -8
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DescribeTaskInput, DescribeTaskOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DescribeTaskCommandInput extends DescribeTaskInput {
22
19
  export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __MetadataBearer {
23
20
  }
24
21
  declare const DescribeTaskCommand_base: {
25
- new (input: DescribeTaskCommandInput): import("@smithy/core/client").CommandImpl<DescribeTaskCommandInput, DescribeTaskCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribeTaskCommandInput): import("@smithy/core/client").CommandImpl<DescribeTaskCommandInput, DescribeTaskCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribeTaskCommandInput): import("@smithy/core/client").CommandImpl<DescribeTaskCommandInput, DescribeTaskCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeTaskCommandInput): import("@smithy/core/client").CommandImpl<DescribeTaskCommandInput, DescribeTaskCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Checks the metadata for a given task on a device. </p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListDeviceResourcesInput, ListDeviceResourcesOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListDeviceResourcesCommandInput extends ListDeviceResourcesInpu
22
19
  export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListDeviceResourcesCommand_base: {
25
- new (input: ListDeviceResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListDeviceResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListDeviceResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListDeviceResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListDeviceResourcesCommandInput, ListDeviceResourcesCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of the Amazon Web Services resources available for a device. Currently, Amazon EC2 instances are the only supported resource type.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListDevicesInput, ListDevicesOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListDevicesCommandInput extends ListDevicesInput {
22
19
  export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListDevicesCommand_base: {
25
- new (input: ListDevicesCommandInput): import("@smithy/core/client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListDevicesCommandInput]): import("@smithy/core/client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListDevicesCommandInput): import("@smithy/core/client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListDevicesCommandInput]): import("@smithy/core/client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of all devices on your Amazon Web Services account that have Amazon Web Services Snow Device Management
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListExecutionsCommandInput extends ListExecutionsInput {
22
19
  export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListExecutionsCommand_base: {
25
- new (input: ListExecutionsCommandInput): import("@smithy/core/client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListExecutionsCommandInput): import("@smithy/core/client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListExecutionsCommandInput): import("@smithy/core/client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListExecutionsCommandInput): import("@smithy/core/client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns the status of tasks for one or more target devices.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceInpu
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of tags for a managed device or task.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListTasksInput, ListTasksOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTasksCommandInput extends ListTasksInput {
22
19
  export interface ListTasksCommandOutput extends ListTasksOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListTasksCommand_base: {
25
- new (input: ListTasksCommandInput): import("@smithy/core/client").CommandImpl<ListTasksCommandInput, ListTasksCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListTasksCommandInput]): import("@smithy/core/client").CommandImpl<ListTasksCommandInput, ListTasksCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTasksCommandInput): import("@smithy/core/client").CommandImpl<ListTasksCommandInput, ListTasksCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListTasksCommandInput]): import("@smithy/core/client").CommandImpl<ListTasksCommandInput, ListTasksCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of tasks that can be filtered by state.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { TagResourceInput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceInput {
22
19
  export interface TagResourceCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Adds or replaces tags on a device or task.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UntagResourceInput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig } from "../SnowDeviceManagementClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceInput {
22
19
  export interface UntagResourceCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SnowDeviceManagementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").SnowDeviceManagementClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Removes a tag from a device or task.</p>
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { SnowDeviceManagementExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./pagination";
14
15
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ServiceInputTypes,
4
+ ServiceOutputTypes,
5
+ SnowDeviceManagementClientResolvedConfig,
6
+ } from "./SnowDeviceManagementClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ SnowDeviceManagementClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ SnowDeviceManagementClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { CancelTaskInput, CancelTaskOutput } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- SnowDeviceManagementClientResolvedConfig,
8
- } from "../SnowDeviceManagementClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CancelTaskCommandInput extends CancelTaskInput {}
12
5
  export interface CancelTaskCommandOutput
13
6
  extends CancelTaskOutput,
@@ -18,22 +11,20 @@ declare const CancelTaskCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CancelTaskCommandInput,
20
13
  CancelTaskCommandOutput,
21
- SnowDeviceManagementClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").SnowDeviceManagementClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CancelTaskCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CancelTaskCommandInput,
29
22
  CancelTaskCommandOutput,
30
- SnowDeviceManagementClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").SnowDeviceManagementClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class CancelTaskCommand extends CancelTaskCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { CreateTaskInput, CreateTaskOutput } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- SnowDeviceManagementClientResolvedConfig,
8
- } from "../SnowDeviceManagementClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreateTaskCommandInput extends CreateTaskInput {}
12
5
  export interface CreateTaskCommandOutput
13
6
  extends CreateTaskOutput,
@@ -18,22 +11,20 @@ declare const CreateTaskCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CreateTaskCommandInput,
20
13
  CreateTaskCommandOutput,
21
- SnowDeviceManagementClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").SnowDeviceManagementClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CreateTaskCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CreateTaskCommandInput,
29
22
  CreateTaskCommandOutput,
30
- SnowDeviceManagementClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").SnowDeviceManagementClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class CreateTaskCommand extends CreateTaskCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DescribeDeviceInput, DescribeDeviceOutput } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- SnowDeviceManagementClientResolvedConfig,
8
- } from "../SnowDeviceManagementClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DescribeDeviceCommandInput extends DescribeDeviceInput {}
12
5
  export interface DescribeDeviceCommandOutput
13
6
  extends DescribeDeviceOutput,
@@ -18,22 +11,20 @@ declare const DescribeDeviceCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DescribeDeviceCommandInput,
20
13
  DescribeDeviceCommandOutput,
21
- SnowDeviceManagementClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").SnowDeviceManagementClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DescribeDeviceCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DescribeDeviceCommandInput,
29
22
  DescribeDeviceCommandOutput,
30
- SnowDeviceManagementClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").SnowDeviceManagementClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DescribeDeviceCommand extends DescribeDeviceCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  DescribeDeviceEc2Input,
5
4
  DescribeDeviceEc2Output,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SnowDeviceManagementClientResolvedConfig,
11
- } from "../SnowDeviceManagementClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeDeviceEc2InstancesCommandInput
15
8
  extends DescribeDeviceEc2Input {}
16
9
  export interface DescribeDeviceEc2InstancesCommandOutput
@@ -22,22 +15,20 @@ declare const DescribeDeviceEc2InstancesCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DescribeDeviceEc2InstancesCommandInput,
24
17
  DescribeDeviceEc2InstancesCommandOutput,
25
- SnowDeviceManagementClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SnowDeviceManagementClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DescribeDeviceEc2InstancesCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DescribeDeviceEc2InstancesCommandInput,
33
26
  DescribeDeviceEc2InstancesCommandOutput,
34
- SnowDeviceManagementClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SnowDeviceManagementClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DescribeDeviceEc2InstancesCommand extends DescribeDeviceEc2InstancesCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  DescribeExecutionInput,
5
4
  DescribeExecutionOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SnowDeviceManagementClientResolvedConfig,
11
- } from "../SnowDeviceManagementClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeExecutionCommandInput extends DescribeExecutionInput {}
15
8
  export interface DescribeExecutionCommandOutput
16
9
  extends DescribeExecutionOutput,
@@ -21,22 +14,20 @@ declare const DescribeExecutionCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  DescribeExecutionCommandInput,
23
16
  DescribeExecutionCommandOutput,
24
- SnowDeviceManagementClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").SnowDeviceManagementClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: DescribeExecutionCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  DescribeExecutionCommandInput,
32
25
  DescribeExecutionCommandOutput,
33
- SnowDeviceManagementClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").SnowDeviceManagementClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class DescribeExecutionCommand extends DescribeExecutionCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DescribeTaskInput, DescribeTaskOutput } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- SnowDeviceManagementClientResolvedConfig,
8
- } from "../SnowDeviceManagementClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DescribeTaskCommandInput extends DescribeTaskInput {}
12
5
  export interface DescribeTaskCommandOutput
13
6
  extends DescribeTaskOutput,
@@ -18,22 +11,20 @@ declare const DescribeTaskCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DescribeTaskCommandInput,
20
13
  DescribeTaskCommandOutput,
21
- SnowDeviceManagementClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").SnowDeviceManagementClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DescribeTaskCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DescribeTaskCommandInput,
29
22
  DescribeTaskCommandOutput,
30
- SnowDeviceManagementClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").SnowDeviceManagementClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DescribeTaskCommand extends DescribeTaskCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListDeviceResourcesInput,
5
4
  ListDeviceResourcesOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SnowDeviceManagementClientResolvedConfig,
11
- } from "../SnowDeviceManagementClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListDeviceResourcesCommandInput
15
8
  extends ListDeviceResourcesInput {}
16
9
  export interface ListDeviceResourcesCommandOutput
@@ -22,22 +15,20 @@ declare const ListDeviceResourcesCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListDeviceResourcesCommandInput,
24
17
  ListDeviceResourcesCommandOutput,
25
- SnowDeviceManagementClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SnowDeviceManagementClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListDeviceResourcesCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListDeviceResourcesCommandInput,
33
26
  ListDeviceResourcesCommandOutput,
34
- SnowDeviceManagementClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SnowDeviceManagementClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListDeviceResourcesCommand extends ListDeviceResourcesCommand_base {
43
34
  protected static __types: {