@aws-sdk/client-appstream 3.931.0 → 3.933.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/README.md +45 -13
- package/dist-cjs/index.js +312 -42
- package/dist-es/AppStream.js +8 -0
- package/dist-es/commands/CreateExportImageTaskCommand.js +16 -0
- package/dist-es/commands/CreateImportedImageCommand.js +16 -0
- package/dist-es/commands/GetExportImageTaskCommand.js +16 -0
- package/dist-es/commands/ListExportImageTasksCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +60 -27
- package/dist-es/schemas/schemas_0.js +194 -16
- package/dist-types/AppStream.d.ts +36 -6
- package/dist-types/AppStreamClient.d.ts +12 -8
- package/dist-types/commands/CreateAppBlockBuilderCommand.d.ts +2 -2
- package/dist-types/commands/CreateAppBlockCommand.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/CreateExportImageTaskCommand.d.ts +118 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +8 -2
- package/dist-types/commands/CreateImageBuilderCommand.d.ts +9 -3
- package/dist-types/commands/CreateImportedImageCommand.d.ts +186 -0
- package/dist-types/commands/CreateStreamingURLCommand.d.ts +1 -1
- package/dist-types/commands/CreateUpdatedImageCommand.d.ts +6 -5
- package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteImageBuilderCommand.d.ts +5 -2
- package/dist-types/commands/DeleteImageCommand.d.ts +4 -3
- package/dist-types/commands/DescribeAppBlockBuildersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +4 -1
- package/dist-types/commands/DescribeImageBuildersCommand.d.ts +5 -2
- package/dist-types/commands/DescribeImagesCommand.d.ts +4 -3
- package/dist-types/commands/DisableUserCommand.d.ts +1 -1
- package/dist-types/commands/EnableUserCommand.d.ts +1 -1
- package/dist-types/commands/GetExportImageTaskCommand.d.ts +97 -0
- package/dist-types/commands/ListExportImageTasksCommand.d.ts +106 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/StartAppBlockBuilderCommand.d.ts +2 -2
- package/dist-types/commands/StartFleetCommand.d.ts +1 -1
- package/dist-types/commands/StartImageBuilderCommand.d.ts +5 -2
- package/dist-types/commands/StopAppBlockBuilderCommand.d.ts +1 -1
- package/dist-types/commands/StopImageBuilderCommand.d.ts +5 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAppBlockBuilderCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFleetCommand.d.ts +9 -3
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +6 -6
- package/dist-types/models/models_0.d.ts +822 -503
- package/dist-types/schemas/schemas_0.d.ts +24 -0
- package/dist-types/ts3.4/AppStream.d.ts +70 -0
- package/dist-types/ts3.4/AppStreamClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateExportImageTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateImportedImageCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetExportImageTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListExportImageTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +176 -68
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/package.json +6 -6
|
@@ -21,9 +21,11 @@ import { CreateAppBlockCommandInput, CreateAppBlockCommandOutput } from "./comma
|
|
|
21
21
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
22
22
|
import { CreateDirectoryConfigCommandInput, CreateDirectoryConfigCommandOutput } from "./commands/CreateDirectoryConfigCommand";
|
|
23
23
|
import { CreateEntitlementCommandInput, CreateEntitlementCommandOutput } from "./commands/CreateEntitlementCommand";
|
|
24
|
+
import { CreateExportImageTaskCommandInput, CreateExportImageTaskCommandOutput } from "./commands/CreateExportImageTaskCommand";
|
|
24
25
|
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
25
26
|
import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from "./commands/CreateImageBuilderCommand";
|
|
26
27
|
import { CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput } from "./commands/CreateImageBuilderStreamingURLCommand";
|
|
28
|
+
import { CreateImportedImageCommandInput, CreateImportedImageCommandOutput } from "./commands/CreateImportedImageCommand";
|
|
27
29
|
import { CreateStackCommandInput, CreateStackCommandOutput } from "./commands/CreateStackCommand";
|
|
28
30
|
import { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from "./commands/CreateStreamingURLCommand";
|
|
29
31
|
import { CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput } from "./commands/CreateThemeForStackCommand";
|
|
@@ -70,9 +72,11 @@ import { DisassociateFleetCommandInput, DisassociateFleetCommandOutput } from ".
|
|
|
70
72
|
import { DisassociateSoftwareFromImageBuilderCommandInput, DisassociateSoftwareFromImageBuilderCommandOutput } from "./commands/DisassociateSoftwareFromImageBuilderCommand";
|
|
71
73
|
import { EnableUserCommandInput, EnableUserCommandOutput } from "./commands/EnableUserCommand";
|
|
72
74
|
import { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
75
|
+
import { GetExportImageTaskCommandInput, GetExportImageTaskCommandOutput } from "./commands/GetExportImageTaskCommand";
|
|
73
76
|
import { ListAssociatedFleetsCommandInput, ListAssociatedFleetsCommandOutput } from "./commands/ListAssociatedFleetsCommand";
|
|
74
77
|
import { ListAssociatedStacksCommandInput, ListAssociatedStacksCommandOutput } from "./commands/ListAssociatedStacksCommand";
|
|
75
78
|
import { ListEntitledApplicationsCommandInput, ListEntitledApplicationsCommandOutput } from "./commands/ListEntitledApplicationsCommand";
|
|
79
|
+
import { ListExportImageTasksCommandInput, ListExportImageTasksCommandOutput } from "./commands/ListExportImageTasksCommand";
|
|
76
80
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
77
81
|
import { StartAppBlockBuilderCommandInput, StartAppBlockBuilderCommandOutput } from "./commands/StartAppBlockBuilderCommand";
|
|
78
82
|
import { StartFleetCommandInput, StartFleetCommandOutput } from "./commands/StartFleetCommand";
|
|
@@ -97,11 +101,11 @@ export { __Client };
|
|
|
97
101
|
/**
|
|
98
102
|
* @public
|
|
99
103
|
*/
|
|
100
|
-
export type ServiceInputTypes = AssociateAppBlockBuilderAppBlockCommandInput | AssociateApplicationFleetCommandInput | AssociateApplicationToEntitlementCommandInput | AssociateFleetCommandInput | AssociateSoftwareToImageBuilderCommandInput | BatchAssociateUserStackCommandInput | BatchDisassociateUserStackCommandInput | CopyImageCommandInput | CreateAppBlockBuilderCommandInput | CreateAppBlockBuilderStreamingURLCommandInput | CreateAppBlockCommandInput | CreateApplicationCommandInput | CreateDirectoryConfigCommandInput | CreateEntitlementCommandInput | CreateFleetCommandInput | CreateImageBuilderCommandInput | CreateImageBuilderStreamingURLCommandInput | CreateStackCommandInput | CreateStreamingURLCommandInput | CreateThemeForStackCommandInput | CreateUpdatedImageCommandInput | CreateUsageReportSubscriptionCommandInput | CreateUserCommandInput | DeleteAppBlockBuilderCommandInput | DeleteAppBlockCommandInput | DeleteApplicationCommandInput | DeleteDirectoryConfigCommandInput | DeleteEntitlementCommandInput | DeleteFleetCommandInput | DeleteImageBuilderCommandInput | DeleteImageCommandInput | DeleteImagePermissionsCommandInput | DeleteStackCommandInput | DeleteThemeForStackCommandInput | DeleteUsageReportSubscriptionCommandInput | DeleteUserCommandInput | DescribeAppBlockBuilderAppBlockAssociationsCommandInput | DescribeAppBlockBuildersCommandInput | DescribeAppBlocksCommandInput | DescribeAppLicenseUsageCommandInput | DescribeApplicationFleetAssociationsCommandInput | DescribeApplicationsCommandInput | DescribeDirectoryConfigsCommandInput | DescribeEntitlementsCommandInput | DescribeFleetsCommandInput | DescribeImageBuildersCommandInput | DescribeImagePermissionsCommandInput | DescribeImagesCommandInput | DescribeSessionsCommandInput | DescribeSoftwareAssociationsCommandInput | DescribeStacksCommandInput | DescribeThemeForStackCommandInput | DescribeUsageReportSubscriptionsCommandInput | DescribeUserStackAssociationsCommandInput | DescribeUsersCommandInput | DisableUserCommandInput | DisassociateAppBlockBuilderAppBlockCommandInput | DisassociateApplicationFleetCommandInput | DisassociateApplicationFromEntitlementCommandInput | DisassociateFleetCommandInput | DisassociateSoftwareFromImageBuilderCommandInput | EnableUserCommandInput | ExpireSessionCommandInput | ListAssociatedFleetsCommandInput | ListAssociatedStacksCommandInput | ListEntitledApplicationsCommandInput | ListTagsForResourceCommandInput | StartAppBlockBuilderCommandInput | StartFleetCommandInput | StartImageBuilderCommandInput | StartSoftwareDeploymentToImageBuilderCommandInput | StopAppBlockBuilderCommandInput | StopFleetCommandInput | StopImageBuilderCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAppBlockBuilderCommandInput | UpdateApplicationCommandInput | UpdateDirectoryConfigCommandInput | UpdateEntitlementCommandInput | UpdateFleetCommandInput | UpdateImagePermissionsCommandInput | UpdateStackCommandInput | UpdateThemeForStackCommandInput;
|
|
104
|
+
export type ServiceInputTypes = AssociateAppBlockBuilderAppBlockCommandInput | AssociateApplicationFleetCommandInput | AssociateApplicationToEntitlementCommandInput | AssociateFleetCommandInput | AssociateSoftwareToImageBuilderCommandInput | BatchAssociateUserStackCommandInput | BatchDisassociateUserStackCommandInput | CopyImageCommandInput | CreateAppBlockBuilderCommandInput | CreateAppBlockBuilderStreamingURLCommandInput | CreateAppBlockCommandInput | CreateApplicationCommandInput | CreateDirectoryConfigCommandInput | CreateEntitlementCommandInput | CreateExportImageTaskCommandInput | CreateFleetCommandInput | CreateImageBuilderCommandInput | CreateImageBuilderStreamingURLCommandInput | CreateImportedImageCommandInput | CreateStackCommandInput | CreateStreamingURLCommandInput | CreateThemeForStackCommandInput | CreateUpdatedImageCommandInput | CreateUsageReportSubscriptionCommandInput | CreateUserCommandInput | DeleteAppBlockBuilderCommandInput | DeleteAppBlockCommandInput | DeleteApplicationCommandInput | DeleteDirectoryConfigCommandInput | DeleteEntitlementCommandInput | DeleteFleetCommandInput | DeleteImageBuilderCommandInput | DeleteImageCommandInput | DeleteImagePermissionsCommandInput | DeleteStackCommandInput | DeleteThemeForStackCommandInput | DeleteUsageReportSubscriptionCommandInput | DeleteUserCommandInput | DescribeAppBlockBuilderAppBlockAssociationsCommandInput | DescribeAppBlockBuildersCommandInput | DescribeAppBlocksCommandInput | DescribeAppLicenseUsageCommandInput | DescribeApplicationFleetAssociationsCommandInput | DescribeApplicationsCommandInput | DescribeDirectoryConfigsCommandInput | DescribeEntitlementsCommandInput | DescribeFleetsCommandInput | DescribeImageBuildersCommandInput | DescribeImagePermissionsCommandInput | DescribeImagesCommandInput | DescribeSessionsCommandInput | DescribeSoftwareAssociationsCommandInput | DescribeStacksCommandInput | DescribeThemeForStackCommandInput | DescribeUsageReportSubscriptionsCommandInput | DescribeUserStackAssociationsCommandInput | DescribeUsersCommandInput | DisableUserCommandInput | DisassociateAppBlockBuilderAppBlockCommandInput | DisassociateApplicationFleetCommandInput | DisassociateApplicationFromEntitlementCommandInput | DisassociateFleetCommandInput | DisassociateSoftwareFromImageBuilderCommandInput | EnableUserCommandInput | ExpireSessionCommandInput | GetExportImageTaskCommandInput | ListAssociatedFleetsCommandInput | ListAssociatedStacksCommandInput | ListEntitledApplicationsCommandInput | ListExportImageTasksCommandInput | ListTagsForResourceCommandInput | StartAppBlockBuilderCommandInput | StartFleetCommandInput | StartImageBuilderCommandInput | StartSoftwareDeploymentToImageBuilderCommandInput | StopAppBlockBuilderCommandInput | StopFleetCommandInput | StopImageBuilderCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAppBlockBuilderCommandInput | UpdateApplicationCommandInput | UpdateDirectoryConfigCommandInput | UpdateEntitlementCommandInput | UpdateFleetCommandInput | UpdateImagePermissionsCommandInput | UpdateStackCommandInput | UpdateThemeForStackCommandInput;
|
|
101
105
|
/**
|
|
102
106
|
* @public
|
|
103
107
|
*/
|
|
104
|
-
export type ServiceOutputTypes = AssociateAppBlockBuilderAppBlockCommandOutput | AssociateApplicationFleetCommandOutput | AssociateApplicationToEntitlementCommandOutput | AssociateFleetCommandOutput | AssociateSoftwareToImageBuilderCommandOutput | BatchAssociateUserStackCommandOutput | BatchDisassociateUserStackCommandOutput | CopyImageCommandOutput | CreateAppBlockBuilderCommandOutput | CreateAppBlockBuilderStreamingURLCommandOutput | CreateAppBlockCommandOutput | CreateApplicationCommandOutput | CreateDirectoryConfigCommandOutput | CreateEntitlementCommandOutput | CreateFleetCommandOutput | CreateImageBuilderCommandOutput | CreateImageBuilderStreamingURLCommandOutput | CreateStackCommandOutput | CreateStreamingURLCommandOutput | CreateThemeForStackCommandOutput | CreateUpdatedImageCommandOutput | CreateUsageReportSubscriptionCommandOutput | CreateUserCommandOutput | DeleteAppBlockBuilderCommandOutput | DeleteAppBlockCommandOutput | DeleteApplicationCommandOutput | DeleteDirectoryConfigCommandOutput | DeleteEntitlementCommandOutput | DeleteFleetCommandOutput | DeleteImageBuilderCommandOutput | DeleteImageCommandOutput | DeleteImagePermissionsCommandOutput | DeleteStackCommandOutput | DeleteThemeForStackCommandOutput | DeleteUsageReportSubscriptionCommandOutput | DeleteUserCommandOutput | DescribeAppBlockBuilderAppBlockAssociationsCommandOutput | DescribeAppBlockBuildersCommandOutput | DescribeAppBlocksCommandOutput | DescribeAppLicenseUsageCommandOutput | DescribeApplicationFleetAssociationsCommandOutput | DescribeApplicationsCommandOutput | DescribeDirectoryConfigsCommandOutput | DescribeEntitlementsCommandOutput | DescribeFleetsCommandOutput | DescribeImageBuildersCommandOutput | DescribeImagePermissionsCommandOutput | DescribeImagesCommandOutput | DescribeSessionsCommandOutput | DescribeSoftwareAssociationsCommandOutput | DescribeStacksCommandOutput | DescribeThemeForStackCommandOutput | DescribeUsageReportSubscriptionsCommandOutput | DescribeUserStackAssociationsCommandOutput | DescribeUsersCommandOutput | DisableUserCommandOutput | DisassociateAppBlockBuilderAppBlockCommandOutput | DisassociateApplicationFleetCommandOutput | DisassociateApplicationFromEntitlementCommandOutput | DisassociateFleetCommandOutput | DisassociateSoftwareFromImageBuilderCommandOutput | EnableUserCommandOutput | ExpireSessionCommandOutput | ListAssociatedFleetsCommandOutput | ListAssociatedStacksCommandOutput | ListEntitledApplicationsCommandOutput | ListTagsForResourceCommandOutput | StartAppBlockBuilderCommandOutput | StartFleetCommandOutput | StartImageBuilderCommandOutput | StartSoftwareDeploymentToImageBuilderCommandOutput | StopAppBlockBuilderCommandOutput | StopFleetCommandOutput | StopImageBuilderCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAppBlockBuilderCommandOutput | UpdateApplicationCommandOutput | UpdateDirectoryConfigCommandOutput | UpdateEntitlementCommandOutput | UpdateFleetCommandOutput | UpdateImagePermissionsCommandOutput | UpdateStackCommandOutput | UpdateThemeForStackCommandOutput;
|
|
108
|
+
export type ServiceOutputTypes = AssociateAppBlockBuilderAppBlockCommandOutput | AssociateApplicationFleetCommandOutput | AssociateApplicationToEntitlementCommandOutput | AssociateFleetCommandOutput | AssociateSoftwareToImageBuilderCommandOutput | BatchAssociateUserStackCommandOutput | BatchDisassociateUserStackCommandOutput | CopyImageCommandOutput | CreateAppBlockBuilderCommandOutput | CreateAppBlockBuilderStreamingURLCommandOutput | CreateAppBlockCommandOutput | CreateApplicationCommandOutput | CreateDirectoryConfigCommandOutput | CreateEntitlementCommandOutput | CreateExportImageTaskCommandOutput | CreateFleetCommandOutput | CreateImageBuilderCommandOutput | CreateImageBuilderStreamingURLCommandOutput | CreateImportedImageCommandOutput | CreateStackCommandOutput | CreateStreamingURLCommandOutput | CreateThemeForStackCommandOutput | CreateUpdatedImageCommandOutput | CreateUsageReportSubscriptionCommandOutput | CreateUserCommandOutput | DeleteAppBlockBuilderCommandOutput | DeleteAppBlockCommandOutput | DeleteApplicationCommandOutput | DeleteDirectoryConfigCommandOutput | DeleteEntitlementCommandOutput | DeleteFleetCommandOutput | DeleteImageBuilderCommandOutput | DeleteImageCommandOutput | DeleteImagePermissionsCommandOutput | DeleteStackCommandOutput | DeleteThemeForStackCommandOutput | DeleteUsageReportSubscriptionCommandOutput | DeleteUserCommandOutput | DescribeAppBlockBuilderAppBlockAssociationsCommandOutput | DescribeAppBlockBuildersCommandOutput | DescribeAppBlocksCommandOutput | DescribeAppLicenseUsageCommandOutput | DescribeApplicationFleetAssociationsCommandOutput | DescribeApplicationsCommandOutput | DescribeDirectoryConfigsCommandOutput | DescribeEntitlementsCommandOutput | DescribeFleetsCommandOutput | DescribeImageBuildersCommandOutput | DescribeImagePermissionsCommandOutput | DescribeImagesCommandOutput | DescribeSessionsCommandOutput | DescribeSoftwareAssociationsCommandOutput | DescribeStacksCommandOutput | DescribeThemeForStackCommandOutput | DescribeUsageReportSubscriptionsCommandOutput | DescribeUserStackAssociationsCommandOutput | DescribeUsersCommandOutput | DisableUserCommandOutput | DisassociateAppBlockBuilderAppBlockCommandOutput | DisassociateApplicationFleetCommandOutput | DisassociateApplicationFromEntitlementCommandOutput | DisassociateFleetCommandOutput | DisassociateSoftwareFromImageBuilderCommandOutput | EnableUserCommandOutput | ExpireSessionCommandOutput | GetExportImageTaskCommandOutput | ListAssociatedFleetsCommandOutput | ListAssociatedStacksCommandOutput | ListEntitledApplicationsCommandOutput | ListExportImageTasksCommandOutput | ListTagsForResourceCommandOutput | StartAppBlockBuilderCommandOutput | StartFleetCommandOutput | StartImageBuilderCommandOutput | StartSoftwareDeploymentToImageBuilderCommandOutput | StopAppBlockBuilderCommandOutput | StopFleetCommandOutput | StopImageBuilderCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAppBlockBuilderCommandOutput | UpdateApplicationCommandOutput | UpdateDirectoryConfigCommandOutput | UpdateEntitlementCommandOutput | UpdateFleetCommandOutput | UpdateImagePermissionsCommandOutput | UpdateStackCommandOutput | UpdateThemeForStackCommandOutput;
|
|
105
109
|
/**
|
|
106
110
|
* @public
|
|
107
111
|
*/
|
|
@@ -262,21 +266,21 @@ export type AppStreamClientResolvedConfigType = __SmithyResolvedConfiguration<__
|
|
|
262
266
|
export interface AppStreamClientResolvedConfig extends AppStreamClientResolvedConfigType {
|
|
263
267
|
}
|
|
264
268
|
/**
|
|
265
|
-
* <fullname>Amazon
|
|
266
|
-
* <p>This is the <i>Amazon
|
|
269
|
+
* <fullname>Amazon WorkSpaces Applications</fullname>
|
|
270
|
+
* <p>This is the <i>Amazon WorkSpaces Applications API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in WorkSpaces Applications. WorkSpaces Applications is a fully managed, secure application streaming service that lets you stream desktop applications to users without rewriting applications. WorkSpaces Applications manages the AWS resources that are required to host and run your applications, scales automatically, and provides access to your users on demand. </p>
|
|
267
271
|
* <note>
|
|
268
|
-
* <p>You can call the
|
|
272
|
+
* <p>You can call the WorkSpaces Applications API operations by using an interface VPC endpoint (interface endpoint). For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/access-api-cli-through-interface-vpc-endpoint.html">Access WorkSpaces Applications API Operations and CLI Commands Through an Interface VPC Endpoint</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
|
|
269
273
|
* </note>
|
|
270
|
-
* <p>To learn more about
|
|
274
|
+
* <p>To learn more about WorkSpaces Applications, see the following resources:</p>
|
|
271
275
|
* <ul>
|
|
272
276
|
* <li>
|
|
273
277
|
* <p>
|
|
274
|
-
* <a href="http://aws.amazon.com/appstream2">Amazon
|
|
278
|
+
* <a href="http://aws.amazon.com/appstream2">Amazon WorkSpaces Applications product page</a>
|
|
275
279
|
* </p>
|
|
276
280
|
* </li>
|
|
277
281
|
* <li>
|
|
278
282
|
* <p>
|
|
279
|
-
* <a href="http://aws.amazon.com/documentation/appstream2">Amazon
|
|
283
|
+
* <a href="http://aws.amazon.com/documentation/appstream2">Amazon WorkSpaces Applications documentation</a>
|
|
280
284
|
* </p>
|
|
281
285
|
* </li>
|
|
282
286
|
* </ul>
|
|
@@ -86,7 +86,7 @@ declare const CreateAppBlockBuilderCommand_base: {
|
|
|
86
86
|
* // CreatedTime: new Date("TIMESTAMP"),
|
|
87
87
|
* // AppBlockBuilderErrors: [ // ResourceErrors
|
|
88
88
|
* // { // ResourceError
|
|
89
|
-
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
|
|
89
|
+
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR" || "VALIDATION_ERROR",
|
|
90
90
|
* // ErrorMessage: "STRING_VALUE",
|
|
91
91
|
* // ErrorTimestamp: new Date("TIMESTAMP"),
|
|
92
92
|
* // },
|
|
@@ -131,7 +131,7 @@ declare const CreateAppBlockBuilderCommand_base: {
|
|
|
131
131
|
* <p>The attempted operation is not permitted.</p>
|
|
132
132
|
*
|
|
133
133
|
* @throws {@link RequestLimitExceededException} (client fault)
|
|
134
|
-
* <p>
|
|
134
|
+
* <p>WorkSpaces Applications can’t process the request right now because the Describe calls from your AWS account are being throttled by Amazon EC2. Try again later.</p>
|
|
135
135
|
*
|
|
136
136
|
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
137
137
|
* <p>The specified resource already exists.</p>
|
|
@@ -28,7 +28,7 @@ declare const CreateAppBlockCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Creates an app block.</p>
|
|
31
|
-
* <p>App blocks are
|
|
31
|
+
* <p>App blocks are a WorkSpaces Applications resource that stores the details about the
|
|
32
32
|
* virtual hard disk in an S3 bucket. It also stores the setup script with details about
|
|
33
33
|
* how to mount the virtual hard disk. The virtual hard disk includes the application
|
|
34
34
|
* binaries and other files necessary to launch your applications. Multiple applications
|
|
@@ -28,7 +28,7 @@ declare const CreateApplicationCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Creates an application.</p>
|
|
31
|
-
* <p>Applications are
|
|
31
|
+
* <p>Applications are a WorkSpaces Applications resource that stores the details about how to
|
|
32
32
|
* launch applications on Elastic fleet streaming instances. An application consists of the
|
|
33
33
|
* launch details, icon, and display name. Applications are associated with an app block
|
|
34
34
|
* that contains the application binaries and other files. The applications assigned to an
|
|
@@ -27,7 +27,7 @@ declare const CreateDirectoryConfigCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a Directory Config object in
|
|
30
|
+
* <p>Creates a Directory Config object in WorkSpaces Applications. This object includes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -29,7 +29,7 @@ declare const CreateEntitlementCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Creates a new entitlement. Entitlements control access to specific applications within
|
|
31
31
|
* a stack, based on user attributes. Entitlements apply to SAML 2.0 federated user
|
|
32
|
-
* identities.
|
|
32
|
+
* identities. WorkSpaces Applications user pool and streaming URL users are entitled to all
|
|
33
33
|
* applications in a stack. Entitlements don't apply to the desktop stream view
|
|
34
34
|
* application, or to applications managed by a dynamic app provider using the Dynamic
|
|
35
35
|
* Application Framework.</p>
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { CreateExportImageTaskRequest, CreateExportImageTaskResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateExportImageTaskCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateExportImageTaskCommandInput extends CreateExportImageTaskRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateExportImageTaskCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateExportImageTaskCommandOutput extends CreateExportImageTaskResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateExportImageTaskCommand_base: {
|
|
25
|
+
new (input: CreateExportImageTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CreateExportImageTaskCommandInput, CreateExportImageTaskCommandOutput, AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateExportImageTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CreateExportImageTaskCommandInput, CreateExportImageTaskCommandOutput, AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a task to export a WorkSpaces Applications image to an EC2 AMI. This allows you to use your customized WorkSpaces Applications images with other AWS services or for backup purposes.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { AppStreamClient, CreateExportImageTaskCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
35
|
+
* // const { AppStreamClient, CreateExportImageTaskCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
36
|
+
* // import type { AppStreamClientConfig } from "@aws-sdk/client-appstream";
|
|
37
|
+
* const config = {}; // type is AppStreamClientConfig
|
|
38
|
+
* const client = new AppStreamClient(config);
|
|
39
|
+
* const input = { // CreateExportImageTaskRequest
|
|
40
|
+
* ImageName: "STRING_VALUE", // required
|
|
41
|
+
* AmiName: "STRING_VALUE", // required
|
|
42
|
+
* IamRoleArn: "STRING_VALUE", // required
|
|
43
|
+
* TagSpecifications: { // Tags
|
|
44
|
+
* "<keys>": "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* AmiDescription: "STRING_VALUE",
|
|
47
|
+
* };
|
|
48
|
+
* const command = new CreateExportImageTaskCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // CreateExportImageTaskResult
|
|
51
|
+
* // ExportImageTask: { // ExportImageTask
|
|
52
|
+
* // TaskId: "STRING_VALUE", // required
|
|
53
|
+
* // ImageArn: "STRING_VALUE", // required
|
|
54
|
+
* // AmiName: "STRING_VALUE", // required
|
|
55
|
+
* // CreatedDate: new Date("TIMESTAMP"), // required
|
|
56
|
+
* // AmiDescription: "STRING_VALUE",
|
|
57
|
+
* // State: "EXPORTING" || "COMPLETED" || "FAILED",
|
|
58
|
+
* // AmiId: "STRING_VALUE",
|
|
59
|
+
* // TagSpecifications: { // Tags
|
|
60
|
+
* // "<keys>": "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ErrorDetails: [ // ErrorDetailsList
|
|
63
|
+
* // { // ErrorDetails
|
|
64
|
+
* // ErrorCode: "STRING_VALUE",
|
|
65
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param CreateExportImageTaskCommandInput - {@link CreateExportImageTaskCommandInput}
|
|
74
|
+
* @returns {@link CreateExportImageTaskCommandOutput}
|
|
75
|
+
* @see {@link CreateExportImageTaskCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link CreateExportImageTaskCommandOutput} for command's `response` shape.
|
|
77
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
80
|
+
* <p>An API error occurred. Wait a few minutes and try again.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InvalidAccountStatusException} (client fault)
|
|
83
|
+
* <p>The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support. </p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InvalidRoleException} (client fault)
|
|
86
|
+
* <p>The specified role is invalid.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
89
|
+
* <p>The requested limit exceeds the permitted limit for an account.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
92
|
+
* <p>The attempted operation is not permitted.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ResourceNotAvailableException} (client fault)
|
|
95
|
+
* <p>The specified resource exists and is not in use, but isn't available.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
98
|
+
* <p>The specified resource was not found.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link AppStreamServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
102
|
+
*
|
|
103
|
+
*
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export declare class CreateExportImageTaskCommand extends CreateExportImageTaskCommand_base {
|
|
107
|
+
/** @internal type navigation helper, not in runtime. */
|
|
108
|
+
protected static __types: {
|
|
109
|
+
api: {
|
|
110
|
+
input: CreateExportImageTaskRequest;
|
|
111
|
+
output: CreateExportImageTaskResult;
|
|
112
|
+
};
|
|
113
|
+
sdk: {
|
|
114
|
+
input: CreateExportImageTaskCommandInput;
|
|
115
|
+
output: CreateExportImageTaskCommandOutput;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
}
|
|
@@ -79,6 +79,9 @@ declare const CreateFleetCommand_base: {
|
|
|
79
79
|
* S3Key: "STRING_VALUE",
|
|
80
80
|
* },
|
|
81
81
|
* MaxSessionsPerInstance: Number("int"),
|
|
82
|
+
* RootVolumeConfig: { // VolumeConfig
|
|
83
|
+
* VolumeSizeInGb: Number("int"),
|
|
84
|
+
* },
|
|
82
85
|
* };
|
|
83
86
|
* const command = new CreateFleetCommand(input);
|
|
84
87
|
* const response = await client.send(command);
|
|
@@ -116,7 +119,7 @@ declare const CreateFleetCommand_base: {
|
|
|
116
119
|
* // CreatedTime: new Date("TIMESTAMP"),
|
|
117
120
|
* // FleetErrors: [ // FleetErrors
|
|
118
121
|
* // { // FleetError
|
|
119
|
-
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
|
|
122
|
+
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR" || "VALIDATION_ERROR",
|
|
120
123
|
* // ErrorMessage: "STRING_VALUE",
|
|
121
124
|
* // },
|
|
122
125
|
* // ],
|
|
@@ -138,6 +141,9 @@ declare const CreateFleetCommand_base: {
|
|
|
138
141
|
* // S3Key: "STRING_VALUE",
|
|
139
142
|
* // },
|
|
140
143
|
* // MaxSessionsPerInstance: Number("int"),
|
|
144
|
+
* // RootVolumeConfig: { // VolumeConfig
|
|
145
|
+
* // VolumeSizeInGb: Number("int"),
|
|
146
|
+
* // },
|
|
141
147
|
* // },
|
|
142
148
|
* // };
|
|
143
149
|
*
|
|
@@ -171,7 +177,7 @@ declare const CreateFleetCommand_base: {
|
|
|
171
177
|
* <p>The attempted operation is not permitted.</p>
|
|
172
178
|
*
|
|
173
179
|
* @throws {@link RequestLimitExceededException} (client fault)
|
|
174
|
-
* <p>
|
|
180
|
+
* <p>WorkSpaces Applications can’t process the request right now because the Describe calls from your AWS account are being throttled by Amazon EC2. Try again later.</p>
|
|
175
181
|
*
|
|
176
182
|
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
177
183
|
* <p>The specified resource already exists.</p>
|
|
@@ -68,6 +68,9 @@ declare const CreateImageBuilderCommand_base: {
|
|
|
68
68
|
* VpceId: "STRING_VALUE",
|
|
69
69
|
* },
|
|
70
70
|
* ],
|
|
71
|
+
* RootVolumeConfig: { // VolumeConfig
|
|
72
|
+
* VolumeSizeInGb: Number("int"),
|
|
73
|
+
* },
|
|
71
74
|
* SoftwaresToInstall: [ // StringList
|
|
72
75
|
* "STRING_VALUE",
|
|
73
76
|
* ],
|
|
@@ -95,7 +98,7 @@ declare const CreateImageBuilderCommand_base: {
|
|
|
95
98
|
* // InstanceType: "STRING_VALUE",
|
|
96
99
|
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8" || "ROCKY_LINUX8",
|
|
97
100
|
* // IamRoleArn: "STRING_VALUE",
|
|
98
|
-
* // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION" || "PENDING_SYNCING_APPS" || "SYNCING_APPS",
|
|
101
|
+
* // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION" || "PENDING_SYNCING_APPS" || "SYNCING_APPS" || "PENDING_IMAGE_IMPORT",
|
|
99
102
|
* // StateChangeReason: { // ImageBuilderStateChangeReason
|
|
100
103
|
* // Code: "INTERNAL_ERROR" || "IMAGE_UNAVAILABLE",
|
|
101
104
|
* // Message: "STRING_VALUE",
|
|
@@ -115,7 +118,7 @@ declare const CreateImageBuilderCommand_base: {
|
|
|
115
118
|
* // },
|
|
116
119
|
* // ImageBuilderErrors: [ // ResourceErrors
|
|
117
120
|
* // { // ResourceError
|
|
118
|
-
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
|
|
121
|
+
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR" || "VALIDATION_ERROR",
|
|
119
122
|
* // ErrorMessage: "STRING_VALUE",
|
|
120
123
|
* // ErrorTimestamp: new Date("TIMESTAMP"),
|
|
121
124
|
* // },
|
|
@@ -127,6 +130,9 @@ declare const CreateImageBuilderCommand_base: {
|
|
|
127
130
|
* // VpceId: "STRING_VALUE",
|
|
128
131
|
* // },
|
|
129
132
|
* // ],
|
|
133
|
+
* // RootVolumeConfig: { // VolumeConfig
|
|
134
|
+
* // VolumeSizeInGb: Number("int"),
|
|
135
|
+
* // },
|
|
130
136
|
* // LatestAppstreamAgentVersion: "TRUE" || "FALSE",
|
|
131
137
|
* // },
|
|
132
138
|
* // };
|
|
@@ -161,7 +167,7 @@ declare const CreateImageBuilderCommand_base: {
|
|
|
161
167
|
* <p>The attempted operation is not permitted.</p>
|
|
162
168
|
*
|
|
163
169
|
* @throws {@link RequestLimitExceededException} (client fault)
|
|
164
|
-
* <p>
|
|
170
|
+
* <p>WorkSpaces Applications can’t process the request right now because the Describe calls from your AWS account are being throttled by Amazon EC2. Try again later.</p>
|
|
165
171
|
*
|
|
166
172
|
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
167
173
|
* <p>The specified resource already exists.</p>
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { CreateImportedImageRequest, CreateImportedImageResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateImportedImageCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateImportedImageCommandInput extends CreateImportedImageRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateImportedImageCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateImportedImageCommandOutput extends CreateImportedImageResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateImportedImageCommand_base: {
|
|
25
|
+
new (input: CreateImportedImageCommandInput): import("@smithy/smithy-client").CommandImpl<CreateImportedImageCommandInput, CreateImportedImageCommandOutput, AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateImportedImageCommandInput): import("@smithy/smithy-client").CommandImpl<CreateImportedImageCommandInput, CreateImportedImageCommandOutput, AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a custom WorkSpaces Applications image by importing an EC2 AMI. This allows you to use your own customized AMI to create WorkSpaces Applications images that support additional instance types beyond the standard stream.* instances.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { AppStreamClient, CreateImportedImageCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
35
|
+
* // const { AppStreamClient, CreateImportedImageCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
36
|
+
* // import type { AppStreamClientConfig } from "@aws-sdk/client-appstream";
|
|
37
|
+
* const config = {}; // type is AppStreamClientConfig
|
|
38
|
+
* const client = new AppStreamClient(config);
|
|
39
|
+
* const input = { // CreateImportedImageRequest
|
|
40
|
+
* Name: "STRING_VALUE", // required
|
|
41
|
+
* SourceAmiId: "STRING_VALUE", // required
|
|
42
|
+
* IamRoleArn: "STRING_VALUE", // required
|
|
43
|
+
* Description: "STRING_VALUE",
|
|
44
|
+
* DisplayName: "STRING_VALUE",
|
|
45
|
+
* Tags: { // Tags
|
|
46
|
+
* "<keys>": "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* RuntimeValidationConfig: { // RuntimeValidationConfig
|
|
49
|
+
* IntendedInstanceType: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* AgentSoftwareVersion: "CURRENT_LATEST" || "ALWAYS_LATEST",
|
|
52
|
+
* AppCatalogConfig: [ // AppCatalogConfig
|
|
53
|
+
* { // ApplicationConfig
|
|
54
|
+
* Name: "STRING_VALUE", // required
|
|
55
|
+
* DisplayName: "STRING_VALUE",
|
|
56
|
+
* AbsoluteAppPath: "STRING_VALUE", // required
|
|
57
|
+
* AbsoluteIconPath: "STRING_VALUE",
|
|
58
|
+
* AbsoluteManifestPath: "STRING_VALUE",
|
|
59
|
+
* WorkingDirectory: "STRING_VALUE",
|
|
60
|
+
* LaunchParameters: "STRING_VALUE",
|
|
61
|
+
* },
|
|
62
|
+
* ],
|
|
63
|
+
* DryRun: true || false,
|
|
64
|
+
* };
|
|
65
|
+
* const command = new CreateImportedImageCommand(input);
|
|
66
|
+
* const response = await client.send(command);
|
|
67
|
+
* // { // CreateImportedImageResult
|
|
68
|
+
* // Image: { // Image
|
|
69
|
+
* // Name: "STRING_VALUE", // required
|
|
70
|
+
* // Arn: "STRING_VALUE",
|
|
71
|
+
* // BaseImageArn: "STRING_VALUE",
|
|
72
|
+
* // DisplayName: "STRING_VALUE",
|
|
73
|
+
* // State: "PENDING" || "AVAILABLE" || "FAILED" || "COPYING" || "DELETING" || "CREATING" || "IMPORTING" || "VALIDATING",
|
|
74
|
+
* // Visibility: "PUBLIC" || "PRIVATE" || "SHARED",
|
|
75
|
+
* // ImageBuilderSupported: true || false,
|
|
76
|
+
* // ImageBuilderName: "STRING_VALUE",
|
|
77
|
+
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8" || "ROCKY_LINUX8",
|
|
78
|
+
* // Description: "STRING_VALUE",
|
|
79
|
+
* // StateChangeReason: { // ImageStateChangeReason
|
|
80
|
+
* // Code: "INTERNAL_ERROR" || "IMAGE_BUILDER_NOT_AVAILABLE" || "IMAGE_COPY_FAILURE" || "IMAGE_UPDATE_FAILURE" || "IMAGE_IMPORT_FAILURE",
|
|
81
|
+
* // Message: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // Applications: [ // Applications
|
|
84
|
+
* // { // Application
|
|
85
|
+
* // Name: "STRING_VALUE",
|
|
86
|
+
* // DisplayName: "STRING_VALUE",
|
|
87
|
+
* // IconURL: "STRING_VALUE",
|
|
88
|
+
* // LaunchPath: "STRING_VALUE",
|
|
89
|
+
* // LaunchParameters: "STRING_VALUE",
|
|
90
|
+
* // Enabled: true || false,
|
|
91
|
+
* // Metadata: { // Metadata
|
|
92
|
+
* // "<keys>": "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // WorkingDirectory: "STRING_VALUE",
|
|
95
|
+
* // Description: "STRING_VALUE",
|
|
96
|
+
* // Arn: "STRING_VALUE",
|
|
97
|
+
* // AppBlockArn: "STRING_VALUE",
|
|
98
|
+
* // IconS3Location: { // S3Location
|
|
99
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
100
|
+
* // S3Key: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // Platforms: [ // Platforms
|
|
103
|
+
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8" || "ROCKY_LINUX8",
|
|
104
|
+
* // ],
|
|
105
|
+
* // InstanceFamilies: [ // StringList
|
|
106
|
+
* // "STRING_VALUE",
|
|
107
|
+
* // ],
|
|
108
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
112
|
+
* // PublicBaseImageReleasedDate: new Date("TIMESTAMP"),
|
|
113
|
+
* // AppstreamAgentVersion: "STRING_VALUE",
|
|
114
|
+
* // ImagePermissions: { // ImagePermissions
|
|
115
|
+
* // allowFleet: true || false,
|
|
116
|
+
* // allowImageBuilder: true || false,
|
|
117
|
+
* // },
|
|
118
|
+
* // ImageErrors: [ // ResourceErrors
|
|
119
|
+
* // { // ResourceError
|
|
120
|
+
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR" || "VALIDATION_ERROR",
|
|
121
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
122
|
+
* // ErrorTimestamp: new Date("TIMESTAMP"),
|
|
123
|
+
* // },
|
|
124
|
+
* // ],
|
|
125
|
+
* // LatestAppstreamAgentVersion: "TRUE" || "FALSE",
|
|
126
|
+
* // SupportedInstanceFamilies: [
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // DynamicAppProvidersEnabled: "ENABLED" || "DISABLED",
|
|
130
|
+
* // ImageSharedWithOthers: "TRUE" || "FALSE",
|
|
131
|
+
* // ManagedSoftwareIncluded: true || false,
|
|
132
|
+
* // ImageType: "CUSTOM" || "NATIVE",
|
|
133
|
+
* // },
|
|
134
|
+
* // };
|
|
135
|
+
*
|
|
136
|
+
* ```
|
|
137
|
+
*
|
|
138
|
+
* @param CreateImportedImageCommandInput - {@link CreateImportedImageCommandInput}
|
|
139
|
+
* @returns {@link CreateImportedImageCommandOutput}
|
|
140
|
+
* @see {@link CreateImportedImageCommandInput} for command's `input` shape.
|
|
141
|
+
* @see {@link CreateImportedImageCommandOutput} for command's `response` shape.
|
|
142
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
143
|
+
*
|
|
144
|
+
* @throws {@link DryRunOperationException} (client fault)
|
|
145
|
+
* <p>The exception that is thrown when a dry run operation is requested. This indicates that the validation checks have been performed successfully, but no actual resources were created or modified.</p>
|
|
146
|
+
*
|
|
147
|
+
* @throws {@link IncompatibleImageException} (client fault)
|
|
148
|
+
* <p>The image can't be updated because it's not compatible for updates.</p>
|
|
149
|
+
*
|
|
150
|
+
* @throws {@link InvalidAccountStatusException} (client fault)
|
|
151
|
+
* <p>The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support. </p>
|
|
152
|
+
*
|
|
153
|
+
* @throws {@link InvalidRoleException} (client fault)
|
|
154
|
+
* <p>The specified role is invalid.</p>
|
|
155
|
+
*
|
|
156
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
157
|
+
* <p>The requested limit exceeds the permitted limit for an account.</p>
|
|
158
|
+
*
|
|
159
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
160
|
+
* <p>The attempted operation is not permitted.</p>
|
|
161
|
+
*
|
|
162
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
163
|
+
* <p>The specified resource already exists.</p>
|
|
164
|
+
*
|
|
165
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
166
|
+
* <p>The specified resource was not found.</p>
|
|
167
|
+
*
|
|
168
|
+
* @throws {@link AppStreamServiceException}
|
|
169
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
170
|
+
*
|
|
171
|
+
*
|
|
172
|
+
* @public
|
|
173
|
+
*/
|
|
174
|
+
export declare class CreateImportedImageCommand extends CreateImportedImageCommand_base {
|
|
175
|
+
/** @internal type navigation helper, not in runtime. */
|
|
176
|
+
protected static __types: {
|
|
177
|
+
api: {
|
|
178
|
+
input: CreateImportedImageRequest;
|
|
179
|
+
output: CreateImportedImageResult;
|
|
180
|
+
};
|
|
181
|
+
sdk: {
|
|
182
|
+
input: CreateImportedImageCommandInput;
|
|
183
|
+
output: CreateImportedImageCommandOutput;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
}
|
|
@@ -27,7 +27,7 @@ declare const CreateStreamingURLCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a temporary URL to start an
|
|
30
|
+
* <p>Creates a temporary URL to start an WorkSpaces Applications streaming session for the specified user. A streaming URL enables application streaming to be tested without user setup. </p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,9 +27,9 @@ declare const CreateUpdatedImageCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a new image with the latest Windows operating system updates, driver updates, and
|
|
30
|
+
* <p>Creates a new image with the latest Windows operating system updates, driver updates, and WorkSpaces Applications agent software.</p>
|
|
31
31
|
* <p>For more information, see the "Update an Image by Using
|
|
32
|
-
* Managed
|
|
32
|
+
* Managed WorkSpaces Applications Image Updates" section in <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/administer-images.html">Administer Your WorkSpaces Applications Images</a>, in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -56,14 +56,14 @@ declare const CreateUpdatedImageCommand_base: {
|
|
|
56
56
|
* // Arn: "STRING_VALUE",
|
|
57
57
|
* // BaseImageArn: "STRING_VALUE",
|
|
58
58
|
* // DisplayName: "STRING_VALUE",
|
|
59
|
-
* // State: "PENDING" || "AVAILABLE" || "FAILED" || "COPYING" || "DELETING" || "CREATING" || "IMPORTING",
|
|
59
|
+
* // State: "PENDING" || "AVAILABLE" || "FAILED" || "COPYING" || "DELETING" || "CREATING" || "IMPORTING" || "VALIDATING",
|
|
60
60
|
* // Visibility: "PUBLIC" || "PRIVATE" || "SHARED",
|
|
61
61
|
* // ImageBuilderSupported: true || false,
|
|
62
62
|
* // ImageBuilderName: "STRING_VALUE",
|
|
63
63
|
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8" || "ROCKY_LINUX8",
|
|
64
64
|
* // Description: "STRING_VALUE",
|
|
65
65
|
* // StateChangeReason: { // ImageStateChangeReason
|
|
66
|
-
* // Code: "INTERNAL_ERROR" || "IMAGE_BUILDER_NOT_AVAILABLE" || "IMAGE_COPY_FAILURE",
|
|
66
|
+
* // Code: "INTERNAL_ERROR" || "IMAGE_BUILDER_NOT_AVAILABLE" || "IMAGE_COPY_FAILURE" || "IMAGE_UPDATE_FAILURE" || "IMAGE_IMPORT_FAILURE",
|
|
67
67
|
* // Message: "STRING_VALUE",
|
|
68
68
|
* // },
|
|
69
69
|
* // Applications: [ // Applications
|
|
@@ -103,7 +103,7 @@ declare const CreateUpdatedImageCommand_base: {
|
|
|
103
103
|
* // },
|
|
104
104
|
* // ImageErrors: [ // ResourceErrors
|
|
105
105
|
* // { // ResourceError
|
|
106
|
-
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
|
|
106
|
+
* // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR" || "VALIDATION_ERROR",
|
|
107
107
|
* // ErrorMessage: "STRING_VALUE",
|
|
108
108
|
* // ErrorTimestamp: new Date("TIMESTAMP"),
|
|
109
109
|
* // },
|
|
@@ -115,6 +115,7 @@ declare const CreateUpdatedImageCommand_base: {
|
|
|
115
115
|
* // DynamicAppProvidersEnabled: "ENABLED" || "DISABLED",
|
|
116
116
|
* // ImageSharedWithOthers: "TRUE" || "FALSE",
|
|
117
117
|
* // ManagedSoftwareIncluded: true || false,
|
|
118
|
+
* // ImageType: "CUSTOM" || "NATIVE",
|
|
118
119
|
* // },
|
|
119
120
|
* // canUpdateImage: true || false,
|
|
120
121
|
* // };
|