@aws-sdk/client-appstream 3.1030.0 → 3.1032.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.
|
@@ -1820,8 +1820,8 @@ exports.UpdateImagePermissionsResult$ = [3, n0, _UIPRp,
|
|
|
1820
1820
|
];
|
|
1821
1821
|
exports.UpdateStackRequest$ = [3, n0, _USR,
|
|
1822
1822
|
0,
|
|
1823
|
-
[_N, _DN, _D, _SC, _DSC, _RURL, _FURL, _ATD, _US, _AS, _AEc, _EHD, _SES],
|
|
1824
|
-
[0, 0, 0, () => StorageConnectorList, 2, 0, 0, 64 | 0, () => UserSettingList, () => exports.ApplicationSettings$, () => AccessEndpointList, 64 | 0, () => exports.StreamingExperienceSettings$], 1
|
|
1823
|
+
[_N, _DN, _D, _SC, _DSC, _RURL, _FURL, _ATD, _US, _AS, _AEc, _EHD, _SES, _CR],
|
|
1824
|
+
[0, 0, 0, () => StorageConnectorList, 2, 0, 0, 64 | 0, () => UserSettingList, () => exports.ApplicationSettings$, () => AccessEndpointList, 64 | 0, () => exports.StreamingExperienceSettings$, () => exports.ContentRedirection$], 1
|
|
1825
1825
|
];
|
|
1826
1826
|
exports.UpdateStackResult$ = [3, n0, _USRp,
|
|
1827
1827
|
0,
|
|
@@ -1811,8 +1811,8 @@ export var UpdateImagePermissionsResult$ = [3, n0, _UIPRp,
|
|
|
1811
1811
|
];
|
|
1812
1812
|
export var UpdateStackRequest$ = [3, n0, _USR,
|
|
1813
1813
|
0,
|
|
1814
|
-
[_N, _DN, _D, _SC, _DSC, _RURL, _FURL, _ATD, _US, _AS, _AEc, _EHD, _SES],
|
|
1815
|
-
[0, 0, 0, () => StorageConnectorList, 2, 0, 0, 64 | 0, () => UserSettingList, () => ApplicationSettings$, () => AccessEndpointList, 64 | 0, () => StreamingExperienceSettings$], 1
|
|
1814
|
+
[_N, _DN, _D, _SC, _DSC, _RURL, _FURL, _ATD, _US, _AS, _AEc, _EHD, _SES, _CR],
|
|
1815
|
+
[0, 0, 0, () => StorageConnectorList, 2, 0, 0, 64 | 0, () => UserSettingList, () => ApplicationSettings$, () => AccessEndpointList, 64 | 0, () => StreamingExperienceSettings$, () => ContentRedirection$], 1
|
|
1816
1816
|
];
|
|
1817
1817
|
export var UpdateStackResult$ = [3, n0, _USRp,
|
|
1818
1818
|
0,
|
|
@@ -81,6 +81,17 @@ declare const UpdateStackCommand_base: {
|
|
|
81
81
|
* StreamingExperienceSettings: { // StreamingExperienceSettings
|
|
82
82
|
* PreferredProtocol: "TCP" || "UDP",
|
|
83
83
|
* },
|
|
84
|
+
* ContentRedirection: { // ContentRedirection
|
|
85
|
+
* HostToClient: { // UrlRedirectionConfig
|
|
86
|
+
* Enabled: true || false, // required
|
|
87
|
+
* AllowedUrls: [ // UrlPatternList
|
|
88
|
+
* "STRING_VALUE",
|
|
89
|
+
* ],
|
|
90
|
+
* DeniedUrls: [
|
|
91
|
+
* "STRING_VALUE",
|
|
92
|
+
* ],
|
|
93
|
+
* },
|
|
94
|
+
* },
|
|
84
95
|
* };
|
|
85
96
|
* const command = new UpdateStackCommand(input);
|
|
86
97
|
* const response = await client.send(command);
|
|
@@ -6293,6 +6293,11 @@ export interface UpdateStackRequest {
|
|
|
6293
6293
|
* @public
|
|
6294
6294
|
*/
|
|
6295
6295
|
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
6296
|
+
/**
|
|
6297
|
+
* <p>Configuration for bidirectional URL redirection between the streaming session and the local client. Use HostToClient to redirect URLs from the remote desktop to the local browser.</p>
|
|
6298
|
+
* @public
|
|
6299
|
+
*/
|
|
6300
|
+
ContentRedirection?: ContentRedirection | undefined;
|
|
6296
6301
|
}
|
|
6297
6302
|
/**
|
|
6298
6303
|
* @public
|
|
@@ -1190,6 +1190,7 @@ export interface UpdateStackRequest {
|
|
|
1190
1190
|
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
1191
1191
|
EmbedHostDomains?: string[] | undefined;
|
|
1192
1192
|
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
1193
|
+
ContentRedirection?: ContentRedirection | undefined;
|
|
1193
1194
|
}
|
|
1194
1195
|
export interface UpdateStackResult {
|
|
1195
1196
|
Stack?: Stack | undefined;
|
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.1032.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-appstream",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
-
"@smithy/types": "^4.14.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "^3.974.1",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.32",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.31",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.12",
|
|
31
|
+
"@aws-sdk/types": "^3.973.8",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.7",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.17",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.16",
|
|
36
|
+
"@smithy/core": "^3.23.15",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.17",
|
|
38
|
+
"@smithy/hash-node": "^4.2.14",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.30",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.3",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.18",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.14",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.14",
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.3",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.14",
|
|
48
|
+
"@smithy/smithy-client": "^4.12.11",
|
|
49
|
+
"@smithy/types": "^4.14.1",
|
|
50
|
+
"@smithy/url-parser": "^4.2.14",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.47",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.52",
|
|
56
|
+
"@smithy/util-endpoints": "^3.4.1",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
+
"@smithy/util-retry": "^4.3.2",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.2.
|
|
60
|
+
"@smithy/util-waiter": "^4.2.16",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|