@aws-sdk/client-snow-device-management 3.428.0 → 3.429.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.
@@ -324,12 +324,12 @@ export interface PhysicalNetworkInterface {
324
324
  * physical
325
325
  * connector type.</p>
326
326
  */
327
- physicalConnectorType?: PhysicalConnectorType | string;
327
+ physicalConnectorType?: PhysicalConnectorType;
328
328
  /**
329
329
  * @public
330
330
  * <p>A value that describes whether the IP address is dynamic or persistent.</p>
331
331
  */
332
- ipAddressAssignment?: IpAddressAssignment | string;
332
+ ipAddressAssignment?: IpAddressAssignment;
333
333
  /**
334
334
  * @public
335
335
  * <p>The IP address of the device.</p>
@@ -419,7 +419,7 @@ export interface DescribeDeviceOutput {
419
419
  * @public
420
420
  * <p>The current state of the device.</p>
421
421
  */
422
- deviceState?: UnlockState | string;
422
+ deviceState?: UnlockState;
423
423
  /**
424
424
  * @public
425
425
  * <p>The network interfaces available on the device.</p>
@@ -471,7 +471,7 @@ export interface EbsInstanceBlockDevice {
471
471
  * @public
472
472
  * <p>The attachment state.</p>
473
473
  */
474
- status?: AttachmentStatus | string;
474
+ status?: AttachmentStatus;
475
475
  /**
476
476
  * @public
477
477
  * <p>The ID of the Amazon EBS volume.</p>
@@ -584,7 +584,7 @@ export interface InstanceState {
584
584
  * state
585
585
  * of the instance.</p>
586
586
  */
587
- name?: InstanceStateName | string;
587
+ name?: InstanceStateName;
588
588
  }
589
589
  /**
590
590
  * @public
@@ -741,7 +741,7 @@ export interface DescribeExecutionOutput {
741
741
  * @public
742
742
  * <p>The current state of the execution.</p>
743
743
  */
744
- state?: ExecutionState | string;
744
+ state?: ExecutionState;
745
745
  /**
746
746
  * @public
747
747
  * <p>When the execution began.</p>
@@ -799,7 +799,7 @@ export interface DescribeTaskOutput {
799
799
  * @public
800
800
  * <p>The current state of the task.</p>
801
801
  */
802
- state?: TaskState | string;
802
+ state?: TaskState;
803
803
  /**
804
804
  * @public
805
805
  * <p>When the <code>CreateTask</code> operation was called.</p>
@@ -867,7 +867,7 @@ export interface ListExecutionsInput {
867
867
  * @public
868
868
  * <p>A structure used to filter the tasks by their current state.</p>
869
869
  */
870
- state?: ExecutionState | string;
870
+ state?: ExecutionState;
871
871
  /**
872
872
  * @public
873
873
  * <p>The maximum number of tasks to list per page.</p>
@@ -903,7 +903,7 @@ export interface ExecutionSummary {
903
903
  * @public
904
904
  * <p>The state of the execution.</p>
905
905
  */
906
- state?: ExecutionState | string;
906
+ state?: ExecutionState;
907
907
  }
908
908
  /**
909
909
  * @public
@@ -1045,7 +1045,7 @@ export interface ListTasksInput {
1045
1045
  * @public
1046
1046
  * <p>A structure used to filter the list of tasks.</p>
1047
1047
  */
1048
- state?: TaskState | string;
1048
+ state?: TaskState;
1049
1049
  /**
1050
1050
  * @public
1051
1051
  * <p>The maximum number of tasks per page.</p>
@@ -1076,7 +1076,7 @@ export interface TaskSummary {
1076
1076
  * @public
1077
1077
  * <p>The state of the task assigned to one or many devices.</p>
1078
1078
  */
