@aws-sdk/client-appstream 3.45.0 → 3.46.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist-cjs/AppStream.js +105 -0
  3. package/dist-cjs/commands/AssociateApplicationToEntitlementCommand.js +36 -0
  4. package/dist-cjs/commands/CreateEntitlementCommand.js +36 -0
  5. package/dist-cjs/commands/DeleteEntitlementCommand.js +36 -0
  6. package/dist-cjs/commands/DescribeEntitlementsCommand.js +36 -0
  7. package/dist-cjs/commands/DisassociateApplicationFromEntitlementCommand.js +36 -0
  8. package/dist-cjs/commands/ListEntitledApplicationsCommand.js +36 -0
  9. package/dist-cjs/commands/UpdateEntitlementCommand.js +36 -0
  10. package/dist-cjs/commands/index.js +7 -0
  11. package/dist-cjs/models/models_0.js +124 -4
  12. package/dist-cjs/protocols/Aws_json1_1.js +779 -18
  13. package/dist-cjs/runtimeConfig.js +0 -2
  14. package/dist-es/AppStream.js +105 -0
  15. package/dist-es/commands/AssociateApplicationToEntitlementCommand.js +39 -0
  16. package/dist-es/commands/CreateEntitlementCommand.js +39 -0
  17. package/dist-es/commands/DeleteEntitlementCommand.js +39 -0
  18. package/dist-es/commands/DescribeEntitlementsCommand.js +39 -0
  19. package/dist-es/commands/DisassociateApplicationFromEntitlementCommand.js +39 -0
  20. package/dist-es/commands/ListEntitledApplicationsCommand.js +39 -0
  21. package/dist-es/commands/UpdateEntitlementCommand.js +39 -0
  22. package/dist-es/commands/index.js +7 -0
  23. package/dist-es/models/models_0.js +81 -0
  24. package/dist-es/protocols/Aws_json1_1.js +822 -31
  25. package/dist-es/runtimeConfig.js +0 -2
  26. package/dist-types/AppStream.d.ts +54 -0
  27. package/dist-types/AppStreamClient.d.ts +9 -2
  28. package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +35 -0
  29. package/dist-types/commands/CreateEntitlementCommand.d.ts +40 -0
  30. package/dist-types/commands/DeleteEntitlementCommand.d.ts +35 -0
  31. package/dist-types/commands/DescribeEntitlementsCommand.d.ts +35 -0
  32. package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +35 -0
  33. package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +35 -0
  34. package/dist-types/commands/UpdateEntitlementCommand.d.ts +35 -0
  35. package/dist-types/commands/index.d.ts +7 -0
  36. package/dist-types/models/models_0.d.ts +387 -0
  37. package/dist-types/protocols/Aws_json1_1.d.ts +21 -0
  38. package/dist-types/ts3.4/AppStream.d.ts +35 -0
  39. package/dist-types/ts3.4/AppStreamClient.d.ts +9 -2
  40. package/dist-types/ts3.4/commands/AssociateApplicationToEntitlementCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/CreateEntitlementCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/DeleteEntitlementCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/DescribeEntitlementsCommand.d.ts +17 -0
  44. package/dist-types/ts3.4/commands/DisassociateApplicationFromEntitlementCommand.d.ts +17 -0
  45. package/dist-types/ts3.4/commands/ListEntitledApplicationsCommand.d.ts +17 -0
  46. package/dist-types/ts3.4/commands/UpdateEntitlementCommand.d.ts +17 -0
  47. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +215 -0
  49. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +21 -0
  50. package/package.json +37 -44
@@ -148,6 +148,10 @@ export declare namespace ApplicationSettingsResponse {
148
148
 
149
149
  const filterSensitiveLog: (obj: ApplicationSettingsResponse) => any;
150
150
  }
