@aws-sdk/client-appstream 3.118.0 → 3.121.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/CHANGELOG.md +30 -0
- package/dist-cjs/models/models_0.js +16 -4
- package/dist-cjs/protocols/Aws_json1_1.js +347 -261
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/protocols/Aws_json1_1.js +345 -263
- package/dist-types/AppStream.d.ts +1 -1
- package/dist-types/commands/UpdateFleetCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +32 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -0
- package/package.json +6 -6
|
@@ -522,7 +522,7 @@ export declare class AppStream extends AppStreamClient {
|
|
|
522
522
|
* <p>Elastic fleet type</p>
|
|
523
523
|
* <p>You can update the <code>DisplayName</code>,
|
|
524
524
|
* <code>IdleDisconnectTimeoutInSeconds</code>,
|
|
525
|
-
*
|
|
525
|
+
* <code>DisconnectTimeoutInSeconds</code>, <code>MaxConcurrentSessions</code>, <code>SessionScriptS3Location</code>
|
|
526
526
|
* and <code>UsbDeviceFilterStrings</code> attributes.</p>
|
|
527
527
|
* </li>
|
|
528
528
|
* </ul>
|
|
@@ -24,7 +24,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
|
|
|
24
24
|
* <p>Elastic fleet type</p>
|
|
25
25
|
* <p>You can update the <code>DisplayName</code>,
|
|
26
26
|
* <code>IdleDisconnectTimeoutInSeconds</code>,
|
|
27
|
-
*
|
|
27
|
+
* <code>DisconnectTimeoutInSeconds</code>, <code>MaxConcurrentSessions</code>, <code>SessionScriptS3Location</code>
|
|
28
28
|
* and <code>UsbDeviceFilterStrings</code> attributes.</p>
|
|
29
29
|
* </li>
|
|
30
30
|
* </ul>
|
|
@@ -2161,6 +2161,25 @@ export declare namespace StorageConnector {
|
|
|
2161
2161
|
*/
|
|
2162
2162
|
const filterSensitiveLog: (obj: StorageConnector) => any;
|
|
2163
2163
|
}
|
|
2164
|
+
export declare enum PreferredProtocol {
|
|
2165
|
+
TCP = "TCP",
|
|
2166
|
+
UDP = "UDP"
|
|
2167
|
+
}
|
|
2168
|
+
/**
|
|
2169
|
+
* <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
|
|
2170
|
+
*/
|
|
2171
|
+
export interface StreamingExperienceSettings {
|
|
2172
|
+
/**
|
|
2173
|
+
* <p>The preferred protocol that you want to use while streaming your application.</p>
|
|
2174
|
+
*/
|
|
2175
|
+
PreferredProtocol?: PreferredProtocol | string;
|
|
2176
|
+
}
|
|
2177
|
+
export declare namespace StreamingExperienceSettings {
|
|
2178
|
+
/**
|
|
2179
|
+
* @internal
|
|
2180
|
+
*/
|
|
2181
|
+
const filterSensitiveLog: (obj: StreamingExperienceSettings) => any;
|
|
2182
|
+
}
|
|
2164
2183
|
export declare enum Permission {
|
|
2165
2184
|
DISABLED = "DISABLED",
|
|
2166
2185
|
ENABLED = "ENABLED"
|
|
@@ -2236,6 +2255,10 @@ export interface CreateStackRequest {
|
|
|
2236
2255
|
* <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. </p>
|
|
2237
2256
|
*/
|
|
2238
2257
|
EmbedHostDomains?: string[];
|
|
2258
|
+
/**
|
|
2259
|
+
* <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
|
|
2260
|
+
*/
|
|
2261
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
2239
2262
|
}
|
|
2240
2263
|
export declare namespace CreateStackRequest {
|
|
2241
2264
|
/**
|
|
@@ -2322,6 +2345,10 @@ export interface Stack {
|
|
|
2322
2345
|
* <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.</p>
|
|
2323
2346
|
*/
|
|
2324
2347
|
EmbedHostDomains?: string[];
|
|
2348
|
+
/**
|
|
2349
|
+
* <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
|
|
2350
|
+
*/
|
|
2351
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
2325
2352
|
}
|
|
2326
2353
|
export declare namespace Stack {
|
|
2327
2354
|
/**
|
|
@@ -4517,6 +4544,7 @@ export declare enum StackAttribute {
|
|
|
4517
4544
|
STORAGE_CONNECTOR_GOOGLE_DRIVE = "STORAGE_CONNECTOR_GOOGLE_DRIVE",
|
|
4518
4545
|
STORAGE_CONNECTOR_HOMEFOLDERS = "STORAGE_CONNECTOR_HOMEFOLDERS",
|
|
4519
4546
|
STORAGE_CONNECTOR_ONE_DRIVE = "STORAGE_CONNECTOR_ONE_DRIVE",
|
|
4547
|
+
STREAMING_EXPERIENCE_SETTINGS = "STREAMING_EXPERIENCE_SETTINGS",
|
|
4520
4548
|
THEME_NAME = "THEME_NAME",
|
|
4521
4549
|
USER_SETTINGS = "USER_SETTINGS"
|
|
4522
4550
|
}
|
|
@@ -4571,6 +4599,10 @@ export interface UpdateStackRequest {
|
|
|
4571
4599
|
* <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. </p>
|
|
4572
4600
|
*/
|
|
4573
4601
|
EmbedHostDomains?: string[];
|
|
4602
|
+
/**
|
|
4603
|
+
* <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
|
|
4604
|
+
*/
|
|
4605
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
4574
4606
|
}
|
|
4575
4607
|
export declare namespace UpdateStackRequest {
|
|
4576
4608
|
/**
|
|
@@ -965,6 +965,19 @@ export declare namespace StorageConnector {
|
|
|
965
965
|
|
|
966
966
|
const filterSensitiveLog: (obj: StorageConnector) => any;
|
|
967
967
|
}
|
|
968
|
+
export declare enum PreferredProtocol {
|
|
969
|
+
TCP = "TCP",
|
|
970
|
+
UDP = "UDP"
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
export interface StreamingExperienceSettings {
|
|
974
|
+
|
|
975
|
+
PreferredProtocol?: PreferredProtocol | string;
|
|
976
|
+
}
|
|
977
|
+
export declare namespace StreamingExperienceSettings {
|
|
978
|
+
|
|
979
|
+
const filterSensitiveLog: (obj: StreamingExperienceSettings) => any;
|
|
980
|
+
}
|
|
968
981
|
export declare enum Permission {
|
|
969
982
|
DISABLED = "DISABLED",
|
|
970
983
|
ENABLED = "ENABLED"
|
|
@@ -1003,6 +1016,8 @@ export interface CreateStackRequest {
|
|
|
1003
1016
|
AccessEndpoints?: AccessEndpoint[];
|
|
1004
1017
|
|
|
1005
1018
|
EmbedHostDomains?: string[];
|
|
1019
|
+
|
|
1020
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
1006
1021
|
}
|
|
1007
1022
|
export declare namespace CreateStackRequest {
|
|
1008
1023
|
|
|
@@ -1051,6 +1066,8 @@ export interface Stack {
|
|
|
1051
1066
|
AccessEndpoints?: AccessEndpoint[];
|
|
1052
1067
|
|
|
1053
1068
|
EmbedHostDomains?: string[];
|
|
1069
|
+
|
|
1070
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
1054
1071
|
}
|
|
1055
1072
|
export declare namespace Stack {
|
|
1056
1073
|
|
|
@@ -2290,6 +2307,7 @@ export declare enum StackAttribute {
|
|
|
2290
2307
|
STORAGE_CONNECTOR_GOOGLE_DRIVE = "STORAGE_CONNECTOR_GOOGLE_DRIVE",
|
|
2291
2308
|
STORAGE_CONNECTOR_HOMEFOLDERS = "STORAGE_CONNECTOR_HOMEFOLDERS",
|
|
2292
2309
|
STORAGE_CONNECTOR_ONE_DRIVE = "STORAGE_CONNECTOR_ONE_DRIVE",
|
|
2310
|
+
STREAMING_EXPERIENCE_SETTINGS = "STREAMING_EXPERIENCE_SETTINGS",
|
|
2293
2311
|
THEME_NAME = "THEME_NAME",
|
|
2294
2312
|
USER_SETTINGS = "USER_SETTINGS"
|
|
2295
2313
|
}
|
|
@@ -2318,6 +2336,8 @@ export interface UpdateStackRequest {
|
|
|
2318
2336
|
AccessEndpoints?: AccessEndpoint[];
|
|
2319
2337
|
|
|
2320
2338
|
EmbedHostDomains?: string[];
|
|
2339
|
+
|
|
2340
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
2321
2341
|
}
|
|
2322
2342
|
export declare namespace UpdateStackRequest {
|
|
2323
2343
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appstream",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.121.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.121.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.121.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.110.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.118.1",
|
|
32
32
|
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
33
|
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
34
|
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
35
|
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.118.1",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
39
|
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
40
|
"@aws-sdk/types": "3.110.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.118.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
|
-
"@aws-sdk/util-waiter": "3.
|
|
52
|
+
"@aws-sdk/util-waiter": "3.118.1",
|
|
53
53
|
"tslib": "^2.3.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|