@aws-sdk/client-appstream 3.907.0 → 3.910.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.
Files changed (42) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/endpoint/ruleset.js +1 -1
  3. package/dist-cjs/index.js +228 -0
  4. package/dist-es/AppStream.js +10 -0
  5. package/dist-es/commands/AssociateSoftwareToImageBuilderCommand.js +22 -0
  6. package/dist-es/commands/DescribeAppLicenseUsageCommand.js +22 -0
  7. package/dist-es/commands/DescribeSoftwareAssociationsCommand.js +22 -0
  8. package/dist-es/commands/DisassociateSoftwareFromImageBuilderCommand.js +22 -0
  9. package/dist-es/commands/StartSoftwareDeploymentToImageBuilderCommand.js +22 -0
  10. package/dist-es/commands/index.js +5 -0
  11. package/dist-es/endpoint/ruleset.js +1 -1
  12. package/dist-es/models/models_0.js +11 -0
  13. package/dist-es/protocols/Aws_json1_1.js +121 -0
  14. package/dist-types/AppStream.d.ts +35 -0
  15. package/dist-types/AppStreamClient.d.ts +7 -2
  16. package/dist-types/commands/AssociateSoftwareToImageBuilderCommand.d.ts +90 -0
  17. package/dist-types/commands/CreateImageBuilderCommand.d.ts +7 -1
  18. package/dist-types/commands/CreateUpdatedImageCommand.d.ts +1 -0
  19. package/dist-types/commands/DeleteImageBuilderCommand.d.ts +1 -1
  20. package/dist-types/commands/DeleteImageCommand.d.ts +1 -0
  21. package/dist-types/commands/DescribeAppLicenseUsageCommand.d.ts +96 -0
  22. package/dist-types/commands/DescribeImageBuildersCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeImagesCommand.d.ts +1 -0
  24. package/dist-types/commands/DescribeSoftwareAssociationsCommand.d.ts +95 -0
  25. package/dist-types/commands/DisassociateSoftwareFromImageBuilderCommand.d.ts +87 -0
  26. package/dist-types/commands/StartImageBuilderCommand.d.ts +1 -1
  27. package/dist-types/commands/StartSoftwareDeploymentToImageBuilderCommand.d.ts +82 -0
  28. package/dist-types/commands/StopImageBuilderCommand.d.ts +1 -1
  29. package/dist-types/commands/index.d.ts +5 -0
  30. package/dist-types/models/models_0.d.ts +624 -2
  31. package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
  32. package/dist-types/ts3.4/AppStream.d.ts +97 -0
  33. package/dist-types/ts3.4/AppStreamClient.d.ts +30 -0
  34. package/dist-types/ts3.4/commands/AssociateSoftwareToImageBuilderCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/DescribeAppLicenseUsageCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/DescribeSoftwareAssociationsCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/DisassociateSoftwareFromImageBuilderCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/StartSoftwareDeploymentToImageBuilderCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +64 -0
  41. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
  42. package/package.json +36 -36
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ AppStreamClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../AppStreamClient";
8
+ import {
9
+ StartSoftwareDeploymentToImageBuilderRequest,
10
+ StartSoftwareDeploymentToImageBuilderResult,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartSoftwareDeploymentToImageBuilderCommandInput
15
+ extends StartSoftwareDeploymentToImageBuilderRequest {}
16
+ export interface StartSoftwareDeploymentToImageBuilderCommandOutput
17
+ extends StartSoftwareDeploymentToImageBuilderResult,
18
+ __MetadataBearer {}
19
+ declare const StartSoftwareDeploymentToImageBuilderCommand_base: {
20
+ new (
21
+ input: StartSoftwareDeploymentToImageBuilderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StartSoftwareDeploymentToImageBuilderCommandInput,
24
+ StartSoftwareDeploymentToImageBuilderCommandOutput,
25
+ AppStreamClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StartSoftwareDeploymentToImageBuilderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StartSoftwareDeploymentToImageBuilderCommandInput,
33
+ StartSoftwareDeploymentToImageBuilderCommandOutput,
34
+ AppStreamClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StartSoftwareDeploymentToImageBuilderCommand extends StartSoftwareDeploymentToImageBuilderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartSoftwareDeploymentToImageBuilderRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: StartSoftwareDeploymentToImageBuilderCommandInput;
48
+ output: StartSoftwareDeploymentToImageBuilderCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -2,6 +2,7 @@ export * from "./AssociateAppBlockBuilderAppBlockCommand";
2
2
  export * from "./AssociateApplicationFleetCommand";
3
3
  export * from "./AssociateApplicationToEntitlementCommand";
4
4
  export * from "./AssociateFleetCommand";
5
+ export * from "./AssociateSoftwareToImageBuilderCommand";
5
6
  export * from "./BatchAssociateUserStackCommand";
6
7
  export * from "./BatchDisassociateUserStackCommand";
7
8
  export * from "./CopyImageCommand";
@@ -36,6 +37,7 @@ export * from "./DeleteUserCommand";
36
37
  export * from "./DescribeAppBlockBuilderAppBlockAssociationsCommand";
37
38
  export * from "./DescribeAppBlockBuildersCommand";
38
39
  export * from "./DescribeAppBlocksCommand";
40
+ export * from "./DescribeAppLicenseUsageCommand";
39
41
  export * from "./DescribeApplicationFleetAssociationsCommand";
40
42
  export * from "./DescribeApplicationsCommand";
41
43
  export * from "./DescribeDirectoryConfigsCommand";
@@ -45,6 +47,7 @@ export * from "./DescribeImageBuildersCommand";
45
47
  export * from "./DescribeImagePermissionsCommand";
46
48
  export * from "./DescribeImagesCommand";
47
49
  export * from "./DescribeSessionsCommand";
50
+ export * from "./DescribeSoftwareAssociationsCommand";
48
51
  export * from "./DescribeStacksCommand";
49
52
  export * from "./DescribeThemeForStackCommand";
50
53
  export * from "./DescribeUsageReportSubscriptionsCommand";
@@ -55,6 +58,7 @@ export * from "./DisassociateAppBlockBuilderAppBlockCommand";
55
58
  export * from "./DisassociateApplicationFleetCommand";
56
59
  export * from "./DisassociateApplicationFromEntitlementCommand";
57
60
  export * from "./DisassociateFleetCommand";
61
+ export * from "./DisassociateSoftwareFromImageBuilderCommand";
58
62
  export * from "./EnableUserCommand";
59
63
  export * from "./ExpireSessionCommand";
60
64
  export * from "./ListAssociatedFleetsCommand";
@@ -64,6 +68,7 @@ export * from "./ListTagsForResourceCommand";
64
68
  export * from "./StartAppBlockBuilderCommand";
65
69
  export * from "./StartFleetCommand";
66
70
  export * from "./StartImageBuilderCommand";
71
+ export * from "./StartSoftwareDeploymentToImageBuilderCommand";
67
72
  export * from "./StopAppBlockBuilderCommand";
68
73
  export * from "./StopFleetCommand";
69
74
  export * from "./StopImageBuilderCommand";
@@ -20,6 +20,15 @@ export declare const Action: {
20
20
  readonly PRINTING_TO_LOCAL_DEVICE: "PRINTING_TO_LOCAL_DEVICE";
21
21
  };
22
22
  export type Action = (typeof Action)[keyof typeof Action];
23
+ export interface AdminAppLicenseUsageRecord {
24
+ UserArn: string | undefined;
25
+ BillingPeriod: string | undefined;
26
+ OwnerAWSAccountId: string | undefined;
27
+ SubscriptionFirstUsedDate: Date | undefined;
28
+ SubscriptionLastUsedDate: Date | undefined;
29
+ LicenseType: string | undefined;
30
+ UserId: string | undefined;
31
+ }
23
32
  export interface ErrorDetails {
24
33
  ErrorCode?: string | undefined;
25
34
  ErrorMessage?: string | undefined;
@@ -297,6 +306,11 @@ export declare class InvalidAccountStatusException extends __BaseException {
297
306
  opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>
298
307
  );
299
308
  }
309
+ export interface AssociateSoftwareToImageBuilderRequest {
310
+ ImageBuilderName: string | undefined;
311
+ SoftwareNames: string[] | undefined;
312
+ }
313
+ export interface AssociateSoftwareToImageBuilderResult {}
300
314
  export declare const AuthenticationType: {
301
315
  readonly API: "API";
302
316
  readonly AWS_AD: "AWS_AD";
@@ -602,6 +616,8 @@ export interface CreateImageBuilderRequest {
602
616
  AppstreamAgentVersion?: string | undefined;
603
617
  Tags?: Record<string, string> | undefined;
604
618
  AccessEndpoints?: AccessEndpoint[] | undefined;
619
+ SoftwaresToInstall?: string[] | undefined;
620
+ SoftwaresToUninstall?: string[] | undefined;
605
621
  }
606
622
  export declare const LatestAppstreamAgentVersion: {
607
623
  readonly FALSE: "FALSE";
@@ -618,11 +634,13 @@ export declare const ImageBuilderState: {
618
634
  readonly FAILED: "FAILED";
619
635
  readonly PENDING: "PENDING";
620
636
  readonly PENDING_QUALIFICATION: "PENDING_QUALIFICATION";
637
+ readonly PENDING_SYNCING_APPS: "PENDING_SYNCING_APPS";
621
638
  readonly REBOOTING: "REBOOTING";
622
639
  readonly RUNNING: "RUNNING";
623
640
  readonly SNAPSHOTTING: "SNAPSHOTTING";
624
641
  readonly STOPPED: "STOPPED";
625
642
  readonly STOPPING: "STOPPING";
643
+ readonly SYNCING_APPS: "SYNCING_APPS";
626
644
  readonly UPDATING: "UPDATING";
627
645
  readonly UPDATING_AGENT: "UPDATING_AGENT";
628
646
  };
@@ -868,6 +886,7 @@ export interface Image {
868
886
  SupportedInstanceFamilies?: string[] | undefined;
869
887
  DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled | undefined;
870
888
  ImageSharedWithOthers?: ImageSharedWithOthers | undefined;
889
+ ManagedSoftwareIncluded?: boolean | undefined;
871
890
  }
872
891
  export interface CreateUpdatedImageResult {
873
892
  image?: Image | undefined;
@@ -1010,6 +1029,15 @@ export interface DescribeApplicationsResult {
1010
1029
  Applications?: Application[] | undefined;
1011
1030
  NextToken?: string | undefined;
1012
1031
  }
1032
+ export interface DescribeAppLicenseUsageRequest {
1033
+ BillingPeriod: string | undefined;
1034
+ MaxResults?: number | undefined;
1035
+ NextToken?: string | undefined;
1036
+ }
1037
+ export interface DescribeAppLicenseUsageResult {
1038
+ AppLicenseUsages?: AdminAppLicenseUsageRecord[] | undefined;
1039
+ NextToken?: string | undefined;
1040
+ }
1013
1041
  export interface DescribeDirectoryConfigsRequest {
1014
1042
  DirectoryNames?: string[] | undefined;
1015
1043
  MaxResults?: number | undefined;
@@ -1110,6 +1138,32 @@ export interface DescribeSessionsResult {
1110
1138
  Sessions?: Session[] | undefined;
1111
1139
  NextToken?: string | undefined;
1112
1140
  }
1141
+ export interface DescribeSoftwareAssociationsRequest {
1142
+ AssociatedResource: string | undefined;
1143
+ MaxResults?: number | undefined;
1144
+ NextToken?: string | undefined;
1145
+ }
1146
+ export declare const SoftwareDeploymentStatus: {
1147
+ readonly FAILED_TO_INSTALL: "FAILED_TO_INSTALL";
1148
+ readonly FAILED_TO_UNINSTALL: "FAILED_TO_UNINSTALL";
1149
+ readonly INSTALLED: "INSTALLED";
1150
+ readonly PENDING_INSTALLATION: "PENDING_INSTALLATION";
1151
+ readonly PENDING_UNINSTALLATION: "PENDING_UNINSTALLATION";
1152
+ readonly STAGED_FOR_INSTALLATION: "STAGED_FOR_INSTALLATION";
1153
+ readonly STAGED_FOR_UNINSTALLATION: "STAGED_FOR_UNINSTALLATION";
1154
+ };
1155
+ export type SoftwareDeploymentStatus =
1156
+ (typeof SoftwareDeploymentStatus)[keyof typeof SoftwareDeploymentStatus];
1157
+ export interface SoftwareAssociations {
1158
+ SoftwareName?: string | undefined;
1159
+ Status?: SoftwareDeploymentStatus | undefined;
1160
+ DeploymentError?: ErrorDetails[] | undefined;
1161
+ }
1162
+ export interface DescribeSoftwareAssociationsResult {
1163
+ AssociatedResource?: string | undefined;
1164
+ SoftwareAssociations?: SoftwareAssociations[] | undefined;
1165
+ NextToken?: string | undefined;
1166
+ }
1113
1167
  export interface DescribeStacksRequest {
1114
1168
  Names?: string[] | undefined;
1115
1169
  NextToken?: string | undefined;
@@ -1205,6 +1259,11 @@ export interface DisassociateFleetRequest {
1205
1259
  StackName: string | undefined;
1206
1260
  }
1207
1261
  export interface DisassociateFleetResult {}
1262
+ export interface DisassociateSoftwareFromImageBuilderRequest {
1263
+ ImageBuilderName: string | undefined;
1264
+ SoftwareNames: string[] | undefined;
1265
+ }
1266
+ export interface DisassociateSoftwareFromImageBuilderResult {}
1208
1267
  export interface EnableUserRequest {
1209
1268
  UserName: string | undefined;
1210
1269
  AuthenticationType: AuthenticationType | undefined;
@@ -1277,6 +1336,11 @@ export interface StartImageBuilderRequest {
1277
1336
  export interface StartImageBuilderResult {
1278
1337
  ImageBuilder?: ImageBuilder | undefined;
1279
1338
  }
1339
+ export interface StartSoftwareDeploymentToImageBuilderRequest {
1340
+ ImageBuilderName: string | undefined;
1341
+ RetryFailedDeployments?: boolean | undefined;
1342
+ }
1343
+ export interface StartSoftwareDeploymentToImageBuilderResult {}
1280
1344
  export interface StopAppBlockBuilderRequest {
1281
1345
  Name: string | undefined;
1282
1346
  }
@@ -19,6 +19,10 @@ import {
19
19
  AssociateFleetCommandInput,
20
20
  AssociateFleetCommandOutput,
21
21
  } from "../commands/AssociateFleetCommand";
22
+ import {
23
+ AssociateSoftwareToImageBuilderCommandInput,
24
+ AssociateSoftwareToImageBuilderCommandOutput,
25
+ } from "../commands/AssociateSoftwareToImageBuilderCommand";
22
26
  import {
23
27
  BatchAssociateUserStackCommandInput,
24
28
  BatchAssociateUserStackCommandOutput,
@@ -163,6 +167,10 @@ import {
163
167
  DescribeApplicationsCommandInput,
164
168
  DescribeApplicationsCommandOutput,
165
169
  } from "../commands/DescribeApplicationsCommand";
170
+ import {
171
+ DescribeAppLicenseUsageCommandInput,
172
+ DescribeAppLicenseUsageCommandOutput,
173
+ } from "../commands/DescribeAppLicenseUsageCommand";
166
174
  import {
167
175
  DescribeDirectoryConfigsCommandInput,
168
176
  DescribeDirectoryConfigsCommandOutput,
@@ -191,6 +199,10 @@ import {
191
199
  DescribeSessionsCommandInput,
192
200
  DescribeSessionsCommandOutput,
193
201
  } from "../commands/DescribeSessionsCommand";
202
+ import {
203
+ DescribeSoftwareAssociationsCommandInput,
204
+ DescribeSoftwareAssociationsCommandOutput,
205
+ } from "../commands/DescribeSoftwareAssociationsCommand";
194
206
  import {
195
207
  DescribeStacksCommandInput,
196
208
  DescribeStacksCommandOutput,
@@ -231,6 +243,10 @@ import {
231
243
  DisassociateFleetCommandInput,
232
244
  DisassociateFleetCommandOutput,
233
245
  } from "../commands/DisassociateFleetCommand";
246
+ import {
247
+ DisassociateSoftwareFromImageBuilderCommandInput,
248
+ DisassociateSoftwareFromImageBuilderCommandOutput,
249
+ } from "../commands/DisassociateSoftwareFromImageBuilderCommand";
234
250
  import {
235
251
  EnableUserCommandInput,
236
252
  EnableUserCommandOutput,
@@ -267,6 +283,10 @@ import {
267
283
  StartImageBuilderCommandInput,
268
284
  StartImageBuilderCommandOutput,
269
285
  } from "../commands/StartImageBuilderCommand";
286
+ import {
287
+ StartSoftwareDeploymentToImageBuilderCommandInput,
288
+ StartSoftwareDeploymentToImageBuilderCommandOutput,
289
+ } from "../commands/StartSoftwareDeploymentToImageBuilderCommand";
270
290
  import {
271
291
  StopAppBlockBuilderCommandInput,
272
292
  StopAppBlockBuilderCommandOutput,
@@ -335,6 +355,10 @@ export declare const se_AssociateFleetCommand: (
335
355
  input: AssociateFleetCommandInput,
336
356
  context: __SerdeContext
337
357
  ) => Promise<__HttpRequest>;
358
+ export declare const se_AssociateSoftwareToImageBuilderCommand: (
359
+ input: AssociateSoftwareToImageBuilderCommandInput,
360
+ context: __SerdeContext
361
+ ) => Promise<__HttpRequest>;
338
362
  export declare const se_BatchAssociateUserStackCommand: (
339
363
  input: BatchAssociateUserStackCommandInput,
340
364
  context: __SerdeContext
@@ -479,6 +503,10 @@ export declare const se_DescribeApplicationsCommand: (
479
503
  input: DescribeApplicationsCommandInput,
480
504
  context: __SerdeContext
481
505
  ) => Promise<__HttpRequest>;
506
+ export declare const se_DescribeAppLicenseUsageCommand: (
507
+ input: DescribeAppLicenseUsageCommandInput,
508
+ context: __SerdeContext
509
+ ) => Promise<__HttpRequest>;
482
510
  export declare const se_DescribeDirectoryConfigsCommand: (
483
511
  input: DescribeDirectoryConfigsCommandInput,
484
512
  context: __SerdeContext
@@ -507,6 +535,10 @@ export declare const se_DescribeSessionsCommand: (
507
535
  input: DescribeSessionsCommandInput,
508
536
  context: __SerdeContext
509
537
  ) => Promise<__HttpRequest>;
538
+ export declare const se_DescribeSoftwareAssociationsCommand: (
539
+ input: DescribeSoftwareAssociationsCommandInput,
540
+ context: __SerdeContext
541
+ ) => Promise<__HttpRequest>;
510
542
  export declare const se_DescribeStacksCommand: (
511
543
  input: DescribeStacksCommandInput,
512
544
  context: __SerdeContext
@@ -547,6 +579,10 @@ export declare const se_DisassociateFleetCommand: (
547
579
  input: DisassociateFleetCommandInput,
548
580
  context: __SerdeContext
549
581
  ) => Promise<__HttpRequest>;
582
+ export declare const se_DisassociateSoftwareFromImageBuilderCommand: (
583
+ input: DisassociateSoftwareFromImageBuilderCommandInput,
584
+ context: __SerdeContext
585
+ ) => Promise<__HttpRequest>;
550
586
  export declare const se_EnableUserCommand: (
551
587
  input: EnableUserCommandInput,
552
588
  context: __SerdeContext
@@ -583,6 +619,10 @@ export declare const se_StartImageBuilderCommand: (
583
619
  input: StartImageBuilderCommandInput,
584
620
  context: __SerdeContext
585
621
  ) => Promise<__HttpRequest>;
622
+ export declare const se_StartSoftwareDeploymentToImageBuilderCommand: (
623
+ input: StartSoftwareDeploymentToImageBuilderCommandInput,
624
+ context: __SerdeContext
625
+ ) => Promise<__HttpRequest>;
586
626
  export declare const se_StopAppBlockBuilderCommand: (
587
627
  input: StopAppBlockBuilderCommandInput,
588
628
  context: __SerdeContext
@@ -651,6 +691,10 @@ export declare const de_AssociateFleetCommand: (
651
691
  output: __HttpResponse,
652
692
  context: __SerdeContext
653
693
  ) => Promise<AssociateFleetCommandOutput>;
694
+ export declare const de_AssociateSoftwareToImageBuilderCommand: (
695
+ output: __HttpResponse,
696
+ context: __SerdeContext
697
+ ) => Promise<AssociateSoftwareToImageBuilderCommandOutput>;
654
698
  export declare const de_BatchAssociateUserStackCommand: (
655
699
  output: __HttpResponse,
656
700
  context: __SerdeContext
@@ -795,6 +839,10 @@ export declare const de_DescribeApplicationsCommand: (
795
839
  output: __HttpResponse,
796
840
  context: __SerdeContext
797
841
  ) => Promise<DescribeApplicationsCommandOutput>;
842
+ export declare const de_DescribeAppLicenseUsageCommand: (
843
+ output: __HttpResponse,
844
+ context: __SerdeContext
845
+ ) => Promise<DescribeAppLicenseUsageCommandOutput>;
798
846
  export declare const de_DescribeDirectoryConfigsCommand: (
799
847
  output: __HttpResponse,
800
848
  context: __SerdeContext
@@ -823,6 +871,10 @@ export declare const de_DescribeSessionsCommand: (
823
871
  output: __HttpResponse,
824
872
  context: __SerdeContext
825
873
  ) => Promise<DescribeSessionsCommandOutput>;
874
+ export declare const de_DescribeSoftwareAssociationsCommand: (
875
+ output: __HttpResponse,
876
+ context: __SerdeContext
877
+ ) => Promise<DescribeSoftwareAssociationsCommandOutput>;
826
878
  export declare const de_DescribeStacksCommand: (
827
879
  output: __HttpResponse,
828
880
  context: __SerdeContext
@@ -863,6 +915,10 @@ export declare const de_DisassociateFleetCommand: (
863
915
  output: __HttpResponse,
864
916
  context: __SerdeContext
865
917
  ) => Promise<DisassociateFleetCommandOutput>;
918
+ export declare const de_DisassociateSoftwareFromImageBuilderCommand: (
919
+ output: __HttpResponse,
920
+ context: __SerdeContext
921
+ ) => Promise<DisassociateSoftwareFromImageBuilderCommandOutput>;
866
922
  export declare const de_EnableUserCommand: (
867
923
  output: __HttpResponse,
868
924
  context: __SerdeContext
@@ -899,6 +955,10 @@ export declare const de_StartImageBuilderCommand: (
899
955
  output: __HttpResponse,
900
956
  context: __SerdeContext
901
957
  ) => Promise<StartImageBuilderCommandOutput>;
958
+ export declare const de_StartSoftwareDeploymentToImageBuilderCommand: (
959
+ output: __HttpResponse,
960
+ context: __SerdeContext
961
+ ) => Promise<StartSoftwareDeploymentToImageBuilderCommandOutput>;
902
962
  export declare const de_StopAppBlockBuilderCommand: (
903
963
  output: __HttpResponse,
904
964
  context: __SerdeContext
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.907.0",
4
+ "version": "3.910.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-appstream",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.907.0",
24
- "@aws-sdk/credential-provider-node": "3.907.0",
25
- "@aws-sdk/middleware-host-header": "3.901.0",
26
- "@aws-sdk/middleware-logger": "3.901.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.901.0",
28
- "@aws-sdk/middleware-user-agent": "3.907.0",
29
- "@aws-sdk/region-config-resolver": "3.901.0",
30
- "@aws-sdk/types": "3.901.0",
31
- "@aws-sdk/util-endpoints": "3.901.0",
32
- "@aws-sdk/util-user-agent-browser": "3.907.0",
33
- "@aws-sdk/util-user-agent-node": "3.907.0",
34
- "@smithy/config-resolver": "^4.3.0",
35
- "@smithy/core": "^3.14.0",
36
- "@smithy/fetch-http-handler": "^5.3.0",
37
- "@smithy/hash-node": "^4.2.0",
38
- "@smithy/invalid-dependency": "^4.2.0",
39
- "@smithy/middleware-content-length": "^4.2.0",
40
- "@smithy/middleware-endpoint": "^4.3.0",
41
- "@smithy/middleware-retry": "^4.4.0",
42
- "@smithy/middleware-serde": "^4.2.0",
43
- "@smithy/middleware-stack": "^4.2.0",
44
- "@smithy/node-config-provider": "^4.3.0",
45
- "@smithy/node-http-handler": "^4.3.0",
46
- "@smithy/protocol-http": "^5.3.0",
47
- "@smithy/smithy-client": "^4.7.0",
48
- "@smithy/types": "^4.6.0",
49
- "@smithy/url-parser": "^4.2.0",
50
- "@smithy/util-base64": "^4.2.0",
23
+ "@aws-sdk/core": "3.910.0",
24
+ "@aws-sdk/credential-provider-node": "3.910.0",
25
+ "@aws-sdk/middleware-host-header": "3.910.0",
26
+ "@aws-sdk/middleware-logger": "3.910.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.910.0",
28
+ "@aws-sdk/middleware-user-agent": "3.910.0",
29
+ "@aws-sdk/region-config-resolver": "3.910.0",
30
+ "@aws-sdk/types": "3.910.0",
31
+ "@aws-sdk/util-endpoints": "3.910.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.910.0",
33
+ "@aws-sdk/util-user-agent-node": "3.910.0",
34
+ "@smithy/config-resolver": "^4.3.2",
35
+ "@smithy/core": "^3.16.1",
36
+ "@smithy/fetch-http-handler": "^5.3.3",
37
+ "@smithy/hash-node": "^4.2.2",
38
+ "@smithy/invalid-dependency": "^4.2.2",
39
+ "@smithy/middleware-content-length": "^4.2.2",
40
+ "@smithy/middleware-endpoint": "^4.3.3",
41
+ "@smithy/middleware-retry": "^4.4.3",
42
+ "@smithy/middleware-serde": "^4.2.2",
43
+ "@smithy/middleware-stack": "^4.2.2",
44
+ "@smithy/node-config-provider": "^4.3.2",
45
+ "@smithy/node-http-handler": "^4.4.1",
46
+ "@smithy/protocol-http": "^5.3.2",
47
+ "@smithy/smithy-client": "^4.8.1",
48
+ "@smithy/types": "^4.7.1",
49
+ "@smithy/url-parser": "^4.2.2",
50
+ "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
- "@smithy/util-body-length-node": "^4.2.0",
53
- "@smithy/util-defaults-mode-browser": "^4.2.0",
54
- "@smithy/util-defaults-mode-node": "^4.2.0",
55
- "@smithy/util-endpoints": "^3.2.0",
56
- "@smithy/util-middleware": "^4.2.0",
57
- "@smithy/util-retry": "^4.2.0",
52
+ "@smithy/util-body-length-node": "^4.2.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.2",
54
+ "@smithy/util-defaults-mode-node": "^4.2.3",
55
+ "@smithy/util-endpoints": "^3.2.2",
56
+ "@smithy/util-middleware": "^4.2.2",
57
+ "@smithy/util-retry": "^4.2.2",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
- "@smithy/util-waiter": "^4.2.0",
59
+ "@smithy/util-waiter": "^4.2.2",
60
60
  "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {