@aws-sdk/client-appstream 3.321.1 → 3.326.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 (66) hide show
  1. package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +9 -0
  2. package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +4 -0
  3. package/dist-types/commands/AssociateFleetCommand.d.ts +4 -0
  4. package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +17 -0
  5. package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +17 -0
  6. package/dist-types/commands/CopyImageCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateAppBlockCommand.d.ts +25 -0
  8. package/dist-types/commands/CreateApplicationCommand.d.ts +31 -0
  9. package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +20 -0
  10. package/dist-types/commands/CreateEntitlementCommand.d.ts +19 -0
  11. package/dist-types/commands/CreateFleetCommand.d.ts +56 -0
  12. package/dist-types/commands/CreateImageBuilderCommand.d.ts +52 -0
  13. package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +7 -0
  14. package/dist-types/commands/CreateStackCommand.d.ts +52 -0
  15. package/dist-types/commands/CreateStreamingURLCommand.d.ts +7 -0
  16. package/dist-types/commands/CreateUpdatedImageCommand.d.ts +64 -0
  17. package/dist-types/commands/CreateUsageReportSubscriptionCommand.d.ts +7 -0
  18. package/dist-types/commands/CreateUserCommand.d.ts +4 -0
  19. package/dist-types/commands/DeleteAppBlockCommand.d.ts +4 -0
  20. package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
  21. package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +4 -0
  22. package/dist-types/commands/DeleteEntitlementCommand.d.ts +4 -0
  23. package/dist-types/commands/DeleteFleetCommand.d.ts +4 -0
  24. package/dist-types/commands/DeleteImageBuilderCommand.d.ts +52 -0
  25. package/dist-types/commands/DeleteImageCommand.d.ts +63 -0
  26. package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +4 -0
  27. package/dist-types/commands/DeleteStackCommand.d.ts +4 -0
  28. package/dist-types/commands/DeleteUsageReportSubscriptionCommand.d.ts +4 -0
  29. package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
  30. package/dist-types/commands/DescribeAppBlocksCommand.d.ts +28 -0
  31. package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +12 -0
  32. package/dist-types/commands/DescribeApplicationsCommand.d.ts +34 -0
  33. package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +23 -0
  34. package/dist-types/commands/DescribeEntitlementsCommand.d.ts +22 -0
  35. package/dist-types/commands/DescribeFleetsCommand.d.ts +59 -0
  36. package/dist-types/commands/DescribeImageBuildersCommand.d.ts +55 -0
  37. package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +16 -0
  38. package/dist-types/commands/DescribeImagesCommand.d.ts +66 -0
  39. package/dist-types/commands/DescribeSessionsCommand.d.ts +23 -0
  40. package/dist-types/commands/DescribeStacksCommand.d.ts +55 -0
  41. package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +19 -0
  42. package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +14 -0
  43. package/dist-types/commands/DescribeUsersCommand.d.ts +18 -0
  44. package/dist-types/commands/DisableUserCommand.d.ts +4 -0
  45. package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +4 -0
  46. package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +4 -0
  47. package/dist-types/commands/DisassociateFleetCommand.d.ts +4 -0
  48. package/dist-types/commands/EnableUserCommand.d.ts +4 -0
  49. package/dist-types/commands/ExpireSessionCommand.d.ts +4 -0
  50. package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +9 -0
  51. package/dist-types/commands/ListAssociatedStacksCommand.d.ts +9 -0
  52. package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +11 -0
  53. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  54. package/dist-types/commands/StartFleetCommand.d.ts +4 -0
  55. package/dist-types/commands/StartImageBuilderCommand.d.ts +52 -0
  56. package/dist-types/commands/StopFleetCommand.d.ts +4 -0
  57. package/dist-types/commands/StopImageBuilderCommand.d.ts +52 -0
  58. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  59. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  60. package/dist-types/commands/UpdateApplicationCommand.d.ts +31 -0
  61. package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +20 -0
  62. package/dist-types/commands/UpdateEntitlementCommand.d.ts +19 -0
  63. package/dist-types/commands/UpdateFleetCommand.d.ts +56 -0
  64. package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +4 -0
  65. package/dist-types/commands/UpdateStackCommand.d.ts +52 -0
  66. package/package.json +16 -16
@@ -35,6 +35,8 @@ export interface CreateUserCommandOutput extends CreateUserResult, __MetadataBea
35
35
  * };
