@aws-sdk/client-appstream 3.295.0 → 3.297.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/AppStream.d.ts +66 -0
- package/dist-types/AppStreamClient.d.ts +24 -4
- package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +16 -0
- package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +16 -0
- package/dist-types/commands/AssociateFleetCommand.d.ts +16 -0
- package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +16 -0
- package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +16 -0
- package/dist-types/commands/CopyImageCommand.d.ts +16 -0
- package/dist-types/commands/CreateAppBlockCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +16 -0
- package/dist-types/commands/CreateEntitlementCommand.d.ts +16 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageBuilderCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +16 -0
- package/dist-types/commands/CreateStackCommand.d.ts +16 -0
- package/dist-types/commands/CreateStreamingURLCommand.d.ts +16 -0
- package/dist-types/commands/CreateUpdatedImageCommand.d.ts +16 -0
- package/dist-types/commands/CreateUsageReportSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/CreateUserCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAppBlockCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEntitlementCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFleetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageBuilderCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteStackCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUsageReportSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAppBlocksCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEntitlementsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFleetsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImageBuildersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSessionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +16 -0
- package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeUsersCommand.d.ts +16 -0
- package/dist-types/commands/DisableUserCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateFleetCommand.d.ts +16 -0
- package/dist-types/commands/EnableUserCommand.d.ts +16 -0
- package/dist-types/commands/ExpireSessionCommand.d.ts +16 -0
- package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssociatedStacksCommand.d.ts +16 -0
- package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartFleetCommand.d.ts +16 -0
- package/dist-types/commands/StartImageBuilderCommand.d.ts +16 -0
- package/dist-types/commands/StopFleetCommand.d.ts +16 -0
- package/dist-types/commands/StopImageBuilderCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEntitlementCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +16 -0
- package/dist-types/models/AppStreamServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +527 -0
- package/dist-types/pagination/DescribeImagePermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/package.json +30 -30
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { DescribeStacksRequest, DescribeStacksResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeStacksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeStacksCommandInput extends DescribeStacksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeStacksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeStacksCommandOutput extends DescribeStacksResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list that describes one or more specified stacks, if the stack names are provided. Otherwise, all stacks in the account are described.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeStacksCommandInput - {@link DescribeStacksCommandInput}
|
|
34
|
+
* @returns {@link DescribeStacksCommandOutput}
|
|
28
35
|
* @see {@link DescribeStacksCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeStacksCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
|
|
|
37
44
|
export declare class DescribeStacksCommand extends $Command<DescribeStacksCommandInput, DescribeStacksCommandOutput, AppStreamClientResolvedConfig> {
|
|
38
45
|
readonly input: DescribeStacksCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: DescribeStacksCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeStacksCommandInput, DescribeStacksCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { DescribeUsageReportSubscriptionsRequest, DescribeUsageReportSubscriptionsResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeUsageReportSubscriptionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeUsageReportSubscriptionsCommandInput extends DescribeUsageReportSubscriptionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeUsageReportSubscriptionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeUsageReportSubscriptionsCommandOutput extends DescribeUsageReportSubscriptionsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list that describes one or more usage report subscriptions.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeUsageReportSubscriptionsCommandOutput extends DescribeU
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeUsageReportSubscriptionsCommandInput - {@link DescribeUsageReportSubscriptionsCommandInput}
|
|
34
|
+
* @returns {@link DescribeUsageReportSubscriptionsCommandOutput}
|
|
28
35
|
* @see {@link DescribeUsageReportSubscriptionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeUsageReportSubscriptionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeUsageReportSubscriptionsCommandOutput extends DescribeU
|
|
|
40
47
|
export declare class DescribeUsageReportSubscriptionsCommand extends $Command<DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput, AppStreamClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeUsageReportSubscriptionsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeUsageReportSubscriptionsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { DescribeUserStackAssociationsRequest, DescribeUserStackAssociationsResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeUserStackAssociationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeUserStackAssociationsCommandInput extends DescribeUserStackAssociationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeUserStackAssociationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeUserStackAssociationsCommandOutput extends DescribeUserStackAssociationsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list that describes the UserStackAssociation objects. You must specify either or both of the following:</p>
|
|
18
23
|
* <ul>
|
|
19
24
|
* <li>
|
|
@@ -33,6 +38,8 @@ export interface DescribeUserStackAssociationsCommandOutput extends DescribeUser
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param DescribeUserStackAssociationsCommandInput - {@link DescribeUserStackAssociationsCommandInput}
|
|
42
|
+
* @returns {@link DescribeUserStackAssociationsCommandOutput}
|
|
36
43
|
* @see {@link DescribeUserStackAssociationsCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link DescribeUserStackAssociationsCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DescribeUserStackAssociationsCommandOutput extends DescribeUser
|
|
|
48
55
|
export declare class DescribeUserStackAssociationsCommand extends $Command<DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput, AppStreamClientResolvedConfig> {
|
|
49
56
|
readonly input: DescribeUserStackAssociationsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DescribeUserStackAssociationsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { DescribeUsersRequest, DescribeUsersResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeUsersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeUsersCommandInput extends DescribeUsersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeUsersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeUsersCommandOutput extends DescribeUsersResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list that describes one or more specified users in the user pool.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResult, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeUsersCommandInput - {@link DescribeUsersCommandInput}
|
|
34
|
+
* @returns {@link DescribeUsersCommandOutput}
|
|
28
35
|
* @see {@link DescribeUsersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeUsersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResult, __Metad
|
|
|
43
50
|
export declare class DescribeUsersCommand extends $Command<DescribeUsersCommandInput, DescribeUsersCommandOutput, AppStreamClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeUsersCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeUsersCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeUsersCommandInput, DescribeUsersCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { DisableUserRequest, DisableUserResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisableUserCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisableUserCommandInput extends DisableUserRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisableUserCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisableUserCommandOutput extends DisableUserResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disables the specified user in the user pool. Users can't sign in to AppStream 2.0 until they are re-enabled. This action does not delete the user. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisableUserCommandOutput extends DisableUserResult, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisableUserCommandInput - {@link DisableUserCommandInput}
|
|
34
|
+
* @returns {@link DisableUserCommandOutput}
|
|
28
35
|
* @see {@link DisableUserCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisableUserCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface DisableUserCommandOutput extends DisableUserResult, __MetadataB
|
|
|
37
44
|
export declare class DisableUserCommand extends $Command<DisableUserCommandInput, DisableUserCommandOutput, AppStreamClientResolvedConfig> {
|
|
38
45
|
readonly input: DisableUserCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: DisableUserCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableUserCommandInput, DisableUserCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { DisassociateApplicationFleetRequest, DisassociateApplicationFleetResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateApplicationFleetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateApplicationFleetCommandInput extends DisassociateApplicationFleetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateApplicationFleetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateApplicationFleetCommandOutput extends DisassociateApplicationFleetResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates the specified application from the fleet.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisassociateApplicationFleetCommandOutput extends DisassociateA
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisassociateApplicationFleetCommandInput - {@link DisassociateApplicationFleetCommandInput}
|
|
34
|
+
* @returns {@link DisassociateApplicationFleetCommandOutput}
|
|
28
35
|
* @see {@link DisassociateApplicationFleetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisassociateApplicationFleetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DisassociateApplicationFleetCommandOutput extends DisassociateA
|
|
|
43
50
|
export declare class DisassociateApplicationFleetCommand extends $Command<DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput, AppStreamClientResolvedConfig> {
|
|
44
51
|
readonly input: DisassociateApplicationFleetCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DisassociateApplicationFleetCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { DisassociateApplicationFromEntitlementRequest, DisassociateApplicationFromEntitlementResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateApplicationFromEntitlementCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateApplicationFromEntitlementCommandInput extends DisassociateApplicationFromEntitlementRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateApplicationFromEntitlementCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateApplicationFromEntitlementCommandOutput extends DisassociateApplicationFromEntitlementResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified application from the specified entitlement.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisassociateApplicationFromEntitlementCommandOutput extends Dis
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisassociateApplicationFromEntitlementCommandInput - {@link DisassociateApplicationFromEntitlementCommandInput}
|
|
34
|
+
* @returns {@link DisassociateApplicationFromEntitlementCommandOutput}
|
|
28
35
|
* @see {@link DisassociateApplicationFromEntitlementCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisassociateApplicationFromEntitlementCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DisassociateApplicationFromEntitlementCommandOutput extends Dis
|
|
|
43
50
|
export declare class DisassociateApplicationFromEntitlementCommand extends $Command<DisassociateApplicationFromEntitlementCommandInput, DisassociateApplicationFromEntitlementCommandOutput, AppStreamClientResolvedConfig> {
|
|
44
51
|
readonly input: DisassociateApplicationFromEntitlementCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DisassociateApplicationFromEntitlementCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateApplicationFromEntitlementCommandInput, DisassociateApplicationFromEntitlementCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { DisassociateFleetRequest, DisassociateFleetResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateFleetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateFleetCommandInput extends DisassociateFleetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateFleetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateFleetCommandOutput extends DisassociateFleetResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates the specified fleet from the specified stack.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisassociateFleetCommandOutput extends DisassociateFleetResult,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisassociateFleetCommandInput - {@link DisassociateFleetCommandInput}
|
|
34
|
+
* @returns {@link DisassociateFleetCommandOutput}
|
|
28
35
|
* @see {@link DisassociateFleetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisassociateFleetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DisassociateFleetCommandOutput extends DisassociateFleetResult,
|
|
|
46
53
|
export declare class DisassociateFleetCommand extends $Command<DisassociateFleetCommandInput, DisassociateFleetCommandOutput, AppStreamClientResolvedConfig> {
|
|
47
54
|
readonly input: DisassociateFleetCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DisassociateFleetCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateFleetCommandInput, DisassociateFleetCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { EnableUserRequest, EnableUserResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link EnableUserCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface EnableUserCommandInput extends EnableUserRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link EnableUserCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface EnableUserCommandOutput extends EnableUserResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Enables a user in the user pool. After being enabled, users can sign in to AppStream 2.0 and open applications from the stacks to which they are assigned.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface EnableUserCommandOutput extends EnableUserResult, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param EnableUserCommandInput - {@link EnableUserCommandInput}
|
|
34
|
+
* @returns {@link EnableUserCommandOutput}
|
|
28
35
|
* @see {@link EnableUserCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link EnableUserCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface EnableUserCommandOutput extends EnableUserResult, __MetadataBea
|
|
|
40
47
|
export declare class EnableUserCommand extends $Command<EnableUserCommandInput, EnableUserCommandOutput, AppStreamClientResolvedConfig> {
|
|
41
48
|
readonly input: EnableUserCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: EnableUserCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableUserCommandInput, EnableUserCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { ExpireSessionRequest, ExpireSessionResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ExpireSessionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ExpireSessionCommandInput extends ExpireSessionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ExpireSessionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ExpireSessionCommandOutput extends ExpireSessionResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Immediately stops the specified streaming session.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ExpireSessionCommandOutput extends ExpireSessionResult, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ExpireSessionCommandInput - {@link ExpireSessionCommandInput}
|
|
34
|
+
* @returns {@link ExpireSessionCommandOutput}
|
|
28
35
|
* @see {@link ExpireSessionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ExpireSessionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ExpireSessionCommandOutput extends ExpireSessionResult, __Metad
|
|
|
34
41
|
export declare class ExpireSessionCommand extends $Command<ExpireSessionCommandInput, ExpireSessionCommandOutput, AppStreamClientResolvedConfig> {
|
|
35
42
|
readonly input: ExpireSessionCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ExpireSessionCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExpireSessionCommandInput, ExpireSessionCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { ListAssociatedFleetsRequest, ListAssociatedFleetsResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAssociatedFleetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAssociatedFleetsCommandInput extends ListAssociatedFleetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAssociatedFleetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAssociatedFleetsCommandOutput extends ListAssociatedFleetsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the name of the fleet that is associated with the specified stack.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAssociatedFleetsCommandOutput extends ListAssociatedFleetsR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAssociatedFleetsCommandInput - {@link ListAssociatedFleetsCommandInput}
|
|
34
|
+
* @returns {@link ListAssociatedFleetsCommandOutput}
|
|
28
35
|
* @see {@link ListAssociatedFleetsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAssociatedFleetsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListAssociatedFleetsCommandOutput extends ListAssociatedFleetsR
|
|
|
34
41
|
export declare class ListAssociatedFleetsCommand extends $Command<ListAssociatedFleetsCommandInput, ListAssociatedFleetsCommandOutput, AppStreamClientResolvedConfig> {
|
|
35
42
|
readonly input: ListAssociatedFleetsCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListAssociatedFleetsCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssociatedFleetsCommandInput, ListAssociatedFleetsCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { ListAssociatedStacksRequest, ListAssociatedStacksResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAssociatedStacksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAssociatedStacksCommandInput extends ListAssociatedStacksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAssociatedStacksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAssociatedStacksCommandOutput extends ListAssociatedStacksResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the name of the stack with which the specified fleet is associated.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAssociatedStacksCommandOutput extends ListAssociatedStacksR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAssociatedStacksCommandInput - {@link ListAssociatedStacksCommandInput}
|
|
34
|
+
* @returns {@link ListAssociatedStacksCommandOutput}
|
|
28
35
|
* @see {@link ListAssociatedStacksCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAssociatedStacksCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListAssociatedStacksCommandOutput extends ListAssociatedStacksR
|
|
|
34
41
|
export declare class ListAssociatedStacksCommand extends $Command<ListAssociatedStacksCommandInput, ListAssociatedStacksCommandOutput, AppStreamClientResolvedConfig> {
|
|
35
42
|
readonly input: ListAssociatedStacksCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListAssociatedStacksCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssociatedStacksCommandInput, ListAssociatedStacksCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
|
|
5
5
|
import { ListEntitledApplicationsRequest, ListEntitledApplicationsResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListEntitledApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListEntitledApplicationsCommandInput extends ListEntitledApplicationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListEntitledApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListEntitledApplicationsCommandOutput extends ListEntitledApplicationsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of entitled applications.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListEntitledApplicationsCommandOutput extends ListEntitledAppli
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListEntitledApplicationsCommandInput - {@link ListEntitledApplicationsCommandInput}
|
|
34
|
+
* @returns {@link ListEntitledApplicationsCommandOutput}
|
|
28
35
|
* @see {@link ListEntitledApplicationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListEntitledApplicationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListEntitledApplicationsCommandOutput extends ListEntitledAppli
|
|
|
43
50
|
export declare class ListEntitledApplicationsCommand extends $Command<ListEntitledApplicationsCommandInput, ListEntitledApplicationsCommandOutput, AppStreamClientResolvedConfig> {
|
|
44
51
|
readonly input: ListEntitledApplicationsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListEntitledApplicationsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppStreamClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEntitledApplicationsCommandInput, ListEntitledApplicationsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|