@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
@@ -261,6 +261,10 @@ export declare namespace ApplicationSettingsResponse {
261
261
  */
262
262
  const filterSensitiveLog: (obj: ApplicationSettingsResponse) => any;
263
263
  }
264
+ export declare enum AppVisibility {
265
+ ALL = "ALL",
266
+ ASSOCIATED = "ASSOCIATED"
267
+ }
264
268
  export interface AssociateApplicationFleetRequest {
265
269
  /**
266
270
  * <p>The name of the fleet.</p>
@@ -376,6 +380,51 @@ export declare namespace ResourceNotFoundException {
376
380
  */
377
381
  const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
378
382
  }
383
+ export interface AssociateApplicationToEntitlementRequest {
384
+ /**
385
+ * <p>The name of the stack.</p>
386
+ */
387
+ StackName: string | undefined;
388
+ /**
389
+ * <p>The name of the entitlement.</p>
390
+ */
391
+ EntitlementName: string | undefined;
392
+ /**
393
+ * <p>The identifier of the application.</p>
394
+ */
395
+ ApplicationIdentifier: string | undefined;
396
+ }
397
+ export declare namespace AssociateApplicationToEntitlementRequest {
398
+ /**
399
+ * @internal
400
+ */
401
+ const filterSensitiveLog: (obj: AssociateApplicationToEntitlementRequest) => any;
402
+ }
403
+ export interface AssociateApplicationToEntitlementResult {
404
+ }
405
+ export declare namespace AssociateApplicationToEntitlementResult {
406
+ /**
407
+ * @internal
408
+ */
409
+ const filterSensitiveLog: (obj: AssociateApplicationToEntitlementResult) => any;
410
+ }
411
+ /**
412
+ * <p>The entitlement can't be found.</p>
413
+ */
414
+ export interface EntitlementNotFoundException extends __SmithyException, $MetadataBearer {
415
+ name: "EntitlementNotFoundException";
416
+ $fault: "client";
417
+ /**
418
+ * <p>The error message in the exception.</p>
419
+ */
420
+ Message?: string;
421
+ }
422
+ export declare namespace EntitlementNotFoundException {
423
+ /**
424
+ * @internal
425
+ */
426
+ const filterSensitiveLog: (obj: EntitlementNotFoundException) => any;
427
+ }
379
428
  export interface AssociateFleetRequest {
380
429
  /**
381
430
  * <p>The name of the fleet. </p>
@@ -869,6 +918,156 @@ export declare namespace InvalidRoleException {
869
918
  */
870
919
  const filterSensitiveLog: (obj: InvalidRoleException) => any;
871
920
  }