36
36
  * const command = new CreateUserCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param CreateUserCommandInput - {@link CreateUserCommandInput}
@@ -58,6 +60,8 @@ export interface CreateUserCommandOutput extends CreateUserResult, __MetadataBea
58
60
  * @throws {@link ResourceAlreadyExistsException} (client fault)
59
61
  * <p>The specified resource already exists.</p>
60
62
  *
63
+ * @throws {@link AppStreamServiceException}
64
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
61
65
  *
62
66
  */
63
67
  export declare class CreateUserCommand extends $Command<CreateUserCommandInput, CreateUserCommandOutput, AppStreamClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteAppBlockCommandOutput extends DeleteAppBlockResult, __Met
31
31
  * };
32
32
  * const command = new DeleteAppBlockCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteAppBlockCommandInput - {@link DeleteAppBlockCommandInput}
@@ -48,6 +50,8 @@ export interface DeleteAppBlockCommandOutput extends DeleteAppBlockResult, __Met
48
50
  * @throws {@link ResourceNotFoundException} (client fault)
49
51
  * <p>The specified resource was not found.</p>
50
52
  *
53
+ * @throws {@link AppStreamServiceException}
54
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
51
55
  *
52
56
  */
53
57
  export declare class DeleteAppBlockCommand extends $Command<DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput, AppStreamClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationResult,
31
31
  * };
32
32
  * const command = new DeleteApplicationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
@@ -51,6 +53,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationResult,
51
53
  * @throws {@link ResourceNotFoundException} (client fault)
52
54
  * <p>The specified resource was not found.</p>
53
55
  *
56
+ * @throws {@link AppStreamServiceException}
57
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
54
58
  *
55
59
  */
56
60
  export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, AppStreamClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteDirectoryConfigCommandOutput extends DeleteDirectoryConfi
31
31
  * };
32
32
  * const command = new DeleteDirectoryConfigCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteDirectoryConfigCommandInput - {@link DeleteDirectoryConfigCommandInput}
@@ -45,6 +47,8 @@ export interface DeleteDirectoryConfigCommandOutput extends DeleteDirectoryConfi
45
47
  * @throws {@link ResourceNotFoundException} (client fault)
46
48
  * <p>The specified resource was not found.</p>
47
49
  *
50
+ * @throws {@link AppStreamServiceException}
51
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
48
52
  *
49
53
  */
50
54
  export declare class DeleteDirectoryConfigCommand extends $Command<DeleteDirectoryConfigCommandInput, DeleteDirectoryConfigCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteEntitlementCommandOutput extends DeleteEntitlementResult,
32
32
  * };
33
33
  * const command = new DeleteEntitlementCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteEntitlementCommandInput - {@link DeleteEntitlementCommandInput}
@@ -52,6 +54,8 @@ export interface DeleteEntitlementCommandOutput extends DeleteEntitlementResult,
52
54
  * @throws {@link ResourceNotFoundException} (client fault)
53
55
  * <p>The specified resource was not found.</p>
54
56
  *
57
+ * @throws {@link AppStreamServiceException}
58
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
55
59
  *
56
60
  */
57
61
  export declare class DeleteEntitlementCommand extends $Command<DeleteEntitlementCommandInput, DeleteEntitlementCommandOutput, AppStreamClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResult, __MetadataB
31
31
  * };
32
32
  * const command = new DeleteFleetCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteFleetCommandInput - {@link DeleteFleetCommandInput}
@@ -48,6 +50,8 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResult, __MetadataB
48
50
  * @throws {@link ResourceNotFoundException} (client fault)
49
51
  * <p>The specified resource was not found.</p>
50
52
  *
53
+ * @throws {@link AppStreamServiceException}
54
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
51
55
  *
52
56
  */
53
57
  export declare class DeleteFleetCommand extends $Command<DeleteFleetCommandInput, DeleteFleetCommandOutput, AppStreamClientResolvedConfig> {
@@ -31,6 +31,56 @@ export interface DeleteImageBuilderCommandOutput extends DeleteImageBuilderResul
31
31
  * };
32
32
  * const command = new DeleteImageBuilderCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteImageBuilderResult
