@aws-sdk/client-appstream 3.1019.0 → 3.1020.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/schemas/schemas_0.js +31 -15
- package/dist-es/AppStream.js +13 -13
- package/dist-es/models/enums.js +1 -0
- package/dist-es/schemas/schemas_0.js +24 -8
- package/dist-es/waiters/waitForFleetStarted.js +1 -1
- package/dist-es/waiters/waitForFleetStopped.js +1 -1
- package/dist-types/AppStream.d.ts +88 -88
- package/dist-types/AppStreamClient.d.ts +91 -91
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/commands/CreateStackCommand.d.ts +22 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +11 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +12 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +43 -1
- package/dist-types/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeAppBlockBuildersPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeImagePermissionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeImagesPaginator.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/AppStreamClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +10 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/dist-types/waiters/waitForFleetStarted.d.ts +3 -3
- package/dist-types/waiters/waitForFleetStopped.d.ts +3 -3
- package/package.json +14 -14
|
@@ -1,94 +1,94 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
2
|
import type { WaiterResult } from "@smithy/util-waiter";
|
|
3
3
|
import { AppStreamClient } from "./AppStreamClient";
|
|
4
|
-
import { AssociateAppBlockBuilderAppBlockCommandInput, AssociateAppBlockBuilderAppBlockCommandOutput } from "./commands/AssociateAppBlockBuilderAppBlockCommand";
|
|
5
|
-
import { AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput } from "./commands/AssociateApplicationFleetCommand";
|
|
6
|
-
import { AssociateApplicationToEntitlementCommandInput, AssociateApplicationToEntitlementCommandOutput } from "./commands/AssociateApplicationToEntitlementCommand";
|
|
7
|
-
import { AssociateFleetCommandInput, AssociateFleetCommandOutput } from "./commands/AssociateFleetCommand";
|
|
8
|
-
import { AssociateSoftwareToImageBuilderCommandInput, AssociateSoftwareToImageBuilderCommandOutput } from "./commands/AssociateSoftwareToImageBuilderCommand";
|
|
9
|
-
import { BatchAssociateUserStackCommandInput, BatchAssociateUserStackCommandOutput } from "./commands/BatchAssociateUserStackCommand";
|
|
10
|
-
import { BatchDisassociateUserStackCommandInput, BatchDisassociateUserStackCommandOutput } from "./commands/BatchDisassociateUserStackCommand";
|
|
11
|
-
import { CopyImageCommandInput, CopyImageCommandOutput } from "./commands/CopyImageCommand";
|
|
12
|
-
import { CreateAppBlockBuilderCommandInput, CreateAppBlockBuilderCommandOutput } from "./commands/CreateAppBlockBuilderCommand";
|
|
13
|
-
import { CreateAppBlockBuilderStreamingURLCommandInput, CreateAppBlockBuilderStreamingURLCommandOutput } from "./commands/CreateAppBlockBuilderStreamingURLCommand";
|
|
14
|
-
import { CreateAppBlockCommandInput, CreateAppBlockCommandOutput } from "./commands/CreateAppBlockCommand";
|
|
15
|
-
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
16
|
-
import { CreateDirectoryConfigCommandInput, CreateDirectoryConfigCommandOutput } from "./commands/CreateDirectoryConfigCommand";
|
|
17
|
-
import { CreateEntitlementCommandInput, CreateEntitlementCommandOutput } from "./commands/CreateEntitlementCommand";
|
|
18
|
-
import { CreateExportImageTaskCommandInput, CreateExportImageTaskCommandOutput } from "./commands/CreateExportImageTaskCommand";
|
|
19
|
-
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
20
|
-
import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from "./commands/CreateImageBuilderCommand";
|
|
21
|
-
import { CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput } from "./commands/CreateImageBuilderStreamingURLCommand";
|
|
22
|
-
import { CreateImportedImageCommandInput, CreateImportedImageCommandOutput } from "./commands/CreateImportedImageCommand";
|
|
23
|
-
import { CreateStackCommandInput, CreateStackCommandOutput } from "./commands/CreateStackCommand";
|
|
24
|
-
import { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from "./commands/CreateStreamingURLCommand";
|
|
25
|
-
import { CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput } from "./commands/CreateThemeForStackCommand";
|
|
26
|
-
import { CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput } from "./commands/CreateUpdatedImageCommand";
|
|
27
|
-
import { CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput } from "./commands/CreateUsageReportSubscriptionCommand";
|
|
28
|
-
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
29
|
-
import { DeleteAppBlockBuilderCommandInput, DeleteAppBlockBuilderCommandOutput } from "./commands/DeleteAppBlockBuilderCommand";
|
|
30
|
-
import { DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput } from "./commands/DeleteAppBlockCommand";
|
|
31
|
-
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
32
|
-
import { DeleteDirectoryConfigCommandInput, DeleteDirectoryConfigCommandOutput } from "./commands/DeleteDirectoryConfigCommand";
|
|
33
|
-
import { DeleteEntitlementCommandInput, DeleteEntitlementCommandOutput } from "./commands/DeleteEntitlementCommand";
|
|
34
|
-
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
35
|
-
import { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from "./commands/DeleteImageBuilderCommand";
|
|
36
|
-
import { DeleteImageCommandInput, DeleteImageCommandOutput } from "./commands/DeleteImageCommand";
|
|
37
|
-
import { DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput } from "./commands/DeleteImagePermissionsCommand";
|
|
38
|
-
import { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
|
|
39
|
-
import { DeleteThemeForStackCommandInput, DeleteThemeForStackCommandOutput } from "./commands/DeleteThemeForStackCommand";
|
|
40
|
-
import { DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput } from "./commands/DeleteUsageReportSubscriptionCommand";
|
|
41
|
-
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
42
|
-
import { DescribeAppBlockBuilderAppBlockAssociationsCommandInput, DescribeAppBlockBuilderAppBlockAssociationsCommandOutput } from "./commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
|
|
43
|
-
import { DescribeAppBlockBuildersCommandInput, DescribeAppBlockBuildersCommandOutput } from "./commands/DescribeAppBlockBuildersCommand";
|
|
44
|
-
import { DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput } from "./commands/DescribeAppBlocksCommand";
|
|
45
|
-
import { DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput } from "./commands/DescribeApplicationFleetAssociationsCommand";
|
|
46
|
-
import { DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput } from "./commands/DescribeApplicationsCommand";
|
|
47
|
-
import { DescribeAppLicenseUsageCommandInput, DescribeAppLicenseUsageCommandOutput } from "./commands/DescribeAppLicenseUsageCommand";
|
|
48
|
-
import { DescribeDirectoryConfigsCommandInput, DescribeDirectoryConfigsCommandOutput } from "./commands/DescribeDirectoryConfigsCommand";
|
|
49
|
-
import { DescribeEntitlementsCommandInput, DescribeEntitlementsCommandOutput } from "./commands/DescribeEntitlementsCommand";
|
|
50
|
-
import { DescribeFleetsCommandInput, DescribeFleetsCommandOutput } from "./commands/DescribeFleetsCommand";
|
|
51
|
-
import { DescribeImageBuildersCommandInput, DescribeImageBuildersCommandOutput } from "./commands/DescribeImageBuildersCommand";
|
|
52
|
-
import { DescribeImagePermissionsCommandInput, DescribeImagePermissionsCommandOutput } from "./commands/DescribeImagePermissionsCommand";
|
|
53
|
-
import { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "./commands/DescribeImagesCommand";
|
|
54
|
-
import { DescribeSessionsCommandInput, DescribeSessionsCommandOutput } from "./commands/DescribeSessionsCommand";
|
|
55
|
-
import { DescribeSoftwareAssociationsCommandInput, DescribeSoftwareAssociationsCommandOutput } from "./commands/DescribeSoftwareAssociationsCommand";
|
|
56
|
-
import { DescribeStacksCommandInput, DescribeStacksCommandOutput } from "./commands/DescribeStacksCommand";
|
|
57
|
-
import { DescribeThemeForStackCommandInput, DescribeThemeForStackCommandOutput } from "./commands/DescribeThemeForStackCommand";
|
|
58
|
-
import { DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput } from "./commands/DescribeUsageReportSubscriptionsCommand";
|
|
59
|
-
import { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "./commands/DescribeUsersCommand";
|
|
60
|
-
import { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "./commands/DescribeUserStackAssociationsCommand";
|
|
61
|
-
import { DisableUserCommandInput, DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
62
|
-
import { DisassociateAppBlockBuilderAppBlockCommandInput, DisassociateAppBlockBuilderAppBlockCommandOutput } from "./commands/DisassociateAppBlockBuilderAppBlockCommand";
|
|
63
|
-
import { DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput } from "./commands/DisassociateApplicationFleetCommand";
|
|
64
|
-
import { DisassociateApplicationFromEntitlementCommandInput, DisassociateApplicationFromEntitlementCommandOutput } from "./commands/DisassociateApplicationFromEntitlementCommand";
|
|
65
|
-
import { DisassociateFleetCommandInput, DisassociateFleetCommandOutput } from "./commands/DisassociateFleetCommand";
|
|
66
|
-
import { DisassociateSoftwareFromImageBuilderCommandInput, DisassociateSoftwareFromImageBuilderCommandOutput } from "./commands/DisassociateSoftwareFromImageBuilderCommand";
|
|
67
|
-
import { EnableUserCommandInput, EnableUserCommandOutput } from "./commands/EnableUserCommand";
|
|
68
|
-
import { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
69
|
-
import { GetExportImageTaskCommandInput, GetExportImageTaskCommandOutput } from "./commands/GetExportImageTaskCommand";
|
|
70
|
-
import { ListAssociatedFleetsCommandInput, ListAssociatedFleetsCommandOutput } from "./commands/ListAssociatedFleetsCommand";
|
|
71
|
-
import { ListAssociatedStacksCommandInput, ListAssociatedStacksCommandOutput } from "./commands/ListAssociatedStacksCommand";
|
|
72
|
-
import { ListEntitledApplicationsCommandInput, ListEntitledApplicationsCommandOutput } from "./commands/ListEntitledApplicationsCommand";
|
|
73
|
-
import { ListExportImageTasksCommandInput, ListExportImageTasksCommandOutput } from "./commands/ListExportImageTasksCommand";
|
|
74
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
75
|
-
import { StartAppBlockBuilderCommandInput, StartAppBlockBuilderCommandOutput } from "./commands/StartAppBlockBuilderCommand";
|
|
76
|
-
import { StartFleetCommandInput, StartFleetCommandOutput } from "./commands/StartFleetCommand";
|
|
77
|
-
import { StartImageBuilderCommandInput, StartImageBuilderCommandOutput } from "./commands/StartImageBuilderCommand";
|
|
78
|
-
import { StartSoftwareDeploymentToImageBuilderCommandInput, StartSoftwareDeploymentToImageBuilderCommandOutput } from "./commands/StartSoftwareDeploymentToImageBuilderCommand";
|
|
79
|
-
import { StopAppBlockBuilderCommandInput, StopAppBlockBuilderCommandOutput } from "./commands/StopAppBlockBuilderCommand";
|
|
80
|
-
import { StopFleetCommandInput, StopFleetCommandOutput } from "./commands/StopFleetCommand";
|
|
81
|
-
import { StopImageBuilderCommandInput, StopImageBuilderCommandOutput } from "./commands/StopImageBuilderCommand";
|
|
82
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
83
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
84
|
-
import { UpdateAppBlockBuilderCommandInput, UpdateAppBlockBuilderCommandOutput } from "./commands/UpdateAppBlockBuilderCommand";
|
|
85
|
-
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
86
|
-
import { UpdateDirectoryConfigCommandInput, UpdateDirectoryConfigCommandOutput } from "./commands/UpdateDirectoryConfigCommand";
|
|
87
|
-
import { UpdateEntitlementCommandInput, UpdateEntitlementCommandOutput } from "./commands/UpdateEntitlementCommand";
|
|
88
|
-
import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
|
|
89
|
-
import { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "./commands/UpdateImagePermissionsCommand";
|
|
90
|
-
import { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
|
|
91
|
-
import { UpdateThemeForStackCommandInput, UpdateThemeForStackCommandOutput } from "./commands/UpdateThemeForStackCommand";
|
|
4
|
+
import { type AssociateAppBlockBuilderAppBlockCommandInput, type AssociateAppBlockBuilderAppBlockCommandOutput } from "./commands/AssociateAppBlockBuilderAppBlockCommand";
|
|
5
|
+
import { type AssociateApplicationFleetCommandInput, type AssociateApplicationFleetCommandOutput } from "./commands/AssociateApplicationFleetCommand";
|
|
6
|
+
import { type AssociateApplicationToEntitlementCommandInput, type AssociateApplicationToEntitlementCommandOutput } from "./commands/AssociateApplicationToEntitlementCommand";
|
|
7
|
+
import { type AssociateFleetCommandInput, type AssociateFleetCommandOutput } from "./commands/AssociateFleetCommand";
|
|
8
|
+
import { type AssociateSoftwareToImageBuilderCommandInput, type AssociateSoftwareToImageBuilderCommandOutput } from "./commands/AssociateSoftwareToImageBuilderCommand";
|
|
9
|
+
import { type BatchAssociateUserStackCommandInput, type BatchAssociateUserStackCommandOutput } from "./commands/BatchAssociateUserStackCommand";
|
|
10
|
+
import { type BatchDisassociateUserStackCommandInput, type BatchDisassociateUserStackCommandOutput } from "./commands/BatchDisassociateUserStackCommand";
|
|
11
|
+
import { type CopyImageCommandInput, type CopyImageCommandOutput } from "./commands/CopyImageCommand";
|
|
12
|
+
import { type CreateAppBlockBuilderCommandInput, type CreateAppBlockBuilderCommandOutput } from "./commands/CreateAppBlockBuilderCommand";
|
|
13
|
+
import { type CreateAppBlockBuilderStreamingURLCommandInput, type CreateAppBlockBuilderStreamingURLCommandOutput } from "./commands/CreateAppBlockBuilderStreamingURLCommand";
|
|
14
|
+
import { type CreateAppBlockCommandInput, type CreateAppBlockCommandOutput } from "./commands/CreateAppBlockCommand";
|
|
15
|
+
import { type CreateApplicationCommandInput, type CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
16
|
+
import { type CreateDirectoryConfigCommandInput, type CreateDirectoryConfigCommandOutput } from "./commands/CreateDirectoryConfigCommand";
|
|
17
|
+
import { type CreateEntitlementCommandInput, type CreateEntitlementCommandOutput } from "./commands/CreateEntitlementCommand";
|
|
18
|
+
import { type CreateExportImageTaskCommandInput, type CreateExportImageTaskCommandOutput } from "./commands/CreateExportImageTaskCommand";
|
|
19
|
+
import { type CreateFleetCommandInput, type CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
20
|
+
import { type CreateImageBuilderCommandInput, type CreateImageBuilderCommandOutput } from "./commands/CreateImageBuilderCommand";
|
|
21
|
+
import { type CreateImageBuilderStreamingURLCommandInput, type CreateImageBuilderStreamingURLCommandOutput } from "./commands/CreateImageBuilderStreamingURLCommand";
|
|
22
|
+
import { type CreateImportedImageCommandInput, type CreateImportedImageCommandOutput } from "./commands/CreateImportedImageCommand";
|
|
23
|
+
import { type CreateStackCommandInput, type CreateStackCommandOutput } from "./commands/CreateStackCommand";
|
|
24
|
+
import { type CreateStreamingURLCommandInput, type CreateStreamingURLCommandOutput } from "./commands/CreateStreamingURLCommand";
|
|
25
|
+
import { type CreateThemeForStackCommandInput, type CreateThemeForStackCommandOutput } from "./commands/CreateThemeForStackCommand";
|
|
26
|
+
import { type CreateUpdatedImageCommandInput, type CreateUpdatedImageCommandOutput } from "./commands/CreateUpdatedImageCommand";
|
|
27
|
+
import { type CreateUsageReportSubscriptionCommandInput, type CreateUsageReportSubscriptionCommandOutput } from "./commands/CreateUsageReportSubscriptionCommand";
|
|
28
|
+
import { type CreateUserCommandInput, type CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
29
|
+
import { type DeleteAppBlockBuilderCommandInput, type DeleteAppBlockBuilderCommandOutput } from "./commands/DeleteAppBlockBuilderCommand";
|
|
30
|
+
import { type DeleteAppBlockCommandInput, type DeleteAppBlockCommandOutput } from "./commands/DeleteAppBlockCommand";
|
|
31
|
+
import { type DeleteApplicationCommandInput, type DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
32
|
+
import { type DeleteDirectoryConfigCommandInput, type DeleteDirectoryConfigCommandOutput } from "./commands/DeleteDirectoryConfigCommand";
|
|
33
|
+
import { type DeleteEntitlementCommandInput, type DeleteEntitlementCommandOutput } from "./commands/DeleteEntitlementCommand";
|
|
34
|
+
import { type DeleteFleetCommandInput, type DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
35
|
+
import { type DeleteImageBuilderCommandInput, type DeleteImageBuilderCommandOutput } from "./commands/DeleteImageBuilderCommand";
|
|
36
|
+
import { type DeleteImageCommandInput, type DeleteImageCommandOutput } from "./commands/DeleteImageCommand";
|
|
37
|
+
import { type DeleteImagePermissionsCommandInput, type DeleteImagePermissionsCommandOutput } from "./commands/DeleteImagePermissionsCommand";
|
|
38
|
+
import { type DeleteStackCommandInput, type DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
|
|
39
|
+
import { type DeleteThemeForStackCommandInput, type DeleteThemeForStackCommandOutput } from "./commands/DeleteThemeForStackCommand";
|
|
40
|
+
import { type DeleteUsageReportSubscriptionCommandInput, type DeleteUsageReportSubscriptionCommandOutput } from "./commands/DeleteUsageReportSubscriptionCommand";
|
|
41
|
+
import { type DeleteUserCommandInput, type DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
42
|
+
import { type DescribeAppBlockBuilderAppBlockAssociationsCommandInput, type DescribeAppBlockBuilderAppBlockAssociationsCommandOutput } from "./commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
|
|
43
|
+
import { type DescribeAppBlockBuildersCommandInput, type DescribeAppBlockBuildersCommandOutput } from "./commands/DescribeAppBlockBuildersCommand";
|
|
44
|
+
import { type DescribeAppBlocksCommandInput, type DescribeAppBlocksCommandOutput } from "./commands/DescribeAppBlocksCommand";
|
|
45
|
+
import { type DescribeApplicationFleetAssociationsCommandInput, type DescribeApplicationFleetAssociationsCommandOutput } from "./commands/DescribeApplicationFleetAssociationsCommand";
|
|
46
|
+
import { type DescribeApplicationsCommandInput, type DescribeApplicationsCommandOutput } from "./commands/DescribeApplicationsCommand";
|
|
47
|
+
import { type DescribeAppLicenseUsageCommandInput, type DescribeAppLicenseUsageCommandOutput } from "./commands/DescribeAppLicenseUsageCommand";
|
|
48
|
+
import { type DescribeDirectoryConfigsCommandInput, type DescribeDirectoryConfigsCommandOutput } from "./commands/DescribeDirectoryConfigsCommand";
|
|
49
|
+
import { type DescribeEntitlementsCommandInput, type DescribeEntitlementsCommandOutput } from "./commands/DescribeEntitlementsCommand";
|
|
50
|
+
import { type DescribeFleetsCommandInput, type DescribeFleetsCommandOutput } from "./commands/DescribeFleetsCommand";
|
|
51
|
+
import { type DescribeImageBuildersCommandInput, type DescribeImageBuildersCommandOutput } from "./commands/DescribeImageBuildersCommand";
|
|
52
|
+
import { type DescribeImagePermissionsCommandInput, type DescribeImagePermissionsCommandOutput } from "./commands/DescribeImagePermissionsCommand";
|
|
53
|
+
import { type DescribeImagesCommandInput, type DescribeImagesCommandOutput } from "./commands/DescribeImagesCommand";
|
|
54
|
+
import { type DescribeSessionsCommandInput, type DescribeSessionsCommandOutput } from "./commands/DescribeSessionsCommand";
|
|
55
|
+
import { type DescribeSoftwareAssociationsCommandInput, type DescribeSoftwareAssociationsCommandOutput } from "./commands/DescribeSoftwareAssociationsCommand";
|
|
56
|
+
import { type DescribeStacksCommandInput, type DescribeStacksCommandOutput } from "./commands/DescribeStacksCommand";
|
|
57
|
+
import { type DescribeThemeForStackCommandInput, type DescribeThemeForStackCommandOutput } from "./commands/DescribeThemeForStackCommand";
|
|
58
|
+
import { type DescribeUsageReportSubscriptionsCommandInput, type DescribeUsageReportSubscriptionsCommandOutput } from "./commands/DescribeUsageReportSubscriptionsCommand";
|
|
59
|
+
import { type DescribeUsersCommandInput, type DescribeUsersCommandOutput } from "./commands/DescribeUsersCommand";
|
|
60
|
+
import { type DescribeUserStackAssociationsCommandInput, type DescribeUserStackAssociationsCommandOutput } from "./commands/DescribeUserStackAssociationsCommand";
|
|
61
|
+
import { type DisableUserCommandInput, type DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
62
|
+
import { type DisassociateAppBlockBuilderAppBlockCommandInput, type DisassociateAppBlockBuilderAppBlockCommandOutput } from "./commands/DisassociateAppBlockBuilderAppBlockCommand";
|
|
63
|
+
import { type DisassociateApplicationFleetCommandInput, type DisassociateApplicationFleetCommandOutput } from "./commands/DisassociateApplicationFleetCommand";
|
|
64
|
+
import { type DisassociateApplicationFromEntitlementCommandInput, type DisassociateApplicationFromEntitlementCommandOutput } from "./commands/DisassociateApplicationFromEntitlementCommand";
|
|
65
|
+
import { type DisassociateFleetCommandInput, type DisassociateFleetCommandOutput } from "./commands/DisassociateFleetCommand";
|
|
66
|
+
import { type DisassociateSoftwareFromImageBuilderCommandInput, type DisassociateSoftwareFromImageBuilderCommandOutput } from "./commands/DisassociateSoftwareFromImageBuilderCommand";
|
|
67
|
+
import { type EnableUserCommandInput, type EnableUserCommandOutput } from "./commands/EnableUserCommand";
|
|
68
|
+
import { type ExpireSessionCommandInput, type ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
69
|
+
import { type GetExportImageTaskCommandInput, type GetExportImageTaskCommandOutput } from "./commands/GetExportImageTaskCommand";
|
|
70
|
+
import { type ListAssociatedFleetsCommandInput, type ListAssociatedFleetsCommandOutput } from "./commands/ListAssociatedFleetsCommand";
|
|
71
|
+
import { type ListAssociatedStacksCommandInput, type ListAssociatedStacksCommandOutput } from "./commands/ListAssociatedStacksCommand";
|
|
72
|
+
import { type ListEntitledApplicationsCommandInput, type ListEntitledApplicationsCommandOutput } from "./commands/ListEntitledApplicationsCommand";
|
|
73
|
+
import { type ListExportImageTasksCommandInput, type ListExportImageTasksCommandOutput } from "./commands/ListExportImageTasksCommand";
|
|
74
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
75
|
+
import { type StartAppBlockBuilderCommandInput, type StartAppBlockBuilderCommandOutput } from "./commands/StartAppBlockBuilderCommand";
|
|
76
|
+
import { type StartFleetCommandInput, type StartFleetCommandOutput } from "./commands/StartFleetCommand";
|
|
77
|
+
import { type StartImageBuilderCommandInput, type StartImageBuilderCommandOutput } from "./commands/StartImageBuilderCommand";
|
|
78
|
+
import { type StartSoftwareDeploymentToImageBuilderCommandInput, type StartSoftwareDeploymentToImageBuilderCommandOutput } from "./commands/StartSoftwareDeploymentToImageBuilderCommand";
|
|
79
|
+
import { type StopAppBlockBuilderCommandInput, type StopAppBlockBuilderCommandOutput } from "./commands/StopAppBlockBuilderCommand";
|
|
80
|
+
import { type StopFleetCommandInput, type StopFleetCommandOutput } from "./commands/StopFleetCommand";
|
|
81
|
+
import { type StopImageBuilderCommandInput, type StopImageBuilderCommandOutput } from "./commands/StopImageBuilderCommand";
|
|
82
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
83
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
84
|
+
import { type UpdateAppBlockBuilderCommandInput, type UpdateAppBlockBuilderCommandOutput } from "./commands/UpdateAppBlockBuilderCommand";
|
|
85
|
+
import { type UpdateApplicationCommandInput, type UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
86
|
+
import { type UpdateDirectoryConfigCommandInput, type UpdateDirectoryConfigCommandOutput } from "./commands/UpdateDirectoryConfigCommand";
|
|
87
|
+
import { type UpdateEntitlementCommandInput, type UpdateEntitlementCommandOutput } from "./commands/UpdateEntitlementCommand";
|
|
88
|
+
import { type UpdateFleetCommandInput, type UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
|
|
89
|
+
import { type UpdateImagePermissionsCommandInput, type UpdateImagePermissionsCommandOutput } from "./commands/UpdateImagePermissionsCommand";
|
|
90
|
+
import { type UpdateStackCommandInput, type UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
|
|
91
|
+
import { type UpdateThemeForStackCommandInput, type UpdateThemeForStackCommandOutput } from "./commands/UpdateThemeForStackCommand";
|
|
92
92
|
export interface AppStream {
|
|
93
93
|
/**
|
|
94
94
|
* @see {@link AssociateAppBlockBuilderAppBlockCommand}
|
|
@@ -5,97 +5,97 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { AssociateAppBlockBuilderAppBlockCommandInput, AssociateAppBlockBuilderAppBlockCommandOutput } from "./commands/AssociateAppBlockBuilderAppBlockCommand";
|
|
11
|
-
import { AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput } from "./commands/AssociateApplicationFleetCommand";
|
|
12
|
-
import { AssociateApplicationToEntitlementCommandInput, AssociateApplicationToEntitlementCommandOutput } from "./commands/AssociateApplicationToEntitlementCommand";
|
|
13
|
-
import { AssociateFleetCommandInput, AssociateFleetCommandOutput } from "./commands/AssociateFleetCommand";
|
|
14
|
-
import { AssociateSoftwareToImageBuilderCommandInput, AssociateSoftwareToImageBuilderCommandOutput } from "./commands/AssociateSoftwareToImageBuilderCommand";
|
|
15
|
-
import { BatchAssociateUserStackCommandInput, BatchAssociateUserStackCommandOutput } from "./commands/BatchAssociateUserStackCommand";
|
|
16
|
-
import { BatchDisassociateUserStackCommandInput, BatchDisassociateUserStackCommandOutput } from "./commands/BatchDisassociateUserStackCommand";
|
|
17
|
-
import { CopyImageCommandInput, CopyImageCommandOutput } from "./commands/CopyImageCommand";
|
|
18
|
-
import { CreateAppBlockBuilderCommandInput, CreateAppBlockBuilderCommandOutput } from "./commands/CreateAppBlockBuilderCommand";
|
|
19
|
-
import { CreateAppBlockBuilderStreamingURLCommandInput, CreateAppBlockBuilderStreamingURLCommandOutput } from "./commands/CreateAppBlockBuilderStreamingURLCommand";
|
|
20
|
-
import { CreateAppBlockCommandInput, CreateAppBlockCommandOutput } from "./commands/CreateAppBlockCommand";
|
|
21
|
-
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
22
|
-
import { CreateDirectoryConfigCommandInput, CreateDirectoryConfigCommandOutput } from "./commands/CreateDirectoryConfigCommand";
|
|
23
|
-
import { CreateEntitlementCommandInput, CreateEntitlementCommandOutput } from "./commands/CreateEntitlementCommand";
|
|
24
|
-
import { CreateExportImageTaskCommandInput, CreateExportImageTaskCommandOutput } from "./commands/CreateExportImageTaskCommand";
|
|
25
|
-
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
26
|
-
import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from "./commands/CreateImageBuilderCommand";
|
|
27
|
-
import { CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput } from "./commands/CreateImageBuilderStreamingURLCommand";
|
|
28
|
-
import { CreateImportedImageCommandInput, CreateImportedImageCommandOutput } from "./commands/CreateImportedImageCommand";
|
|
29
|
-
import { CreateStackCommandInput, CreateStackCommandOutput } from "./commands/CreateStackCommand";
|
|
30
|
-
import { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from "./commands/CreateStreamingURLCommand";
|
|
31
|
-
import { CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput } from "./commands/CreateThemeForStackCommand";
|
|
32
|
-
import { CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput } from "./commands/CreateUpdatedImageCommand";
|
|
33
|
-
import { CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput } from "./commands/CreateUsageReportSubscriptionCommand";
|
|
34
|
-
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
35
|
-
import { DeleteAppBlockBuilderCommandInput, DeleteAppBlockBuilderCommandOutput } from "./commands/DeleteAppBlockBuilderCommand";
|
|
36
|
-
import { DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput } from "./commands/DeleteAppBlockCommand";
|
|
37
|
-
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
38
|
-
import { DeleteDirectoryConfigCommandInput, DeleteDirectoryConfigCommandOutput } from "./commands/DeleteDirectoryConfigCommand";
|
|
39
|
-
import { DeleteEntitlementCommandInput, DeleteEntitlementCommandOutput } from "./commands/DeleteEntitlementCommand";
|
|
40
|
-
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
41
|
-
import { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from "./commands/DeleteImageBuilderCommand";
|
|
42
|
-
import { DeleteImageCommandInput, DeleteImageCommandOutput } from "./commands/DeleteImageCommand";
|
|
43
|
-
import { DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput } from "./commands/DeleteImagePermissionsCommand";
|
|
44
|
-
import { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
|
|
45
|
-
import { DeleteThemeForStackCommandInput, DeleteThemeForStackCommandOutput } from "./commands/DeleteThemeForStackCommand";
|
|
46
|
-
import { DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput } from "./commands/DeleteUsageReportSubscriptionCommand";
|
|
47
|
-
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
48
|
-
import { DescribeAppBlockBuilderAppBlockAssociationsCommandInput, DescribeAppBlockBuilderAppBlockAssociationsCommandOutput } from "./commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
|
|
49
|
-
import { DescribeAppBlockBuildersCommandInput, DescribeAppBlockBuildersCommandOutput } from "./commands/DescribeAppBlockBuildersCommand";
|
|
50
|
-
import { DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput } from "./commands/DescribeAppBlocksCommand";
|
|
51
|
-
import { DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput } from "./commands/DescribeApplicationFleetAssociationsCommand";
|
|
52
|
-
import { DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput } from "./commands/DescribeApplicationsCommand";
|
|
53
|
-
import { DescribeAppLicenseUsageCommandInput, DescribeAppLicenseUsageCommandOutput } from "./commands/DescribeAppLicenseUsageCommand";
|
|
54
|
-
import { DescribeDirectoryConfigsCommandInput, DescribeDirectoryConfigsCommandOutput } from "./commands/DescribeDirectoryConfigsCommand";
|
|
55
|
-
import { DescribeEntitlementsCommandInput, DescribeEntitlementsCommandOutput } from "./commands/DescribeEntitlementsCommand";
|
|
56
|
-
import { DescribeFleetsCommandInput, DescribeFleetsCommandOutput } from "./commands/DescribeFleetsCommand";
|
|
57
|
-
import { DescribeImageBuildersCommandInput, DescribeImageBuildersCommandOutput } from "./commands/DescribeImageBuildersCommand";
|
|
58
|
-
import { DescribeImagePermissionsCommandInput, DescribeImagePermissionsCommandOutput } from "./commands/DescribeImagePermissionsCommand";
|
|
59
|
-
import { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "./commands/DescribeImagesCommand";
|
|
60
|
-
import { DescribeSessionsCommandInput, DescribeSessionsCommandOutput } from "./commands/DescribeSessionsCommand";
|
|
61
|
-
import { DescribeSoftwareAssociationsCommandInput, DescribeSoftwareAssociationsCommandOutput } from "./commands/DescribeSoftwareAssociationsCommand";
|
|
62
|
-
import { DescribeStacksCommandInput, DescribeStacksCommandOutput } from "./commands/DescribeStacksCommand";
|
|
63
|
-
import { DescribeThemeForStackCommandInput, DescribeThemeForStackCommandOutput } from "./commands/DescribeThemeForStackCommand";
|
|
64
|
-
import { DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput } from "./commands/DescribeUsageReportSubscriptionsCommand";
|
|
65
|
-
import { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "./commands/DescribeUsersCommand";
|
|
66
|
-
import { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "./commands/DescribeUserStackAssociationsCommand";
|
|
67
|
-
import { DisableUserCommandInput, DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
68
|
-
import { DisassociateAppBlockBuilderAppBlockCommandInput, DisassociateAppBlockBuilderAppBlockCommandOutput } from "./commands/DisassociateAppBlockBuilderAppBlockCommand";
|
|
69
|
-
import { DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput } from "./commands/DisassociateApplicationFleetCommand";
|
|
70
|
-
import { DisassociateApplicationFromEntitlementCommandInput, DisassociateApplicationFromEntitlementCommandOutput } from "./commands/DisassociateApplicationFromEntitlementCommand";
|
|
71
|
-
import { DisassociateFleetCommandInput, DisassociateFleetCommandOutput } from "./commands/DisassociateFleetCommand";
|
|
72
|
-
import { DisassociateSoftwareFromImageBuilderCommandInput, DisassociateSoftwareFromImageBuilderCommandOutput } from "./commands/DisassociateSoftwareFromImageBuilderCommand";
|
|
73
|
-
import { EnableUserCommandInput, EnableUserCommandOutput } from "./commands/EnableUserCommand";
|
|
74
|
-
import { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
75
|
-
import { GetExportImageTaskCommandInput, GetExportImageTaskCommandOutput } from "./commands/GetExportImageTaskCommand";
|
|
76
|
-
import { ListAssociatedFleetsCommandInput, ListAssociatedFleetsCommandOutput } from "./commands/ListAssociatedFleetsCommand";
|
|
77
|
-
import { ListAssociatedStacksCommandInput, ListAssociatedStacksCommandOutput } from "./commands/ListAssociatedStacksCommand";
|
|
78
|
-
import { ListEntitledApplicationsCommandInput, ListEntitledApplicationsCommandOutput } from "./commands/ListEntitledApplicationsCommand";
|
|
79
|
-
import { ListExportImageTasksCommandInput, ListExportImageTasksCommandOutput } from "./commands/ListExportImageTasksCommand";
|
|
80
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
81
|
-
import { StartAppBlockBuilderCommandInput, StartAppBlockBuilderCommandOutput } from "./commands/StartAppBlockBuilderCommand";
|
|
82
|
-
import { StartFleetCommandInput, StartFleetCommandOutput } from "./commands/StartFleetCommand";
|
|
83
|
-
import { StartImageBuilderCommandInput, StartImageBuilderCommandOutput } from "./commands/StartImageBuilderCommand";
|
|
84
|
-
import { StartSoftwareDeploymentToImageBuilderCommandInput, StartSoftwareDeploymentToImageBuilderCommandOutput } from "./commands/StartSoftwareDeploymentToImageBuilderCommand";
|
|
85
|
-
import { StopAppBlockBuilderCommandInput, StopAppBlockBuilderCommandOutput } from "./commands/StopAppBlockBuilderCommand";
|
|
86
|
-
import { StopFleetCommandInput, StopFleetCommandOutput } from "./commands/StopFleetCommand";
|
|
87
|
-
import { StopImageBuilderCommandInput, StopImageBuilderCommandOutput } from "./commands/StopImageBuilderCommand";
|
|
88
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
89
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
90
|
-
import { UpdateAppBlockBuilderCommandInput, UpdateAppBlockBuilderCommandOutput } from "./commands/UpdateAppBlockBuilderCommand";
|
|
91
|
-
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
92
|
-
import { UpdateDirectoryConfigCommandInput, UpdateDirectoryConfigCommandOutput } from "./commands/UpdateDirectoryConfigCommand";
|
|
93
|
-
import { UpdateEntitlementCommandInput, UpdateEntitlementCommandOutput } from "./commands/UpdateEntitlementCommand";
|
|
94
|
-
import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
|
|
95
|
-
import { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "./commands/UpdateImagePermissionsCommand";
|
|
96
|
-
import { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
|
|
97
|
-
import { UpdateThemeForStackCommandInput, UpdateThemeForStackCommandOutput } from "./commands/UpdateThemeForStackCommand";
|
|
98
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { AssociateAppBlockBuilderAppBlockCommandInput, AssociateAppBlockBuilderAppBlockCommandOutput } from "./commands/AssociateAppBlockBuilderAppBlockCommand";
|
|
11
|
+
import type { AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput } from "./commands/AssociateApplicationFleetCommand";
|
|
12
|
+
import type { AssociateApplicationToEntitlementCommandInput, AssociateApplicationToEntitlementCommandOutput } from "./commands/AssociateApplicationToEntitlementCommand";
|
|
13
|
+
import type { AssociateFleetCommandInput, AssociateFleetCommandOutput } from "./commands/AssociateFleetCommand";
|
|
14
|
+
import type { AssociateSoftwareToImageBuilderCommandInput, AssociateSoftwareToImageBuilderCommandOutput } from "./commands/AssociateSoftwareToImageBuilderCommand";
|
|
15
|
+
import type { BatchAssociateUserStackCommandInput, BatchAssociateUserStackCommandOutput } from "./commands/BatchAssociateUserStackCommand";
|
|
16
|
+
import type { BatchDisassociateUserStackCommandInput, BatchDisassociateUserStackCommandOutput } from "./commands/BatchDisassociateUserStackCommand";
|
|
17
|
+
import type { CopyImageCommandInput, CopyImageCommandOutput } from "./commands/CopyImageCommand";
|
|
18
|
+
import type { CreateAppBlockBuilderCommandInput, CreateAppBlockBuilderCommandOutput } from "./commands/CreateAppBlockBuilderCommand";
|
|
19
|
+
import type { CreateAppBlockBuilderStreamingURLCommandInput, CreateAppBlockBuilderStreamingURLCommandOutput } from "./commands/CreateAppBlockBuilderStreamingURLCommand";
|
|
20
|
+
import type { CreateAppBlockCommandInput, CreateAppBlockCommandOutput } from "./commands/CreateAppBlockCommand";
|
|
21
|
+
import type { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
22
|
+
import type { CreateDirectoryConfigCommandInput, CreateDirectoryConfigCommandOutput } from "./commands/CreateDirectoryConfigCommand";
|
|
23
|
+
import type { CreateEntitlementCommandInput, CreateEntitlementCommandOutput } from "./commands/CreateEntitlementCommand";
|
|
24
|
+
import type { CreateExportImageTaskCommandInput, CreateExportImageTaskCommandOutput } from "./commands/CreateExportImageTaskCommand";
|
|
25
|
+
import type { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
26
|
+
import type { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from "./commands/CreateImageBuilderCommand";
|
|
27
|
+
import type { CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput } from "./commands/CreateImageBuilderStreamingURLCommand";
|
|
28
|
+
import type { CreateImportedImageCommandInput, CreateImportedImageCommandOutput } from "./commands/CreateImportedImageCommand";
|
|
29
|
+
import type { CreateStackCommandInput, CreateStackCommandOutput } from "./commands/CreateStackCommand";
|
|
30
|
+
import type { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from "./commands/CreateStreamingURLCommand";
|
|
31
|
+
import type { CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput } from "./commands/CreateThemeForStackCommand";
|
|
32
|
+
import type { CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput } from "./commands/CreateUpdatedImageCommand";
|
|
33
|
+
import type { CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput } from "./commands/CreateUsageReportSubscriptionCommand";
|
|
34
|
+
import type { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
35
|
+
import type { DeleteAppBlockBuilderCommandInput, DeleteAppBlockBuilderCommandOutput } from "./commands/DeleteAppBlockBuilderCommand";
|
|
36
|
+
import type { DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput } from "./commands/DeleteAppBlockCommand";
|
|
37
|
+
import type { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
38
|
+
import type { DeleteDirectoryConfigCommandInput, DeleteDirectoryConfigCommandOutput } from "./commands/DeleteDirectoryConfigCommand";
|
|
39
|
+
import type { DeleteEntitlementCommandInput, DeleteEntitlementCommandOutput } from "./commands/DeleteEntitlementCommand";
|
|
40
|
+
import type { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
41
|
+
import type { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from "./commands/DeleteImageBuilderCommand";
|
|
42
|
+
import type { DeleteImageCommandInput, DeleteImageCommandOutput } from "./commands/DeleteImageCommand";
|
|
43
|
+
import type { DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput } from "./commands/DeleteImagePermissionsCommand";
|
|
44
|
+
import type { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
|
|
45
|
+
import type { DeleteThemeForStackCommandInput, DeleteThemeForStackCommandOutput } from "./commands/DeleteThemeForStackCommand";
|
|
46
|
+
import type { DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput } from "./commands/DeleteUsageReportSubscriptionCommand";
|
|
47
|
+
import type { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
48
|
+
import type { DescribeAppBlockBuilderAppBlockAssociationsCommandInput, DescribeAppBlockBuilderAppBlockAssociationsCommandOutput } from "./commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
|
|
49
|
+
import type { DescribeAppBlockBuildersCommandInput, DescribeAppBlockBuildersCommandOutput } from "./commands/DescribeAppBlockBuildersCommand";
|
|
50
|
+
import type { DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput } from "./commands/DescribeAppBlocksCommand";
|
|
51
|
+
import type { DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput } from "./commands/DescribeApplicationFleetAssociationsCommand";
|
|
52
|
+
import type { DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput } from "./commands/DescribeApplicationsCommand";
|
|
53
|
+
import type { DescribeAppLicenseUsageCommandInput, DescribeAppLicenseUsageCommandOutput } from "./commands/DescribeAppLicenseUsageCommand";
|
|
54
|
+
import type { DescribeDirectoryConfigsCommandInput, DescribeDirectoryConfigsCommandOutput } from "./commands/DescribeDirectoryConfigsCommand";
|
|
55
|
+
import type { DescribeEntitlementsCommandInput, DescribeEntitlementsCommandOutput } from "./commands/DescribeEntitlementsCommand";
|
|
56
|
+
import type { DescribeFleetsCommandInput, DescribeFleetsCommandOutput } from "./commands/DescribeFleetsCommand";
|
|
57
|
+
import type { DescribeImageBuildersCommandInput, DescribeImageBuildersCommandOutput } from "./commands/DescribeImageBuildersCommand";
|
|
58
|
+
import type { DescribeImagePermissionsCommandInput, DescribeImagePermissionsCommandOutput } from "./commands/DescribeImagePermissionsCommand";
|
|
59
|
+
import type { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "./commands/DescribeImagesCommand";
|
|
60
|
+
import type { DescribeSessionsCommandInput, DescribeSessionsCommandOutput } from "./commands/DescribeSessionsCommand";
|
|
61
|
+
import type { DescribeSoftwareAssociationsCommandInput, DescribeSoftwareAssociationsCommandOutput } from "./commands/DescribeSoftwareAssociationsCommand";
|
|
62
|
+
import type { DescribeStacksCommandInput, DescribeStacksCommandOutput } from "./commands/DescribeStacksCommand";
|
|
63
|
+
import type { DescribeThemeForStackCommandInput, DescribeThemeForStackCommandOutput } from "./commands/DescribeThemeForStackCommand";
|
|
64
|
+
import type { DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput } from "./commands/DescribeUsageReportSubscriptionsCommand";
|
|
65
|
+
import type { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "./commands/DescribeUsersCommand";
|
|
66
|
+
import type { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "./commands/DescribeUserStackAssociationsCommand";
|
|
67
|
+
import type { DisableUserCommandInput, DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
68
|
+
import type { DisassociateAppBlockBuilderAppBlockCommandInput, DisassociateAppBlockBuilderAppBlockCommandOutput } from "./commands/DisassociateAppBlockBuilderAppBlockCommand";
|
|
69
|
+
import type { DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput } from "./commands/DisassociateApplicationFleetCommand";
|
|
70
|
+
import type { DisassociateApplicationFromEntitlementCommandInput, DisassociateApplicationFromEntitlementCommandOutput } from "./commands/DisassociateApplicationFromEntitlementCommand";
|
|
71
|
+
import type { DisassociateFleetCommandInput, DisassociateFleetCommandOutput } from "./commands/DisassociateFleetCommand";
|
|
72
|
+
import type { DisassociateSoftwareFromImageBuilderCommandInput, DisassociateSoftwareFromImageBuilderCommandOutput } from "./commands/DisassociateSoftwareFromImageBuilderCommand";
|
|
73
|
+
import type { EnableUserCommandInput, EnableUserCommandOutput } from "./commands/EnableUserCommand";
|
|
74
|
+
import type { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
75
|
+
import type { GetExportImageTaskCommandInput, GetExportImageTaskCommandOutput } from "./commands/GetExportImageTaskCommand";
|
|
76
|
+
import type { ListAssociatedFleetsCommandInput, ListAssociatedFleetsCommandOutput } from "./commands/ListAssociatedFleetsCommand";
|
|
77
|
+
import type { ListAssociatedStacksCommandInput, ListAssociatedStacksCommandOutput } from "./commands/ListAssociatedStacksCommand";
|
|
78
|
+
import type { ListEntitledApplicationsCommandInput, ListEntitledApplicationsCommandOutput } from "./commands/ListEntitledApplicationsCommand";
|
|
79
|
+
import type { ListExportImageTasksCommandInput, ListExportImageTasksCommandOutput } from "./commands/ListExportImageTasksCommand";
|
|
80
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
81
|
+
import type { StartAppBlockBuilderCommandInput, StartAppBlockBuilderCommandOutput } from "./commands/StartAppBlockBuilderCommand";
|
|
82
|
+
import type { StartFleetCommandInput, StartFleetCommandOutput } from "./commands/StartFleetCommand";
|
|
83
|
+
import type { StartImageBuilderCommandInput, StartImageBuilderCommandOutput } from "./commands/StartImageBuilderCommand";
|
|
84
|
+
import type { StartSoftwareDeploymentToImageBuilderCommandInput, StartSoftwareDeploymentToImageBuilderCommandOutput } from "./commands/StartSoftwareDeploymentToImageBuilderCommand";
|
|
85
|
+
import type { StopAppBlockBuilderCommandInput, StopAppBlockBuilderCommandOutput } from "./commands/StopAppBlockBuilderCommand";
|
|
86
|
+
import type { StopFleetCommandInput, StopFleetCommandOutput } from "./commands/StopFleetCommand";
|
|
87
|
+
import type { StopImageBuilderCommandInput, StopImageBuilderCommandOutput } from "./commands/StopImageBuilderCommand";
|
|
88
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
89
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
90
|
+
import type { UpdateAppBlockBuilderCommandInput, UpdateAppBlockBuilderCommandOutput } from "./commands/UpdateAppBlockBuilderCommand";
|
|
91
|
+
import type { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
92
|
+
import type { UpdateDirectoryConfigCommandInput, UpdateDirectoryConfigCommandOutput } from "./commands/UpdateDirectoryConfigCommand";
|
|
93
|
+
import type { UpdateEntitlementCommandInput, UpdateEntitlementCommandOutput } from "./commands/UpdateEntitlementCommand";
|
|
94
|
+
import type { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
|
|
95
|
+
import type { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "./commands/UpdateImagePermissionsCommand";
|
|
96
|
+
import type { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
|
|
97
|
+
import type { UpdateThemeForStackCommandInput, UpdateThemeForStackCommandOutput } from "./commands/UpdateThemeForStackCommand";
|
|
98
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
99
99
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
100
100
|
export { __Client };
|
|
101
101
|
/**
|
|
@@ -204,7 +204,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
204
204
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
205
205
|
* @internal
|
|
206
206
|
*/
|
|
207
|
-
defaultUserAgentProvider?:
|
|
207
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
208
208
|
/**
|
|
209
209
|
* Default credentials provider; Not available in browser runtime.
|
|
210
210
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { AppStreamHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -80,6 +80,17 @@ declare const CreateStackCommand_base: {
|
|
|
80
80
|
* StreamingExperienceSettings: { // StreamingExperienceSettings
|
|
81
81
|
* PreferredProtocol: "TCP" || "UDP",
|
|
82
82
|
* },
|
|
83
|
+
* ContentRedirection: { // ContentRedirection
|
|
84
|
+
* HostToClient: { // UrlRedirectionConfig
|
|
85
|
+
* Enabled: true || false, // required
|
|
86
|
+
* AllowedUrls: [ // UrlPatternList
|
|
87
|
+
* "STRING_VALUE",
|
|
88
|
+
* ],
|
|
89
|
+
* DeniedUrls: [
|
|
90
|
+
* "STRING_VALUE",
|
|
91
|
+
* ],
|
|
92
|
+
* },
|
|
93
|
+
* },
|
|
83
94
|
* };
|
|
84
95
|
* const command = new CreateStackCommand(input);
|
|
85
96
|
* const response = await client.send(command);
|
|
@@ -134,6 +145,17 @@ declare const CreateStackCommand_base: {
|
|
|
134
145
|
* // StreamingExperienceSettings: { // StreamingExperienceSettings
|
|
135
146
|
* // PreferredProtocol: "TCP" || "UDP",
|
|
136
147
|
* // },
|
|
148
|
+
* // ContentRedirection: { // ContentRedirection
|
|
149
|
+
* // HostToClient: { // UrlRedirectionConfig
|
|
150
|
+
* // Enabled: true || false, // required
|
|
151
|
+
* // AllowedUrls: [ // UrlPatternList
|
|
152
|
+
* // "STRING_VALUE",
|
|
153
|
+
* // ],
|
|
154
|
+
* // DeniedUrls: [
|
|
155
|
+
* // "STRING_VALUE",
|
|
156
|
+
* // ],
|
|
157
|
+
* // },
|
|
158
|
+
* // },
|
|
137
159
|
* // },
|
|
138
160
|
* // };
|
|
139
161
|
*
|
|
@@ -96,6 +96,17 @@ declare const DescribeStacksCommand_base: {
|
|
|
96
96
|
* // StreamingExperienceSettings: { // StreamingExperienceSettings
|
|
97
97
|
* // PreferredProtocol: "TCP" || "UDP",
|
|
98
98
|
* // },
|
|
99
|
+
* // ContentRedirection: { // ContentRedirection
|
|
100
|
+
* // HostToClient: { // UrlRedirectionConfig
|
|
101
|
+
* // Enabled: true || false, // required
|
|
102
|
+
* // AllowedUrls: [ // UrlPatternList
|
|
103
|
+
* // "STRING_VALUE",
|
|
104
|
+
* // ],
|
|
105
|
+
* // DeniedUrls: [
|
|
106
|
+
* // "STRING_VALUE",
|
|
107
|
+
* // ],
|
|
108
|
+
* // },
|
|
109
|
+
* // },
|
|
99
110
|
* // },
|
|
100
111
|
* // ],
|
|
101
112
|
* // NextToken: "STRING_VALUE",
|
|
@@ -56,7 +56,7 @@ declare const UpdateStackCommand_base: {
|
|
|
56
56
|
* RedirectURL: "STRING_VALUE",
|
|
57
57
|
* FeedbackURL: "STRING_VALUE",
|
|
58
58
|
* AttributesToDelete: [ // StackAttributes
|
|
59
|
-
* "STORAGE_CONNECTORS" || "STORAGE_CONNECTOR_HOMEFOLDERS" || "STORAGE_CONNECTOR_GOOGLE_DRIVE" || "STORAGE_CONNECTOR_ONE_DRIVE" || "REDIRECT_URL" || "FEEDBACK_URL" || "THEME_NAME" || "USER_SETTINGS" || "EMBED_HOST_DOMAINS" || "IAM_ROLE_ARN" || "ACCESS_ENDPOINTS" || "STREAMING_EXPERIENCE_SETTINGS",
|
|
59
|
+
* "STORAGE_CONNECTORS" || "STORAGE_CONNECTOR_HOMEFOLDERS" || "STORAGE_CONNECTOR_GOOGLE_DRIVE" || "STORAGE_CONNECTOR_ONE_DRIVE" || "REDIRECT_URL" || "FEEDBACK_URL" || "THEME_NAME" || "USER_SETTINGS" || "EMBED_HOST_DOMAINS" || "IAM_ROLE_ARN" || "ACCESS_ENDPOINTS" || "STREAMING_EXPERIENCE_SETTINGS" || "CONTENT_REDIRECTION",
|
|
60
60
|
* ],
|
|
61
61
|
* UserSettings: [ // UserSettingList
|
|
62
62
|
* { // UserSetting
|
|
@@ -135,6 +135,17 @@ declare const UpdateStackCommand_base: {
|
|
|
135
135
|
* // StreamingExperienceSettings: { // StreamingExperienceSettings
|
|
136
136
|
* // PreferredProtocol: "TCP" || "UDP",
|
|
137
137
|
* // },
|
|
138
|
+
* // ContentRedirection: { // ContentRedirection
|
|
139
|
+
* // HostToClient: { // UrlRedirectionConfig
|
|
140
|
+
* // Enabled: true || false, // required
|
|
141
|
+
* // AllowedUrls: [ // UrlPatternList
|
|
142
|
+
* // "STRING_VALUE",
|
|
143
|
+
* // ],
|
|
144
|
+
* // DeniedUrls: [
|
|
145
|
+
* // "STRING_VALUE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
148
|
+
* // },
|
|
138
149
|
* // },
|
|
139
150
|
* // };
|
|
140
151
|
*
|
package/dist-types/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
*/
|
|
23
23
|
export * from "./AppStreamClient";
|
|
24
24
|
export * from "./AppStream";
|
|
25
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
25
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
26
26
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
27
27
|
export type { AppStreamExtensionConfiguration } from "./extensionConfiguration";
|
|
28
28
|
export * from "./commands";
|
|
@@ -596,6 +596,7 @@ export type FleetAttribute = (typeof FleetAttribute)[keyof typeof FleetAttribute
|
|
|
596
596
|
*/
|
|
597
597
|
export declare const StackAttribute: {
|
|
598
598
|
readonly ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS";
|
|
599
|
+
readonly CONTENT_REDIRECTION: "CONTENT_REDIRECTION";
|
|
599
600
|
readonly EMBED_HOST_DOMAINS: "EMBED_HOST_DOMAINS";
|
|
600
601
|
readonly FEEDBACK_URL: "FEEDBACK_URL";
|
|
601
602
|
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|