921
+ /**
922
+ * <p>An attribute associated with an entitlement. Application entitlements work by matching
923
+ * a supported SAML 2.0 attribute name to a value when a user identity federates to an
924
+ * Amazon AppStream 2.0 SAML application.</p>
925
+ */
926
+ export interface EntitlementAttribute {
927
+ /**
928
+ * <p>A supported AWS IAM SAML <code>PrincipalTag</code> attribute that is matched to the
929
+ * associated value when a user identity federates into an Amazon AppStream 2.0 SAML
930
+ * application.</p>
931
+ * <p>The following are valid values:</p>
932
+ * <ul>
933
+ * <li>
934
+ * <p>roles</p>
935
+ * </li>
936
+ * <li>
937
+ * <p>department </p>
938
+ * </li>
939
+ * <li>
940
+ * <p>organization </p>
941
+ * </li>
942
+ * <li>
943
+ * <p>groups </p>
944
+ * </li>
945
+ * <li>
946
+ * <p>title </p>
947
+ * </li>
948
+ * <li>
949
+ * <p>costCenter </p>
950
+ * </li>
951
+ * <li>
952
+ * <p>userType</p>
953
+ * </li>
954
+ * </ul>
955
+ * <p> </p>
956
+ */
957
+ Name: string | undefined;
958
+ /**
959
+ * <p>A value that is matched to a supported SAML attribute name when a user identity
960
+ * federates into an Amazon AppStream 2.0 SAML application. </p>
961
+ */
962
+ Value: string | undefined;
963
+ }
964
+ export declare namespace EntitlementAttribute {
965
+ /**
966
+ * @internal
967
+ */
968
+ const filterSensitiveLog: (obj: EntitlementAttribute) => any;
969
+ }
970
+ export interface CreateEntitlementRequest {
971
+ /**
972
+ * <p>The name of the entitlement.</p>
973
+ */
974
+ Name: string | undefined;
975
+ /**
976
+ * <p>The name of the stack with which the entitlement is associated.</p>
977
+ */
978
+ StackName: string | undefined;
979
+ /**
980
+ * <p>The description of the entitlement.</p>
981
+ */
982
+ Description?: string;
983
+ /**
984
+ * <p>Specifies whether all or selected apps are entitled.</p>
985
+ */
986
+ AppVisibility: AppVisibility | string | undefined;
987
+ /**
988
+ * <p>The attributes of the entitlement.</p>
989
+ */
990
+ Attributes: EntitlementAttribute[] | undefined;
991
+ }
992
+ export declare namespace CreateEntitlementRequest {
993
+ /**
994
+ * @internal
995
+ */
996
+ const filterSensitiveLog: (obj: CreateEntitlementRequest) => any;
997
+ }
998
+ /**
999
+ * <p>Specifies an entitlement. Entitlements control access to specific applications within
1000
+ * a stack, based on user attributes. Entitlements apply to SAML 2.0 federated user
1001
+ * identities. Amazon AppStream 2.0 user pool and streaming URL users are entitled to all
1002
+ * applications in a stack. Entitlements don't apply to the desktop stream view
1003
+ * application, or to applications managed by a dynamic app provider using the Dynamic
1004
+ * Application Framework.</p>
1005
+ */
1006
+ export interface Entitlement {
1007
+ /**
1008
+ * <p>The name of the entitlement.</p>
1009
+ */
1010
+ Name: string | undefined;
1011
+ /**
1012
+ * <p>The name of the stack with which the entitlement is associated.</p>
1013
+ */
1014
+ StackName: string | undefined;
1015
+ /**
1016
+ * <p>The description of the entitlement.</p>
1017
+ */
1018
+ Description?: string;
1019
+ /**
1020
+ * <p>Specifies whether all or selected apps are entitled.</p>
1021
+ */
1022
+ AppVisibility: AppVisibility | string | undefined;
1023
+ /**
1024
+ * <p>The attributes of the entitlement.</p>
1025
+ */
1026
+ Attributes: EntitlementAttribute[] | undefined;
1027
+ /**
1028
+ * <p>The time when the entitlement was created.</p>
1029
+ */
1030
+ CreatedTime?: Date;
1031
+ /**
1032
+ * <p>The time when the entitlement was last modified.</p>
1033
+ */
1034
+ LastModifiedTime?: Date;
1035
+ }
1036
+ export declare namespace Entitlement {
1037
+ /**
1038
+ * @internal
1039
+ */
1040
+ const filterSensitiveLog: (obj: Entitlement) => any;
1041
+ }
1042
+ export interface CreateEntitlementResult {
1043
+ /**
1044
+ * <p>The entitlement.</p>
1045
+ */
1046
+ Entitlement?: Entitlement;
1047
+ }
1048
+ export declare namespace CreateEntitlementResult {
1049
+ /**
1050
+ * @internal
1051
+ */
1052
+ const filterSensitiveLog: (obj: CreateEntitlementResult) => any;
1053
+ }
1054
+ /**
1055
+ * <p>The entitlement already exists.</p>
1056
+ */
1057
+ export interface EntitlementAlreadyExistsException extends __SmithyException, $MetadataBearer {
1058
+ name: "EntitlementAlreadyExistsException";
1059
+ $fault: "client";
1060
+ /**
1061
+ * <p>The error message in the exception.</p>
1062
+ */
1063
+ Message?: string;
1064
+ }
1065
+ export declare namespace EntitlementAlreadyExistsException {
1066
+ /**
1067
+ * @internal
1068
+ */
1069
+ const filterSensitiveLog: (obj: EntitlementAlreadyExistsException) => any;
1070
+ }
872
1071
  /**
873
1072
  * <p>Describes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.</p>
874
1073
  */
@@ -2571,6 +2770,30 @@ export declare namespace DeleteDirectoryConfigResult {
2571
2770
  */
2572
2771
  const filterSensitiveLog: (obj: DeleteDirectoryConfigResult) => any;
2573
2772
  }
