@aws-sdk/client-appstream 3.278.0 → 3.281.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 (67) hide show
  1. package/README.md +523 -0
  2. package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +6 -0
  3. package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +6 -0
  4. package/dist-types/commands/AssociateFleetCommand.d.ts +6 -0
  5. package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +6 -0
  6. package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +6 -0
  7. package/dist-types/commands/CopyImageCommand.d.ts +6 -0
  8. package/dist-types/commands/CreateAppBlockCommand.d.ts +6 -0
  9. package/dist-types/commands/CreateApplicationCommand.d.ts +6 -0
  10. package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +6 -0
  11. package/dist-types/commands/CreateEntitlementCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateFleetCommand.d.ts +6 -0
  13. package/dist-types/commands/CreateImageBuilderCommand.d.ts +6 -0
  14. package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +6 -0
  15. package/dist-types/commands/CreateStackCommand.d.ts +6 -0
  16. package/dist-types/commands/CreateStreamingURLCommand.d.ts +6 -0
  17. package/dist-types/commands/CreateUpdatedImageCommand.d.ts +6 -0
  18. package/dist-types/commands/CreateUsageReportSubscriptionCommand.d.ts +6 -0
  19. package/dist-types/commands/CreateUserCommand.d.ts +6 -0
  20. package/dist-types/commands/DeleteAppBlockCommand.d.ts +6 -0
  21. package/dist-types/commands/DeleteApplicationCommand.d.ts +6 -0
  22. package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +6 -0
  23. package/dist-types/commands/DeleteEntitlementCommand.d.ts +6 -0
  24. package/dist-types/commands/DeleteFleetCommand.d.ts +6 -0
  25. package/dist-types/commands/DeleteImageBuilderCommand.d.ts +6 -0
  26. package/dist-types/commands/DeleteImageCommand.d.ts +6 -0
  27. package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +6 -0
  28. package/dist-types/commands/DeleteStackCommand.d.ts +6 -0
  29. package/dist-types/commands/DeleteUsageReportSubscriptionCommand.d.ts +6 -0
  30. package/dist-types/commands/DeleteUserCommand.d.ts +6 -0
  31. package/dist-types/commands/DescribeAppBlocksCommand.d.ts +6 -0
  32. package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +6 -0
  33. package/dist-types/commands/DescribeApplicationsCommand.d.ts +6 -0
  34. package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +6 -0
  35. package/dist-types/commands/DescribeEntitlementsCommand.d.ts +6 -0
  36. package/dist-types/commands/DescribeFleetsCommand.d.ts +6 -0
  37. package/dist-types/commands/DescribeImageBuildersCommand.d.ts +6 -0
  38. package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +6 -0
  39. package/dist-types/commands/DescribeImagesCommand.d.ts +6 -0
  40. package/dist-types/commands/DescribeSessionsCommand.d.ts +6 -0
  41. package/dist-types/commands/DescribeStacksCommand.d.ts +6 -0
  42. package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +6 -0
  43. package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +6 -0
  44. package/dist-types/commands/DescribeUsersCommand.d.ts +6 -0
  45. package/dist-types/commands/DisableUserCommand.d.ts +6 -0
  46. package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +6 -0
  47. package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +6 -0
  48. package/dist-types/commands/DisassociateFleetCommand.d.ts +6 -0
  49. package/dist-types/commands/EnableUserCommand.d.ts +6 -0
  50. package/dist-types/commands/ExpireSessionCommand.d.ts +6 -0
  51. package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +6 -0
  52. package/dist-types/commands/ListAssociatedStacksCommand.d.ts +6 -0
  53. package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +6 -0
  54. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  55. package/dist-types/commands/StartFleetCommand.d.ts +6 -0
  56. package/dist-types/commands/StartImageBuilderCommand.d.ts +6 -0
  57. package/dist-types/commands/StopFleetCommand.d.ts +6 -0
  58. package/dist-types/commands/StopImageBuilderCommand.d.ts +6 -0
  59. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  60. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  61. package/dist-types/commands/UpdateApplicationCommand.d.ts +6 -0
  62. package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +6 -0
  63. package/dist-types/commands/UpdateEntitlementCommand.d.ts +6 -0
  64. package/dist-types/commands/UpdateFleetCommand.d.ts +6 -0
  65. package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +6 -0
  66. package/dist-types/commands/UpdateStackCommand.d.ts +6 -0
  67. package/package.json +6 -6
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateAppBlockRequest, CreateAppBlockResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateAppBlockCommand}.
8
+ */
6
9
  export interface CreateAppBlockCommandInput extends CreateAppBlockRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateAppBlockCommand}.