1079
- state?: TaskState | string;
1079
+ state?: TaskState;
1080
1080
  /**
1081
1081
  * @public
1082
1082
  * <p>Optional metadata that you assign to a resource. You can use tags to categorize a resource
@@ -137,8 +137,8 @@ export type PhysicalConnectorType =
137
137
  (typeof PhysicalConnectorType)[keyof typeof PhysicalConnectorType];
138
138
  export interface PhysicalNetworkInterface {
139
139
  physicalNetworkInterfaceId?: string;
140
- physicalConnectorType?: PhysicalConnectorType | string;
141
- ipAddressAssignment?: IpAddressAssignment | string;
140
+ physicalConnectorType?: PhysicalConnectorType;
141
+ ipAddressAssignment?: IpAddressAssignment;
142
142
  ipAddress?: string;
143
143
  netmask?: string;
144
144
  defaultGateway?: string;
@@ -157,7 +157,7 @@ export interface DescribeDeviceOutput {
157
157
  managedDeviceArn?: string;
158
158
  deviceType?: string;
159
159
  associatedWithJob?: string;
160
- deviceState?: UnlockState | string;
160
+ deviceState?: UnlockState;
161
161
  physicalNetworkInterfaces?: PhysicalNetworkInterface[];
162
162
  deviceCapacities?: Capacity[];
163
163
  software?: SoftwareInformation;
@@ -169,7 +169,7 @@ export interface DescribeDeviceEc2Input {
169
169
  export interface EbsInstanceBlockDevice {
170
170
  attachTime?: Date;
171
171
  deleteOnTermination?: boolean;
172
- status?: AttachmentStatus | string;
172
+ status?: AttachmentStatus;
173
173
  volumeId?: string;
174
174
  }
175
175
  export interface InstanceBlockDeviceMapping {
@@ -192,7 +192,7 @@ export type InstanceStateName =
192
192
  (typeof InstanceStateName)[keyof typeof InstanceStateName];
193
193
  export interface InstanceState {
194
194
  code?: number;
195
- name?: InstanceStateName | string;
195
+ name?: InstanceStateName;
196
196
  }
197
197
  export interface Instance {
198
198
  imageId?: string;
@@ -235,7 +235,7 @@ export interface DescribeExecutionOutput {
235
235
  taskId?: string;
236
236
  executionId?: string;
237
237
  managedDeviceId?: string;
238
- state?: ExecutionState | string;
238
+ state?: ExecutionState;
239
239
  startedAt?: Date;
240
240
  lastUpdatedAt?: Date;
241
241
  }
@@ -252,7 +252,7 @@ export interface DescribeTaskOutput {
252
252
  taskId?: string;
253
253
  taskArn?: string;
254
254
  targets?: string[];
255
- state?: TaskState | string;
255
+ state?: TaskState;
256
256
  createdAt?: Date;
257
257
  lastUpdatedAt?: Date;
258
258
  completedAt?: Date;
@@ -267,7 +267,7 @@ export interface DeviceSummary {
267
267
  }
268
268
  export interface ListExecutionsInput {
269
269
  taskId: string | undefined;
270
- state?: ExecutionState | string;
270
+ state?: ExecutionState;
271
271
  maxResults?: number;
272
272
  nextToken?: string;
273
273
  }
@@ -275,7 +275,7 @@ export interface ExecutionSummary {
275
275
  taskId?: string;
276
276
  executionId?: string;
277
277
  managedDeviceId?: string;
278
- state?: ExecutionState | string;
278
+ state?: ExecutionState;
279
279
  }
280
280
  export interface ListExecutionsOutput {
281
281
  executions?: ExecutionSummary[];
@@ -312,14 +312,14 @@ export interface ListTagsForResourceOutput {
312
312
  tags?: Record<string, string>;
313
313
  }
314
314
  export interface ListTasksInput {
315
- state?: TaskState | string;
315
+ state?: TaskState;
316
316
  maxResults?: number;
317
317
  nextToken?: string;
318
318
  }
319
319
  export interface TaskSummary {
320
320
  taskId: string | undefined;
321
321
  taskArn?: string;
322
- state?: TaskState | string;
322
+ state?: TaskState;
323
323
  tags?: Record<string, string>;
324
324
  }
325
325
  export interface ListTasksOutput {
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.428.0",
4
+ "version": "3.429.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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",