35
+ * // ImageBuilder: { // ImageBuilder
36
+ * // Name: "STRING_VALUE", // required
37
+ * // Arn: "STRING_VALUE",
38
+ * // ImageArn: "STRING_VALUE",
39
+ * // Description: "STRING_VALUE",
40
+ * // DisplayName: "STRING_VALUE",
41
+ * // VpcConfig: { // VpcConfig
42
+ * // SubnetIds: [ // SubnetIdList
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // SecurityGroupIds: [ // SecurityGroupIdList
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // },
49
+ * // InstanceType: "STRING_VALUE",
50
+ * // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
51
+ * // IamRoleArn: "STRING_VALUE",
52
+ * // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION",
53
+ * // StateChangeReason: { // ImageBuilderStateChangeReason
54
+ * // Code: "INTERNAL_ERROR" || "IMAGE_UNAVAILABLE",
55
+ * // Message: "STRING_VALUE",
56
+ * // },
57
+ * // CreatedTime: new Date("TIMESTAMP"),
58
+ * // EnableDefaultInternetAccess: true || false,
59
+ * // DomainJoinInfo: { // DomainJoinInfo
60
+ * // DirectoryName: "STRING_VALUE",
61
+ * // OrganizationalUnitDistinguishedName: "STRING_VALUE",
62
+ * // },
63
+ * // NetworkAccessConfiguration: { // NetworkAccessConfiguration
64
+ * // EniPrivateIpAddress: "STRING_VALUE",
65
+ * // EniId: "STRING_VALUE",
66
+ * // },
67
+ * // ImageBuilderErrors: [ // ResourceErrors
68
+ * // { // ResourceError
69
+ * // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
70
+ * // ErrorMessage: "STRING_VALUE",
71
+ * // ErrorTimestamp: new Date("TIMESTAMP"),
72
+ * // },
73
+ * // ],
74
+ * // AppstreamAgentVersion: "STRING_VALUE",
75
+ * // AccessEndpoints: [ // AccessEndpointList
76
+ * // { // AccessEndpoint
77
+ * // EndpointType: "STREAMING", // required
78
+ * // VpceId: "STRING_VALUE",
79
+ * // },
80
+ * // ],
81
+ * // },
82
+ * // };
83
+ *
34
84
  * ```
35
85
  *
36
86
  * @param DeleteImageBuilderCommandInput - {@link DeleteImageBuilderCommandInput}
@@ -48,6 +98,8 @@ export interface DeleteImageBuilderCommandOutput extends DeleteImageBuilderResul
48
98
  * @throws {@link ResourceNotFoundException} (client fault)
49
99
  * <p>The specified resource was not found.</p>
50
100
  *
101
+ * @throws {@link AppStreamServiceException}
102
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
51
103
  *
52
104
  */
53
105
  export declare class DeleteImageBuilderCommand extends $Command<DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,67 @@ export interface DeleteImageCommandOutput extends DeleteImageResult, __MetadataB
32
32
  * };
33
33
  * const command = new DeleteImageCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteImageResult
36
+ * // Image: { // Image
37
+ * // Name: "STRING_VALUE", // required
38
+ * // Arn: "STRING_VALUE",
39
+ * // BaseImageArn: "STRING_VALUE",
40
+ * // DisplayName: "STRING_VALUE",
41
+ * // State: "PENDING" || "AVAILABLE" || "FAILED" || "COPYING" || "DELETING" || "CREATING" || "IMPORTING",
42
+ * // Visibility: "PUBLIC" || "PRIVATE" || "SHARED",
43
+ * // ImageBuilderSupported: true || false,
44
+ * // ImageBuilderName: "STRING_VALUE",
45
+ * // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
46
+ * // Description: "STRING_VALUE",
47
+ * // StateChangeReason: { // ImageStateChangeReason
48
+ * // Code: "INTERNAL_ERROR" || "IMAGE_BUILDER_NOT_AVAILABLE" || "IMAGE_COPY_FAILURE",
49
+ * // Message: "STRING_VALUE",
50
+ * // },
51
+ * // Applications: [ // Applications
52
+ * // { // Application
53
+ * // Name: "STRING_VALUE",
54
+ * // DisplayName: "STRING_VALUE",
55
+ * // IconURL: "STRING_VALUE",
56
+ * // LaunchPath: "STRING_VALUE",
57
+ * // LaunchParameters: "STRING_VALUE",
58
+ * // Enabled: true || false,
59
+ * // Metadata: { // Metadata
60
+ * // "<keys>": "STRING_VALUE",
61
+ * // },
62
+ * // WorkingDirectory: "STRING_VALUE",
63
+ * // Description: "STRING_VALUE",
64
+ * // Arn: "STRING_VALUE",
65
+ * // AppBlockArn: "STRING_VALUE",
66
+ * // IconS3Location: { // S3Location
67
+ * // S3Bucket: "STRING_VALUE", // required
68
+ * // S3Key: "STRING_VALUE", // required
69
+ * // },
70
+ * // Platforms: [ // Platforms
71
+ * // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
72
+ * // ],
73
+ * // InstanceFamilies: [ // StringList
74
+ * // "STRING_VALUE",
75
+ * // ],
76
+ * // CreatedTime: new Date("TIMESTAMP"),
77
+ * // },
78
+ * // ],
79
+ * // CreatedTime: new Date("TIMESTAMP"),
80
+ * // PublicBaseImageReleasedDate: new Date("TIMESTAMP"),
81
+ * // AppstreamAgentVersion: "STRING_VALUE",
82
+ * // ImagePermissions: { // ImagePermissions
83
+ * // allowFleet: true || false,
84
+ * // allowImageBuilder: true || false,
85
+ * // },
86
+ * // ImageErrors: [ // ResourceErrors
87
+ * // { // ResourceError
88
+ * // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
89
+ * // ErrorMessage: "STRING_VALUE",
90
+ * // ErrorTimestamp: new Date("TIMESTAMP"),
91
+ * // },
92
+ * // ],
93
+ * // },
94
+ * // };
95
+ *
35
96
  * ```