13
+ */
8
14
  export interface CreateAppBlockCommandOutput extends CreateAppBlockResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateApplicationRequest, CreateApplicationResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateApplicationCommand}.
8
+ */
6
9
  export interface CreateApplicationCommandInput extends CreateApplicationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateApplicationCommand}.
13
+ */
8
14
  export interface CreateApplicationCommandOutput extends CreateApplicationResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateDirectoryConfigRequest, CreateDirectoryConfigResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateDirectoryConfigCommand}.
8
+ */
6
9
  export interface CreateDirectoryConfigCommandInput extends CreateDirectoryConfigRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateDirectoryConfigCommand}.
13
+ */
8
14
  export interface CreateDirectoryConfigCommandOutput extends CreateDirectoryConfigResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateEntitlementRequest, CreateEntitlementResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateEntitlementCommand}.
8
+ */
6
9
  export interface CreateEntitlementCommandInput extends CreateEntitlementRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateEntitlementCommand}.
13
+ */
8
14
  export interface CreateEntitlementCommandOutput extends CreateEntitlementResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateFleetRequest, CreateFleetResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateFleetCommand}.
8
+ */
6
9
  export interface CreateFleetCommandInput extends CreateFleetRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateFleetCommand}.
13
+ */
8
14
  export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateImageBuilderRequest, CreateImageBuilderResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateImageBuilderCommand}.
8
+ */
6
9
  export interface CreateImageBuilderCommandInput extends CreateImageBuilderRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateImageBuilderCommand}.
13
+ */
8
14
  export interface CreateImageBuilderCommandOutput extends CreateImageBuilderResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateImageBuilderStreamingURLRequest, CreateImageBuilderStreamingURLResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateImageBuilderStreamingURLCommand}.
8
+ */
6
9
  export interface CreateImageBuilderStreamingURLCommandInput extends CreateImageBuilderStreamingURLRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateImageBuilderStreamingURLCommand}.
13
+ */
8
14
  export interface CreateImageBuilderStreamingURLCommandOutput extends CreateImageBuilderStreamingURLResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateStackRequest, CreateStackResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateStackCommand}.
8
+ */
6
9
  export interface CreateStackCommandInput extends CreateStackRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateStackCommand}.
13
+ */
8
14
  export interface CreateStackCommandOutput extends CreateStackResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateStreamingURLRequest, CreateStreamingURLResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateStreamingURLCommand}.
8
+ */
6
9
  export interface CreateStreamingURLCommandInput extends CreateStreamingURLRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateStreamingURLCommand}.
13
+ */
8
14
  export interface CreateStreamingURLCommandOutput extends CreateStreamingURLResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateUpdatedImageRequest, CreateUpdatedImageResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateUpdatedImageCommand}.
8
+ */
6
9
  export interface CreateUpdatedImageCommandInput extends CreateUpdatedImageRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateUpdatedImageCommand}.
13
+ */
8
14
  export interface CreateUpdatedImageCommandOutput extends CreateUpdatedImageResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateUsageReportSubscriptionRequest, CreateUsageReportSubscriptionResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateUsageReportSubscriptionCommand}.
8
+ */
6
9
  export interface CreateUsageReportSubscriptionCommandInput extends CreateUsageReportSubscriptionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateUsageReportSubscriptionCommand}.
13
+ */
8
14
  export interface CreateUsageReportSubscriptionCommandOutput extends CreateUsageReportSubscriptionResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { CreateUserRequest, CreateUserResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link CreateUserCommand}.
8
+ */
6
9
  export interface CreateUserCommandInput extends CreateUserRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link CreateUserCommand}.
13
+ */
8
14
  export interface CreateUserCommandOutput extends CreateUserResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteAppBlockRequest, DeleteAppBlockResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteAppBlockCommand}.
8
+ */
6
9
  export interface DeleteAppBlockCommandInput extends DeleteAppBlockRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteAppBlockCommand}.