2773
+ export interface DeleteEntitlementRequest {
2774
+ /**
2775
+ * <p>The name of the entitlement.</p>
2776
+ */
2777
+ Name: string | undefined;
2778
+ /**
2779
+ * <p>The name of the stack with which the entitlement is associated.</p>
2780
+ */
2781
+ StackName: string | undefined;
2782
+ }
2783
+ export declare namespace DeleteEntitlementRequest {
2784
+ /**
2785
+ * @internal
2786
+ */
2787
+ const filterSensitiveLog: (obj: DeleteEntitlementRequest) => any;
2788
+ }
2789
+ export interface DeleteEntitlementResult {
2790
+ }
2791
+ export declare namespace DeleteEntitlementResult {
2792
+ /**
2793
+ * @internal
2794
+ */
2795
+ const filterSensitiveLog: (obj: DeleteEntitlementResult) => any;
2796
+ }
2574
2797
  export interface DeleteFleetRequest {
2575
2798
  /**
2576
2799
  * <p>The name of the fleet.</p>
@@ -2881,6 +3104,47 @@ export declare namespace DescribeDirectoryConfigsResult {
2881
3104
  */
2882
3105
  const filterSensitiveLog: (obj: DescribeDirectoryConfigsResult) => any;
2883
3106
  }
3107
+ export interface DescribeEntitlementsRequest {
3108
+ /**
3109
+ * <p>The name of the entitlement.</p>
3110
+ */
3111
+ Name?: string;
3112
+ /**
3113
+ * <p>The name of the stack with which the entitlement is associated.</p>
3114
+ */
3115
+ StackName: string | undefined;
3116
+ /**
3117
+ * <p>The pagination token used to retrieve the next page of results for this operation.</p>
3118
+ */
3119
+ NextToken?: string;
3120
+ /**
3121
+ * <p>The maximum size of each page of results.</p>
3122
+ */
3123
+ MaxResults?: number;
3124
+ }
3125
+ export declare namespace DescribeEntitlementsRequest {
3126
+ /**
3127
+ * @internal
3128
+ */
3129
+ const filterSensitiveLog: (obj: DescribeEntitlementsRequest) => any;
3130
+ }
3131
+ export interface DescribeEntitlementsResult {
3132
+ /**
3133
+ * <p>The entitlements.</p>
3134
+ */
3135
+ Entitlements?: Entitlement[];
3136
+ /**
3137
+ * <p>The pagination token used to retrieve the next page of results for this
3138
+ * operation.</p>
3139
+ */
3140
+ NextToken?: string;
3141
+ }
3142
+ export declare namespace DescribeEntitlementsResult {
3143
+ /**
3144
+ * @internal
3145
+ */
3146
+ const filterSensitiveLog: (obj: DescribeEntitlementsResult) => any;
3147
+ }
2884
3148
  export interface DescribeFleetsRequest {
2885
3149
  /**
2886
3150
  * <p>The names of the fleets to describe.</p>
@@ -3488,6 +3752,34 @@ export declare namespace DisassociateApplicationFleetResult {
3488
3752
  */
3489
3753
  const filterSensitiveLog: (obj: DisassociateApplicationFleetResult) => any;
3490
3754
  }
3755
+ export interface DisassociateApplicationFromEntitlementRequest {
3756
+ /**
3757
+ * <p>The name of the stack with which the entitlement is associated.</p>
3758
+ */
3759
+ StackName: string | undefined;
3760
+ /**
3761
+ * <p>The name of the entitlement.</p>
3762
+ */
3763
+ EntitlementName: string | undefined;
3764
+ /**
3765
+ * <p>The identifier of the application to remove from the entitlement.</p>
3766
+ */
3767
+ ApplicationIdentifier: string | undefined;
3768
+ }
3769
+ export declare namespace DisassociateApplicationFromEntitlementRequest {
3770
+ /**
3771
+ * @internal
3772
+ */
3773
+ const filterSensitiveLog: (obj: DisassociateApplicationFromEntitlementRequest) => any;
3774
+ }
3775
+ export interface DisassociateApplicationFromEntitlementResult {
3776
+ }
3777
+ export declare namespace DisassociateApplicationFromEntitlementResult {
3778
+ /**
3779
+ * @internal
3780
+ */
3781
+ const filterSensitiveLog: (obj: DisassociateApplicationFromEntitlementResult) => any;
3782
+ }
3491
3783
  export interface DisassociateFleetRequest {
3492
3784
  /**
3493
3785
  * <p>The name of the fleet.</p>
@@ -3540,6 +3832,21 @@ export declare namespace EnableUserResult {
3540
3832
  */
3541
3833
  const filterSensitiveLog: (obj: EnableUserResult) => any;
3542
3834
  }