151
+ export declare enum AppVisibility {
152
+ ALL = "ALL",
153
+ ASSOCIATED = "ASSOCIATED"
154
+ }
151
155
  export interface AssociateApplicationFleetRequest {
152
156
 
153
157
  FleetName: string | undefined;
@@ -221,6 +225,35 @@ export declare namespace ResourceNotFoundException {
221
225
 
222
226
  const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
223
227
  }
228
+ export interface AssociateApplicationToEntitlementRequest {
229
+
230
+ StackName: string | undefined;
231
+
232
+ EntitlementName: string | undefined;
233
+
234
+ ApplicationIdentifier: string | undefined;
235
+ }
236
+ export declare namespace AssociateApplicationToEntitlementRequest {
237
+
238
+ const filterSensitiveLog: (obj: AssociateApplicationToEntitlementRequest) => any;
239
+ }
240
+ export interface AssociateApplicationToEntitlementResult {
241
+ }
242
+ export declare namespace AssociateApplicationToEntitlementResult {
243
+
244
+ const filterSensitiveLog: (obj: AssociateApplicationToEntitlementResult) => any;
245
+ }
246
+
247
+ export interface EntitlementNotFoundException extends __SmithyException, $MetadataBearer {
248
+ name: "EntitlementNotFoundException";
249
+ $fault: "client";
250
+
251
+ Message?: string;
252
+ }
253
+ export declare namespace EntitlementNotFoundException {
254
+
255
+ const filterSensitiveLog: (obj: EntitlementNotFoundException) => any;
256
+ }
224
257
  export interface AssociateFleetRequest {
225
258
 
226
259
  FleetName: string | undefined;
@@ -522,6 +555,73 @@ export declare namespace InvalidRoleException {
522
555
  const filterSensitiveLog: (obj: InvalidRoleException) => any;
523
556
  }
524
557
 
558
+ export interface EntitlementAttribute {
559
+
560
+ Name: string | undefined;
561
+
562
+ Value: string | undefined;
563
+ }
564
+ export declare namespace EntitlementAttribute {
565
+
566
+ const filterSensitiveLog: (obj: EntitlementAttribute) => any;
567
+ }
568
+ export interface CreateEntitlementRequest {
569
+
570
+ Name: string | undefined;
571
+
572
+ StackName: string | undefined;
573
+
574
+ Description?: string;
575
+
576
+ AppVisibility: AppVisibility | string | undefined;
577
+
578
+ Attributes: EntitlementAttribute[] | undefined;
579
+ }
580
+ export declare namespace CreateEntitlementRequest {
581
+
582
+ const filterSensitiveLog: (obj: CreateEntitlementRequest) => any;
583
+ }
584
+
585
+ export interface Entitlement {
586
+
587
+ Name: string | undefined;
588
+
589
+ StackName: string | undefined;
590
+
591
+ Description?: string;
592
+
593
+ AppVisibility: AppVisibility | string | undefined;
594
+
595
+ Attributes: EntitlementAttribute[] | undefined;
596
+
597
+ CreatedTime?: Date;
598
+
599
+ LastModifiedTime?: Date;
600
+ }
601
+ export declare namespace Entitlement {
602
+
603
+ const filterSensitiveLog: (obj: Entitlement) => any;
604
+ }
605
+ export interface CreateEntitlementResult {
606
+
607
+ Entitlement?: Entitlement;
608
+ }
609
+ export declare namespace CreateEntitlementResult {
610
+
611
+ const filterSensitiveLog: (obj: CreateEntitlementResult) => any;
612
+ }
613
+
614
+ export interface EntitlementAlreadyExistsException extends __SmithyException, $MetadataBearer {
615
+ name: "EntitlementAlreadyExistsException";
616
+ $fault: "client";
617
+
618
+ Message?: string;
619
+ }
620
+ export declare namespace EntitlementAlreadyExistsException {
621
+
622
+ const filterSensitiveLog: (obj: EntitlementAlreadyExistsException) => any;
623
+ }
624
+
525
625
  export interface DomainJoinInfo {
526
626
 
527
627
  DirectoryName?: string;
@@ -1235,6 +1335,22 @@ export declare namespace DeleteDirectoryConfigResult {
1235
1335
 
1236
1336
  const filterSensitiveLog: (obj: DeleteDirectoryConfigResult) => any;
1237
1337
  }
1338
+ export interface DeleteEntitlementRequest {
1339
+
1340
+ Name: string | undefined;
1341
+
1342
+ StackName: string | undefined;
1343
+ }
1344
+ export declare namespace DeleteEntitlementRequest {
1345
+
1346
+ const filterSensitiveLog: (obj: DeleteEntitlementRequest) => any;
1347
+ }
1348
+ export interface DeleteEntitlementResult {
1349
+ }
1350
+ export declare namespace DeleteEntitlementResult {
1351
+
1352
+ const filterSensitiveLog: (obj: DeleteEntitlementResult) => any;
1353
+ }
1238
1354
  export interface DeleteFleetRequest {
1239
1355
 
1240
1356
  Name: string | undefined;
@@ -1429,6 +1545,30 @@ export declare namespace DescribeDirectoryConfigsResult {
1429
1545
 
1430
1546
  const filterSensitiveLog: (obj: DescribeDirectoryConfigsResult) => any;
1431
1547
  }
1548
+ export interface DescribeEntitlementsRequest {
1549
+
1550
+ Name?: string;
1551
+
1552
+ StackName: string | undefined;
1553
+
1554
+ NextToken?: string;
1555
+
1556
+ MaxResults?: number;
1557
+ }
1558
+ export declare namespace DescribeEntitlementsRequest {
1559
+
1560
+ const filterSensitiveLog: (obj: DescribeEntitlementsRequest) => any;
1561
+ }
1562
+ export interface DescribeEntitlementsResult {
1563
+
1564
+ Entitlements?: Entitlement[];
1565
+
1566
+ NextToken?: string;
1567
+ }
1568
+ export declare namespace DescribeEntitlementsResult {
1569
+
1570
+ const filterSensitiveLog: (obj: DescribeEntitlementsResult) => any;
1571
+ }
1432
1572
  export interface DescribeFleetsRequest {
1433
1573
 
1434
1574
  Names?: string[];
@@ -1772,6 +1912,24 @@ export declare namespace DisassociateApplicationFleetResult {
1772
1912
 
1773
1913
  const filterSensitiveLog: (obj: DisassociateApplicationFleetResult) => any;
1774
1914
  }
1915
+ export interface DisassociateApplicationFromEntitlementRequest {
1916
+
1917
+ StackName: string | undefined;
1918
+
1919
+ EntitlementName: string | undefined;
1920
+
1921
+ ApplicationIdentifier: string | undefined;
1922
+ }
1923
+ export declare namespace DisassociateApplicationFromEntitlementRequest {
1924
+
1925
+ const filterSensitiveLog: (obj: DisassociateApplicationFromEntitlementRequest) => any;
1926
+ }
1927
+ export interface DisassociateApplicationFromEntitlementResult {
1928
+ }
1929
+ export declare namespace DisassociateApplicationFromEntitlementResult {
1930
+
1931
+ const filterSensitiveLog: (obj: DisassociateApplicationFromEntitlementResult) => any;
1932
+ }
1775
1933
  export interface DisassociateFleetRequest {
1776
1934
 
1777
1935
  FleetName: string | undefined;
@@ -1804,6 +1962,15 @@ export declare namespace EnableUserResult {
1804
1962
 
1805
1963
  const filterSensitiveLog: (obj: EnableUserResult) => any;
1806
1964
  }
1965
+
1966
+ export interface EntitledApplication {
1967
+
1968
+ ApplicationIdentifier: string | undefined;
1969
+ }
1970
+ export declare namespace EntitledApplication {
1971
+
1972
+ const filterSensitiveLog: (obj: EntitledApplication) => any;
1973
+ }
1807
1974
  export interface ExpireSessionRequest {
1808
1975
 
1809
1976
  SessionId: string | undefined;
@@ -1865,6 +2032,30 @@ export declare namespace ListAssociatedStacksResult {
1865
2032
 
1866
2033
  const filterSensitiveLog: (obj: ListAssociatedStacksResult) => any;
1867
2034
  }
2035
+ export interface ListEntitledApplicationsRequest {
2036
+
2037
+ StackName: string | undefined;
2038
+
2039
+ EntitlementName: string | undefined;
2040
+
2041
+ NextToken?: string;
2042
+
2043
+ MaxResults?: number;
2044
+ }
2045
+ export declare namespace ListEntitledApplicationsRequest {
2046
+
2047
+ const filterSensitiveLog: (obj: ListEntitledApplicationsRequest) => any;
2048
+ }
2049
+ export interface ListEntitledApplicationsResult {
2050
+
2051
+ EntitledApplications?: EntitledApplication[];
2052
+
2053
+ NextToken?: string;
2054
+ }
2055
+ export declare namespace ListEntitledApplicationsResult {
2056
+
2057
+ const filterSensitiveLog: (obj: ListEntitledApplicationsResult) => any;
2058
+ }
1868
2059
  export interface ListTagsForResourceRequest {
1869
2060
 
1870
2061
  ResourceArn: string | undefined;
@@ -2031,6 +2222,30 @@ export declare namespace UpdateDirectoryConfigResult {
2031
2222
 
2032
2223
  const filterSensitiveLog: (obj: UpdateDirectoryConfigResult) => any;
2033
2224
  }
2225
+ export interface UpdateEntitlementRequest {
2226
+
2227
+ Name: string | undefined;
2228
+
2229
+ StackName: string | undefined;
2230
+
2231
+ Description?: string;
2232
+
2233
+ AppVisibility?: AppVisibility | string;
2234
+
2235
+ Attributes?: EntitlementAttribute[];
2236
+ }
2237
+ export declare namespace UpdateEntitlementRequest {
2238
+
2239
+ const filterSensitiveLog: (obj: UpdateEntitlementRequest) => any;
2240
+ }
2241
+ export interface UpdateEntitlementResult {
2242
+
2243
+ Entitlement?: Entitlement;
2244
+ }
2245
+ export declare namespace UpdateEntitlementResult {
2246
+
2247
+ const filterSensitiveLog: (obj: UpdateEntitlementResult) => any;
2248
+ }
2034
2249
  export interface UpdateFleetRequest {
2035
2250
 
2036
2251
  ImageName?: string;
@@ -1,6 +1,7 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput } from "../commands/AssociateApplicationFleetCommand";
4
+ import { AssociateApplicationToEntitlementCommandInput, AssociateApplicationToEntitlementCommandOutput } from "../commands/AssociateApplicationToEntitlementCommand";
4
5
  import { AssociateFleetCommandInput, AssociateFleetCommandOutput } from "../commands/AssociateFleetCommand";
5
6
  import { BatchAssociateUserStackCommandInput, BatchAssociateUserStackCommandOutput } from "../commands/BatchAssociateUserStackCommand";
6
7
  import { BatchDisassociateUserStackCommandInput, BatchDisassociateUserStackCommandOutput } from "../commands/BatchDisassociateUserStackCommand";
@@ -8,6 +9,7 @@ import { CopyImageCommandInput, CopyImageCommandOutput } from "../commands/CopyI
8
9
  import { CreateAppBlockCommandInput, CreateAppBlockCommandOutput } from "../commands/CreateAppBlockCommand";
9
10
  import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "../commands/CreateApplicationCommand";
10
11
  import { CreateDirectoryConfigCommandInput, CreateDirectoryConfigCommandOutput } from "../commands/CreateDirectoryConfigCommand";
12
+ import { CreateEntitlementCommandInput, CreateEntitlementCommandOutput } from "../commands/CreateEntitlementCommand";
11
13
  import { CreateFleetCommandInput, CreateFleetCommandOutput } from "../commands/CreateFleetCommand";
12
14
  import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from "../commands/CreateImageBuilderCommand";
13
15
  import { CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput } from "../commands/CreateImageBuilderStreamingURLCommand";
@@ -19,6 +21,7 @@ import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/Cre
19
21
  import { DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput } from "../commands/DeleteAppBlockCommand";
20
22
  import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "../commands/DeleteApplicationCommand";
21
23
  import { DeleteDirectoryConfigCommandInput, DeleteDirectoryConfigCommandOutput } from "../commands/DeleteDirectoryConfigCommand";
24
+ import { DeleteEntitlementCommandInput, DeleteEntitlementCommandOutput } from "../commands/DeleteEntitlementCommand";
22
25
  import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "../commands/DeleteFleetCommand";
23
26
  import { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from "../commands/DeleteImageBuilderCommand";
24
27
  import { DeleteImageCommandInput, DeleteImageCommandOutput } from "../commands/DeleteImageCommand";
@@ -30,6 +33,7 @@ import { DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput } from ".
30
33
  import { DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput } from "../commands/DescribeApplicationFleetAssociationsCommand";
31
34
  import { DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput } from "../commands/DescribeApplicationsCommand";
32
35
  import { DescribeDirectoryConfigsCommandInput, DescribeDirectoryConfigsCommandOutput } from "../commands/DescribeDirectoryConfigsCommand";
36
+ import { DescribeEntitlementsCommandInput, DescribeEntitlementsCommandOutput } from "../commands/DescribeEntitlementsCommand";
33
37
  import { DescribeFleetsCommandInput, DescribeFleetsCommandOutput } from "../commands/DescribeFleetsCommand";
34
38
  import { DescribeImageBuildersCommandInput, DescribeImageBuildersCommandOutput } from "../commands/DescribeImageBuildersCommand";
35
39
  import { DescribeImagePermissionsCommandInput, DescribeImagePermissionsCommandOutput } from "../commands/DescribeImagePermissionsCommand";
@@ -41,11 +45,13 @@ import { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "../comman
41
45
  import { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "../commands/DescribeUserStackAssociationsCommand";
42
46
  import { DisableUserCommandInput, DisableUserCommandOutput } from "../commands/DisableUserCommand";
43
47
  import { DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput } from "../commands/DisassociateApplicationFleetCommand";
48
+ import { DisassociateApplicationFromEntitlementCommandInput, DisassociateApplicationFromEntitlementCommandOutput } from "../commands/DisassociateApplicationFromEntitlementCommand";
44
49
  import { DisassociateFleetCommandInput, DisassociateFleetCommandOutput } from "../commands/DisassociateFleetCommand";
45
50
  import { EnableUserCommandInput, EnableUserCommandOutput } from "../commands/EnableUserCommand";
46
51
  import { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "../commands/ExpireSessionCommand";
47
52
  import { ListAssociatedFleetsCommandInput, ListAssociatedFleetsCommandOutput } from "../commands/ListAssociatedFleetsCommand";
48
53
  import { ListAssociatedStacksCommandInput, ListAssociatedStacksCommandOutput } from "../commands/ListAssociatedStacksCommand";
54
+ import { ListEntitledApplicationsCommandInput, ListEntitledApplicationsCommandOutput } from "../commands/ListEntitledApplicationsCommand";
49
55
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
50
56
  import { StartFleetCommandInput, StartFleetCommandOutput } from "../commands/StartFleetCommand";
51
57
  import { StartImageBuilderCommandInput, StartImageBuilderCommandOutput } from "../commands/StartImageBuilderCommand";
@@ -55,10 +61,12 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
55
61
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
56
62
  import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "../commands/UpdateApplicationCommand";
57
63
  import { UpdateDirectoryConfigCommandInput, UpdateDirectoryConfigCommandOutput } from "../commands/UpdateDirectoryConfigCommand";
64
+ import { UpdateEntitlementCommandInput, UpdateEntitlementCommandOutput } from "../commands/UpdateEntitlementCommand";
58
65
  import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "../commands/UpdateFleetCommand";
59
66
  import { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "../commands/UpdateImagePermissionsCommand";
60
67
  import { UpdateStackCommandInput, UpdateStackCommandOutput } from "../commands/UpdateStackCommand";
61
68
  export declare const serializeAws_json1_1AssociateApplicationFleetCommand: (input: AssociateApplicationFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
+ export declare const serializeAws_json1_1AssociateApplicationToEntitlementCommand: (input: AssociateApplicationToEntitlementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
70
  export declare const serializeAws_json1_1AssociateFleetCommand: (input: AssociateFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
71
  export declare const serializeAws_json1_1BatchAssociateUserStackCommand: (input: BatchAssociateUserStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
72
  export declare const serializeAws_json1_1BatchDisassociateUserStackCommand: (input: BatchDisassociateUserStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -66,6 +74,7 @@ export declare const serializeAws_json1_1CopyImageCommand: (input: CopyImageComm
66
74
  export declare const serializeAws_json1_1CreateAppBlockCommand: (input: CreateAppBlockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
75
  export declare const serializeAws_json1_1CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
76
  export declare const serializeAws_json1_1CreateDirectoryConfigCommand: (input: CreateDirectoryConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
+ export declare const serializeAws_json1_1CreateEntitlementCommand: (input: CreateEntitlementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
78
  export declare const serializeAws_json1_1CreateFleetCommand: (input: CreateFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
79
  export declare const serializeAws_json1_1CreateImageBuilderCommand: (input: CreateImageBuilderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
80
  export declare const serializeAws_json1_1CreateImageBuilderStreamingURLCommand: (input: CreateImageBuilderStreamingURLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -77,6 +86,7 @@ export declare const serializeAws_json1_1CreateUserCommand: (input: CreateUserCo
77
86
  export declare const serializeAws_json1_1DeleteAppBlockCommand: (input: DeleteAppBlockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
87
  export declare const serializeAws_json1_1DeleteApplicationCommand: (input: DeleteApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
88
  export declare const serializeAws_json1_1DeleteDirectoryConfigCommand: (input: DeleteDirectoryConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ export declare const serializeAws_json1_1DeleteEntitlementCommand: (input: DeleteEntitlementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
90
  export declare const serializeAws_json1_1DeleteFleetCommand: (input: DeleteFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
91
  export declare const serializeAws_json1_1DeleteImageCommand: (input: DeleteImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
92
  export declare const serializeAws_json1_1DeleteImageBuilderCommand: (input: DeleteImageBuilderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -88,6 +98,7 @@ export declare const serializeAws_json1_1DescribeAppBlocksCommand: (input: Descr
88
98
  export declare const serializeAws_json1_1DescribeApplicationFleetAssociationsCommand: (input: DescribeApplicationFleetAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
99
  export declare const serializeAws_json1_1DescribeApplicationsCommand: (input: DescribeApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
100
  export declare const serializeAws_json1_1DescribeDirectoryConfigsCommand: (input: DescribeDirectoryConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
+ export declare const serializeAws_json1_1DescribeEntitlementsCommand: (input: DescribeEntitlementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
102
  export declare const serializeAws_json1_1DescribeFleetsCommand: (input: DescribeFleetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
103
  export declare const serializeAws_json1_1DescribeImageBuildersCommand: (input: DescribeImageBuildersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
104
  export declare const serializeAws_json1_1DescribeImagePermissionsCommand: (input: DescribeImagePermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -99,11 +110,13 @@ export declare const serializeAws_json1_1DescribeUsersCommand: (input: DescribeU
99
110
  export declare const serializeAws_json1_1DescribeUserStackAssociationsCommand: (input: DescribeUserStackAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
111
  export declare const serializeAws_json1_1DisableUserCommand: (input: DisableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
112
  export declare const serializeAws_json1_1DisassociateApplicationFleetCommand: (input: DisassociateApplicationFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ export declare const serializeAws_json1_1DisassociateApplicationFromEntitlementCommand: (input: DisassociateApplicationFromEntitlementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
114
  export declare const serializeAws_json1_1DisassociateFleetCommand: (input: DisassociateFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
115
  export declare const serializeAws_json1_1EnableUserCommand: (input: EnableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
116
  export declare const serializeAws_json1_1ExpireSessionCommand: (input: ExpireSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
117
  export declare const serializeAws_json1_1ListAssociatedFleetsCommand: (input: ListAssociatedFleetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
118
  export declare const serializeAws_json1_1ListAssociatedStacksCommand: (input: ListAssociatedStacksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
+ export declare const serializeAws_json1_1ListEntitledApplicationsCommand: (input: ListEntitledApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
120
  export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
121
  export declare const serializeAws_json1_1StartFleetCommand: (input: StartFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
122
  export declare const serializeAws_json1_1StartImageBuilderCommand: (input: StartImageBuilderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -113,10 +126,12 @@ export declare const serializeAws_json1_1TagResourceCommand: (input: TagResource
113
126
  export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
127
  export declare const serializeAws_json1_1UpdateApplicationCommand: (input: UpdateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
128
  export declare const serializeAws_json1_1UpdateDirectoryConfigCommand: (input: UpdateDirectoryConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
+ export declare const serializeAws_json1_1UpdateEntitlementCommand: (input: UpdateEntitlementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
130
  export declare const serializeAws_json1_1UpdateFleetCommand: (input: UpdateFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
131
  export declare const serializeAws_json1_1UpdateImagePermissionsCommand: (input: UpdateImagePermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
132
  export declare const serializeAws_json1_1UpdateStackCommand: (input: UpdateStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
133
  export declare const deserializeAws_json1_1AssociateApplicationFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateApplicationFleetCommandOutput>;
134
+ export declare const deserializeAws_json1_1AssociateApplicationToEntitlementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateApplicationToEntitlementCommandOutput>;
120
135
  export declare const deserializeAws_json1_1AssociateFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateFleetCommandOutput>;
121
136
  export declare const deserializeAws_json1_1BatchAssociateUserStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchAssociateUserStackCommandOutput>;
122
137
  export declare const deserializeAws_json1_1BatchDisassociateUserStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDisassociateUserStackCommandOutput>;
@@ -124,6 +139,7 @@ export declare const deserializeAws_json1_1CopyImageCommand: (output: __HttpResp
124
139
  export declare const deserializeAws_json1_1CreateAppBlockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAppBlockCommandOutput>;
125
140
  export declare const deserializeAws_json1_1CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
126
141
  export declare const deserializeAws_json1_1CreateDirectoryConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDirectoryConfigCommandOutput>;
142
+ export declare const deserializeAws_json1_1CreateEntitlementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEntitlementCommandOutput>;
127
143
  export declare const deserializeAws_json1_1CreateFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFleetCommandOutput>;
128
144
  export declare const deserializeAws_json1_1CreateImageBuilderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateImageBuilderCommandOutput>;
129
145
  export declare const deserializeAws_json1_1CreateImageBuilderStreamingURLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateImageBuilderStreamingURLCommandOutput>;
@@ -135,6 +151,7 @@ export declare const deserializeAws_json1_1CreateUserCommand: (output: __HttpRes
135
151
  export declare const deserializeAws_json1_1DeleteAppBlockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppBlockCommandOutput>;
136
152
  export declare const deserializeAws_json1_1DeleteApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApplicationCommandOutput>;
137
153
  export declare const deserializeAws_json1_1DeleteDirectoryConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDirectoryConfigCommandOutput>;
154
+ export declare const deserializeAws_json1_1DeleteEntitlementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEntitlementCommandOutput>;
138
155
  export declare const deserializeAws_json1_1DeleteFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFleetCommandOutput>;
139
156
  export declare const deserializeAws_json1_1DeleteImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteImageCommandOutput>;
140
157
  export declare const deserializeAws_json1_1DeleteImageBuilderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteImageBuilderCommandOutput>;
@@ -146,6 +163,7 @@ export declare const deserializeAws_json1_1DescribeAppBlocksCommand: (output: __
146
163
  export declare const deserializeAws_json1_1DescribeApplicationFleetAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeApplicationFleetAssociationsCommandOutput>;
147
164
  export declare const deserializeAws_json1_1DescribeApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeApplicationsCommandOutput>;
148
165
  export declare const deserializeAws_json1_1DescribeDirectoryConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDirectoryConfigsCommandOutput>;
166
+ export declare const deserializeAws_json1_1DescribeEntitlementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEntitlementsCommandOutput>;
149
167
  export declare const deserializeAws_json1_1DescribeFleetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFleetsCommandOutput>;
150
168
  export declare const deserializeAws_json1_1DescribeImageBuildersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeImageBuildersCommandOutput>;
151
169
  export declare const deserializeAws_json1_1DescribeImagePermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeImagePermissionsCommandOutput>;
@@ -157,11 +175,13 @@ export declare const deserializeAws_json1_1DescribeUsersCommand: (output: __Http
157
175
  export declare const deserializeAws_json1_1DescribeUserStackAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserStackAssociationsCommandOutput>;
158
176
  export declare const deserializeAws_json1_1DisableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableUserCommandOutput>;
159
177
  export declare const deserializeAws_json1_1DisassociateApplicationFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateApplicationFleetCommandOutput>;
178
+ export declare const deserializeAws_json1_1DisassociateApplicationFromEntitlementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateApplicationFromEntitlementCommandOutput>;
160
179
  export declare const deserializeAws_json1_1DisassociateFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateFleetCommandOutput>;
161
180
  export declare const deserializeAws_json1_1EnableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableUserCommandOutput>;
162
181
  export declare const deserializeAws_json1_1ExpireSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExpireSessionCommandOutput>;
163
182
  export declare const deserializeAws_json1_1ListAssociatedFleetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedFleetsCommandOutput>;
164
183
  export declare const deserializeAws_json1_1ListAssociatedStacksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedStacksCommandOutput>;
184
+ export declare const deserializeAws_json1_1ListEntitledApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEntitledApplicationsCommandOutput>;
165
185
  export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
166
186
  export declare const deserializeAws_json1_1StartFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFleetCommandOutput>;
167
187
  export declare const deserializeAws_json1_1StartImageBuilderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartImageBuilderCommandOutput>;
@@ -171,6 +191,7 @@ export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpRe
171
191
  export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
172
192
  export declare const deserializeAws_json1_1UpdateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApplicationCommandOutput>;
173
193
  export declare const deserializeAws_json1_1UpdateDirectoryConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDirectoryConfigCommandOutput>;
194
+ export declare const deserializeAws_json1_1UpdateEntitlementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEntitlementCommandOutput>;
174
195
  export declare const deserializeAws_json1_1UpdateFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFleetCommandOutput>;
175
196
  export declare const deserializeAws_json1_1UpdateImagePermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateImagePermissionsCommandOutput>;
176
197
  export declare const deserializeAws_json1_1UpdateStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStackCommandOutput>;
package/package.json CHANGED
@@ -1,18 +1,17 @@
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.45.0",
4
+ "version": "3.46.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
8
- "build:docs": "yarn clean:docs && typedoc ./",
8
+ "build:docs": "typedoc",
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
12
  "clean": "yarn clean:dist && yarn clean:docs",
12
- "clean:dist": "rimraf ./dist",
13
- "clean:docs": "rimraf ./docs",
14
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
- "test": "exit 0"
13
+ "clean:dist": "rimraf ./dist-*",
14
+ "clean:docs": "rimraf ./docs"
16
15
  },
17
16
  "main": "./dist-cjs/index.js",
18
17
  "types": "./dist-types/index.d.ts",
@@ -21,49 +20,43 @@
21
20
  "dependencies": {
22
21
  "@aws-crypto/sha256-browser": "2.0.0",
23
22
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.45.0",
25
- "@aws-sdk/config-resolver": "3.45.0",
26
- "@aws-sdk/credential-provider-node": "3.45.0",
27
- "@aws-sdk/fetch-http-handler": "3.40.0",
28
- "@aws-sdk/hash-node": "3.40.0",
29
- "@aws-sdk/invalid-dependency": "3.40.0",
30
- "@aws-sdk/middleware-content-length": "3.40.0",
31
- "@aws-sdk/middleware-host-header": "3.40.0",
32
- "@aws-sdk/middleware-logger": "3.40.0",
33
- "@aws-sdk/middleware-retry": "3.40.0",
34
- "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.45.0",
36
- "@aws-sdk/middleware-stack": "3.40.0",
37
- "@aws-sdk/middleware-user-agent": "3.40.0",
38
- "@aws-sdk/node-config-provider": "3.40.0",
39
- "@aws-sdk/node-http-handler": "3.40.0",
40
- "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.41.0",
42
- "@aws-sdk/types": "3.40.0",
43
- "@aws-sdk/url-parser": "3.40.0",
44
- "@aws-sdk/util-base64-browser": "3.37.0",
45
- "@aws-sdk/util-base64-node": "3.37.0",
46
- "@aws-sdk/util-body-length-browser": "3.37.0",
47
- "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.40.0",
49
- "@aws-sdk/util-user-agent-node": "3.40.0",
50
- "@aws-sdk/util-utf8-browser": "3.37.0",
51
- "@aws-sdk/util-utf8-node": "3.37.0",
52
- "@aws-sdk/util-waiter": "3.40.0",
23
+ "@aws-sdk/client-sts": "3.46.0",
24
+ "@aws-sdk/config-resolver": "3.46.0",
25
+ "@aws-sdk/credential-provider-node": "3.46.0",
26
+ "@aws-sdk/fetch-http-handler": "3.46.0",
27
+ "@aws-sdk/hash-node": "3.46.0",
28
+ "@aws-sdk/invalid-dependency": "3.46.0",
29
+ "@aws-sdk/middleware-content-length": "3.46.0",
30
+ "@aws-sdk/middleware-host-header": "3.46.0",
31
+ "@aws-sdk/middleware-logger": "3.46.0",
32
+ "@aws-sdk/middleware-retry": "3.46.0",
33
+ "@aws-sdk/middleware-serde": "3.46.0",
34
+ "@aws-sdk/middleware-signing": "3.46.0",
35
+ "@aws-sdk/middleware-stack": "3.46.0",
36
+ "@aws-sdk/middleware-user-agent": "3.46.0",
37
+ "@aws-sdk/node-config-provider": "3.46.0",
38
+ "@aws-sdk/node-http-handler": "3.46.0",
39
+ "@aws-sdk/protocol-http": "3.46.0",
40
+ "@aws-sdk/smithy-client": "3.46.0",
41
+ "@aws-sdk/types": "3.46.0",
42
+ "@aws-sdk/url-parser": "3.46.0",
43
+ "@aws-sdk/util-base64-browser": "3.46.0",
44
+ "@aws-sdk/util-base64-node": "3.46.0",
45
+ "@aws-sdk/util-body-length-browser": "3.46.0",
46
+ "@aws-sdk/util-body-length-node": "3.46.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.46.0",
48
+ "@aws-sdk/util-user-agent-node": "3.46.0",
49
+ "@aws-sdk/util-utf8-browser": "3.46.0",
50
+ "@aws-sdk/util-utf8-node": "3.46.0",
51
+ "@aws-sdk/util-waiter": "3.46.0",
53
52
  "tslib": "^2.3.0"
54
53
  },
55
54
  "devDependencies": {
56
- "@aws-sdk/service-client-documentation-generator": "3.38.0",
57
- "@types/node": "^12.7.5",
58
- "downlevel-dts": "0.7.0",
59
- "jest": "^26.1.0",
60
- "rimraf": "^3.0.0",
61
- "ts-jest": "^26.4.1",
62
- "typedoc": "^0.19.2",
63
- "typescript": "~4.3.5"
55
+ "@aws-sdk/service-client-documentation-generator": "3.46.0",
56
+ "@types/node": "^12.7.5"
64
57
  },
65
58
  "engines": {
66
- "node": ">=10.0.0"
59
+ "node": ">=12.0.0"
67
60
  },
68
61
  "typesVersions": {
69
62
  "<4.0": {