@aws-sdk/client-workspaces-thin-client 3.598.0 → 3.604.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-cjs/index.js +9 -3
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +3 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +3 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +15 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/package.json +4 -4
package/dist-cjs/index.js
CHANGED
|
@@ -458,7 +458,8 @@ var CreateEnvironmentRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
458
458
|
...obj,
|
|
459
459
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
460
460
|
...obj.desktopEndpoint && { desktopEndpoint: import_smithy_client.SENSITIVE_STRING },
|
|
461
|
-
...obj.tags && { tags: import_smithy_client.SENSITIVE_STRING }
|
|
461
|
+
...obj.tags && { tags: import_smithy_client.SENSITIVE_STRING },
|
|
462
|
+
...obj.deviceCreationTags && { deviceCreationTags: import_smithy_client.SENSITIVE_STRING }
|
|
462
463
|
}), "CreateEnvironmentRequestFilterSensitiveLog");
|
|
463
464
|
var EnvironmentSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
464
465
|
...obj,
|
|
@@ -482,7 +483,8 @@ var EnvironmentFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
482
483
|
...obj,
|
|
483
484
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
484
485
|
...obj.desktopEndpoint && { desktopEndpoint: import_smithy_client.SENSITIVE_STRING },
|
|
485
|
-
...obj.tags && { tags: import_smithy_client.SENSITIVE_STRING }
|
|
486
|
+
...obj.tags && { tags: import_smithy_client.SENSITIVE_STRING },
|
|
487
|
+
...obj.deviceCreationTags && { deviceCreationTags: import_smithy_client.SENSITIVE_STRING }
|
|
486
488
|
}), "EnvironmentFilterSensitiveLog");
|
|
487
489
|
var GetDeviceResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
488
490
|
...obj,
|
|
@@ -531,7 +533,8 @@ var UpdateDeviceResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
531
533
|
var UpdateEnvironmentRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
532
534
|
...obj,
|
|
533
535
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
534
|
-
...obj.desktopEndpoint && { desktopEndpoint: import_smithy_client.SENSITIVE_STRING }
|
|
536
|
+
...obj.desktopEndpoint && { desktopEndpoint: import_smithy_client.SENSITIVE_STRING },
|
|
537
|
+
...obj.deviceCreationTags && { deviceCreationTags: import_smithy_client.SENSITIVE_STRING }
|
|
535
538
|
}), "UpdateEnvironmentRequestFilterSensitiveLog");
|
|
536
539
|
var UpdateEnvironmentResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
537
540
|
...obj,
|
|
@@ -557,6 +560,7 @@ var se_CreateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
557
560
|
desiredSoftwareSetId: [],
|
|
558
561
|
desktopArn: [],
|
|
559
562
|
desktopEndpoint: [],
|
|
563
|
+
deviceCreationTags: (_) => (0, import_smithy_client._json)(_),
|
|
560
564
|
kmsKeyArn: [],
|
|
561
565
|
maintenanceWindow: (_) => (0, import_smithy_client._json)(_),
|
|
562
566
|
name: [],
|
|
@@ -855,6 +859,7 @@ var se_UpdateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
855
859
|
desiredSoftwareSetId: [],
|
|
856
860
|
desktopArn: [],
|
|
857
861
|
desktopEndpoint: [],
|
|
862
|
+
deviceCreationTags: (_) => (0, import_smithy_client._json)(_),
|
|
858
863
|
maintenanceWindow: (_) => (0, import_smithy_client._json)(_),
|
|
859
864
|
name: [],
|
|
860
865
|
softwareSetUpdateMode: [],
|
|
@@ -1303,6 +1308,7 @@ var de_Environment = /* @__PURE__ */ __name((output, context) => {
|
|
|
1303
1308
|
desktopArn: import_smithy_client.expectString,
|
|
1304
1309
|
desktopEndpoint: import_smithy_client.expectString,
|
|
1305
1310
|
desktopType: import_smithy_client.expectString,
|
|
1311
|
+
deviceCreationTags: import_smithy_client._json,
|
|
1306
1312
|
id: import_smithy_client.expectString,
|
|
1307
1313
|
kmsKeyArn: import_smithy_client.expectString,
|
|
1308
1314
|
maintenanceWindow: import_smithy_client._json,
|
|
@@ -168,6 +168,7 @@ export const CreateEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
|
168
168
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
169
169
|
...(obj.desktopEndpoint && { desktopEndpoint: SENSITIVE_STRING }),
|
|
170
170
|
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
171
|
+
...(obj.deviceCreationTags && { deviceCreationTags: SENSITIVE_STRING }),
|
|
171
172
|
});
|
|
172
173
|
export const EnvironmentSummaryFilterSensitiveLog = (obj) => ({
|
|
173
174
|
...obj,
|
|
@@ -192,6 +193,7 @@ export const EnvironmentFilterSensitiveLog = (obj) => ({
|
|
|
192
193
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
193
194
|
...(obj.desktopEndpoint && { desktopEndpoint: SENSITIVE_STRING }),
|
|
194
195
|
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
196
|
+
...(obj.deviceCreationTags && { deviceCreationTags: SENSITIVE_STRING }),
|
|
195
197
|
});
|
|
196
198
|
export const GetDeviceResponseFilterSensitiveLog = (obj) => ({
|
|
197
199
|
...obj,
|
|
@@ -241,6 +243,7 @@ export const UpdateEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
|
241
243
|
...obj,
|
|
242
244
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
243
245
|
...(obj.desktopEndpoint && { desktopEndpoint: SENSITIVE_STRING }),
|
|
246
|
+
...(obj.deviceCreationTags && { deviceCreationTags: SENSITIVE_STRING }),
|
|
244
247
|
});
|
|
245
248
|
export const UpdateEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
246
249
|
...obj,
|
|
@@ -17,6 +17,7 @@ export const se_CreateEnvironmentCommand = async (input, context) => {
|
|
|
17
17
|
desiredSoftwareSetId: [],
|
|
18
18
|
desktopArn: [],
|
|
19
19
|
desktopEndpoint: [],
|
|
20
|
+
deviceCreationTags: (_) => _json(_),
|
|
20
21
|
kmsKeyArn: [],
|
|
21
22
|
maintenanceWindow: (_) => _json(_),
|
|
22
23
|
name: [],
|
|
@@ -307,6 +308,7 @@ export const se_UpdateEnvironmentCommand = async (input, context) => {
|
|
|
307
308
|
desiredSoftwareSetId: [],
|
|
308
309
|
desktopArn: [],
|
|
309
310
|
desktopEndpoint: [],
|
|
311
|
+
deviceCreationTags: (_) => _json(_),
|
|
310
312
|
maintenanceWindow: (_) => _json(_),
|
|
311
313
|
name: [],
|
|
312
314
|
softwareSetUpdateMode: [],
|
|
@@ -754,6 +756,7 @@ const de_Environment = (output, context) => {
|
|
|
754
756
|
desktopArn: __expectString,
|
|
755
757
|
desktopEndpoint: __expectString,
|
|
756
758
|
desktopType: __expectString,
|
|
759
|
+
deviceCreationTags: _json,
|
|
757
760
|
id: __expectString,
|
|
758
761
|
kmsKeyArn: __expectString,
|
|
759
762
|
maintenanceWindow: _json,
|
|
@@ -57,6 +57,9 @@ declare const CreateEnvironmentCommand_base: {
|
|
|
57
57
|
* tags: { // TagsMap
|
|
58
58
|
* "<keys>": "STRING_VALUE",
|
|
59
59
|
* },
|
|
60
|
+
* deviceCreationTags: { // DeviceCreationTagsMap
|
|
61
|
+
* "<keys>": "STRING_VALUE",
|
|
62
|
+
* },
|
|
60
63
|
* };
|
|
61
64
|
* const command = new CreateEnvironmentCommand(input);
|
|
62
65
|
* const response = await client.send(command);
|
|
@@ -53,6 +53,9 @@ declare const UpdateEnvironmentCommand_base: {
|
|
|
53
53
|
* },
|
|
54
54
|
* softwareSetUpdateMode: "USE_LATEST" || "USE_DESIRED",
|
|
55
55
|
* desiredSoftwareSetId: "STRING_VALUE",
|
|
56
|
+
* deviceCreationTags: { // DeviceCreationTagsMap
|
|
57
|
+
* "<keys>": "STRING_VALUE",
|
|
58
|
+
* },
|
|
56
59
|
* };
|
|
57
60
|
* const command = new UpdateEnvironmentCommand(input);
|
|
58
61
|
* const response = await client.send(command);
|
|
@@ -210,6 +210,11 @@ export interface CreateEnvironmentRequest {
|
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
212
|
tags?: Record<string, string>;
|
|
213
|
+
/**
|
|
214
|
+
* <p>A map of the key-value pairs of the tag or tags to assign to the newly created devices for this environment.</p>
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
deviceCreationTags?: Record<string, string>;
|
|
213
218
|
}
|
|
214
219
|
/**
|
|
215
220
|
* @public
|
|
@@ -919,6 +924,11 @@ export interface Environment {
|
|
|
919
924
|
* @public
|
|
920
925
|
*/
|
|
921
926
|
tags?: Record<string, string>;
|
|
927
|
+
/**
|
|
928
|
+
* <p>"The tag keys and optional values for the newly created devices for this environment."</p>
|
|
929
|
+
* @public
|
|
930
|
+
*/
|
|
931
|
+
deviceCreationTags?: Record<string, string>;
|
|
922
932
|
}
|
|
923
933
|
/**
|
|
924
934
|
* @public
|
|
@@ -1357,6 +1367,11 @@ export interface UpdateEnvironmentRequest {
|
|
|
1357
1367
|
* @public
|
|
1358
1368
|
*/
|
|
1359
1369
|
desiredSoftwareSetId?: string;
|
|
1370
|
+
/**
|
|
1371
|
+
* <p>A map of the key-value pairs of the tag or tags to assign to the newly created devices for this environment.</p>
|
|
1372
|
+
* @public
|
|
1373
|
+
*/
|
|
1374
|
+
deviceCreationTags?: Record<string, string>;
|
|
1360
1375
|
}
|
|
1361
1376
|
/**
|
|
1362
1377
|
* @public
|
|
@@ -67,6 +67,7 @@ export interface CreateEnvironmentRequest {
|
|
|
67
67
|
kmsKeyArn?: string;
|
|
68
68
|
clientToken?: string;
|
|
69
69
|
tags?: Record<string, string>;
|
|
70
|
+
deviceCreationTags?: Record<string, string>;
|
|
70
71
|
}
|
|
71
72
|
export declare const DesktopType: {
|
|
72
73
|
readonly APPSTREAM: "appstream";
|
|
@@ -262,6 +263,7 @@ export interface Environment {
|
|
|
262
263
|
arn?: string;
|
|
263
264
|
kmsKeyArn?: string;
|
|
264
265
|
tags?: Record<string, string>;
|
|
266
|
+
deviceCreationTags?: Record<string, string>;
|
|
265
267
|
}
|
|
266
268
|
export interface GetDeviceRequest {
|
|
267
269
|
id: string | undefined;
|
|
@@ -367,6 +369,7 @@ export interface UpdateEnvironmentRequest {
|
|
|
367
369
|
maintenanceWindow?: MaintenanceWindow;
|
|
368
370
|
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
369
371
|
desiredSoftwareSetId?: string;
|
|
372
|
+
deviceCreationTags?: Record<string, string>;
|
|
370
373
|
}
|
|
371
374
|
export interface UpdateEnvironmentResponse {
|
|
372
375
|
environment?: EnvironmentSummary;
|
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.
|
|
4
|
+
"version": "3.604.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,10 +20,10 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.600.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.600.0",
|
|
25
25
|
"@aws-sdk/core": "3.598.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.600.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.598.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.598.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.598.0",
|