3835
+ /**
3836
+ * <p>The application associated to an entitlement. Access is controlled based on user attributes.</p>
3837
+ */
3838
+ export interface EntitledApplication {
3839
+ /**
3840
+ * <p>The identifier of the application.</p>
3841
+ */
3842
+ ApplicationIdentifier: string | undefined;
3843
+ }
3844
+ export declare namespace EntitledApplication {
3845
+ /**
3846
+ * @internal
3847
+ */
3848
+ const filterSensitiveLog: (obj: EntitledApplication) => any;
3849
+ }
3543
3850
  export interface ExpireSessionRequest {
3544
3851
  /**
3545
3852
  * <p>The identifier of the streaming session.</p>
@@ -3631,6 +3938,46 @@ export declare namespace ListAssociatedStacksResult {
3631
3938
  */
3632
3939
  const filterSensitiveLog: (obj: ListAssociatedStacksResult) => any;
3633
3940
  }
3941
+ export interface ListEntitledApplicationsRequest {
3942
+ /**
3943
+ * <p>The name of the stack with which the entitlement is associated.</p>
3944
+ */
3945
+ StackName: string | undefined;
3946
+ /**
3947
+ * <p>The name of the entitlement.</p>
3948
+ */
3949
+ EntitlementName: string | undefined;
3950
+ /**
3951
+ * <p>The pagination token used to retrieve the next page of results for this operation.</p>
3952
+ */
3953
+ NextToken?: string;
3954
+ /**
3955
+ * <p>The maximum size of each page of results.</p>
3956
+ */
3957
+ MaxResults?: number;
3958
+ }
3959
+ export declare namespace ListEntitledApplicationsRequest {
3960
+ /**
3961
+ * @internal
3962
+ */
3963
+ const filterSensitiveLog: (obj: ListEntitledApplicationsRequest) => any;
3964
+ }
3965
+ export interface ListEntitledApplicationsResult {
3966
+ /**
3967
+ * <p>The entitled applications.</p>
3968
+ */
3969
+ EntitledApplications?: EntitledApplication[];
3970
+ /**
3971
+ * <p>The pagination token used to retrieve the next page of results for this operation.</p>
3972
+ */
3973
+ NextToken?: string;
3974
+ }
3975
+ export declare namespace ListEntitledApplicationsResult {
3976
+ /**
3977
+ * @internal
3978
+ */
3979
+ const filterSensitiveLog: (obj: ListEntitledApplicationsResult) => any;
3980
+ }
3634
3981
  export interface ListTagsForResourceRequest {
3635
3982
  /**
3636
3983
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -3892,6 +4239,46 @@ export declare namespace UpdateDirectoryConfigResult {
3892
4239
  */
3893
4240
  const filterSensitiveLog: (obj: UpdateDirectoryConfigResult) => any;
3894
4241
  }
4242
+ export interface UpdateEntitlementRequest {
4243
+ /**
4244
+ * <p>The name of the entitlement.</p>
4245
+ */
4246
+ Name: string | undefined;
4247
+ /**
4248
+ * <p>The name of the stack with which the entitlement is associated.</p>
4249
+ */
4250
+ StackName: string | undefined;
4251
+ /**
4252
+ * <p>The description of the entitlement.</p>
4253
+ */
4254
+ Description?: string;
4255
+ /**
4256
+ * <p>Specifies whether all or only selected apps are entitled.</p>
4257
+ */
4258
+ AppVisibility?: AppVisibility | string;
4259
+ /**
4260
+ * <p>The attributes of the entitlement.</p>
4261
+ */
4262
+ Attributes?: EntitlementAttribute[];
4263
+ }
4264
+ export declare namespace UpdateEntitlementRequest {
4265
+ /**
4266
+ * @internal
4267
+ */
4268
+ const filterSensitiveLog: (obj: UpdateEntitlementRequest) => any;
4269
+ }
4270
+ export interface UpdateEntitlementResult {
4271
+ /**
4272
+ * <p>The entitlement.</p>
4273
+ */
4274
+ Entitlement?: Entitlement;
4275
+ }
4276
+ export declare namespace UpdateEntitlementResult {
4277
+ /**
4278
+ * @internal
4279
+ */
4280
+ const filterSensitiveLog: (obj: UpdateEntitlementResult) => any;
4281
+ }
3895
4282
  export interface UpdateFleetRequest {
3896
4283
  /**
3897
4284
  * <p>The name of the image used to create the fleet.</p>
@@ -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>;