@aws-sdk/client-appstream 3.42.0 → 3.43.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/CHANGELOG.md +11 -0
- package/README.md +7 -7
- package/dist-cjs/AppStream.js +150 -0
- package/dist-cjs/commands/AssociateApplicationFleetCommand.js +36 -0
- package/dist-cjs/commands/CreateAppBlockCommand.js +36 -0
- package/dist-cjs/commands/CreateApplicationCommand.js +36 -0
- package/dist-cjs/commands/DeleteAppBlockCommand.js +36 -0
- package/dist-cjs/commands/DeleteApplicationCommand.js +36 -0
- package/dist-cjs/commands/DescribeAppBlocksCommand.js +36 -0
- package/dist-cjs/commands/DescribeApplicationFleetAssociationsCommand.js +36 -0
- package/dist-cjs/commands/DescribeApplicationsCommand.js +36 -0
- package/dist-cjs/commands/DisassociateApplicationFleetCommand.js +36 -0
- package/dist-cjs/commands/UpdateApplicationCommand.js +36 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/models/models_0.js +185 -34
- package/dist-cjs/protocols/Aws_json1_1.js +1329 -241
- package/dist-es/AppStream.js +150 -0
- package/dist-es/commands/AssociateApplicationFleetCommand.js +39 -0
- package/dist-es/commands/CreateAppBlockCommand.js +39 -0
- package/dist-es/commands/CreateApplicationCommand.js +39 -0
- package/dist-es/commands/DeleteAppBlockCommand.js +39 -0
- package/dist-es/commands/DeleteApplicationCommand.js +39 -0
- package/dist-es/commands/DescribeAppBlocksCommand.js +39 -0
- package/dist-es/commands/DescribeApplicationFleetAssociationsCommand.js +39 -0
- package/dist-es/commands/DescribeApplicationsCommand.js +39 -0
- package/dist-es/commands/DisassociateApplicationFleetCommand.js +39 -0
- package/dist-es/commands/UpdateApplicationCommand.js +39 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +127 -24
- package/dist-es/protocols/Aws_json1_1.js +1154 -33
- package/dist-types/AppStream.d.ts +104 -4
- package/dist-types/AppStreamClient.d.ts +12 -2
- package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +35 -0
- package/dist-types/commands/CreateAppBlockCommand.d.ts +41 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +41 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppBlockCommand.d.ts +35 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +35 -0
- package/dist-types/commands/DescribeAppBlocksCommand.d.ts +35 -0
- package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +35 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +35 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +35 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +21 -3
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +647 -63
- package/dist-types/protocols/Aws_json1_1.d.ts +30 -0
- package/dist-types/ts3.4/AppStream.d.ts +50 -0
- package/dist-types/ts3.4/AppStreamClient.d.ts +12 -2
- package/dist-types/ts3.4/commands/AssociateApplicationFleetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateAppBlockCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAppBlockCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAppBlocksCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeApplicationFleetAssociationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeApplicationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateApplicationFleetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +368 -42
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +30 -0
- package/package.json +2 -2
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { AppStreamClient } from "./AppStreamClient";
|
|
3
|
+
import { AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput } from "./commands/AssociateApplicationFleetCommand";
|
|
3
4
|
import { AssociateFleetCommandInput, AssociateFleetCommandOutput } from "./commands/AssociateFleetCommand";
|
|
4
5
|
import { BatchAssociateUserStackCommandInput, BatchAssociateUserStackCommandOutput } from "./commands/BatchAssociateUserStackCommand";
|
|
5
6
|
import { BatchDisassociateUserStackCommandInput, BatchDisassociateUserStackCommandOutput } from "./commands/BatchDisassociateUserStackCommand";
|
|
6
7
|
import { CopyImageCommandInput, CopyImageCommandOutput } from "./commands/CopyImageCommand";
|
|
8
|
+
import { CreateAppBlockCommandInput, CreateAppBlockCommandOutput } from "./commands/CreateAppBlockCommand";
|
|
9
|
+
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
7
10
|
import { CreateDirectoryConfigCommandInput, CreateDirectoryConfigCommandOutput } from "./commands/CreateDirectoryConfigCommand";
|
|
8
11
|
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
9
12
|
import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from "./commands/CreateImageBuilderCommand";
|
|
@@ -13,6 +16,8 @@ import { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from
|
|
|
13
16
|
import { CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput } from "./commands/CreateUpdatedImageCommand";
|
|
14
17
|
import { CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput } from "./commands/CreateUsageReportSubscriptionCommand";
|
|
15
18
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
19
|
+
import { DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput } from "./commands/DeleteAppBlockCommand";
|
|
20
|
+
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
16
21
|
import { DeleteDirectoryConfigCommandInput, DeleteDirectoryConfigCommandOutput } from "./commands/DeleteDirectoryConfigCommand";
|
|
17
22
|
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
18
23
|
import { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from "./commands/DeleteImageBuilderCommand";
|
|
@@ -21,6 +26,9 @@ import { DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput
|
|
|
21
26
|
import { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
|
|
22
27
|
import { DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput } from "./commands/DeleteUsageReportSubscriptionCommand";
|
|
23
28
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
29
|
+
import { DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput } from "./commands/DescribeAppBlocksCommand";
|
|
30
|
+
import { DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput } from "./commands/DescribeApplicationFleetAssociationsCommand";
|
|
31
|
+
import { DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput } from "./commands/DescribeApplicationsCommand";
|
|
24
32
|
import { DescribeDirectoryConfigsCommandInput, DescribeDirectoryConfigsCommandOutput } from "./commands/DescribeDirectoryConfigsCommand";
|
|
25
33
|
import { DescribeFleetsCommandInput, DescribeFleetsCommandOutput } from "./commands/DescribeFleetsCommand";
|
|
26
34
|
import { DescribeImageBuildersCommandInput, DescribeImageBuildersCommandOutput } from "./commands/DescribeImageBuildersCommand";
|
|
@@ -32,6 +40,7 @@ import { DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscr
|
|
|
32
40
|
import { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "./commands/DescribeUsersCommand";
|
|
33
41
|
import { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "./commands/DescribeUserStackAssociationsCommand";
|
|
34
42
|
import { DisableUserCommandInput, DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
43
|
+
import { DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput } from "./commands/DisassociateApplicationFleetCommand";
|
|
35
44
|
import { DisassociateFleetCommandInput, DisassociateFleetCommandOutput } from "./commands/DisassociateFleetCommand";
|
|
36
45
|
import { EnableUserCommandInput, EnableUserCommandOutput } from "./commands/EnableUserCommand";
|
|
37
46
|
import { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
@@ -44,6 +53,7 @@ import { StopFleetCommandInput, StopFleetCommandOutput } from "./commands/StopFl
|
|
|
44
53
|
import { StopImageBuilderCommandInput, StopImageBuilderCommandOutput } from "./commands/StopImageBuilderCommand";
|
|
45
54
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
46
55
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
56
|
+
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
47
57
|
import { UpdateDirectoryConfigCommandInput, UpdateDirectoryConfigCommandOutput } from "./commands/UpdateDirectoryConfigCommand";
|
|
48
58
|
import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
|
|
49
59
|
import { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "./commands/UpdateImagePermissionsCommand";
|
|
@@ -72,6 +82,12 @@ import { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/Up
|
|
|
72
82
|
* </ul>
|
|
73
83
|
*/
|
|
74
84
|
export declare class AppStream extends AppStreamClient {
|
|
85
|
+
/**
|
|
86
|
+
* <p>Associates the specified application with the specified fleet. This is only supported for Elastic fleets.</p>
|
|
87
|
+
*/
|
|
88
|
+
associateApplicationFleet(args: AssociateApplicationFleetCommandInput, options?: __HttpHandlerOptions): Promise<AssociateApplicationFleetCommandOutput>;
|
|
89
|
+
associateApplicationFleet(args: AssociateApplicationFleetCommandInput, cb: (err: any, data?: AssociateApplicationFleetCommandOutput) => void): void;
|
|
90
|
+
associateApplicationFleet(args: AssociateApplicationFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateApplicationFleetCommandOutput) => void): void;
|
|
75
91
|
/**
|
|
76
92
|
* <p>Associates the specified fleet with the specified stack.</p>
|
|
77
93
|
*/
|
|
@@ -96,6 +112,30 @@ export declare class AppStream extends AppStreamClient {
|
|
|
96
112
|
copyImage(args: CopyImageCommandInput, options?: __HttpHandlerOptions): Promise<CopyImageCommandOutput>;
|
|
97
113
|
copyImage(args: CopyImageCommandInput, cb: (err: any, data?: CopyImageCommandOutput) => void): void;
|
|
98
114
|
copyImage(args: CopyImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyImageCommandOutput) => void): void;
|
|
115
|
+
/**
|
|
116
|
+
* <p>Creates an app block.</p>
|
|
117
|
+
* <p>App blocks are an Amazon AppStream 2.0 resource that stores the details about the
|
|
118
|
+
* virtual hard disk in an S3 bucket. It also stores the setup script with details about
|
|
119
|
+
* how to mount the virtual hard disk. The virtual hard disk includes the application
|
|
120
|
+
* binaries and other files necessary to launch your applications. Multiple applications
|
|
121
|
+
* can be assigned to a single app block.</p>
|
|
122
|
+
* <p>This is only supported for Elastic fleets.</p>
|
|
123
|
+
*/
|
|
124
|
+
createAppBlock(args: CreateAppBlockCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppBlockCommandOutput>;
|
|
125
|
+
createAppBlock(args: CreateAppBlockCommandInput, cb: (err: any, data?: CreateAppBlockCommandOutput) => void): void;
|
|
126
|
+
createAppBlock(args: CreateAppBlockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppBlockCommandOutput) => void): void;
|
|
127
|
+
/**
|
|
128
|
+
* <p>Creates an application.</p>
|
|
129
|
+
* <p>Applications are an Amazon AppStream 2.0 resource that stores the details about how to
|
|
130
|
+
* launch applications on Elastic fleet streaming instances. An application consists of the
|
|
131
|
+
* launch details, icon, and display name. Applications are associated with an app block
|
|
132
|
+
* that contains the application binaries and other files. The applications assigned to an
|
|
133
|
+
* Elastic fleet are the applications users can launch. </p>
|
|
134
|
+
* <p>This is only supported for Elastic fleets.</p>
|
|
135
|
+
*/
|
|
136
|
+
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
137
|
+
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
138
|
+
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
99
139
|
/**
|
|
100
140
|
* <p>Creates a Directory Config object in AppStream 2.0. This object includes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.</p>
|
|
101
141
|
*/
|
|
@@ -103,7 +143,7 @@ export declare class AppStream extends AppStreamClient {
|
|
|
103
143
|
createDirectoryConfig(args: CreateDirectoryConfigCommandInput, cb: (err: any, data?: CreateDirectoryConfigCommandOutput) => void): void;
|
|
104
144
|
createDirectoryConfig(args: CreateDirectoryConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDirectoryConfigCommandOutput) => void): void;
|
|
105
145
|
/**
|
|
106
|
-
* <p>Creates a fleet. A fleet consists of streaming instances that run a specified image.</p>
|
|
146
|
+
* <p>Creates a fleet. A fleet consists of streaming instances that run a specified image when using Always-On or On-Demand.</p>
|
|
107
147
|
*/
|
|
108
148
|
createFleet(args: CreateFleetCommandInput, options?: __HttpHandlerOptions): Promise<CreateFleetCommandOutput>;
|
|
109
149
|
createFleet(args: CreateFleetCommandInput, cb: (err: any, data?: CreateFleetCommandOutput) => void): void;
|
|
@@ -154,6 +194,18 @@ export declare class AppStream extends AppStreamClient {
|
|
|
154
194
|
createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
|
|
155
195
|
createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
156
196
|
createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
197
|
+
/**
|
|
198
|
+
* <p>Deletes an app block.</p>
|
|
199
|
+
*/
|
|
200
|
+
deleteAppBlock(args: DeleteAppBlockCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppBlockCommandOutput>;
|
|
201
|
+
deleteAppBlock(args: DeleteAppBlockCommandInput, cb: (err: any, data?: DeleteAppBlockCommandOutput) => void): void;
|
|
202
|
+
deleteAppBlock(args: DeleteAppBlockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppBlockCommandOutput) => void): void;
|
|
203
|
+
/**
|
|
204
|
+
* <p>Deletes an application.</p>
|
|
205
|
+
*/
|
|
206
|
+
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
207
|
+
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
208
|
+
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
157
209
|
/**
|
|
158
210
|
* <p>Deletes the specified Directory Config object from AppStream 2.0. This object includes the information required to join streaming instances to an Active Directory domain.</p>
|
|
159
211
|
*/
|
|
@@ -203,6 +255,24 @@ export declare class AppStream extends AppStreamClient {
|
|
|
203
255
|
deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
|
|
204
256
|
deleteUser(args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
|
|
205
257
|
deleteUser(args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
|
|
258
|
+
/**
|
|
259
|
+
* <p>Retrieves a list that describes one or more app blocks.</p>
|
|
260
|
+
*/
|
|
261
|
+
describeAppBlocks(args: DescribeAppBlocksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAppBlocksCommandOutput>;
|
|
262
|
+
describeAppBlocks(args: DescribeAppBlocksCommandInput, cb: (err: any, data?: DescribeAppBlocksCommandOutput) => void): void;
|
|
263
|
+
describeAppBlocks(args: DescribeAppBlocksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAppBlocksCommandOutput) => void): void;
|
|
264
|
+
/**
|
|
265
|
+
* <p>Retrieves a list that describes one or more application fleet associations. Either ApplicationArn or FleetName must be specified.</p>
|
|
266
|
+
*/
|
|
267
|
+
describeApplicationFleetAssociations(args: DescribeApplicationFleetAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeApplicationFleetAssociationsCommandOutput>;
|
|
268
|
+
describeApplicationFleetAssociations(args: DescribeApplicationFleetAssociationsCommandInput, cb: (err: any, data?: DescribeApplicationFleetAssociationsCommandOutput) => void): void;
|
|
269
|
+
describeApplicationFleetAssociations(args: DescribeApplicationFleetAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeApplicationFleetAssociationsCommandOutput) => void): void;
|
|
270
|
+
/**
|
|
271
|
+
* <p>Retrieves a list that describes one or more applications.</p>
|
|
272
|
+
*/
|
|
273
|
+
describeApplications(args: DescribeApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeApplicationsCommandOutput>;
|
|
274
|
+
describeApplications(args: DescribeApplicationsCommandInput, cb: (err: any, data?: DescribeApplicationsCommandOutput) => void): void;
|
|
275
|
+
describeApplications(args: DescribeApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeApplicationsCommandOutput) => void): void;
|
|
206
276
|
/**
|
|
207
277
|
* <p>Retrieves a list that describes one or more specified Directory Config objects for AppStream 2.0, if the names for these objects are provided. Otherwise, all Directory Config objects in the account are described. These objects include the configuration information required to join fleets and image builders to Microsoft Active Directory domains.
|
|
208
278
|
* </p>
|
|
@@ -281,6 +351,12 @@ export declare class AppStream extends AppStreamClient {
|
|
|
281
351
|
disableUser(args: DisableUserCommandInput, options?: __HttpHandlerOptions): Promise<DisableUserCommandOutput>;
|
|
282
352
|
disableUser(args: DisableUserCommandInput, cb: (err: any, data?: DisableUserCommandOutput) => void): void;
|
|
283
353
|
disableUser(args: DisableUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableUserCommandOutput) => void): void;
|
|
354
|
+
/**
|
|
355
|
+
* <p>Disassociates the specified application from the fleet.</p>
|
|
356
|
+
*/
|
|
357
|
+
disassociateApplicationFleet(args: DisassociateApplicationFleetCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateApplicationFleetCommandOutput>;
|
|
358
|
+
disassociateApplicationFleet(args: DisassociateApplicationFleetCommandInput, cb: (err: any, data?: DisassociateApplicationFleetCommandOutput) => void): void;
|
|
359
|
+
disassociateApplicationFleet(args: DisassociateApplicationFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateApplicationFleetCommandOutput) => void): void;
|
|
284
360
|
/**
|
|
285
361
|
* <p>Disassociates the specified fleet from the specified stack.</p>
|
|
286
362
|
*/
|
|
@@ -362,6 +438,12 @@ export declare class AppStream extends AppStreamClient {
|
|
|
362
438
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
363
439
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
364
440
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
441
|
+
/**
|
|
442
|
+
* <p>Updates the specified application.</p>
|
|
443
|
+
*/
|
|
444
|
+
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
445
|
+
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
446
|
+
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
365
447
|
/**
|
|
366
448
|
* <p>Updates the specified Directory Config object in AppStream 2.0. This object includes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.</p>
|
|
367
449
|
*/
|
|
@@ -370,9 +452,27 @@ export declare class AppStream extends AppStreamClient {
|
|
|
370
452
|
updateDirectoryConfig(args: UpdateDirectoryConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDirectoryConfigCommandOutput) => void): void;
|
|
371
453
|
/**
|
|
372
454
|
* <p>Updates the specified fleet.</p>
|
|
373
|
-
* <p>If the fleet is in the <code>STOPPED</code> state, you can update any attribute except
|
|
374
|
-
*
|
|
375
|
-
*
|
|
455
|
+
* <p>If the fleet is in the <code>STOPPED</code> state, you can update any attribute except
|
|
456
|
+
* the fleet name.</p>
|
|
457
|
+
* <p>If the fleet is in the <code>RUNNING</code> state, you can update the following based
|
|
458
|
+
* on the fleet type:</p>
|
|
459
|
+
* <ul>
|
|
460
|
+
* <li>
|
|
461
|
+
* <p>Always-On and On-Demand fleet types</p>
|
|
462
|
+
* <p>You can update the <code>DisplayName</code>, <code>ComputeCapacity</code>,
|
|
463
|
+
* <code>ImageARN</code>, <code>ImageName</code>,
|
|
464
|
+
* <code>IdleDisconnectTimeoutInSeconds</code>, and
|
|
465
|
+
* <code>DisconnectTimeoutInSeconds</code> attributes.</p>
|
|
466
|
+
* </li>
|
|
467
|
+
* <li>
|
|
468
|
+
* <p>Elastic fleet type</p>
|
|
469
|
+
* <p>You can update the <code>DisplayName</code>,
|
|
470
|
+
* <code>IdleDisconnectTimeoutInSeconds</code>,
|
|
471
|
+
* <code>DisconnectTimeoutInSeconds</code>, <code>MaxConcurrentSessions</code>,
|
|
472
|
+
* and <code>UsbDeviceFilterStrings</code> attributes.</p>
|
|
473
|
+
* </li>
|
|
474
|
+
* </ul>
|
|
475
|
+
* <p>If the fleet is in the <code>STARTING</code> or <code>STOPPED</code> state, you can't update it.</p>
|
|
376
476
|
*/
|
|
377
477
|
updateFleet(args: UpdateFleetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFleetCommandOutput>;
|
|
378
478
|
updateFleet(args: UpdateFleetCommandInput, cb: (err: any, data?: UpdateFleetCommandOutput) => void): void;
|
|
@@ -6,10 +6,13 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
|
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput } from "./commands/AssociateApplicationFleetCommand";
|
|
9
10
|
import { AssociateFleetCommandInput, AssociateFleetCommandOutput } from "./commands/AssociateFleetCommand";
|
|
10
11
|
import { BatchAssociateUserStackCommandInput, BatchAssociateUserStackCommandOutput } from "./commands/BatchAssociateUserStackCommand";
|
|
11
12
|
import { BatchDisassociateUserStackCommandInput, BatchDisassociateUserStackCommandOutput } from "./commands/BatchDisassociateUserStackCommand";
|
|
12
13
|
import { CopyImageCommandInput, CopyImageCommandOutput } from "./commands/CopyImageCommand";
|
|
14
|
+
import { CreateAppBlockCommandInput, CreateAppBlockCommandOutput } from "./commands/CreateAppBlockCommand";
|
|
15
|
+
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
13
16
|
import { CreateDirectoryConfigCommandInput, CreateDirectoryConfigCommandOutput } from "./commands/CreateDirectoryConfigCommand";
|
|
14
17
|
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
15
18
|
import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from "./commands/CreateImageBuilderCommand";
|
|
@@ -19,6 +22,8 @@ import { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from
|
|
|
19
22
|
import { CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput } from "./commands/CreateUpdatedImageCommand";
|
|
20
23
|
import { CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput } from "./commands/CreateUsageReportSubscriptionCommand";
|
|
21
24
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
25
|
+
import { DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput } from "./commands/DeleteAppBlockCommand";
|
|
26
|
+
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
22
27
|
import { DeleteDirectoryConfigCommandInput, DeleteDirectoryConfigCommandOutput } from "./commands/DeleteDirectoryConfigCommand";
|
|
23
28
|
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
24
29
|
import { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from "./commands/DeleteImageBuilderCommand";
|
|
@@ -27,6 +32,9 @@ import { DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput
|
|
|
27
32
|
import { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
|
|
28
33
|
import { DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput } from "./commands/DeleteUsageReportSubscriptionCommand";
|
|
29
34
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
35
|
+
import { DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput } from "./commands/DescribeAppBlocksCommand";
|
|
36
|
+
import { DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput } from "./commands/DescribeApplicationFleetAssociationsCommand";
|
|
37
|
+
import { DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput } from "./commands/DescribeApplicationsCommand";
|
|
30
38
|
import { DescribeDirectoryConfigsCommandInput, DescribeDirectoryConfigsCommandOutput } from "./commands/DescribeDirectoryConfigsCommand";
|
|
31
39
|
import { DescribeFleetsCommandInput, DescribeFleetsCommandOutput } from "./commands/DescribeFleetsCommand";
|
|
32
40
|
import { DescribeImageBuildersCommandInput, DescribeImageBuildersCommandOutput } from "./commands/DescribeImageBuildersCommand";
|
|
@@ -38,6 +46,7 @@ import { DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscr
|
|
|
38
46
|
import { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "./commands/DescribeUsersCommand";
|
|
39
47
|
import { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "./commands/DescribeUserStackAssociationsCommand";
|
|
40
48
|
import { DisableUserCommandInput, DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
49
|
+
import { DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput } from "./commands/DisassociateApplicationFleetCommand";
|
|
41
50
|
import { DisassociateFleetCommandInput, DisassociateFleetCommandOutput } from "./commands/DisassociateFleetCommand";
|
|
42
51
|
import { EnableUserCommandInput, EnableUserCommandOutput } from "./commands/EnableUserCommand";
|
|
43
52
|
import { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
@@ -50,12 +59,13 @@ import { StopFleetCommandInput, StopFleetCommandOutput } from "./commands/StopFl
|
|
|
50
59
|
import { StopImageBuilderCommandInput, StopImageBuilderCommandOutput } from "./commands/StopImageBuilderCommand";
|
|
51
60
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
52
61
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
62
|
+
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
53
63
|
import { UpdateDirectoryConfigCommandInput, UpdateDirectoryConfigCommandOutput } from "./commands/UpdateDirectoryConfigCommand";
|
|
54
64
|
import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
|
|
55
65
|
import { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "./commands/UpdateImagePermissionsCommand";
|
|
56
66
|
import { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
|
|
57
|
-
export declare type ServiceInputTypes = AssociateFleetCommandInput | BatchAssociateUserStackCommandInput | BatchDisassociateUserStackCommandInput | CopyImageCommandInput | CreateDirectoryConfigCommandInput | CreateFleetCommandInput | CreateImageBuilderCommandInput | CreateImageBuilderStreamingURLCommandInput | CreateStackCommandInput | CreateStreamingURLCommandInput | CreateUpdatedImageCommandInput | CreateUsageReportSubscriptionCommandInput | CreateUserCommandInput | DeleteDirectoryConfigCommandInput | DeleteFleetCommandInput | DeleteImageBuilderCommandInput | DeleteImageCommandInput | DeleteImagePermissionsCommandInput | DeleteStackCommandInput | DeleteUsageReportSubscriptionCommandInput | DeleteUserCommandInput | DescribeDirectoryConfigsCommandInput | DescribeFleetsCommandInput | DescribeImageBuildersCommandInput | DescribeImagePermissionsCommandInput | DescribeImagesCommandInput | DescribeSessionsCommandInput | DescribeStacksCommandInput | DescribeUsageReportSubscriptionsCommandInput | DescribeUserStackAssociationsCommandInput | DescribeUsersCommandInput | DisableUserCommandInput | DisassociateFleetCommandInput | EnableUserCommandInput | ExpireSessionCommandInput | ListAssociatedFleetsCommandInput | ListAssociatedStacksCommandInput | ListTagsForResourceCommandInput | StartFleetCommandInput | StartImageBuilderCommandInput | StopFleetCommandInput | StopImageBuilderCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDirectoryConfigCommandInput | UpdateFleetCommandInput | UpdateImagePermissionsCommandInput | UpdateStackCommandInput;
|
|
58
|
-
export declare type ServiceOutputTypes = AssociateFleetCommandOutput | BatchAssociateUserStackCommandOutput | BatchDisassociateUserStackCommandOutput | CopyImageCommandOutput | CreateDirectoryConfigCommandOutput | CreateFleetCommandOutput | CreateImageBuilderCommandOutput | CreateImageBuilderStreamingURLCommandOutput | CreateStackCommandOutput | CreateStreamingURLCommandOutput | CreateUpdatedImageCommandOutput | CreateUsageReportSubscriptionCommandOutput | CreateUserCommandOutput | DeleteDirectoryConfigCommandOutput | DeleteFleetCommandOutput | DeleteImageBuilderCommandOutput | DeleteImageCommandOutput | DeleteImagePermissionsCommandOutput | DeleteStackCommandOutput | DeleteUsageReportSubscriptionCommandOutput | DeleteUserCommandOutput | DescribeDirectoryConfigsCommandOutput | DescribeFleetsCommandOutput | DescribeImageBuildersCommandOutput | DescribeImagePermissionsCommandOutput | DescribeImagesCommandOutput | DescribeSessionsCommandOutput | DescribeStacksCommandOutput | DescribeUsageReportSubscriptionsCommandOutput | DescribeUserStackAssociationsCommandOutput | DescribeUsersCommandOutput | DisableUserCommandOutput | DisassociateFleetCommandOutput | EnableUserCommandOutput | ExpireSessionCommandOutput | ListAssociatedFleetsCommandOutput | ListAssociatedStacksCommandOutput | ListTagsForResourceCommandOutput | StartFleetCommandOutput | StartImageBuilderCommandOutput | StopFleetCommandOutput | StopImageBuilderCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDirectoryConfigCommandOutput | UpdateFleetCommandOutput | UpdateImagePermissionsCommandOutput | UpdateStackCommandOutput;
|
|
67
|
+
export declare type ServiceInputTypes = AssociateApplicationFleetCommandInput | AssociateFleetCommandInput | BatchAssociateUserStackCommandInput | BatchDisassociateUserStackCommandInput | CopyImageCommandInput | CreateAppBlockCommandInput | CreateApplicationCommandInput | CreateDirectoryConfigCommandInput | CreateFleetCommandInput | CreateImageBuilderCommandInput | CreateImageBuilderStreamingURLCommandInput | CreateStackCommandInput | CreateStreamingURLCommandInput | CreateUpdatedImageCommandInput | CreateUsageReportSubscriptionCommandInput | CreateUserCommandInput | DeleteAppBlockCommandInput | DeleteApplicationCommandInput | DeleteDirectoryConfigCommandInput | DeleteFleetCommandInput | DeleteImageBuilderCommandInput | DeleteImageCommandInput | DeleteImagePermissionsCommandInput | DeleteStackCommandInput | DeleteUsageReportSubscriptionCommandInput | DeleteUserCommandInput | DescribeAppBlocksCommandInput | DescribeApplicationFleetAssociationsCommandInput | DescribeApplicationsCommandInput | DescribeDirectoryConfigsCommandInput | DescribeFleetsCommandInput | DescribeImageBuildersCommandInput | DescribeImagePermissionsCommandInput | DescribeImagesCommandInput | DescribeSessionsCommandInput | DescribeStacksCommandInput | DescribeUsageReportSubscriptionsCommandInput | DescribeUserStackAssociationsCommandInput | DescribeUsersCommandInput | DisableUserCommandInput | DisassociateApplicationFleetCommandInput | DisassociateFleetCommandInput | EnableUserCommandInput | ExpireSessionCommandInput | ListAssociatedFleetsCommandInput | ListAssociatedStacksCommandInput | ListTagsForResourceCommandInput | StartFleetCommandInput | StartImageBuilderCommandInput | StopFleetCommandInput | StopImageBuilderCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateDirectoryConfigCommandInput | UpdateFleetCommandInput | UpdateImagePermissionsCommandInput | UpdateStackCommandInput;
|
|
68
|
+
export declare type ServiceOutputTypes = AssociateApplicationFleetCommandOutput | AssociateFleetCommandOutput | BatchAssociateUserStackCommandOutput | BatchDisassociateUserStackCommandOutput | CopyImageCommandOutput | CreateAppBlockCommandOutput | CreateApplicationCommandOutput | CreateDirectoryConfigCommandOutput | CreateFleetCommandOutput | CreateImageBuilderCommandOutput | CreateImageBuilderStreamingURLCommandOutput | CreateStackCommandOutput | CreateStreamingURLCommandOutput | CreateUpdatedImageCommandOutput | CreateUsageReportSubscriptionCommandOutput | CreateUserCommandOutput | DeleteAppBlockCommandOutput | DeleteApplicationCommandOutput | DeleteDirectoryConfigCommandOutput | DeleteFleetCommandOutput | DeleteImageBuilderCommandOutput | DeleteImageCommandOutput | DeleteImagePermissionsCommandOutput | DeleteStackCommandOutput | DeleteUsageReportSubscriptionCommandOutput | DeleteUserCommandOutput | DescribeAppBlocksCommandOutput | DescribeApplicationFleetAssociationsCommandOutput | DescribeApplicationsCommandOutput | DescribeDirectoryConfigsCommandOutput | DescribeFleetsCommandOutput | DescribeImageBuildersCommandOutput | DescribeImagePermissionsCommandOutput | DescribeImagesCommandOutput | DescribeSessionsCommandOutput | DescribeStacksCommandOutput | DescribeUsageReportSubscriptionsCommandOutput | DescribeUserStackAssociationsCommandOutput | DescribeUsersCommandOutput | DisableUserCommandOutput | DisassociateApplicationFleetCommandOutput | DisassociateFleetCommandOutput | EnableUserCommandOutput | ExpireSessionCommandOutput | ListAssociatedFleetsCommandOutput | ListAssociatedStacksCommandOutput | ListTagsForResourceCommandOutput | StartFleetCommandOutput | StartImageBuilderCommandOutput | StopFleetCommandOutput | StopImageBuilderCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateDirectoryConfigCommandOutput | UpdateFleetCommandOutput | UpdateImagePermissionsCommandOutput | UpdateStackCommandOutput;
|
|
59
69
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
60
70
|
/**
|
|
61
71
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { AssociateApplicationFleetRequest, AssociateApplicationFleetResult } from "../models/models_0";
|
|
5
|
+
export interface AssociateApplicationFleetCommandInput extends AssociateApplicationFleetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AssociateApplicationFleetCommandOutput extends AssociateApplicationFleetResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Associates the specified application with the specified fleet. This is only supported for Elastic fleets.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AppStreamClient, AssociateApplicationFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
15
|
+
* // const { AppStreamClient, AssociateApplicationFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
16
|
+
* const client = new AppStreamClient(config);
|
|
17
|
+
* const command = new AssociateApplicationFleetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link AssociateApplicationFleetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link AssociateApplicationFleetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class AssociateApplicationFleetCommand extends $Command<AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput, AppStreamClientResolvedConfig> {
|
|
27
|
+
readonly input: AssociateApplicationFleetCommandInput;
|
|
28
|
+
constructor(input: AssociateApplicationFleetCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { CreateAppBlockRequest, CreateAppBlockResult } from "../models/models_0";
|
|
5
|
+
export interface CreateAppBlockCommandInput extends CreateAppBlockRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateAppBlockCommandOutput extends CreateAppBlockResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates an app block.</p>
|
|
11
|
+
* <p>App blocks are an Amazon AppStream 2.0 resource that stores the details about the
|
|
12
|
+
* virtual hard disk in an S3 bucket. It also stores the setup script with details about
|
|
13
|
+
* how to mount the virtual hard disk. The virtual hard disk includes the application
|
|
14
|
+
* binaries and other files necessary to launch your applications. Multiple applications
|
|
15
|
+
* can be assigned to a single app block.</p>
|
|
16
|
+
* <p>This is only supported for Elastic fleets.</p>
|
|
17
|
+
* @example
|
|
18
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
19
|
+
* ```javascript
|
|
20
|
+
* import { AppStreamClient, CreateAppBlockCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
21
|
+
* // const { AppStreamClient, CreateAppBlockCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
22
|
+
* const client = new AppStreamClient(config);
|
|
23
|
+
* const command = new CreateAppBlockCommand(input);
|
|
24
|
+
* const response = await client.send(command);
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* @see {@link CreateAppBlockCommandInput} for command's `input` shape.
|
|
28
|
+
* @see {@link CreateAppBlockCommandOutput} for command's `response` shape.
|
|
29
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
export declare class CreateAppBlockCommand extends $Command<CreateAppBlockCommandInput, CreateAppBlockCommandOutput, AppStreamClientResolvedConfig> {
|
|
33
|
+
readonly input: CreateAppBlockCommandInput;
|
|
34
|
+
constructor(input: CreateAppBlockCommandInput);
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAppBlockCommandInput, CreateAppBlockCommandOutput>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { CreateApplicationRequest, CreateApplicationResult } from "../models/models_0";
|
|
5
|
+
export interface CreateApplicationCommandInput extends CreateApplicationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateApplicationCommandOutput extends CreateApplicationResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates an application.</p>
|
|
11
|
+
* <p>Applications are an Amazon AppStream 2.0 resource that stores the details about how to
|
|
12
|
+
* launch applications on Elastic fleet streaming instances. An application consists of the
|
|
13
|
+
* launch details, icon, and display name. Applications are associated with an app block
|
|
14
|
+
* that contains the application binaries and other files. The applications assigned to an
|
|
15
|
+
* Elastic fleet are the applications users can launch. </p>
|
|
16
|
+
* <p>This is only supported for Elastic fleets.</p>
|
|
17
|
+
* @example
|
|
18
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
19
|
+
* ```javascript
|
|
20
|
+
* import { AppStreamClient, CreateApplicationCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
21
|
+
* // const { AppStreamClient, CreateApplicationCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
22
|
+
* const client = new AppStreamClient(config);
|
|
23
|
+
* const command = new CreateApplicationCommand(input);
|
|
24
|
+
* const response = await client.send(command);
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
28
|
+
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
29
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, AppStreamClientResolvedConfig> {
|
|
33
|
+
readonly input: CreateApplicationCommandInput;
|
|
34
|
+
constructor(input: CreateApplicationCommandInput);
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -7,7 +7,7 @@ export interface CreateFleetCommandInput extends CreateFleetRequest {
|
|
|
7
7
|
export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a fleet. A fleet consists of streaming instances that run a specified image.</p>
|
|
10
|
+
* <p>Creates a fleet. A fleet consists of streaming instances that run a specified image when using Always-On or On-Demand.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { DeleteAppBlockRequest, DeleteAppBlockResult } from "../models/models_0";
|
|
5
|
+
export interface DeleteAppBlockCommandInput extends DeleteAppBlockRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteAppBlockCommandOutput extends DeleteAppBlockResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Deletes an app block.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AppStreamClient, DeleteAppBlockCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
15
|
+
* // const { AppStreamClient, DeleteAppBlockCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
16
|
+
* const client = new AppStreamClient(config);
|
|
17
|
+
* const command = new DeleteAppBlockCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DeleteAppBlockCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DeleteAppBlockCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DeleteAppBlockCommand extends $Command<DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput, AppStreamClientResolvedConfig> {
|
|
27
|
+
readonly input: DeleteAppBlockCommandInput;
|
|
28
|
+
constructor(input: DeleteAppBlockCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAppBlockCommandInput, DeleteAppBlockCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { DeleteApplicationRequest, DeleteApplicationResult } from "../models/models_0";
|
|
5
|
+
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteApplicationCommandOutput extends DeleteApplicationResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Deletes an application.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AppStreamClient, DeleteApplicationCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
15
|
+
* // const { AppStreamClient, DeleteApplicationCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
16
|
+
* const client = new AppStreamClient(config);
|
|
17
|
+
* const command = new DeleteApplicationCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DeleteApplicationCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, AppStreamClientResolvedConfig> {
|
|
27
|
+
readonly input: DeleteApplicationCommandInput;
|
|
28
|
+
constructor(input: DeleteApplicationCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { DescribeAppBlocksRequest, DescribeAppBlocksResult } from "../models/models_0";
|
|
5
|
+
export interface DescribeAppBlocksCommandInput extends DescribeAppBlocksRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeAppBlocksCommandOutput extends DescribeAppBlocksResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Retrieves a list that describes one or more app blocks.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AppStreamClient, DescribeAppBlocksCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
15
|
+
* // const { AppStreamClient, DescribeAppBlocksCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
16
|
+
* const client = new AppStreamClient(config);
|
|
17
|
+
* const command = new DescribeAppBlocksCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DescribeAppBlocksCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DescribeAppBlocksCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DescribeAppBlocksCommand extends $Command<DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput, AppStreamClientResolvedConfig> {
|
|
27
|
+
readonly input: DescribeAppBlocksCommandInput;
|
|
28
|
+
constructor(input: DescribeAppBlocksCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAppBlocksCommandInput, DescribeAppBlocksCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { DescribeApplicationFleetAssociationsRequest, DescribeApplicationFleetAssociationsResult } from "../models/models_0";
|
|
5
|
+
export interface DescribeApplicationFleetAssociationsCommandInput extends DescribeApplicationFleetAssociationsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeApplicationFleetAssociationsCommandOutput extends DescribeApplicationFleetAssociationsResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Retrieves a list that describes one or more application fleet associations. Either ApplicationArn or FleetName must be specified.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AppStreamClient, DescribeApplicationFleetAssociationsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
15
|
+
* // const { AppStreamClient, DescribeApplicationFleetAssociationsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
16
|
+
* const client = new AppStreamClient(config);
|
|
17
|
+
* const command = new DescribeApplicationFleetAssociationsCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DescribeApplicationFleetAssociationsCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DescribeApplicationFleetAssociationsCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DescribeApplicationFleetAssociationsCommand extends $Command<DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput, AppStreamClientResolvedConfig> {
|
|
27
|
+
readonly input: DescribeApplicationFleetAssociationsCommandInput;
|
|
28
|
+
constructor(input: DescribeApplicationFleetAssociationsCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeApplicationFleetAssociationsCommandInput, DescribeApplicationFleetAssociationsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
4
|
+
import { DescribeApplicationsRequest, DescribeApplicationsResult } from "../models/models_0";
|
|
5
|
+
export interface DescribeApplicationsCommandInput extends DescribeApplicationsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeApplicationsCommandOutput extends DescribeApplicationsResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Retrieves a list that describes one or more applications.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AppStreamClient, DescribeApplicationsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
|
|
15
|
+
* // const { AppStreamClient, DescribeApplicationsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
|
|
16
|
+
* const client = new AppStreamClient(config);
|
|
17
|
+
* const command = new DescribeApplicationsCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DescribeApplicationsCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DescribeApplicationsCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DescribeApplicationsCommand extends $Command<DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput, AppStreamClientResolvedConfig> {
|
|
27
|
+
readonly input: DescribeApplicationsCommandInput;
|
|
28
|
+
constructor(input: DescribeApplicationsCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|