@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 { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
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,14 +53,18 @@ import { StopFleetCommandInput, StopFleetCommandOutput } from "../commands/StopF
|
|
|
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";
|
|
50
60
|
import { UpdateStackCommandInput, UpdateStackCommandOutput } from "../commands/UpdateStackCommand";
|
|
61
|
+
export declare const serializeAws_json1_1AssociateApplicationFleetCommand: (input: AssociateApplicationFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
62
|
export declare const serializeAws_json1_1AssociateFleetCommand: (input: AssociateFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
63
|
export declare const serializeAws_json1_1BatchAssociateUserStackCommand: (input: BatchAssociateUserStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
64
|
export declare const serializeAws_json1_1BatchDisassociateUserStackCommand: (input: BatchDisassociateUserStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
65
|
export declare const serializeAws_json1_1CopyImageCommand: (input: CopyImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_json1_1CreateAppBlockCommand: (input: CreateAppBlockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
export declare const serializeAws_json1_1CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
68
|
export declare const serializeAws_json1_1CreateDirectoryConfigCommand: (input: CreateDirectoryConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
69
|
export declare const serializeAws_json1_1CreateFleetCommand: (input: CreateFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
70
|
export declare const serializeAws_json1_1CreateImageBuilderCommand: (input: CreateImageBuilderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -61,6 +74,8 @@ export declare const serializeAws_json1_1CreateStreamingURLCommand: (input: Crea
|
|
|
61
74
|
export declare const serializeAws_json1_1CreateUpdatedImageCommand: (input: CreateUpdatedImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
75
|
export declare const serializeAws_json1_1CreateUsageReportSubscriptionCommand: (input: CreateUsageReportSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
76
|
export declare const serializeAws_json1_1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
+
export declare const serializeAws_json1_1DeleteAppBlockCommand: (input: DeleteAppBlockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_json1_1DeleteApplicationCommand: (input: DeleteApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
79
|
export declare const serializeAws_json1_1DeleteDirectoryConfigCommand: (input: DeleteDirectoryConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
80
|
export declare const serializeAws_json1_1DeleteFleetCommand: (input: DeleteFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
81
|
export declare const serializeAws_json1_1DeleteImageCommand: (input: DeleteImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -69,6 +84,9 @@ export declare const serializeAws_json1_1DeleteImagePermissionsCommand: (input:
|
|
|
69
84
|
export declare const serializeAws_json1_1DeleteStackCommand: (input: DeleteStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
85
|
export declare const serializeAws_json1_1DeleteUsageReportSubscriptionCommand: (input: DeleteUsageReportSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
86
|
export declare const serializeAws_json1_1DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
+
export declare const serializeAws_json1_1DescribeAppBlocksCommand: (input: DescribeAppBlocksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
+
export declare const serializeAws_json1_1DescribeApplicationFleetAssociationsCommand: (input: DescribeApplicationFleetAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
+
export declare const serializeAws_json1_1DescribeApplicationsCommand: (input: DescribeApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
90
|
export declare const serializeAws_json1_1DescribeDirectoryConfigsCommand: (input: DescribeDirectoryConfigsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
91
|
export declare const serializeAws_json1_1DescribeFleetsCommand: (input: DescribeFleetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
92
|
export declare const serializeAws_json1_1DescribeImageBuildersCommand: (input: DescribeImageBuildersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -80,6 +98,7 @@ export declare const serializeAws_json1_1DescribeUsageReportSubscriptionsCommand
|
|
|
80
98
|
export declare const serializeAws_json1_1DescribeUsersCommand: (input: DescribeUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
99
|
export declare const serializeAws_json1_1DescribeUserStackAssociationsCommand: (input: DescribeUserStackAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
100
|
export declare const serializeAws_json1_1DisableUserCommand: (input: DisableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
+
export declare const serializeAws_json1_1DisassociateApplicationFleetCommand: (input: DisassociateApplicationFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
102
|
export declare const serializeAws_json1_1DisassociateFleetCommand: (input: DisassociateFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
103
|
export declare const serializeAws_json1_1EnableUserCommand: (input: EnableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
104
|
export declare const serializeAws_json1_1ExpireSessionCommand: (input: ExpireSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -92,14 +111,18 @@ export declare const serializeAws_json1_1StopFleetCommand: (input: StopFleetComm
|
|
|
92
111
|
export declare const serializeAws_json1_1StopImageBuilderCommand: (input: StopImageBuilderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
112
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
113
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1UpdateApplicationCommand: (input: UpdateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
115
|
export declare const serializeAws_json1_1UpdateDirectoryConfigCommand: (input: UpdateDirectoryConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
116
|
export declare const serializeAws_json1_1UpdateFleetCommand: (input: UpdateFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
117
|
export declare const serializeAws_json1_1UpdateImagePermissionsCommand: (input: UpdateImagePermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
118
|
export declare const serializeAws_json1_1UpdateStackCommand: (input: UpdateStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
export declare const deserializeAws_json1_1AssociateApplicationFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateApplicationFleetCommandOutput>;
|
|
99
120
|
export declare const deserializeAws_json1_1AssociateFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateFleetCommandOutput>;
|
|
100
121
|
export declare const deserializeAws_json1_1BatchAssociateUserStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchAssociateUserStackCommandOutput>;
|
|
101
122
|
export declare const deserializeAws_json1_1BatchDisassociateUserStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDisassociateUserStackCommandOutput>;
|
|
102
123
|
export declare const deserializeAws_json1_1CopyImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CopyImageCommandOutput>;
|
|
124
|
+
export declare const deserializeAws_json1_1CreateAppBlockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAppBlockCommandOutput>;
|
|
125
|
+
export declare const deserializeAws_json1_1CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
|
|
103
126
|
export declare const deserializeAws_json1_1CreateDirectoryConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDirectoryConfigCommandOutput>;
|
|
104
127
|
export declare const deserializeAws_json1_1CreateFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFleetCommandOutput>;
|
|
105
128
|
export declare const deserializeAws_json1_1CreateImageBuilderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateImageBuilderCommandOutput>;
|
|
@@ -109,6 +132,8 @@ export declare const deserializeAws_json1_1CreateStreamingURLCommand: (output: _
|
|
|
109
132
|
export declare const deserializeAws_json1_1CreateUpdatedImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUpdatedImageCommandOutput>;
|
|
110
133
|
export declare const deserializeAws_json1_1CreateUsageReportSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUsageReportSubscriptionCommandOutput>;
|
|
111
134
|
export declare const deserializeAws_json1_1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
135
|
+
export declare const deserializeAws_json1_1DeleteAppBlockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppBlockCommandOutput>;
|
|
136
|
+
export declare const deserializeAws_json1_1DeleteApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApplicationCommandOutput>;
|
|
112
137
|
export declare const deserializeAws_json1_1DeleteDirectoryConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDirectoryConfigCommandOutput>;
|
|
113
138
|
export declare const deserializeAws_json1_1DeleteFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFleetCommandOutput>;
|
|
114
139
|
export declare const deserializeAws_json1_1DeleteImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteImageCommandOutput>;
|
|
@@ -117,6 +142,9 @@ export declare const deserializeAws_json1_1DeleteImagePermissionsCommand: (outpu
|
|
|
117
142
|
export declare const deserializeAws_json1_1DeleteStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStackCommandOutput>;
|
|
118
143
|
export declare const deserializeAws_json1_1DeleteUsageReportSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUsageReportSubscriptionCommandOutput>;
|
|
119
144
|
export declare const deserializeAws_json1_1DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
145
|
+
export declare const deserializeAws_json1_1DescribeAppBlocksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAppBlocksCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_json1_1DescribeApplicationFleetAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeApplicationFleetAssociationsCommandOutput>;
|
|
147
|
+
export declare const deserializeAws_json1_1DescribeApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeApplicationsCommandOutput>;
|
|
120
148
|
export declare const deserializeAws_json1_1DescribeDirectoryConfigsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDirectoryConfigsCommandOutput>;
|
|
121
149
|
export declare const deserializeAws_json1_1DescribeFleetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFleetsCommandOutput>;
|
|
122
150
|
export declare const deserializeAws_json1_1DescribeImageBuildersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeImageBuildersCommandOutput>;
|
|
@@ -128,6 +156,7 @@ export declare const deserializeAws_json1_1DescribeUsageReportSubscriptionsComma
|
|
|
128
156
|
export declare const deserializeAws_json1_1DescribeUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUsersCommandOutput>;
|
|
129
157
|
export declare const deserializeAws_json1_1DescribeUserStackAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserStackAssociationsCommandOutput>;
|
|
130
158
|
export declare const deserializeAws_json1_1DisableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableUserCommandOutput>;
|
|
159
|
+
export declare const deserializeAws_json1_1DisassociateApplicationFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateApplicationFleetCommandOutput>;
|
|
131
160
|
export declare const deserializeAws_json1_1DisassociateFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateFleetCommandOutput>;
|
|
132
161
|
export declare const deserializeAws_json1_1EnableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableUserCommandOutput>;
|
|
133
162
|
export declare const deserializeAws_json1_1ExpireSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExpireSessionCommandOutput>;
|
|
@@ -140,6 +169,7 @@ export declare const deserializeAws_json1_1StopFleetCommand: (output: __HttpResp
|
|
|
140
169
|
export declare const deserializeAws_json1_1StopImageBuilderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopImageBuilderCommandOutput>;
|
|
141
170
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
142
171
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
172
|
+
export declare const deserializeAws_json1_1UpdateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApplicationCommandOutput>;
|
|
143
173
|
export declare const deserializeAws_json1_1UpdateDirectoryConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDirectoryConfigCommandOutput>;
|
|
144
174
|
export declare const deserializeAws_json1_1UpdateFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFleetCommandOutput>;
|
|
145
175
|
export declare const deserializeAws_json1_1UpdateImagePermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateImagePermissionsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appstream",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.43.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.43.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
26
|
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|