36
97
  *
37
98
  * @param DeleteImageCommandInput - {@link DeleteImageCommandInput}
@@ -52,6 +113,8 @@ export interface DeleteImageCommandOutput extends DeleteImageResult, __MetadataB
52
113
  * @throws {@link ResourceNotFoundException} (client fault)
53
114
  * <p>The specified resource was not found.</p>
54
115
  *
116
+ * @throws {@link AppStreamServiceException}
117
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
55
118
  *
56
119
  */
57
120
  export declare class DeleteImageCommand extends $Command<DeleteImageCommandInput, DeleteImageCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteImagePermissionsCommandOutput extends DeleteImagePermissi
32
32
  * };
33
33
  * const command = new DeleteImagePermissionsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteImagePermissionsCommandInput - {@link DeleteImagePermissionsCommandInput}
@@ -46,6 +48,8 @@ export interface DeleteImagePermissionsCommandOutput extends DeleteImagePermissi
46
48
  * @throws {@link ResourceNotFoundException} (client fault)
47
49
  * <p>The specified resource was not found.</p>
48
50
  *
51
+ * @throws {@link AppStreamServiceException}
52
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
49
53
  *
50
54
  */
51
55
  export declare class DeleteImagePermissionsCommand extends $Command<DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput, AppStreamClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteStackCommandOutput extends DeleteStackResult, __MetadataB
31
31
  * };
32
32
  * const command = new DeleteStackCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteStackCommandInput - {@link DeleteStackCommandInput}
@@ -51,6 +53,8 @@ export interface DeleteStackCommandOutput extends DeleteStackResult, __MetadataB
51
53
  * @throws {@link ResourceNotFoundException} (client fault)
52
54
  * <p>The specified resource was not found.</p>
53
55
  *
56
+ * @throws {@link AppStreamServiceException}
57
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
54
58
  *
55
59
  */