13
+ */
8
14
  export interface DeleteAppBlockCommandOutput extends DeleteAppBlockResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteApplicationRequest, DeleteApplicationResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteApplicationCommand}.
8
+ */
6
9
  export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteApplicationCommand}.
13
+ */
8
14
  export interface DeleteApplicationCommandOutput extends DeleteApplicationResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteDirectoryConfigRequest, DeleteDirectoryConfigResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteDirectoryConfigCommand}.
8
+ */
6
9
  export interface DeleteDirectoryConfigCommandInput extends DeleteDirectoryConfigRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteDirectoryConfigCommand}.
13
+ */
8
14
  export interface DeleteDirectoryConfigCommandOutput extends DeleteDirectoryConfigResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteEntitlementRequest, DeleteEntitlementResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteEntitlementCommand}.
8
+ */
6
9
  export interface DeleteEntitlementCommandInput extends DeleteEntitlementRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteEntitlementCommand}.
13
+ */
8
14
  export interface DeleteEntitlementCommandOutput extends DeleteEntitlementResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteFleetRequest, DeleteFleetResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteFleetCommand}.
8
+ */
6
9
  export interface DeleteFleetCommandInput extends DeleteFleetRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteFleetCommand}.
13
+ */
8
14
  export interface DeleteFleetCommandOutput extends DeleteFleetResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteImageBuilderRequest, DeleteImageBuilderResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteImageBuilderCommand}.
8
+ */
6
9
  export interface DeleteImageBuilderCommandInput extends DeleteImageBuilderRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteImageBuilderCommand}.
13
+ */
8
14
  export interface DeleteImageBuilderCommandOutput extends DeleteImageBuilderResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteImageRequest, DeleteImageResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteImageCommand}.
8
+ */
6
9
  export interface DeleteImageCommandInput extends DeleteImageRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteImageCommand}.
13
+ */
8
14
  export interface DeleteImageCommandOutput extends DeleteImageResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteImagePermissionsRequest, DeleteImagePermissionsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteImagePermissionsCommand}.
8
+ */
6
9
  export interface DeleteImagePermissionsCommandInput extends DeleteImagePermissionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteImagePermissionsCommand}.
13
+ */
8
14
  export interface DeleteImagePermissionsCommandOutput extends DeleteImagePermissionsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteStackRequest, DeleteStackResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteStackCommand}.
8
+ */
6
9
  export interface DeleteStackCommandInput extends DeleteStackRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteStackCommand}.
13
+ */
8
14
  export interface DeleteStackCommandOutput extends DeleteStackResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteUsageReportSubscriptionRequest, DeleteUsageReportSubscriptionResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteUsageReportSubscriptionCommand}.
8
+ */
6
9
  export interface DeleteUsageReportSubscriptionCommandInput extends DeleteUsageReportSubscriptionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteUsageReportSubscriptionCommand}.
13
+ */
8
14
  export interface DeleteUsageReportSubscriptionCommandOutput extends DeleteUsageReportSubscriptionResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DeleteUserRequest, DeleteUserResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteUserCommand}.
8
+ */
6
9
  export interface DeleteUserCommandInput extends DeleteUserRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteUserCommand}.
13
+ */
8
14
  export interface DeleteUserCommandOutput extends DeleteUserResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeAppBlocksRequest, DescribeAppBlocksResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeAppBlocksCommand}.
8
+ */
6
9
  export interface DescribeAppBlocksCommandInput extends DescribeAppBlocksRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeAppBlocksCommand}.
13
+ */
8
14
  export interface DescribeAppBlocksCommandOutput extends DescribeAppBlocksResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeApplicationFleetAssociationsRequest, DescribeApplicationFleetAssociationsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeApplicationFleetAssociationsCommand}.
8
+ */
6
9
  export interface DescribeApplicationFleetAssociationsCommandInput extends DescribeApplicationFleetAssociationsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeApplicationFleetAssociationsCommand}.
13
+ */
8
14
  export interface DescribeApplicationFleetAssociationsCommandOutput extends DescribeApplicationFleetAssociationsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeApplicationsRequest, DescribeApplicationsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeApplicationsCommand}.
8
+ */
6
9
  export interface DescribeApplicationsCommandInput extends DescribeApplicationsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeApplicationsCommand}.
13
+ */
8
14
  export interface DescribeApplicationsCommandOutput extends DescribeApplicationsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeDirectoryConfigsRequest, DescribeDirectoryConfigsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeDirectoryConfigsCommand}.
