@aws-sdk/client-workspaces-thin-client 3.686.0 → 3.691.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.
@@ -15,8 +15,8 @@ export type ApplyTimeOf = (typeof ApplyTimeOf)[keyof typeof ApplyTimeOf];
15
15
  export declare class ConflictException extends __BaseException {
16
16
  readonly name: "ConflictException";
17
17
  readonly $fault: "client";
18
- resourceId?: string;
19
- resourceType?: string;
18
+ resourceId?: string | undefined;
19
+ resourceType?: string | undefined;
20
20
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
21
21
  }
22
22
  export declare const DayOfWeek: {
@@ -36,13 +36,13 @@ export declare const MaintenanceWindowType: {
36
36
  export type MaintenanceWindowType =
37
37
  (typeof MaintenanceWindowType)[keyof typeof MaintenanceWindowType];
38
38
  export interface MaintenanceWindow {
39
- type?: MaintenanceWindowType;
40
- startTimeHour?: number;
41
- startTimeMinute?: number;
42
- endTimeHour?: number;
43
- endTimeMinute?: number;
44
- daysOfTheWeek?: DayOfWeek[];
45
- applyTimeOf?: ApplyTimeOf;
39
+ type?: MaintenanceWindowType | undefined;
40
+ startTimeHour?: number | undefined;
41
+ startTimeMinute?: number | undefined;
42
+ endTimeHour?: number | undefined;
43
+ endTimeMinute?: number | undefined;
44
+ daysOfTheWeek?: DayOfWeek[] | undefined;
45
+ applyTimeOf?: ApplyTimeOf | undefined;
46
46
  }
47
47
  export declare const SoftwareSetUpdateMode: {
48
48
  readonly USE_DESIRED: "USE_DESIRED";
@@ -57,17 +57,17 @@ export declare const SoftwareSetUpdateSchedule: {
57
57
  export type SoftwareSetUpdateSchedule =
58
58
  (typeof SoftwareSetUpdateSchedule)[keyof typeof SoftwareSetUpdateSchedule];
59
59
  export interface CreateEnvironmentRequest {
60
- name?: string;
60
+ name?: string | undefined;
61
61
  desktopArn: string | undefined;
62
- desktopEndpoint?: string;
63
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
64
- maintenanceWindow?: MaintenanceWindow;
65
- softwareSetUpdateMode?: SoftwareSetUpdateMode;
66
- desiredSoftwareSetId?: string;
67
- kmsKeyArn?: string;
68
- clientToken?: string;
69
- tags?: Record<string, string>;
70
- deviceCreationTags?: Record<string, string>;
62
+ desktopEndpoint?: string | undefined;
63
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
64
+ maintenanceWindow?: MaintenanceWindow | undefined;
65
+ softwareSetUpdateMode?: SoftwareSetUpdateMode | undefined;
66
+ desiredSoftwareSetId?: string | undefined;
67
+ kmsKeyArn?: string | undefined;
68
+ clientToken?: string | undefined;
69
+ tags?: Record<string, string> | undefined;
70
+ deviceCreationTags?: Record<string, string> | undefined;
71
71
  }
72
72
  export declare const DesktopType: {
73
73
  readonly APPSTREAM: "appstream";
@@ -76,28 +76,28 @@ export declare const DesktopType: {
76
76
  };
77
77
  export type DesktopType = (typeof DesktopType)[keyof typeof DesktopType];
78
78
  export interface EnvironmentSummary {
79
- id?: string;
80
- name?: string;
81
- desktopArn?: string;
82
- desktopEndpoint?: string;
83
- desktopType?: DesktopType;
84
- activationCode?: string;
85
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
86
- maintenanceWindow?: MaintenanceWindow;
87
- softwareSetUpdateMode?: SoftwareSetUpdateMode;
88
- desiredSoftwareSetId?: string;
89
- pendingSoftwareSetId?: string;
90
- createdAt?: Date;
91
- updatedAt?: Date;
92
- arn?: string;
79
+ id?: string | undefined;
80
+ name?: string | undefined;
81
+ desktopArn?: string | undefined;
82
+ desktopEndpoint?: string | undefined;
83
+ desktopType?: DesktopType | undefined;
84
+ activationCode?: string | undefined;
85
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
86
+ maintenanceWindow?: MaintenanceWindow | undefined;
87
+ softwareSetUpdateMode?: SoftwareSetUpdateMode | undefined;
88
+ desiredSoftwareSetId?: string | undefined;
89
+ pendingSoftwareSetId?: string | undefined;
90
+ createdAt?: Date | undefined;
91
+ updatedAt?: Date | undefined;
92
+ arn?: string | undefined;
93
93
  }
94
94
  export interface CreateEnvironmentResponse {
95
- environment?: EnvironmentSummary;
95
+ environment?: EnvironmentSummary | undefined;
96
96
  }
97
97
  export declare class InternalServerException extends __BaseException {
98
98
  readonly name: "InternalServerException";
99
99
  readonly $fault: "server";
100
- retryAfterSeconds?: number;
100
+ retryAfterSeconds?: number | undefined;
101
101
  constructor(
102
102
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
103
103
  );
@@ -105,8 +105,8 @@ export declare class InternalServerException extends __BaseException {
105
105
  export declare class ResourceNotFoundException extends __BaseException {
106
106
  readonly name: "ResourceNotFoundException";
107
107
  readonly $fault: "client";
108
- resourceId?: string;
109
- resourceType?: string;
108
+ resourceId?: string | undefined;
109
+ resourceType?: string | undefined;
110
110
  constructor(
111
111
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
112
112
  );
@@ -114,10 +114,10 @@ export declare class ResourceNotFoundException extends __BaseException {
114
114
  export declare class ServiceQuotaExceededException extends __BaseException {
115
115
  readonly name: "ServiceQuotaExceededException";
116
116
  readonly $fault: "client";
117
- resourceId?: string;
118
- resourceType?: string;
119
- serviceCode?: string;
120
- quotaCode?: string;
117
+ resourceId?: string | undefined;
118
+ resourceType?: string | undefined;
119
+ serviceCode?: string | undefined;
120
+ quotaCode?: string | undefined;
121
121
  constructor(
122
122
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
123
123
  );
@@ -125,9 +125,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
125
125
  export declare class ThrottlingException extends __BaseException {
126
126
  readonly name: "ThrottlingException";
127
127
  readonly $fault: "client";
128
- serviceCode?: string;
129
- quotaCode?: string;
130
- retryAfterSeconds?: number;
128
+ serviceCode?: string | undefined;
129
+ quotaCode?: string | undefined;
130
+ retryAfterSeconds?: number | undefined;
131
131
  constructor(
132
132
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
133
133
  );
@@ -147,20 +147,20 @@ export type ValidationExceptionReason =
147
147
  export declare class ValidationException extends __BaseException {
148
148
  readonly name: "ValidationException";
149
149
  readonly $fault: "client";
150
- reason?: ValidationExceptionReason;
151
- fieldList?: ValidationExceptionField[];
150
+ reason?: ValidationExceptionReason | undefined;
151
+ fieldList?: ValidationExceptionField[] | undefined;
152
152
  constructor(
153
153
  opts: __ExceptionOptionType<ValidationException, __BaseException>
154
154
  );
155
155
  }
156
156
  export interface DeleteDeviceRequest {
157
157
  id: string | undefined;
158
- clientToken?: string;
158
+ clientToken?: string | undefined;
159
159
  }
160
160
  export interface DeleteDeviceResponse {}
161
161
  export interface DeleteEnvironmentRequest {
162
162
  id: string | undefined;
163
- clientToken?: string;
163
+ clientToken?: string | undefined;
164
164
  }
165
165
  export interface DeleteEnvironmentResponse {}
166
166
  export declare const TargetDeviceStatus: {
@@ -171,8 +171,8 @@ export type TargetDeviceStatus =
171
171
  (typeof TargetDeviceStatus)[keyof typeof TargetDeviceStatus];
172
172
  export interface DeregisterDeviceRequest {
173
173
  id: string | undefined;
174
- targetDeviceStatus?: TargetDeviceStatus;
175
- clientToken?: string;
174
+ targetDeviceStatus?: TargetDeviceStatus | undefined;
175
+ clientToken?: string | undefined;
176
176
  }
177
177
  export interface DeregisterDeviceResponse {}
178
178
  export declare const DeviceSoftwareSetComplianceStatus: {
@@ -197,44 +197,44 @@ export declare const DeviceStatus: {
197
197
  };
198
198
  export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
199
199
  export interface Device {
200
- id?: string;
201
- serialNumber?: string;
202
- name?: string;
203
- model?: string;
204
- environmentId?: string;
205
- status?: DeviceStatus;
206
- currentSoftwareSetId?: string;
207
- currentSoftwareSetVersion?: string;
208
- desiredSoftwareSetId?: string;
209
- pendingSoftwareSetId?: string;
210
- pendingSoftwareSetVersion?: string;
211
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
212
- softwareSetComplianceStatus?: DeviceSoftwareSetComplianceStatus;
213
- softwareSetUpdateStatus?: SoftwareSetUpdateStatus;
214
- lastConnectedAt?: Date;
215
- lastPostureAt?: Date;
216
- createdAt?: Date;
217
- updatedAt?: Date;
218
- arn?: string;
219
- kmsKeyArn?: string;
220
- tags?: Record<string, string>;
200
+ id?: string | undefined;
201
+ serialNumber?: string | undefined;
202
+ name?: string | undefined;
203
+ model?: string | undefined;
204
+ environmentId?: string | undefined;
205
+ status?: DeviceStatus | undefined;
206
+ currentSoftwareSetId?: string | undefined;
207
+ currentSoftwareSetVersion?: string | undefined;
208
+ desiredSoftwareSetId?: string | undefined;
209
+ pendingSoftwareSetId?: string | undefined;
210
+ pendingSoftwareSetVersion?: string | undefined;
211
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
212
+ softwareSetComplianceStatus?: DeviceSoftwareSetComplianceStatus | undefined;
213
+ softwareSetUpdateStatus?: SoftwareSetUpdateStatus | undefined;
214
+ lastConnectedAt?: Date | undefined;
215
+ lastPostureAt?: Date | undefined;
216
+ createdAt?: Date | undefined;
217
+ updatedAt?: Date | undefined;
218
+ arn?: string | undefined;
219
+ kmsKeyArn?: string | undefined;
220
+ tags?: Record<string, string> | undefined;
221
221
  }
222
222
  export interface DeviceSummary {
223
- id?: string;
224
- serialNumber?: string;
225
- name?: string;
226
- model?: string;
227
- environmentId?: string;
228
- status?: DeviceStatus;
229
- currentSoftwareSetId?: string;
230
- desiredSoftwareSetId?: string;
231
- pendingSoftwareSetId?: string;
232
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
233
- lastConnectedAt?: Date;
234
- lastPostureAt?: Date;
235
- createdAt?: Date;
236
- updatedAt?: Date;
237
- arn?: string;
223
+ id?: string | undefined;
224
+ serialNumber?: string | undefined;
225
+ name?: string | undefined;
226
+ model?: string | undefined;
227
+ environmentId?: string | undefined;
228
+ status?: DeviceStatus | undefined;
229
+ currentSoftwareSetId?: string | undefined;
230
+ desiredSoftwareSetId?: string | undefined;
231
+ pendingSoftwareSetId?: string | undefined;
232
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
233
+ lastConnectedAt?: Date | undefined;
234
+ lastPostureAt?: Date | undefined;
235
+ createdAt?: Date | undefined;
236
+ updatedAt?: Date | undefined;
237
+ arn?: string | undefined;
238
238
  }
239
239
  export declare const EnvironmentSoftwareSetComplianceStatus: {
240
240
  readonly COMPLIANT: "COMPLIANT";
@@ -244,45 +244,47 @@ export declare const EnvironmentSoftwareSetComplianceStatus: {
244
244
  export type EnvironmentSoftwareSetComplianceStatus =
245
245
  (typeof EnvironmentSoftwareSetComplianceStatus)[keyof typeof EnvironmentSoftwareSetComplianceStatus];
246
246
  export interface Environment {
247
- id?: string;
248
- name?: string;
249
- desktopArn?: string;
250
- desktopEndpoint?: string;
251
- desktopType?: DesktopType;
252
- activationCode?: string;
253
- registeredDevicesCount?: number;
254
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
255
- maintenanceWindow?: MaintenanceWindow;
256
- softwareSetUpdateMode?: SoftwareSetUpdateMode;
257
- desiredSoftwareSetId?: string;
258
- pendingSoftwareSetId?: string;
259
- pendingSoftwareSetVersion?: string;
260
- softwareSetComplianceStatus?: EnvironmentSoftwareSetComplianceStatus;
261
- createdAt?: Date;
262
- updatedAt?: Date;
263
- arn?: string;
264
- kmsKeyArn?: string;
265
- tags?: Record<string, string>;
266
- deviceCreationTags?: Record<string, string>;
247
+ id?: string | undefined;
248
+ name?: string | undefined;
249
+ desktopArn?: string | undefined;
250
+ desktopEndpoint?: string | undefined;
251
+ desktopType?: DesktopType | undefined;
252
+ activationCode?: string | undefined;
253
+ registeredDevicesCount?: number | undefined;
254
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
255
+ maintenanceWindow?: MaintenanceWindow | undefined;
256
+ softwareSetUpdateMode?: SoftwareSetUpdateMode | undefined;
257
+ desiredSoftwareSetId?: string | undefined;
258
+ pendingSoftwareSetId?: string | undefined;
259
+ pendingSoftwareSetVersion?: string | undefined;
260
+ softwareSetComplianceStatus?:
261
+ | EnvironmentSoftwareSetComplianceStatus
262
+ | undefined;
263
+ createdAt?: Date | undefined;
264
+ updatedAt?: Date | undefined;
265
+ arn?: string | undefined;
266
+ kmsKeyArn?: string | undefined;
267
+ tags?: Record<string, string> | undefined;
268
+ deviceCreationTags?: Record<string, string> | undefined;
267
269
  }
268
270
  export interface GetDeviceRequest {
269
271
  id: string | undefined;
270
272
  }
271
273
  export interface GetDeviceResponse {
272
- device?: Device;
274
+ device?: Device | undefined;
273
275
  }
274
276
  export interface GetEnvironmentRequest {
275
277
  id: string | undefined;
276
278
  }
277
279
  export interface GetEnvironmentResponse {
278
- environment?: Environment;
280
+ environment?: Environment | undefined;
279
281
  }
280
282
  export interface GetSoftwareSetRequest {
281
283
  id: string | undefined;
282
284
  }
283
285
  export interface Software {
284
- name?: string;
285
- version?: string;
286
+ name?: string | undefined;
287
+ version?: string | undefined;
286
288
  }
287
289
  export declare const SoftwareSetValidationStatus: {
288
290
  readonly NOT_VALIDATED: "NOT_VALIDATED";
@@ -291,55 +293,55 @@ export declare const SoftwareSetValidationStatus: {
291
293
  export type SoftwareSetValidationStatus =
292
294
  (typeof SoftwareSetValidationStatus)[keyof typeof SoftwareSetValidationStatus];
293
295
  export interface SoftwareSet {
294
- id?: string;
295
- version?: string;
296
- releasedAt?: Date;
297
- supportedUntil?: Date;
298
- validationStatus?: SoftwareSetValidationStatus;
299
- software?: Software[];
300
- arn?: string;
301
- tags?: Record<string, string>;
296
+ id?: string | undefined;
297
+ version?: string | undefined;
298
+ releasedAt?: Date | undefined;
299
+ supportedUntil?: Date | undefined;
300
+ validationStatus?: SoftwareSetValidationStatus | undefined;
301
+ software?: Software[] | undefined;
302
+ arn?: string | undefined;
303
+ tags?: Record<string, string> | undefined;
302
304
  }
303
305
  export interface GetSoftwareSetResponse {
304
- softwareSet?: SoftwareSet;
306
+ softwareSet?: SoftwareSet | undefined;
305
307
  }
306
308
  export interface ListDevicesRequest {
307
- nextToken?: string;
308
- maxResults?: number;
309
+ nextToken?: string | undefined;
310
+ maxResults?: number | undefined;
309
311
  }
310
312
  export interface ListDevicesResponse {
311
- devices?: DeviceSummary[];
312
- nextToken?: string;
313
+ devices?: DeviceSummary[] | undefined;
314
+ nextToken?: string | undefined;
313
315
  }
314
316
  export interface ListEnvironmentsRequest {
315
- nextToken?: string;
316
- maxResults?: number;
317
+ nextToken?: string | undefined;
318
+ maxResults?: number | undefined;
317
319
  }
318
320
  export interface ListEnvironmentsResponse {
319
- environments?: EnvironmentSummary[];
320
- nextToken?: string;
321
+ environments?: EnvironmentSummary[] | undefined;
322
+ nextToken?: string | undefined;
321
323
  }
322
324
  export interface ListSoftwareSetsRequest {
323
- nextToken?: string;
324
- maxResults?: number;
325
+ nextToken?: string | undefined;
326
+ maxResults?: number | undefined;
325
327
  }
326
328
  export interface SoftwareSetSummary {
327
- id?: string;
328
- version?: string;
329
- releasedAt?: Date;
330
- supportedUntil?: Date;
331
- validationStatus?: SoftwareSetValidationStatus;
332
- arn?: string;
329
+ id?: string | undefined;
330
+ version?: string | undefined;
331
+ releasedAt?: Date | undefined;
332
+ supportedUntil?: Date | undefined;
333
+ validationStatus?: SoftwareSetValidationStatus | undefined;
334
+ arn?: string | undefined;
333
335
  }
334
336
  export interface ListSoftwareSetsResponse {
335
- softwareSets?: SoftwareSetSummary[];
336
- nextToken?: string;
337
+ softwareSets?: SoftwareSetSummary[] | undefined;
338
+ nextToken?: string | undefined;
337
339
  }
338
340
  export interface ListTagsForResourceRequest {
339
341
  resourceArn: string | undefined;
340
342
  }
341
343
  export interface ListTagsForResourceResponse {
342
- tags?: Record<string, string>;
344
+ tags?: Record<string, string> | undefined;
343
345
  }
344
346
  export interface TagResourceRequest {
345
347
  resourceArn: string | undefined;
@@ -353,26 +355,26 @@ export interface UntagResourceRequest {
353
355
  export interface UntagResourceResponse {}
354
356
  export interface UpdateDeviceRequest {
355
357
  id: string | undefined;
356
- name?: string;
357
- desiredSoftwareSetId?: string;
358
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
358
+ name?: string | undefined;
359
+ desiredSoftwareSetId?: string | undefined;
360
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
359
361
  }
360
362
  export interface UpdateDeviceResponse {
361
- device?: DeviceSummary;
363
+ device?: DeviceSummary | undefined;
362
364
  }
363
365
  export interface UpdateEnvironmentRequest {
364
366
  id: string | undefined;
365
- name?: string;
366
- desktopArn?: string;
367
- desktopEndpoint?: string;
368
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
369
- maintenanceWindow?: MaintenanceWindow;
370
- softwareSetUpdateMode?: SoftwareSetUpdateMode;
371
- desiredSoftwareSetId?: string;
372
- deviceCreationTags?: Record<string, string>;
367
+ name?: string | undefined;
368
+ desktopArn?: string | undefined;
369
+ desktopEndpoint?: string | undefined;
370
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
371
+ maintenanceWindow?: MaintenanceWindow | undefined;
372
+ softwareSetUpdateMode?: SoftwareSetUpdateMode | undefined;
373
+ desiredSoftwareSetId?: string | undefined;
374
+ deviceCreationTags?: Record<string, string> | undefined;
373
375
  }
374
376
  export interface UpdateEnvironmentResponse {
375
- environment?: EnvironmentSummary;
377
+ environment?: EnvironmentSummary | undefined;
376
378
  }
377
379
  export interface UpdateSoftwareSetRequest {
378
380
  id: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces-thin-client",
3
3
  "description": "AWS SDK for JavaScript Workspaces Thin Client Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-workspaces-thin-client",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",