@aws-sdk/client-appstream 3.100.0 → 3.110.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 CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-appstream
9
+
10
+
11
+
12
+
13
+
14
+ # [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-appstream
17
+
18
+
19
+
20
+
21
+
22
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
23
+
24
+
25
+ ### Features
26
+
27
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-appstream
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class AppStreamClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var AppStreamClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -154,9 +154,7 @@ export interface Application {
154
154
  /**
155
155
  * <p>Additional attributes that describe the application.</p>
156
156
  */
157
- Metadata?: {
158
- [key: string]: string;
159
- };
157
+ Metadata?: Record<string, string>;
160
158
  /**
161
159
  * <p>The working directory for the application.</p>
162
160
  */
@@ -714,9 +712,7 @@ export interface CreateAppBlockRequest {
714
712
  /**
715
713
  * <p>The tags assigned to the app block.</p>
716
714
  */
717
- Tags?: {
718
- [key: string]: string;
719
- };
715
+ Tags?: Record<string, string>;
720
716
  }
721
717
  export declare namespace CreateAppBlockRequest {
722
718
  /**
@@ -780,9 +776,7 @@ export interface CreateApplicationRequest {
780
776
  /**
781
777
  * <p>The tags assigned to the application.</p>
782
778
  */
783
- Tags?: {
784
- [key: string]: string;
785
- };
779
+ Tags?: Record<string, string>;
786
780
  }
787
781
  export declare namespace CreateApplicationRequest {
788
782
  /**
@@ -1280,9 +1274,7 @@ export interface CreateFleetRequest {
1280
1274
  *
1281
1275
  * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
1282
1276
  */
1283
- Tags?: {
1284
- [key: string]: string;
1285
- };
1277
+ Tags?: Record<string, string>;
1286
1278
  /**
1287
1279
  * <p>The amount of time that users can be idle (inactive) before they are disconnected
1288
1280
  * from their streaming session and the <code>DisconnectTimeoutInSeconds</code> time
@@ -1820,9 +1812,7 @@ export interface CreateImageBuilderRequest {
1820
1812
  *
1821
1813
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
1822
1814
  */
1823
- Tags?: {
1824
- [key: string]: string;
1825
- };
1815
+ Tags?: Record<string, string>;
1826
1816
  /**
1827
1817
  * <p>The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the image builder only through the specified endpoints.</p>
1828
1818
  */
@@ -2237,9 +2227,7 @@ export interface CreateStackRequest {
2237
2227
  *
2238
2228
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
2239
2229
  */
2240
- Tags?: {
2241
- [key: string]: string;
2242
- };
2230
+ Tags?: Record<string, string>;
2243
2231
  /**
2244
2232
  * <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.</p>
2245
2233
  */
@@ -2427,9 +2415,7 @@ export interface CreateUpdatedImageRequest {
2427
2415
  * <p>If you do not specify a value, the value is set to an empty string.</p>
2428
2416
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
2429
2417
  */
2430
- newImageTags?: {
2431
- [key: string]: string;
2432
- };
2418
+ newImageTags?: Record<string, string>;
2433
2419
  /**
2434
2420
  * <p>Indicates whether to display the status of image update availability before AppStream 2.0 initiates the process of creating a new updated image. If this value is set to <code>true</code>, AppStream 2.0 displays whether image updates are available. If this value is set to <code>false</code>, AppStream 2.0 initiates the process of creating a new updated image without displaying whether image updates are available.</p>
2435
2421
  */
@@ -3976,9 +3962,7 @@ export interface ListTagsForResourceResponse {
3976
3962
  /**
3977
3963
  * <p>The information about the tags.</p>
3978
3964
  */
3979
- Tags?: {
3980
- [key: string]: string;
3981
- };
3965
+ Tags?: Record<string, string>;
3982
3966
  }
3983
3967
  export declare namespace ListTagsForResourceResponse {
3984
3968
  /**
@@ -4091,9 +4075,7 @@ export interface TagResourceRequest {
4091
4075
  * <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
4092
4076
  * <p>_ . : / = + \ - @</p>
4093
4077
  */
4094
- Tags: {
4095
- [key: string]: string;
4096
- } | undefined;
4078
+ Tags: Record<string, string> | undefined;
4097
4079
  }
4098
4080
  export declare namespace TagResourceRequest {
4099
4081
  /**
@@ -86,9 +86,7 @@ export interface Application {
86
86
 
87
87
  Enabled?: boolean;
88
88
 
89
- Metadata?: {
90
- [key: string]: string;
91
- };
89
+ Metadata?: Record<string, string>;
92
90
 
93
91
  WorkingDirectory?: string;
94
92
 
@@ -424,9 +422,7 @@ export interface CreateAppBlockRequest {
424
422
 
425
423
  SetupScriptDetails: ScriptDetails | undefined;
426
424
 
427
- Tags?: {
428
- [key: string]: string;
429
- };
425
+ Tags?: Record<string, string>;
430
426
  }
431
427
  export declare namespace CreateAppBlockRequest {
432
428
 
@@ -462,9 +458,7 @@ export interface CreateApplicationRequest {
462
458
 
463
459
  AppBlockArn: string | undefined;
464
460
 
465
- Tags?: {
466
- [key: string]: string;
467
- };
461
+ Tags?: Record<string, string>;
468
462
  }
469
463
  export declare namespace CreateApplicationRequest {
470
464
 
@@ -657,9 +651,7 @@ export interface CreateFleetRequest {
657
651
 
658
652
  DomainJoinInfo?: DomainJoinInfo;
659
653
 
660
- Tags?: {
661
- [key: string]: string;
662
- };
654
+ Tags?: Record<string, string>;
663
655
 
664
656
  IdleDisconnectTimeoutInSeconds?: number;
665
657
 
@@ -824,9 +816,7 @@ export interface CreateImageBuilderRequest {
824
816
 
825
817
  AppstreamAgentVersion?: string;
826
818
 
827
- Tags?: {
828
- [key: string]: string;
829
- };
819
+ Tags?: Record<string, string>;
830
820
 
831
821
  AccessEndpoints?: AccessEndpoint[];
832
822
  }
@@ -1008,9 +998,7 @@ export interface CreateStackRequest {
1008
998
 
1009
999
  ApplicationSettings?: ApplicationSettings;
1010
1000
 
1011
- Tags?: {
1012
- [key: string]: string;
1013
- };
1001
+ Tags?: Record<string, string>;
1014
1002
 
1015
1003
  AccessEndpoints?: AccessEndpoint[];
1016
1004
 
@@ -1114,9 +1102,7 @@ export interface CreateUpdatedImageRequest {
1114
1102
 
1115
1103
  newImageDisplayName?: string;
1116
1104
 
1117
- newImageTags?: {
1118
- [key: string]: string;
1119
- };
1105
+ newImageTags?: Record<string, string>;
1120
1106
 
1121
1107
  dryRun?: boolean;
1122
1108
  }
@@ -2044,9 +2030,7 @@ export declare namespace ListTagsForResourceRequest {
2044
2030
  }
2045
2031
  export interface ListTagsForResourceResponse {
2046
2032
 
2047
- Tags?: {
2048
- [key: string]: string;
2049
- };
2033
+ Tags?: Record<string, string>;
2050
2034
  }
2051
2035
  export declare namespace ListTagsForResourceResponse {
2052
2036
 
@@ -2118,9 +2102,7 @@ export interface TagResourceRequest {
2118
2102
 
2119
2103
  ResourceArn: string | undefined;
2120
2104
 
2121
- Tags: {
2122
- [key: string]: string;
2123
- } | undefined;
2105
+ Tags: Record<string, string> | undefined;
2124
2106
  }
2125
2107
  export declare namespace TagResourceRequest {
2126
2108
 
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.100.0",
4
+ "version": "3.110.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,37 +18,38 @@
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.100.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.100.0",
24
- "@aws-sdk/fetch-http-handler": "3.78.0",
25
- "@aws-sdk/hash-node": "3.78.0",
26
- "@aws-sdk/invalid-dependency": "3.78.0",
27
- "@aws-sdk/middleware-content-length": "3.78.0",
28
- "@aws-sdk/middleware-host-header": "3.78.0",
29
- "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-retry": "3.80.0",
31
- "@aws-sdk/middleware-serde": "3.78.0",
32
- "@aws-sdk/middleware-signing": "3.78.0",
33
- "@aws-sdk/middleware-stack": "3.78.0",
34
- "@aws-sdk/middleware-user-agent": "3.78.0",
35
- "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.94.0",
37
- "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.99.0",
39
- "@aws-sdk/types": "3.78.0",
40
- "@aws-sdk/url-parser": "3.78.0",
41
- "@aws-sdk/util-base64-browser": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.110.0",
22
+ "@aws-sdk/config-resolver": "3.110.0",
23
+ "@aws-sdk/credential-provider-node": "3.110.0",
24
+ "@aws-sdk/fetch-http-handler": "3.110.0",
25
+ "@aws-sdk/hash-node": "3.110.0",
26
+ "@aws-sdk/invalid-dependency": "3.110.0",
27
+ "@aws-sdk/middleware-content-length": "3.110.0",
28
+ "@aws-sdk/middleware-host-header": "3.110.0",
29
+ "@aws-sdk/middleware-logger": "3.110.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
+ "@aws-sdk/middleware-retry": "3.110.0",
32
+ "@aws-sdk/middleware-serde": "3.110.0",
33
+ "@aws-sdk/middleware-signing": "3.110.0",
34
+ "@aws-sdk/middleware-stack": "3.110.0",
35
+ "@aws-sdk/middleware-user-agent": "3.110.0",
36
+ "@aws-sdk/node-config-provider": "3.110.0",
37
+ "@aws-sdk/node-http-handler": "3.110.0",
38
+ "@aws-sdk/protocol-http": "3.110.0",
39
+ "@aws-sdk/smithy-client": "3.110.0",
40
+ "@aws-sdk/types": "3.110.0",
41
+ "@aws-sdk/url-parser": "3.110.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.0",
42
43
  "@aws-sdk/util-base64-node": "3.55.0",
43
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
45
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.99.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
- "@aws-sdk/util-user-agent-browser": "3.78.0",
48
- "@aws-sdk/util-user-agent-node": "3.80.0",
49
- "@aws-sdk/util-utf8-browser": "3.55.0",
50
- "@aws-sdk/util-utf8-node": "3.55.0",
51
- "@aws-sdk/util-waiter": "3.78.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.110.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.110.0",
49
+ "@aws-sdk/util-user-agent-node": "3.110.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
52
+ "@aws-sdk/util-waiter": "3.110.0",
52
53
  "tslib": "^2.3.1"
53
54
  },
54
55
  "devDependencies": {