8
+ */
6
9
  export interface DescribeDirectoryConfigsCommandInput extends DescribeDirectoryConfigsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeDirectoryConfigsCommand}.
13
+ */
8
14
  export interface DescribeDirectoryConfigsCommandOutput extends DescribeDirectoryConfigsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeEntitlementsRequest, DescribeEntitlementsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeEntitlementsCommand}.
8
+ */
6
9
  export interface DescribeEntitlementsCommandInput extends DescribeEntitlementsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeEntitlementsCommand}.
13
+ */
8
14
  export interface DescribeEntitlementsCommandOutput extends DescribeEntitlementsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeFleetsRequest, DescribeFleetsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeFleetsCommand}.
8
+ */
6
9
  export interface DescribeFleetsCommandInput extends DescribeFleetsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeFleetsCommand}.
13
+ */
8
14
  export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeImageBuildersRequest, DescribeImageBuildersResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeImageBuildersCommand}.
8
+ */
6
9
  export interface DescribeImageBuildersCommandInput extends DescribeImageBuildersRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeImageBuildersCommand}.
13
+ */
8
14
  export interface DescribeImageBuildersCommandOutput extends DescribeImageBuildersResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeImagePermissionsRequest, DescribeImagePermissionsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeImagePermissionsCommand}.
8
+ */
6
9
  export interface DescribeImagePermissionsCommandInput extends DescribeImagePermissionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeImagePermissionsCommand}.
13
+ */
8
14
  export interface DescribeImagePermissionsCommandOutput extends DescribeImagePermissionsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeImagesRequest, DescribeImagesResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeImagesCommand}.
8
+ */
6
9
  export interface DescribeImagesCommandInput extends DescribeImagesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeImagesCommand}.
13
+ */
8
14
  export interface DescribeImagesCommandOutput extends DescribeImagesResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeSessionsRequest, DescribeSessionsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeSessionsCommand}.
8
+ */
6
9
  export interface DescribeSessionsCommandInput extends DescribeSessionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeSessionsCommand}.
13
+ */
8
14
  export interface DescribeSessionsCommandOutput extends DescribeSessionsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeStacksRequest, DescribeStacksResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeStacksCommand}.
8
+ */
6
9
  export interface DescribeStacksCommandInput extends DescribeStacksRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeStacksCommand}.
13
+ */
8
14
  export interface DescribeStacksCommandOutput extends DescribeStacksResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeUsageReportSubscriptionsRequest, DescribeUsageReportSubscriptionsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeUsageReportSubscriptionsCommand}.
8
+ */
6
9
  export interface DescribeUsageReportSubscriptionsCommandInput extends DescribeUsageReportSubscriptionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeUsageReportSubscriptionsCommand}.
13
+ */
8
14
  export interface DescribeUsageReportSubscriptionsCommandOutput extends DescribeUsageReportSubscriptionsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeUserStackAssociationsRequest, DescribeUserStackAssociationsResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeUserStackAssociationsCommand}.
8
+ */
6
9
  export interface DescribeUserStackAssociationsCommandInput extends DescribeUserStackAssociationsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeUserStackAssociationsCommand}.
13
+ */
8
14
  export interface DescribeUserStackAssociationsCommandOutput extends DescribeUserStackAssociationsResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DescribeUsersRequest, DescribeUsersResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DescribeUsersCommand}.
8
+ */
6
9
  export interface DescribeUsersCommandInput extends DescribeUsersRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DescribeUsersCommand}.
13
+ */
8
14
  export interface DescribeUsersCommandOutput extends DescribeUsersResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DisableUserRequest, DisableUserResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DisableUserCommand}.
8
+ */
6
9
  export interface DisableUserCommandInput extends DisableUserRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DisableUserCommand}.
13
+ */
8
14
  export interface DisableUserCommandOutput extends DisableUserResult, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
5
5
  import { DisassociateApplicationFleetRequest, DisassociateApplicationFleetResult } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DisassociateApplicationFleetCommand}.
8
+ */
6
9
  export interface DisassociateApplicationFleetCommandInput extends DisassociateApplicationFleetRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DisassociateApplicationFleetCommand}.
13
+ */
8
14
  export interface DisassociateApplicationFleetCommandOutput extends DisassociateApplicationFleetResult, __MetadataBearer {
9
15
  }
10
16
  /**