@aws-sdk/client-snow-device-management 3.300.0 → 3.301.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-types/commands/CancelTaskCommand.d.ts +1 -1
- package/dist-types/commands/CreateTaskCommand.d.ts +4 -4
- package/dist-types/commands/DescribeDeviceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDeviceEc2InstancesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeExecutionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +1 -1
- package/dist-types/commands/ListDeviceResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTasksCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -31,7 +31,7 @@ export interface CancelTaskCommandOutput extends CancelTaskOutput, __MetadataBea
|
|
|
31
31
|
* import { SnowDeviceManagementClient, CancelTaskCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
32
32
|
* // const { SnowDeviceManagementClient, CancelTaskCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
33
33
|
* const client = new SnowDeviceManagementClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CancelTaskInput
|
|
35
35
|
* taskId: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CancelTaskCommand(input);
|
|
@@ -26,16 +26,16 @@ export interface CreateTaskCommandOutput extends CreateTaskOutput, __MetadataBea
|
|
|
26
26
|
* import { SnowDeviceManagementClient, CreateTaskCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, CreateTaskCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* targets: [ // required
|
|
29
|
+
* const input = { // CreateTaskInput
|
|
30
|
+
* targets: [ // TargetList // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
|
-
* command: { // Union: only one key present
|
|
33
|
+
* command: { // Command Union: only one key present
|
|
34
34
|
* unlock: {},
|
|
35
35
|
* reboot: {},
|
|
36
36
|
* },
|
|
37
37
|
* description: "STRING_VALUE",
|
|
38
|
-
* tags: {
|
|
38
|
+
* tags: { // TagMap
|
|
39
39
|
* "<keys>": "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
41
|
* clientToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface DescribeDeviceCommandOutput extends DescribeDeviceOutput, __Met
|
|
|
27
27
|
* import { SnowDeviceManagementClient, DescribeDeviceCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
28
28
|
* // const { SnowDeviceManagementClient, DescribeDeviceCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
29
29
|
* const client = new SnowDeviceManagementClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeDeviceInput
|
|
31
31
|
* managedDeviceId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeDeviceCommand(input);
|
|
@@ -28,9 +28,9 @@ export interface DescribeDeviceEc2InstancesCommandOutput extends DescribeDeviceE
|
|
|
28
28
|
* import { SnowDeviceManagementClient, DescribeDeviceEc2InstancesCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
29
29
|
* // const { SnowDeviceManagementClient, DescribeDeviceEc2InstancesCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
30
30
|
* const client = new SnowDeviceManagementClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeDeviceEc2Input
|
|
32
32
|
* managedDeviceId: "STRING_VALUE", // required
|
|
33
|
-
* instanceIds: [ // required
|
|
33
|
+
* instanceIds: [ // InstanceIdsList // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionOutput,
|
|
|
26
26
|
* import { SnowDeviceManagementClient, DescribeExecutionCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, DescribeExecutionCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeExecutionInput
|
|
30
30
|
* taskId: "STRING_VALUE", // required
|
|
31
31
|
* managedDeviceId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeTaskCommandOutput extends DescribeTaskOutput, __Metadat
|
|
|
26
26
|
* import { SnowDeviceManagementClient, DescribeTaskCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, DescribeTaskCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeTaskInput
|
|
30
30
|
* taskId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeTaskCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListDeviceResourcesCommandOutput extends ListDeviceResourcesOut
|
|
|
26
26
|
* import { SnowDeviceManagementClient, ListDeviceResourcesCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, ListDeviceResourcesCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDeviceResourcesInput
|
|
30
30
|
* managedDeviceId: "STRING_VALUE", // required
|
|
31
31
|
* type: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListDevicesCommandOutput extends ListDevicesOutput, __MetadataB
|
|
|
27
27
|
* import { SnowDeviceManagementClient, ListDevicesCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
28
28
|
* // const { SnowDeviceManagementClient, ListDevicesCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
29
29
|
* const client = new SnowDeviceManagementClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListDevicesInput
|
|
31
31
|
* jobId: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsOutput, __Met
|
|
|
26
26
|
* import { SnowDeviceManagementClient, ListExecutionsCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, ListExecutionsCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListExecutionsInput
|
|
30
30
|
* taskId: "STRING_VALUE", // required
|
|
31
31
|
* state: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
26
26
|
* import { SnowDeviceManagementClient, ListTagsForResourceCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, ListTagsForResourceCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListTasksCommandOutput extends ListTasksOutput, __MetadataBeare
|
|
|
26
26
|
* import { SnowDeviceManagementClient, ListTasksCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, ListTasksCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTasksInput
|
|
30
30
|
* state: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { SnowDeviceManagementClient, TagResourceCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, TagResourceCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: { // required
|
|
31
|
+
* tags: { // TagMap // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { SnowDeviceManagementClient, UntagResourceCommand } from "@aws-sdk/client-snow-device-management"; // ES Modules import
|
|
27
27
|
* // const { SnowDeviceManagementClient, UntagResourceCommand } = require("@aws-sdk/client-snow-device-management"); // CommonJS import
|
|
28
28
|
* const client = new SnowDeviceManagementClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeys // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-snow-device-management",
|
|
3
3
|
"description": "AWS SDK for JavaScript Snow Device Management Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|