@aws-sdk/client-appstream 3.299.0 → 3.301.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-types/commands/AssociateApplicationFleetCommand.d.ts +4 -0
- package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +5 -0
- package/dist-types/commands/AssociateFleetCommand.d.ts +4 -0
- package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +10 -0
- package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +10 -0
- package/dist-types/commands/CopyImageCommand.d.ts +6 -0
- package/dist-types/commands/CreateAppBlockCommand.d.ts +21 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +22 -0
- package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +14 -0
- package/dist-types/commands/CreateEntitlementCommand.d.ts +12 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +42 -0
- package/dist-types/commands/CreateImageBuilderCommand.d.ts +32 -0
- package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +4 -0
- package/dist-types/commands/CreateStackCommand.d.ts +41 -0
- package/dist-types/commands/CreateStreamingURLCommand.d.ts +8 -0
- package/dist-types/commands/CreateUpdatedImageCommand.d.ts +10 -0
- package/dist-types/commands/CreateUsageReportSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/CreateUserCommand.d.ts +7 -0
- package/dist-types/commands/DeleteAppBlockCommand.d.ts +3 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +3 -0
- package/dist-types/commands/DeleteEntitlementCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFleetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteImageBuilderCommand.d.ts +3 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +3 -0
- package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStackCommand.d.ts +3 -0
- package/dist-types/commands/DeleteUsageReportSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAppBlocksCommand.d.ts +7 -0
- package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +7 -0
- package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +7 -0
- package/dist-types/commands/DescribeEntitlementsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeFleetsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeImageBuildersCommand.d.ts +7 -0
- package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +11 -0
- package/dist-types/commands/DescribeSessionsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +6 -0
- package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +7 -0
- package/dist-types/commands/DescribeUsersCommand.d.ts +5 -0
- package/dist-types/commands/DisableUserCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +5 -0
- package/dist-types/commands/DisassociateFleetCommand.d.ts +4 -0
- package/dist-types/commands/EnableUserCommand.d.ts +4 -0
- package/dist-types/commands/ExpireSessionCommand.d.ts +3 -0
- package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +4 -0
- package/dist-types/commands/ListAssociatedStacksCommand.d.ts +4 -0
- package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartFleetCommand.d.ts +3 -0
- package/dist-types/commands/StartImageBuilderCommand.d.ts +4 -0
- package/dist-types/commands/StopFleetCommand.d.ts +3 -0
- package/dist-types/commands/StopImageBuilderCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +14 -0
- package/dist-types/commands/UpdateEntitlementCommand.d.ts +12 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +42 -0
- package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +8 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +42 -0
- package/package.json +8 -8
|
@@ -26,6 +26,14 @@ export interface DescribeImagePermissionsCommandOutput extends DescribeImagePerm
|
|
|
26
26
|
* import { AppStreamClient, DescribeImagePermissionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DescribeImagePermissionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DescribeImagePermissionsRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* SharedAwsAccountIds: [ // AwsAccountIdList
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
29
37
|
* const command = new DescribeImagePermissionsCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
|
|
|
26
26
|
* import { AppStreamClient, DescribeImagesCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DescribeImagesCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DescribeImagesRequest
|
|
30
|
+
* Names: [ // StringList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Arns: [ // ArnList
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* Type: "PUBLIC" || "PRIVATE" || "SHARED",
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* };
|
|
29
40
|
* const command = new DescribeImagesCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -28,6 +28,14 @@ export interface DescribeSessionsCommandOutput extends DescribeSessionsResult, _
|
|
|
28
28
|
* import { AppStreamClient, DescribeSessionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
29
29
|
* // const { AppStreamClient, DescribeSessionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
30
30
|
* const client = new AppStreamClient(config);
|
|
31
|
+
* const input = { // DescribeSessionsRequest
|
|
32
|
+
* StackName: "STRING_VALUE", // required
|
|
33
|
+
* FleetName: "STRING_VALUE", // required
|
|
34
|
+
* UserId: "STRING_VALUE",
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* Limit: Number("int"),
|
|
37
|
+
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD",
|
|
38
|
+
* };
|
|
31
39
|
* const command = new DescribeSessionsCommand(input);
|
|
32
40
|
* const response = await client.send(command);
|
|
33
41
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
|
|
|
26
26
|
* import { AppStreamClient, DescribeStacksCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DescribeStacksCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DescribeStacksRequest
|
|
30
|
+
* Names: [ // StringList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DescribeStacksCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DescribeUsageReportSubscriptionsCommandOutput extends DescribeU
|
|
|
26
26
|
* import { AppStreamClient, DescribeUsageReportSubscriptionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DescribeUsageReportSubscriptionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DescribeUsageReportSubscriptionsRequest
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeUsageReportSubscriptionsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -34,6 +34,13 @@ export interface DescribeUserStackAssociationsCommandOutput extends DescribeUser
|
|
|
34
34
|
* import { AppStreamClient, DescribeUserStackAssociationsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
35
35
|
* // const { AppStreamClient, DescribeUserStackAssociationsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
36
36
|
* const client = new AppStreamClient(config);
|
|
37
|
+
* const input = { // DescribeUserStackAssociationsRequest
|
|
38
|
+
* StackName: "STRING_VALUE",
|
|
39
|
+
* UserName: "STRING_VALUE",
|
|
40
|
+
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD",
|
|
41
|
+
* MaxResults: Number("int"),
|
|
42
|
+
* NextToken: "STRING_VALUE",
|
|
43
|
+
* };
|
|
37
44
|
* const command = new DescribeUserStackAssociationsCommand(input);
|
|
38
45
|
* const response = await client.send(command);
|
|
39
46
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResult, __Metad
|
|
|
26
26
|
* import { AppStreamClient, DescribeUsersCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DescribeUsersCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DescribeUsersRequest
|
|
30
|
+
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeUsersCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DisableUserCommandOutput extends DisableUserResult, __MetadataB
|
|
|
26
26
|
* import { AppStreamClient, DisableUserCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DisableUserCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DisableUserRequest
|
|
30
|
+
* UserName: "STRING_VALUE", // required
|
|
31
|
+
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DisableUserCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DisassociateApplicationFleetCommandOutput extends DisassociateA
|
|
|
26
26
|
* import { AppStreamClient, DisassociateApplicationFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DisassociateApplicationFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DisassociateApplicationFleetRequest
|
|
30
|
+
* FleetName: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DisassociateApplicationFleetCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DisassociateApplicationFromEntitlementCommandOutput extends Dis
|
|
|
26
26
|
* import { AppStreamClient, DisassociateApplicationFromEntitlementCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DisassociateApplicationFromEntitlementCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DisassociateApplicationFromEntitlementRequest
|
|
30
|
+
* StackName: "STRING_VALUE", // required
|
|
31
|
+
* EntitlementName: "STRING_VALUE", // required
|
|
32
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DisassociateApplicationFromEntitlementCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DisassociateFleetCommandOutput extends DisassociateFleetResult,
|
|
|
26
26
|
* import { AppStreamClient, DisassociateFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, DisassociateFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // DisassociateFleetRequest
|
|
30
|
+
* FleetName: "STRING_VALUE", // required
|
|
31
|
+
* StackName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DisassociateFleetCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface EnableUserCommandOutput extends EnableUserResult, __MetadataBea
|
|
|
26
26
|
* import { AppStreamClient, EnableUserCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, EnableUserCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // EnableUserRequest
|
|
30
|
+
* UserName: "STRING_VALUE", // required
|
|
31
|
+
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new EnableUserCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ExpireSessionCommandOutput extends ExpireSessionResult, __Metad
|
|
|
26
26
|
* import { AppStreamClient, ExpireSessionCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, ExpireSessionCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // ExpireSessionRequest
|
|
30
|
+
* SessionId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ExpireSessionCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListAssociatedFleetsCommandOutput extends ListAssociatedFleetsR
|
|
|
26
26
|
* import { AppStreamClient, ListAssociatedFleetsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, ListAssociatedFleetsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // ListAssociatedFleetsRequest
|
|
30
|
+
* StackName: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListAssociatedFleetsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListAssociatedStacksCommandOutput extends ListAssociatedStacksR
|
|
|
26
26
|
* import { AppStreamClient, ListAssociatedStacksCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, ListAssociatedStacksCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // ListAssociatedStacksRequest
|
|
30
|
+
* FleetName: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListAssociatedStacksCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListEntitledApplicationsCommandOutput extends ListEntitledAppli
|
|
|
26
26
|
* import { AppStreamClient, ListEntitledApplicationsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, ListEntitledApplicationsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // ListEntitledApplicationsRequest
|
|
30
|
+
* StackName: "STRING_VALUE", // required
|
|
31
|
+
* EntitlementName: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListEntitledApplicationsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
27
|
* import { AppStreamClient, ListTagsForResourceCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
28
28
|
* // const { AppStreamClient, ListTagsForResourceCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
29
29
|
* const client = new AppStreamClient(config);
|
|
30
|
+
* const input = { // ListTagsForResourceRequest
|
|
31
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface StartFleetCommandOutput extends StartFleetResult, __MetadataBea
|
|
|
26
26
|
* import { AppStreamClient, StartFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, StartFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // StartFleetRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StartFleetCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface StartImageBuilderCommandOutput extends StartImageBuilderResult,
|
|
|
26
26
|
* import { AppStreamClient, StartImageBuilderCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, StartImageBuilderCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // StartImageBuilderRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* AppstreamAgentVersion: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new StartImageBuilderCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface StopFleetCommandOutput extends StopFleetResult, __MetadataBeare
|
|
|
26
26
|
* import { AppStreamClient, StopFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, StopFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // StopFleetRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StopFleetCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface StopImageBuilderCommandOutput extends StopImageBuilderResult, _
|
|
|
26
26
|
* import { AppStreamClient, StopImageBuilderCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, StopImageBuilderCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // StopImageBuilderRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StopImageBuilderCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -31,6 +31,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
31
|
* import { AppStreamClient, TagResourceCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
32
32
|
* // const { AppStreamClient, TagResourceCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
33
33
|
* const client = new AppStreamClient(config);
|
|
34
|
+
* const input = { // TagResourceRequest
|
|
35
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
36
|
+
* Tags: { // Tags // required
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* };
|
|
34
40
|
* const command = new TagResourceCommand(input);
|
|
35
41
|
* const response = await client.send(command);
|
|
36
42
|
* ```
|
|
@@ -28,6 +28,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
28
28
|
* import { AppStreamClient, UntagResourceCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
29
29
|
* // const { AppStreamClient, UntagResourceCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
30
30
|
* const client = new AppStreamClient(config);
|
|
31
|
+
* const input = { // UntagResourceRequest
|
|
32
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
33
|
+
* TagKeys: [ // TagKeyList // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* };
|
|
31
37
|
* const command = new UntagResourceCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
|
@@ -26,6 +26,22 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationResult,
|
|
|
26
26
|
* import { AppStreamClient, UpdateApplicationCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, UpdateApplicationCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // UpdateApplicationRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* DisplayName: "STRING_VALUE",
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* IconS3Location: { // S3Location
|
|
34
|
+
* S3Bucket: "STRING_VALUE", // required
|
|
35
|
+
* S3Key: "STRING_VALUE", // required
|
|
36
|
+
* },
|
|
37
|
+
* LaunchPath: "STRING_VALUE",
|
|
38
|
+
* WorkingDirectory: "STRING_VALUE",
|
|
39
|
+
* LaunchParameters: "STRING_VALUE",
|
|
40
|
+
* AppBlockArn: "STRING_VALUE",
|
|
41
|
+
* AttributesToDelete: [ // ApplicationAttributes
|
|
42
|
+
* "LAUNCH_PARAMETERS" || "WORKING_DIRECTORY",
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
29
45
|
* const command = new UpdateApplicationCommand(input);
|
|
30
46
|
* const response = await client.send(command);
|
|
31
47
|
* ```
|
|
@@ -26,6 +26,20 @@ export interface UpdateDirectoryConfigCommandOutput extends UpdateDirectoryConfi
|
|
|
26
26
|
* import { AppStreamClient, UpdateDirectoryConfigCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, UpdateDirectoryConfigCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // UpdateDirectoryConfigRequest
|
|
30
|
+
* DirectoryName: "STRING_VALUE", // required
|
|
31
|
+
* OrganizationalUnitDistinguishedNames: [ // OrganizationalUnitDistinguishedNamesList
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* ServiceAccountCredentials: { // ServiceAccountCredentials
|
|
35
|
+
* AccountName: "STRING_VALUE", // required
|
|
36
|
+
* AccountPassword: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* CertificateBasedAuthProperties: { // CertificateBasedAuthProperties
|
|
39
|
+
* Status: "DISABLED" || "ENABLED" || "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK",
|
|
40
|
+
* CertificateAuthorityArn: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
29
43
|
* const command = new UpdateDirectoryConfigCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface UpdateEntitlementCommandOutput extends UpdateEntitlementResult,
|
|
|
26
26
|
* import { AppStreamClient, UpdateEntitlementCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, UpdateEntitlementCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // UpdateEntitlementRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* StackName: "STRING_VALUE", // required
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* AppVisibility: "ALL" || "ASSOCIATED",
|
|
34
|
+
* Attributes: [ // EntitlementAttributeList
|
|
35
|
+
* { // EntitlementAttribute
|
|
36
|
+
* Name: "STRING_VALUE", // required
|
|
37
|
+
* Value: "STRING_VALUE", // required
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
29
41
|
* const command = new UpdateEntitlementCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -47,6 +47,48 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
|
|
|
47
47
|
* import { AppStreamClient, UpdateFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
48
48
|
* // const { AppStreamClient, UpdateFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
49
49
|
* const client = new AppStreamClient(config);
|
|
50
|
+
* const input = { // UpdateFleetRequest
|
|
51
|
+
* ImageName: "STRING_VALUE",
|
|
52
|
+
* ImageArn: "STRING_VALUE",
|
|
53
|
+
* Name: "STRING_VALUE",
|
|
54
|
+
* InstanceType: "STRING_VALUE",
|
|
55
|
+
* ComputeCapacity: { // ComputeCapacity
|
|
56
|
+
* DesiredInstances: Number("int"), // required
|
|
57
|
+
* },
|
|
58
|
+
* VpcConfig: { // VpcConfig
|
|
59
|
+
* SubnetIds: [ // SubnetIdList
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* SecurityGroupIds: [ // SecurityGroupIdList
|
|
63
|
+
* "STRING_VALUE",
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* MaxUserDurationInSeconds: Number("int"),
|
|
67
|
+
* DisconnectTimeoutInSeconds: Number("int"),
|
|
68
|
+
* DeleteVpcConfig: true || false,
|
|
69
|
+
* Description: "STRING_VALUE",
|
|
70
|
+
* DisplayName: "STRING_VALUE",
|
|
71
|
+
* EnableDefaultInternetAccess: true || false,
|
|
72
|
+
* DomainJoinInfo: { // DomainJoinInfo
|
|
73
|
+
* DirectoryName: "STRING_VALUE",
|
|
74
|
+
* OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
75
|
+
* },
|
|
76
|
+
* IdleDisconnectTimeoutInSeconds: Number("int"),
|
|
77
|
+
* AttributesToDelete: [ // FleetAttributes
|
|
78
|
+
* "VPC_CONFIGURATION" || "VPC_CONFIGURATION_SECURITY_GROUP_IDS" || "DOMAIN_JOIN_INFO" || "IAM_ROLE_ARN" || "USB_DEVICE_FILTER_STRINGS" || "SESSION_SCRIPT_S3_LOCATION",
|
|
79
|
+
* ],
|
|
80
|
+
* IamRoleArn: "STRING_VALUE",
|
|
81
|
+
* StreamView: "APP" || "DESKTOP",
|
|
82
|
+
* Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
|
|
83
|
+
* MaxConcurrentSessions: Number("int"),
|
|
84
|
+
* UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
|
|
85
|
+
* "STRING_VALUE",
|
|
86
|
+
* ],
|
|
87
|
+
* SessionScriptS3Location: { // S3Location
|
|
88
|
+
* S3Bucket: "STRING_VALUE", // required
|
|
89
|
+
* S3Key: "STRING_VALUE", // required
|
|
90
|
+
* },
|
|
91
|
+
* };
|
|
50
92
|
* const command = new UpdateFleetCommand(input);
|
|
51
93
|
* const response = await client.send(command);
|
|
52
94
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface UpdateImagePermissionsCommandOutput extends UpdateImagePermissi
|
|
|
26
26
|
* import { AppStreamClient, UpdateImagePermissionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, UpdateImagePermissionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // UpdateImagePermissionsRequest
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* SharedAccountId: "STRING_VALUE", // required
|
|
32
|
+
* ImagePermissions: { // ImagePermissions
|
|
33
|
+
* allowFleet: true || false,
|
|
34
|
+
* allowImageBuilder: true || false,
|
|
35
|
+
* },
|
|
36
|
+
* };
|
|
29
37
|
* const command = new UpdateImagePermissionsCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -26,6 +26,48 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB
|
|
|
26
26
|
* import { AppStreamClient, UpdateStackCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
27
27
|
* // const { AppStreamClient, UpdateStackCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
28
28
|
* const client = new AppStreamClient(config);
|
|
29
|
+
* const input = { // UpdateStackRequest
|
|
30
|
+
* DisplayName: "STRING_VALUE",
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* Name: "STRING_VALUE", // required
|
|
33
|
+
* StorageConnectors: [ // StorageConnectorList
|
|
34
|
+
* { // StorageConnector
|
|
35
|
+
* ConnectorType: "HOMEFOLDERS" || "GOOGLE_DRIVE" || "ONE_DRIVE", // required
|
|
36
|
+
* ResourceIdentifier: "STRING_VALUE",
|
|
37
|
+
* Domains: [ // DomainList
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* DeleteStorageConnectors: true || false,
|
|
43
|
+
* RedirectURL: "STRING_VALUE",
|
|
44
|
+
* FeedbackURL: "STRING_VALUE",
|
|
45
|
+
* AttributesToDelete: [ // StackAttributes
|
|
46
|
+
* "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",
|
|
47
|
+
* ],
|
|
48
|
+
* UserSettings: [ // UserSettingList
|
|
49
|
+
* { // UserSetting
|
|
50
|
+
* Action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE" || "CLIPBOARD_COPY_TO_LOCAL_DEVICE" || "FILE_UPLOAD" || "FILE_DOWNLOAD" || "PRINTING_TO_LOCAL_DEVICE" || "DOMAIN_PASSWORD_SIGNIN" || "DOMAIN_SMART_CARD_SIGNIN", // required
|
|
51
|
+
* Permission: "ENABLED" || "DISABLED", // required
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* ApplicationSettings: { // ApplicationSettings
|
|
55
|
+
* Enabled: true || false, // required
|
|
56
|
+
* SettingsGroup: "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* AccessEndpoints: [ // AccessEndpointList
|
|
59
|
+
* { // AccessEndpoint
|
|
60
|
+
* EndpointType: "STREAMING", // required
|
|
61
|
+
* VpceId: "STRING_VALUE",
|
|
62
|
+
* },
|
|
63
|
+
* ],
|
|
64
|
+
* EmbedHostDomains: [ // EmbedHostDomains
|
|
65
|
+
* "STRING_VALUE",
|
|
66
|
+
* ],
|
|
67
|
+
* StreamingExperienceSettings: { // StreamingExperienceSettings
|
|
68
|
+
* PreferredProtocol: "TCP" || "UDP",
|
|
69
|
+
* },
|
|
70
|
+
* };
|
|
29
71
|
* const command = new UpdateStackCommand(input);
|
|
30
72
|
* const response = await client.send(command);
|
|
31
73
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appstream",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"@aws-sdk/util-waiter": "3.296.0",
|
|
57
57
|
"tslib": "^2.5.0"
|