56
60
  export declare class DeleteStackCommand extends $Command<DeleteStackCommandInput, DeleteStackCommandOutput, AppStreamClientResolvedConfig> {
@@ -29,6 +29,8 @@ export interface DeleteUsageReportSubscriptionCommandOutput extends DeleteUsageR
29
29
  * const input = {};
30
30
  * const command = new DeleteUsageReportSubscriptionCommand(input);
31
31
  * const response = await client.send(command);
32
+ * // {};
33
+ *
32
34
  * ```
33
35
  *
34
36
  * @param DeleteUsageReportSubscriptionCommandInput - {@link DeleteUsageReportSubscriptionCommandInput}
@@ -43,6 +45,8 @@ export interface DeleteUsageReportSubscriptionCommandOutput extends DeleteUsageR
43
45
  * @throws {@link ResourceNotFoundException} (client fault)
44
46
  * <p>The specified resource was not found.</p>
45
47
  *
48
+ * @throws {@link AppStreamServiceException}
49
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
46
50
  *
47
51
  */
48
52
  export declare class DeleteUsageReportSubscriptionCommand extends $Command<DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteUserCommandOutput extends DeleteUserResult, __MetadataBea
32
32
  * };
33
33
  * const command = new DeleteUserCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteUserCommandInput - {@link DeleteUserCommandInput}
@@ -43,6 +45,8 @@ export interface DeleteUserCommandOutput extends DeleteUserResult, __MetadataBea
43
45
  * @throws {@link ResourceNotFoundException} (client fault)
44
46
  * <p>The specified resource was not found.</p>
45
47
  *
48
+ * @throws {@link AppStreamServiceException}
49
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
46
50
  *
47
51
  */
48
52
  export declare class DeleteUserCommand extends $Command<DeleteUserCommandInput, DeleteUserCommandOutput, AppStreamClientResolvedConfig> {
@@ -35,6 +35,32 @@ export interface DescribeAppBlocksCommandOutput extends DescribeAppBlocksResult,
35
35
  * };
36
36
  * const command = new DescribeAppBlocksCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeAppBlocksResult
39
+ * // AppBlocks: [ // AppBlocks
40
+ * // { // AppBlock
41
+ * // Name: "STRING_VALUE", // required
42
+ * // Arn: "STRING_VALUE", // required
43
+ * // Description: "STRING_VALUE",
44
+ * // DisplayName: "STRING_VALUE",
45
+ * // SourceS3Location: { // S3Location
46
+ * // S3Bucket: "STRING_VALUE", // required
47
+ * // S3Key: "STRING_VALUE", // required
48
+ * // },
49
+ * // SetupScriptDetails: { // ScriptDetails
50
+ * // ScriptS3Location: {
51
+ * // S3Bucket: "STRING_VALUE", // required
52
+ * // S3Key: "STRING_VALUE", // required
53
+ * // },
54
+ * // ExecutablePath: "STRING_VALUE", // required
55
+ * // ExecutableParameters: "STRING_VALUE",
56
+ * // TimeoutInSeconds: Number("int"), // required
57
+ * // },
58
+ * // CreatedTime: new Date("TIMESTAMP"),
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // };
63
+ *
38
64
  * ```
39
65
  *
40
66
  * @param DescribeAppBlocksCommandInput - {@link DescribeAppBlocksCommandInput}
@@ -49,6 +75,8 @@ export interface DescribeAppBlocksCommandOutput extends DescribeAppBlocksResult,
49
75
  * @throws {@link ResourceNotFoundException} (client fault)
50
76
  * <p>The specified resource was not found.</p>
51
77
  *
78
+ * @throws {@link AppStreamServiceException}
79
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
52
80
  *
53
81
  */
54
82
  export declare class DescribeAppBlocksCommand extends $Command<DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput, AppStreamClientResolvedConfig> {
@@ -34,6 +34,16 @@ export interface DescribeApplicationFleetAssociationsCommandOutput extends Descr
34
34
  * };
35
35
  * const command = new DescribeApplicationFleetAssociationsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeApplicationFleetAssociationsResult
38
+ * // ApplicationFleetAssociations: [ // ApplicationFleetAssociationList
39
+ * // { // ApplicationFleetAssociation
40
+ * // FleetName: "STRING_VALUE", // required
41
+ * // ApplicationArn: "STRING_VALUE", // required
42
+ * // },
43
+ * // ],
44
+ * // NextToken: "STRING_VALUE",
45
+ * // };
46
+ *
37
47
  * ```
38
48
  *
39
49
  * @param DescribeApplicationFleetAssociationsCommandInput - {@link DescribeApplicationFleetAssociationsCommandInput}
@@ -48,6 +58,8 @@ export interface DescribeApplicationFleetAssociationsCommandOutput extends Descr
48
58
  * @throws {@link OperationNotPermittedException} (client fault)
49
59
  * <p>The attempted operation is not permitted.</p>
50
60
  *
61
+ * @throws {@link AppStreamServiceException}
62
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
51
63
  *
52
64
  */
53
65
  export declare class DescribeApplicationFleetAssociationsCommand extends $Command<DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput, AppStreamClientResolvedConfig> {
@@ -35,6 +35,38 @@ export interface DescribeApplicationsCommandOutput extends DescribeApplicationsR
35
35
  * };
36
36
  * const command = new DescribeApplicationsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeApplicationsResult
39
+ * // Applications: [ // Applications
40
+ * // { // Application
41
+ * // Name: "STRING_VALUE",
42
+ * // DisplayName: "STRING_VALUE",
43
+ * // IconURL: "STRING_VALUE",
44
+ * // LaunchPath: "STRING_VALUE",
45
+ * // LaunchParameters: "STRING_VALUE",
46
+ * // Enabled: true || false,
47
+ * // Metadata: { // Metadata
48
+ * // "<keys>": "STRING_VALUE",
49
+ * // },
50
+ * // WorkingDirectory: "STRING_VALUE",
51
+ * // Description: "STRING_VALUE",
52
+ * // Arn: "STRING_VALUE",
53
+ * // AppBlockArn: "STRING_VALUE",
54
+ * // IconS3Location: { // S3Location
55
+ * // S3Bucket: "STRING_VALUE", // required
56
+ * // S3Key: "STRING_VALUE", // required
57
+ * // },
58
+ * // Platforms: [ // Platforms
59
+ * // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
60
+ * // ],
61
+ * // InstanceFamilies: [ // StringList
62
+ * // "STRING_VALUE",
63
+ * // ],
64
+ * // CreatedTime: new Date("TIMESTAMP"),
65
+ * // },
66
+ * // ],
67
+ * // NextToken: "STRING_VALUE",
68
+ * // };
69
+ *
38
70
  * ```
39
71
  *
40
72
  * @param DescribeApplicationsCommandInput - {@link DescribeApplicationsCommandInput}
@@ -49,6 +81,8 @@ export interface DescribeApplicationsCommandOutput extends DescribeApplicationsR
49
81
  * @throws {@link ResourceNotFoundException} (client fault)
50
82
  * <p>The specified resource was not found.</p>
51
83
  *
84
+ * @throws {@link AppStreamServiceException}
85
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
52
86
  *
53
87
  */
54
88
  export declare class DescribeApplicationsCommand extends $Command<DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput, AppStreamClientResolvedConfig> {
@@ -37,6 +37,27 @@ export interface DescribeDirectoryConfigsCommandOutput extends DescribeDirectory
37
37
  * };
38
38
  * const command = new DescribeDirectoryConfigsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // DescribeDirectoryConfigsResult
41
+ * // DirectoryConfigs: [ // DirectoryConfigList
42
+ * // { // DirectoryConfig
43
+ * // DirectoryName: "STRING_VALUE", // required
44
+ * // OrganizationalUnitDistinguishedNames: [ // OrganizationalUnitDistinguishedNamesList
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // ServiceAccountCredentials: { // ServiceAccountCredentials
48
+ * // AccountName: "STRING_VALUE", // required
49
+ * // AccountPassword: "STRING_VALUE", // required
50
+ * // },
51
+ * // CreatedTime: new Date("TIMESTAMP"),
52
+ * // CertificateBasedAuthProperties: { // CertificateBasedAuthProperties
53
+ * // Status: "DISABLED" || "ENABLED" || "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK",
54
+ * // CertificateAuthorityArn: "STRING_VALUE",
55
+ * // },
56
+ * // },
57
+ * // ],
58
+ * // NextToken: "STRING_VALUE",
59
+ * // };
60
+ *
40
61
  * ```
41
62
  *
42
63
  * @param DescribeDirectoryConfigsCommandInput - {@link DescribeDirectoryConfigsCommandInput}
@@ -48,6 +69,8 @@ export interface DescribeDirectoryConfigsCommandOutput extends DescribeDirectory
48
69
  * @throws {@link ResourceNotFoundException} (client fault)
49
70
  * <p>The specified resource was not found.</p>
50
71
  *
72
+ * @throws {@link AppStreamServiceException}
73
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
51
74
  *
52
75
  */
53
76
  export declare class DescribeDirectoryConfigsCommand extends $Command<DescribeDirectoryConfigsCommandInput, DescribeDirectoryConfigsCommandOutput, AppStreamClientResolvedConfig> {
@@ -34,6 +34,26 @@ export interface DescribeEntitlementsCommandOutput extends DescribeEntitlementsR
34
34
  * };
35
35
  * const command = new DescribeEntitlementsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeEntitlementsResult
38
+ * // Entitlements: [ // EntitlementList
39
+ * // { // Entitlement
40
+ * // Name: "STRING_VALUE", // required
41
+ * // StackName: "STRING_VALUE", // required
42
+ * // Description: "STRING_VALUE",
43
+ * // AppVisibility: "ALL" || "ASSOCIATED", // required
44
+ * // Attributes: [ // EntitlementAttributeList // required
45
+ * // { // EntitlementAttribute
46
+ * // Name: "STRING_VALUE", // required
47
+ * // Value: "STRING_VALUE", // required
48
+ * // },
49
+ * // ],
50
+ * // CreatedTime: new Date("TIMESTAMP"),
51
+ * // LastModifiedTime: new Date("TIMESTAMP"),
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
37
57
  * ```
38
58
  *
39
59
  * @param DescribeEntitlementsCommandInput - {@link DescribeEntitlementsCommandInput}
@@ -51,6 +71,8 @@ export interface DescribeEntitlementsCommandOutput extends DescribeEntitlementsR
51
71
  * @throws {@link ResourceNotFoundException} (client fault)
52
72
  * <p>The specified resource was not found.</p>
53
73
  *
74
+ * @throws {@link AppStreamServiceException}
75
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
54
76
  *
55
77
  */
56
78
  export declare class DescribeEntitlementsCommand extends $Command<DescribeEntitlementsCommandInput, DescribeEntitlementsCommandOutput, AppStreamClientResolvedConfig> {
@@ -34,6 +34,63 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
34
34
  * };
35
35
  * const command = new DescribeFleetsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeFleetsResult
38
+ * // Fleets: [ // FleetList
39
+ * // { // Fleet
40
+ * // Arn: "STRING_VALUE", // required
41
+ * // Name: "STRING_VALUE", // required
42
+ * // DisplayName: "STRING_VALUE",
43
+ * // Description: "STRING_VALUE",
44
+ * // ImageName: "STRING_VALUE",
45
+ * // ImageArn: "STRING_VALUE",
46
+ * // InstanceType: "STRING_VALUE", // required
47
+ * // FleetType: "ALWAYS_ON" || "ON_DEMAND" || "ELASTIC",
48
+ * // ComputeCapacityStatus: { // ComputeCapacityStatus
49
+ * // Desired: Number("int"), // required
50
+ * // Running: Number("int"),
51
+ * // InUse: Number("int"),
52
+ * // Available: Number("int"),
53
+ * // },
54
+ * // MaxUserDurationInSeconds: Number("int"),
55
+ * // DisconnectTimeoutInSeconds: Number("int"),
56
+ * // State: "STARTING" || "RUNNING" || "STOPPING" || "STOPPED", // required
57
+ * // VpcConfig: { // VpcConfig
58
+ * // SubnetIds: [ // SubnetIdList
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // SecurityGroupIds: [ // SecurityGroupIdList
62
+ * // "STRING_VALUE",
63
+ * // ],
64
+ * // },
65
+ * // CreatedTime: new Date("TIMESTAMP"),
66
+ * // FleetErrors: [ // FleetErrors
67
+ * // { // FleetError
68
+ * // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
69
+ * // ErrorMessage: "STRING_VALUE",
70
+ * // },
71
+ * // ],
72
+ * // EnableDefaultInternetAccess: true || false,
73
+ * // DomainJoinInfo: { // DomainJoinInfo
74
+ * // DirectoryName: "STRING_VALUE",
75
+ * // OrganizationalUnitDistinguishedName: "STRING_VALUE",
76
+ * // },
77
+ * // IdleDisconnectTimeoutInSeconds: Number("int"),
78
+ * // IamRoleArn: "STRING_VALUE",
79
+ * // StreamView: "APP" || "DESKTOP",
80
+ * // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
81
+ * // MaxConcurrentSessions: Number("int"),
82
+ * // UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
83
+ * // "STRING_VALUE",
84
+ * // ],
85
+ * // SessionScriptS3Location: { // S3Location
86
+ * // S3Bucket: "STRING_VALUE", // required
87
+ * // S3Key: "STRING_VALUE", // required
88
+ * // },
89
+ * // },
90
+ * // ],
91
+ * // NextToken: "STRING_VALUE",
92
+ * // };
93
+ *
37
94
  * ```
38
95
  *
39
96
  * @param DescribeFleetsCommandInput - {@link DescribeFleetsCommandInput}
@@ -45,6 +102,8 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
45
102
  * @throws {@link ResourceNotFoundException} (client fault)
46
103
  * <p>The specified resource was not found.</p>
47
104
  *
105
+ * @throws {@link AppStreamServiceException}
106
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
48
107
  *
49
108
  */
50
109
  export declare class DescribeFleetsCommand extends $Command<DescribeFleetsCommandInput, DescribeFleetsCommandOutput, AppStreamClientResolvedConfig> {