@aws-sdk/client-snow-device-management 3.948.0 → 3.953.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 (33) hide show
  1. package/dist-cjs/index.js +201 -140
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelTaskCommand.js +2 -2
  4. package/dist-es/commands/CreateTaskCommand.js +2 -2
  5. package/dist-es/commands/DescribeDeviceCommand.js +2 -2
  6. package/dist-es/commands/DescribeDeviceEc2InstancesCommand.js +2 -2
  7. package/dist-es/commands/DescribeExecutionCommand.js +2 -2
  8. package/dist-es/commands/DescribeTaskCommand.js +2 -2
  9. package/dist-es/commands/ListDeviceResourcesCommand.js +2 -2
  10. package/dist-es/commands/ListDevicesCommand.js +2 -2
  11. package/dist-es/commands/ListExecutionsCommand.js +2 -2
  12. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  13. package/dist-es/commands/ListTasksCommand.js +2 -2
  14. package/dist-es/commands/TagResourceCommand.js +2 -2
  15. package/dist-es/commands/UntagResourceCommand.js +2 -2
  16. package/dist-es/index.js +1 -0
  17. package/dist-es/runtimeConfig.shared.js +6 -1
  18. package/dist-es/schemas/schemas_0.js +113 -113
  19. package/dist-types/SnowDeviceManagementClient.d.ts +1 -10
  20. package/dist-types/index.d.ts +1 -0
  21. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  22. package/dist-types/runtimeConfig.d.ts +6 -2
  23. package/dist-types/runtimeConfig.native.d.ts +6 -2
  24. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  25. package/dist-types/schemas/schemas_0.d.ts +62 -76
  26. package/dist-types/ts3.4/SnowDeviceManagementClient.d.ts +0 -4
  27. package/dist-types/ts3.4/index.d.ts +1 -0
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +61 -76
  33. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.snowdevicemanagement" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.snowdevicemanagement",
32
+ version: "2021-08-04",
33
+ serviceTarget: "SnowDeviceManagement",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Snow Device Management",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CancelTask } from "../schemas/schemas_0";
4
+ import { CancelTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CancelTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CancelTaskCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "CancelTask", {})
13
13
  .n("SnowDeviceManagementClient", "CancelTaskCommand")
14
- .sc(CancelTask)
14
+ .sc(CancelTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateTask } from "../schemas/schemas_0";
4
+ import { CreateTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateTaskCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "CreateTask", {})
13
13
  .n("SnowDeviceManagementClient", "CreateTaskCommand")
14
- .sc(CreateTask)
14
+ .sc(CreateTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeDevice } from "../schemas/schemas_0";
4
+ import { DescribeDevice$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeDeviceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeDeviceCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "DescribeDevice", {})
13
13
  .n("SnowDeviceManagementClient", "DescribeDeviceCommand")
14
- .sc(DescribeDevice)
14
+ .sc(DescribeDevice$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeDeviceEc2Instances } from "../schemas/schemas_0";
4
+ import { DescribeDeviceEc2Instances$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeDeviceEc2InstancesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeDeviceEc2InstancesCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "DescribeDeviceEc2Instances", {})
13
13
  .n("SnowDeviceManagementClient", "DescribeDeviceEc2InstancesCommand")
14
- .sc(DescribeDeviceEc2Instances)
14
+ .sc(DescribeDeviceEc2Instances$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeExecution } from "../schemas/schemas_0";
4
+ import { DescribeExecution$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeExecutionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeExecutionCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "DescribeExecution", {})
13
13
  .n("SnowDeviceManagementClient", "DescribeExecutionCommand")
14
- .sc(DescribeExecution)
14
+ .sc(DescribeExecution$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeTask } from "../schemas/schemas_0";
4
+ import { DescribeTask$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeTaskCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeTaskCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "DescribeTask", {})
13
13
  .n("SnowDeviceManagementClient", "DescribeTaskCommand")
14
- .sc(DescribeTask)
14
+ .sc(DescribeTask$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDeviceResources } from "../schemas/schemas_0";
4
+ import { ListDeviceResources$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDeviceResourcesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDeviceResourcesCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "ListDeviceResources", {})
13
13
  .n("SnowDeviceManagementClient", "ListDeviceResourcesCommand")
14
- .sc(ListDeviceResources)
14
+ .sc(ListDeviceResources$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDevices } from "../schemas/schemas_0";
4
+ import { ListDevices$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDevicesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDevicesCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "ListDevices", {})
13
13
  .n("SnowDeviceManagementClient", "ListDevicesCommand")
14
- .sc(ListDevices)
14
+ .sc(ListDevices$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListExecutions } from "../schemas/schemas_0";
4
+ import { ListExecutions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListExecutionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListExecutionsCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "ListExecutions", {})
13
13
  .n("SnowDeviceManagementClient", "ListExecutionsCommand")
14
- .sc(ListExecutions)
14
+ .sc(ListExecutions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "ListTagsForResource", {})
13
13
  .n("SnowDeviceManagementClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTasks } from "../schemas/schemas_0";
4
+ import { ListTasks$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTasksCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTasksCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "ListTasks", {})
13
13
  .n("SnowDeviceManagementClient", "ListTasksCommand")
14
- .sc(ListTasks)
14
+ .sc(ListTasks$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "TagResource", {})
13
13
  .n("SnowDeviceManagementClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("SnowDeviceManagement", "UntagResource", {})
13
13
  .n("SnowDeviceManagementClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SnowDeviceManagementClient";
2
2
  export * from "./SnowDeviceManagement";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.snowdevicemanagement" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.snowdevicemanagement",
29
+ version: "2021-08-04",
30
+ serviceTarget: "SnowDeviceManagement",
31
+ },
27
32
  serviceId: config?.serviceId ?? "Snow Device Management",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,