@aws-sdk/client-appstream 3.624.0 → 3.630.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/README.md +32 -0
- package/dist-cjs/index.js +222 -1
- package/dist-es/AppStream.js +8 -0
- package/dist-es/commands/CreateThemeForStackCommand.js +24 -0
- package/dist-es/commands/DeleteThemeForStackCommand.js +24 -0
- package/dist-es/commands/DescribeThemeForStackCommand.js +24 -0
- package/dist-es/commands/UpdateThemeForStackCommand.js +24 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +25 -0
- package/dist-es/protocols/Aws_json1_1.js +108 -0
- package/dist-types/AppStream.d.ts +28 -0
- package/dist-types/AppStreamClient.d.ts +6 -2
- package/dist-types/commands/CreateImageBuilderCommand.d.ts +1 -0
- package/dist-types/commands/CreateThemeForStackCommand.d.ts +108 -0
- package/dist-types/commands/CreateUpdatedImageCommand.d.ts +6 -0
- package/dist-types/commands/DeleteImageBuilderCommand.d.ts +1 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +6 -0
- package/dist-types/commands/DeleteThemeForStackCommand.d.ts +67 -0
- package/dist-types/commands/DescribeImageBuildersCommand.d.ts +1 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +6 -0
- package/dist-types/commands/DescribeThemeForStackCommand.d.ts +80 -0
- package/dist-types/commands/StartImageBuilderCommand.d.ts +1 -0
- package/dist-types/commands/StopImageBuilderCommand.d.ts +1 -0
- package/dist-types/commands/UpdateThemeForStackCommand.d.ts +112 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +342 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/AppStream.d.ts +68 -0
- package/dist-types/ts3.4/AppStreamClient.d.ts +26 -2
- package/dist-types/ts3.4/commands/CreateThemeForStackCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteThemeForStackCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DescribeThemeForStackCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateThemeForStackCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +88 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +5 -5
|
@@ -117,6 +117,10 @@ import {
|
|
|
117
117
|
CreateStreamingURLCommandInput,
|
|
118
118
|
CreateStreamingURLCommandOutput,
|
|
119
119
|
} from "./commands/CreateStreamingURLCommand";
|
|
120
|
+
import {
|
|
121
|
+
CreateThemeForStackCommandInput,
|
|
122
|
+
CreateThemeForStackCommandOutput,
|
|
123
|
+
} from "./commands/CreateThemeForStackCommand";
|
|
120
124
|
import {
|
|
121
125
|
CreateUpdatedImageCommandInput,
|
|
122
126
|
CreateUpdatedImageCommandOutput,
|
|
@@ -169,6 +173,10 @@ import {
|
|
|
169
173
|
DeleteStackCommandInput,
|
|
170
174
|
DeleteStackCommandOutput,
|
|
171
175
|
} from "./commands/DeleteStackCommand";
|
|
176
|
+
import {
|
|
177
|
+
DeleteThemeForStackCommandInput,
|
|
178
|
+
DeleteThemeForStackCommandOutput,
|
|
179
|
+
} from "./commands/DeleteThemeForStackCommand";
|
|
172
180
|
import {
|
|
173
181
|
DeleteUsageReportSubscriptionCommandInput,
|
|
174
182
|
DeleteUsageReportSubscriptionCommandOutput,
|
|
@@ -229,6 +237,10 @@ import {
|
|
|
229
237
|
DescribeStacksCommandInput,
|
|
230
238
|
DescribeStacksCommandOutput,
|
|
231
239
|
} from "./commands/DescribeStacksCommand";
|
|
240
|
+
import {
|
|
241
|
+
DescribeThemeForStackCommandInput,
|
|
242
|
+
DescribeThemeForStackCommandOutput,
|
|
243
|
+
} from "./commands/DescribeThemeForStackCommand";
|
|
232
244
|
import {
|
|
233
245
|
DescribeUsageReportSubscriptionsCommandInput,
|
|
234
246
|
DescribeUsageReportSubscriptionsCommandOutput,
|
|
@@ -345,6 +357,10 @@ import {
|
|
|
345
357
|
UpdateStackCommandInput,
|
|
346
358
|
UpdateStackCommandOutput,
|
|
347
359
|
} from "./commands/UpdateStackCommand";
|
|
360
|
+
import {
|
|
361
|
+
UpdateThemeForStackCommandInput,
|
|
362
|
+
UpdateThemeForStackCommandOutput,
|
|
363
|
+
} from "./commands/UpdateThemeForStackCommand";
|
|
348
364
|
import {
|
|
349
365
|
ClientInputEndpointParameters,
|
|
350
366
|
ClientResolvedEndpointParameters,
|
|
@@ -371,6 +387,7 @@ export type ServiceInputTypes =
|
|
|
371
387
|
| CreateImageBuilderStreamingURLCommandInput
|
|
372
388
|
| CreateStackCommandInput
|
|
373
389
|
| CreateStreamingURLCommandInput
|
|
390
|
+
| CreateThemeForStackCommandInput
|
|
374
391
|
| CreateUpdatedImageCommandInput
|
|
375
392
|
| CreateUsageReportSubscriptionCommandInput
|
|
376
393
|
| CreateUserCommandInput
|
|
@@ -384,6 +401,7 @@ export type ServiceInputTypes =
|
|
|
384
401
|
| DeleteImageCommandInput
|
|
385
402
|
| DeleteImagePermissionsCommandInput
|
|
386
403
|
| DeleteStackCommandInput
|
|
404
|
+
| DeleteThemeForStackCommandInput
|
|
387
405
|
| DeleteUsageReportSubscriptionCommandInput
|
|
388
406
|
| DeleteUserCommandInput
|
|
389
407
|
| DescribeAppBlockBuilderAppBlockAssociationsCommandInput
|
|
@@ -399,6 +417,7 @@ export type ServiceInputTypes =
|
|
|
399
417
|
| DescribeImagesCommandInput
|
|
400
418
|
| DescribeSessionsCommandInput
|
|
401
419
|
| DescribeStacksCommandInput
|
|
420
|
+
| DescribeThemeForStackCommandInput
|
|
402
421
|
| DescribeUsageReportSubscriptionsCommandInput
|
|
403
422
|
| DescribeUserStackAssociationsCommandInput
|
|
404
423
|
| DescribeUsersCommandInput
|
|
@@ -427,7 +446,8 @@ export type ServiceInputTypes =
|
|
|
427
446
|
| UpdateEntitlementCommandInput
|
|
428
447
|
| UpdateFleetCommandInput
|
|
429
448
|
| UpdateImagePermissionsCommandInput
|
|
430
|
-
| UpdateStackCommandInput
|
|
449
|
+
| UpdateStackCommandInput
|
|
450
|
+
| UpdateThemeForStackCommandInput;
|
|
431
451
|
export type ServiceOutputTypes =
|
|
432
452
|
| AssociateAppBlockBuilderAppBlockCommandOutput
|
|
433
453
|
| AssociateApplicationFleetCommandOutput
|
|
@@ -447,6 +467,7 @@ export type ServiceOutputTypes =
|
|
|
447
467
|
| CreateImageBuilderStreamingURLCommandOutput
|
|
448
468
|
| CreateStackCommandOutput
|
|
449
469
|
| CreateStreamingURLCommandOutput
|
|
470
|
+
| CreateThemeForStackCommandOutput
|
|
450
471
|
| CreateUpdatedImageCommandOutput
|
|
451
472
|
| CreateUsageReportSubscriptionCommandOutput
|
|
452
473
|
| CreateUserCommandOutput
|
|
@@ -460,6 +481,7 @@ export type ServiceOutputTypes =
|
|
|
460
481
|
| DeleteImageCommandOutput
|
|
461
482
|
| DeleteImagePermissionsCommandOutput
|
|
462
483
|
| DeleteStackCommandOutput
|
|
484
|
+
| DeleteThemeForStackCommandOutput
|
|
463
485
|
| DeleteUsageReportSubscriptionCommandOutput
|
|
464
486
|
| DeleteUserCommandOutput
|
|
465
487
|
| DescribeAppBlockBuilderAppBlockAssociationsCommandOutput
|
|
@@ -475,6 +497,7 @@ export type ServiceOutputTypes =
|
|
|
475
497
|
| DescribeImagesCommandOutput
|
|
476
498
|
| DescribeSessionsCommandOutput
|
|
477
499
|
| DescribeStacksCommandOutput
|
|
500
|
+
| DescribeThemeForStackCommandOutput
|
|
478
501
|
| DescribeUsageReportSubscriptionsCommandOutput
|
|
479
502
|
| DescribeUserStackAssociationsCommandOutput
|
|
480
503
|
| DescribeUsersCommandOutput
|
|
@@ -503,7 +526,8 @@ export type ServiceOutputTypes =
|
|
|
503
526
|
| UpdateEntitlementCommandOutput
|
|
504
527
|
| UpdateFleetCommandOutput
|
|
505
528
|
| UpdateImagePermissionsCommandOutput
|
|
506
|
-
| UpdateStackCommandOutput
|
|
529
|
+
| UpdateStackCommandOutput
|
|
530
|
+
| UpdateThemeForStackCommandOutput;
|
|
507
531
|
export interface ClientDefaults
|
|
508
532
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
509
533
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
CreateThemeForStackRequest,
|
|
10
|
+
CreateThemeForStackResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateThemeForStackCommandInput
|
|
15
|
+
extends CreateThemeForStackRequest {}
|
|
16
|
+
export interface CreateThemeForStackCommandOutput
|
|
17
|
+
extends CreateThemeForStackResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateThemeForStackCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateThemeForStackCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateThemeForStackCommandInput,
|
|
24
|
+
CreateThemeForStackCommandOutput,
|
|
25
|
+
AppStreamClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateThemeForStackCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateThemeForStackCommandInput,
|
|
33
|
+
CreateThemeForStackCommandOutput,
|
|
34
|
+
AppStreamClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateThemeForStackCommand extends CreateThemeForStackCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
DeleteThemeForStackRequest,
|
|
10
|
+
DeleteThemeForStackResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteThemeForStackCommandInput
|
|
15
|
+
extends DeleteThemeForStackRequest {}
|
|
16
|
+
export interface DeleteThemeForStackCommandOutput
|
|
17
|
+
extends DeleteThemeForStackResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteThemeForStackCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteThemeForStackCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteThemeForStackCommandInput,
|
|
24
|
+
DeleteThemeForStackCommandOutput,
|
|
25
|
+
AppStreamClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteThemeForStackCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteThemeForStackCommandInput,
|
|
33
|
+
DeleteThemeForStackCommandOutput,
|
|
34
|
+
AppStreamClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteThemeForStackCommand extends DeleteThemeForStackCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
DescribeThemeForStackRequest,
|
|
10
|
+
DescribeThemeForStackResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeThemeForStackCommandInput
|
|
15
|
+
extends DescribeThemeForStackRequest {}
|
|
16
|
+
export interface DescribeThemeForStackCommandOutput
|
|
17
|
+
extends DescribeThemeForStackResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeThemeForStackCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeThemeForStackCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeThemeForStackCommandInput,
|
|
24
|
+
DescribeThemeForStackCommandOutput,
|
|
25
|
+
AppStreamClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeThemeForStackCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeThemeForStackCommandInput,
|
|
33
|
+
DescribeThemeForStackCommandOutput,
|
|
34
|
+
AppStreamClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeThemeForStackCommand extends DescribeThemeForStackCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
UpdateThemeForStackRequest,
|
|
10
|
+
UpdateThemeForStackResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateThemeForStackCommandInput
|
|
15
|
+
extends UpdateThemeForStackRequest {}
|
|
16
|
+
export interface UpdateThemeForStackCommandOutput
|
|
17
|
+
extends UpdateThemeForStackResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateThemeForStackCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateThemeForStackCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateThemeForStackCommandInput,
|
|
24
|
+
UpdateThemeForStackCommandOutput,
|
|
25
|
+
AppStreamClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateThemeForStackCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateThemeForStackCommandInput,
|
|
33
|
+
UpdateThemeForStackCommandOutput,
|
|
34
|
+
AppStreamClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateThemeForStackCommand extends UpdateThemeForStackCommand_base {}
|
|
@@ -16,6 +16,7 @@ export * from "./CreateImageBuilderCommand";
|
|
|
16
16
|
export * from "./CreateImageBuilderStreamingURLCommand";
|
|
17
17
|
export * from "./CreateStackCommand";
|
|
18
18
|
export * from "./CreateStreamingURLCommand";
|
|
19
|
+
export * from "./CreateThemeForStackCommand";
|
|
19
20
|
export * from "./CreateUpdatedImageCommand";
|
|
20
21
|
export * from "./CreateUsageReportSubscriptionCommand";
|
|
21
22
|
export * from "./CreateUserCommand";
|
|
@@ -29,6 +30,7 @@ export * from "./DeleteImageBuilderCommand";
|
|
|
29
30
|
export * from "./DeleteImageCommand";
|
|
30
31
|
export * from "./DeleteImagePermissionsCommand";
|
|
31
32
|
export * from "./DeleteStackCommand";
|
|
33
|
+
export * from "./DeleteThemeForStackCommand";
|
|
32
34
|
export * from "./DeleteUsageReportSubscriptionCommand";
|
|
33
35
|
export * from "./DeleteUserCommand";
|
|
34
36
|
export * from "./DescribeAppBlockBuilderAppBlockAssociationsCommand";
|
|
@@ -44,6 +46,7 @@ export * from "./DescribeImagePermissionsCommand";
|
|
|
44
46
|
export * from "./DescribeImagesCommand";
|
|
45
47
|
export * from "./DescribeSessionsCommand";
|
|
46
48
|
export * from "./DescribeStacksCommand";
|
|
49
|
+
export * from "./DescribeThemeForStackCommand";
|
|
47
50
|
export * from "./DescribeUsageReportSubscriptionsCommand";
|
|
48
51
|
export * from "./DescribeUserStackAssociationsCommand";
|
|
49
52
|
export * from "./DescribeUsersCommand";
|
|
@@ -73,3 +76,4 @@ export * from "./UpdateEntitlementCommand";
|
|
|
73
76
|
export * from "./UpdateFleetCommand";
|
|
74
77
|
export * from "./UpdateImagePermissionsCommand";
|
|
75
78
|
export * from "./UpdateStackCommand";
|
|
79
|
+
export * from "./UpdateThemeForStackCommand";
|
|
@@ -599,6 +599,12 @@ export interface CreateImageBuilderRequest {
|
|
|
599
599
|
Tags?: Record<string, string>;
|
|
600
600
|
AccessEndpoints?: AccessEndpoint[];
|
|
601
601
|
}
|
|
602
|
+
export declare const LatestAppstreamAgentVersion: {
|
|
603
|
+
readonly FALSE: "FALSE";
|
|
604
|
+
readonly TRUE: "TRUE";
|
|
605
|
+
};
|
|
606
|
+
export type LatestAppstreamAgentVersion =
|
|
607
|
+
(typeof LatestAppstreamAgentVersion)[keyof typeof LatestAppstreamAgentVersion];
|
|
602
608
|
export interface NetworkAccessConfiguration {
|
|
603
609
|
EniPrivateIpAddress?: string;
|
|
604
610
|
EniId?: string;
|
|
@@ -647,6 +653,7 @@ export interface ImageBuilder {
|
|
|
647
653
|
ImageBuilderErrors?: ResourceError[];
|
|
648
654
|
AppstreamAgentVersion?: string;
|
|
649
655
|
AccessEndpoints?: AccessEndpoint[];
|
|
656
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion;
|
|
650
657
|
}
|
|
651
658
|
export interface CreateImageBuilderResult {
|
|
652
659
|
ImageBuilder?: ImageBuilder;
|
|
@@ -745,6 +752,43 @@ export interface CreateStreamingURLResult {
|
|
|
745
752
|
StreamingURL?: string;
|
|
746
753
|
Expires?: Date;
|
|
747
754
|
}
|
|
755
|
+
export interface ThemeFooterLink {
|
|
756
|
+
DisplayName?: string;
|
|
757
|
+
FooterLinkURL?: string;
|
|
758
|
+
}
|
|
759
|
+
export declare const ThemeStyling: {
|
|
760
|
+
readonly BLUE: "BLUE";
|
|
761
|
+
readonly LIGHT_BLUE: "LIGHT_BLUE";
|
|
762
|
+
readonly PINK: "PINK";
|
|
763
|
+
readonly RED: "RED";
|
|
764
|
+
};
|
|
765
|
+
export type ThemeStyling = (typeof ThemeStyling)[keyof typeof ThemeStyling];
|
|
766
|
+
export interface CreateThemeForStackRequest {
|
|
767
|
+
StackName: string | undefined;
|
|
768
|
+
FooterLinks?: ThemeFooterLink[];
|
|
769
|
+
TitleText: string | undefined;
|
|
770
|
+
ThemeStyling: ThemeStyling | undefined;
|
|
771
|
+
OrganizationLogoS3Location: S3Location | undefined;
|
|
772
|
+
FaviconS3Location: S3Location | undefined;
|
|
773
|
+
}
|
|
774
|
+
export declare const ThemeState: {
|
|
775
|
+
readonly DISABLED: "DISABLED";
|
|
776
|
+
readonly ENABLED: "ENABLED";
|
|
777
|
+
};
|
|
778
|
+
export type ThemeState = (typeof ThemeState)[keyof typeof ThemeState];
|
|
779
|
+
export interface Theme {
|
|
780
|
+
StackName?: string;
|
|
781
|
+
State?: ThemeState;
|
|
782
|
+
ThemeTitleText?: string;
|
|
783
|
+
ThemeStyling?: ThemeStyling;
|
|
784
|
+
ThemeFooterLinks?: ThemeFooterLink[];
|
|
785
|
+
ThemeOrganizationLogoURL?: string;
|
|
786
|
+
ThemeFaviconURL?: string;
|
|
787
|
+
CreatedTime?: Date;
|
|
788
|
+
}
|
|
789
|
+
export interface CreateThemeForStackResult {
|
|
790
|
+
Theme?: Theme;
|
|
791
|
+
}
|
|
748
792
|
export interface CreateUpdatedImageRequest {
|
|
749
793
|
existingImageName: string | undefined;
|
|
750
794
|
newImageName: string | undefined;
|
|
@@ -753,10 +797,22 @@ export interface CreateUpdatedImageRequest {
|
|
|
753
797
|
newImageTags?: Record<string, string>;
|
|
754
798
|
dryRun?: boolean;
|
|
755
799
|
}
|
|
800
|
+
export declare const DynamicAppProvidersEnabled: {
|
|
801
|
+
readonly DISABLED: "DISABLED";
|
|
802
|
+
readonly ENABLED: "ENABLED";
|
|
803
|
+
};
|
|
804
|
+
export type DynamicAppProvidersEnabled =
|
|
805
|
+
(typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
|
|
756
806
|
export interface ImagePermissions {
|
|
757
807
|
allowFleet?: boolean;
|
|
758
808
|
allowImageBuilder?: boolean;
|
|
759
809
|
}
|
|
810
|
+
export declare const ImageSharedWithOthers: {
|
|
811
|
+
readonly FALSE: "FALSE";
|
|
812
|
+
readonly TRUE: "TRUE";
|
|
813
|
+
};
|
|
814
|
+
export type ImageSharedWithOthers =
|
|
815
|
+
(typeof ImageSharedWithOthers)[keyof typeof ImageSharedWithOthers];
|
|
760
816
|
export declare const ImageState: {
|
|
761
817
|
readonly AVAILABLE: "AVAILABLE";
|
|
762
818
|
readonly COPYING: "COPYING";
|
|
@@ -803,6 +859,10 @@ export interface Image {
|
|
|
803
859
|
AppstreamAgentVersion?: string;
|
|
804
860
|
ImagePermissions?: ImagePermissions;
|
|
805
861
|
ImageErrors?: ResourceError[];
|
|
862
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion;
|
|
863
|
+
SupportedInstanceFamilies?: string[];
|
|
864
|
+
DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled;
|
|
865
|
+
ImageSharedWithOthers?: ImageSharedWithOthers;
|
|
806
866
|
}
|
|
807
867
|
export interface CreateUpdatedImageResult {
|
|
808
868
|
image?: Image;
|
|
@@ -885,6 +945,10 @@ export interface DeleteStackRequest {
|
|
|
885
945
|
Name: string | undefined;
|
|
886
946
|
}
|
|
887
947
|
export interface DeleteStackResult {}
|
|
948
|
+
export interface DeleteThemeForStackRequest {
|
|
949
|
+
StackName: string | undefined;
|
|
950
|
+
}
|
|
951
|
+
export interface DeleteThemeForStackResult {}
|
|
888
952
|
export interface DeleteUsageReportSubscriptionRequest {}
|
|
889
953
|
export interface DeleteUsageReportSubscriptionResult {}
|
|
890
954
|
export interface DeleteUserRequest {
|
|
@@ -1047,6 +1111,12 @@ export interface DescribeStacksResult {
|
|
|
1047
1111
|
Stacks?: Stack[];
|
|
1048
1112
|
NextToken?: string;
|
|
1049
1113
|
}
|
|
1114
|
+
export interface DescribeThemeForStackRequest {
|
|
1115
|
+
StackName: string | undefined;
|
|
1116
|
+
}
|
|
1117
|
+
export interface DescribeThemeForStackResult {
|
|
1118
|
+
Theme?: Theme;
|
|
1119
|
+
}
|
|
1050
1120
|
export interface DescribeUsageReportSubscriptionsRequest {
|
|
1051
1121
|
MaxResults?: number;
|
|
1052
1122
|
NextToken?: string;
|
|
@@ -1341,6 +1411,24 @@ export interface UpdateStackRequest {
|
|
|
1341
1411
|
export interface UpdateStackResult {
|
|
1342
1412
|
Stack?: Stack;
|
|
1343
1413
|
}
|
|
1414
|
+
export declare const ThemeAttribute: {
|
|
1415
|
+
readonly FOOTER_LINKS: "FOOTER_LINKS";
|
|
1416
|
+
};
|
|
1417
|
+
export type ThemeAttribute =
|
|
1418
|
+
(typeof ThemeAttribute)[keyof typeof ThemeAttribute];
|
|
1419
|
+
export interface UpdateThemeForStackRequest {
|
|
1420
|
+
StackName: string | undefined;
|
|
1421
|
+
FooterLinks?: ThemeFooterLink[];
|
|
1422
|
+
TitleText?: string;
|
|
1423
|
+
ThemeStyling?: ThemeStyling;
|
|
1424
|
+
OrganizationLogoS3Location?: S3Location;
|
|
1425
|
+
FaviconS3Location?: S3Location;
|
|
1426
|
+
State?: ThemeState;
|
|
1427
|
+
AttributesToDelete?: ThemeAttribute[];
|
|
1428
|
+
}
|
|
1429
|
+
export interface UpdateThemeForStackResult {
|
|
1430
|
+
Theme?: Theme;
|
|
1431
|
+
}
|
|
1344
1432
|
export declare const UserStackAssociationFilterSensitiveLog: (
|
|
1345
1433
|
obj: UserStackAssociation
|
|
1346
1434
|
) => any;
|
|
@@ -75,6 +75,10 @@ import {
|
|
|
75
75
|
CreateStreamingURLCommandInput,
|
|
76
76
|
CreateStreamingURLCommandOutput,
|
|
77
77
|
} from "../commands/CreateStreamingURLCommand";
|
|
78
|
+
import {
|
|
79
|
+
CreateThemeForStackCommandInput,
|
|
80
|
+
CreateThemeForStackCommandOutput,
|
|
81
|
+
} from "../commands/CreateThemeForStackCommand";
|
|
78
82
|
import {
|
|
79
83
|
CreateUpdatedImageCommandInput,
|
|
80
84
|
CreateUpdatedImageCommandOutput,
|
|
@@ -127,6 +131,10 @@ import {
|
|
|
127
131
|
DeleteStackCommandInput,
|
|
128
132
|
DeleteStackCommandOutput,
|
|
129
133
|
} from "../commands/DeleteStackCommand";
|
|
134
|
+
import {
|
|
135
|
+
DeleteThemeForStackCommandInput,
|
|
136
|
+
DeleteThemeForStackCommandOutput,
|
|
137
|
+
} from "../commands/DeleteThemeForStackCommand";
|
|
130
138
|
import {
|
|
131
139
|
DeleteUsageReportSubscriptionCommandInput,
|
|
132
140
|
DeleteUsageReportSubscriptionCommandOutput,
|
|
@@ -187,6 +195,10 @@ import {
|
|
|
187
195
|
DescribeStacksCommandInput,
|
|
188
196
|
DescribeStacksCommandOutput,
|
|
189
197
|
} from "../commands/DescribeStacksCommand";
|
|
198
|
+
import {
|
|
199
|
+
DescribeThemeForStackCommandInput,
|
|
200
|
+
DescribeThemeForStackCommandOutput,
|
|
201
|
+
} from "../commands/DescribeThemeForStackCommand";
|
|
190
202
|
import {
|
|
191
203
|
DescribeUsageReportSubscriptionsCommandInput,
|
|
192
204
|
DescribeUsageReportSubscriptionsCommandOutput,
|
|
@@ -303,6 +315,10 @@ import {
|
|
|
303
315
|
UpdateStackCommandInput,
|
|
304
316
|
UpdateStackCommandOutput,
|
|
305
317
|
} from "../commands/UpdateStackCommand";
|
|
318
|
+
import {
|
|
319
|
+
UpdateThemeForStackCommandInput,
|
|
320
|
+
UpdateThemeForStackCommandOutput,
|
|
321
|
+
} from "../commands/UpdateThemeForStackCommand";
|
|
306
322
|
export declare const se_AssociateAppBlockBuilderAppBlockCommand: (
|
|
307
323
|
input: AssociateAppBlockBuilderAppBlockCommandInput,
|
|
308
324
|
context: __SerdeContext
|
|
@@ -375,6 +391,10 @@ export declare const se_CreateStreamingURLCommand: (
|
|
|
375
391
|
input: CreateStreamingURLCommandInput,
|
|
376
392
|
context: __SerdeContext
|
|
377
393
|
) => Promise<__HttpRequest>;
|
|
394
|
+
export declare const se_CreateThemeForStackCommand: (
|
|
395
|
+
input: CreateThemeForStackCommandInput,
|
|
396
|
+
context: __SerdeContext
|
|
397
|
+
) => Promise<__HttpRequest>;
|
|
378
398
|
export declare const se_CreateUpdatedImageCommand: (
|
|
379
399
|
input: CreateUpdatedImageCommandInput,
|
|
380
400
|
context: __SerdeContext
|
|
@@ -427,6 +447,10 @@ export declare const se_DeleteStackCommand: (
|
|
|
427
447
|
input: DeleteStackCommandInput,
|
|
428
448
|
context: __SerdeContext
|
|
429
449
|
) => Promise<__HttpRequest>;
|
|
450
|
+
export declare const se_DeleteThemeForStackCommand: (
|
|
451
|
+
input: DeleteThemeForStackCommandInput,
|
|
452
|
+
context: __SerdeContext
|
|
453
|
+
) => Promise<__HttpRequest>;
|
|
430
454
|
export declare const se_DeleteUsageReportSubscriptionCommand: (
|
|
431
455
|
input: DeleteUsageReportSubscriptionCommandInput,
|
|
432
456
|
context: __SerdeContext
|
|
@@ -487,6 +511,10 @@ export declare const se_DescribeStacksCommand: (
|
|
|
487
511
|
input: DescribeStacksCommandInput,
|
|
488
512
|
context: __SerdeContext
|
|
489
513
|
) => Promise<__HttpRequest>;
|
|
514
|
+
export declare const se_DescribeThemeForStackCommand: (
|
|
515
|
+
input: DescribeThemeForStackCommandInput,
|
|
516
|
+
context: __SerdeContext
|
|
517
|
+
) => Promise<__HttpRequest>;
|
|
490
518
|
export declare const se_DescribeUsageReportSubscriptionsCommand: (
|
|
491
519
|
input: DescribeUsageReportSubscriptionsCommandInput,
|
|
492
520
|
context: __SerdeContext
|
|
@@ -603,6 +631,10 @@ export declare const se_UpdateStackCommand: (
|
|
|
603
631
|
input: UpdateStackCommandInput,
|
|
604
632
|
context: __SerdeContext
|
|
605
633
|
) => Promise<__HttpRequest>;
|
|
634
|
+
export declare const se_UpdateThemeForStackCommand: (
|
|
635
|
+
input: UpdateThemeForStackCommandInput,
|
|
636
|
+
context: __SerdeContext
|
|
637
|
+
) => Promise<__HttpRequest>;
|
|
606
638
|
export declare const de_AssociateAppBlockBuilderAppBlockCommand: (
|
|
607
639
|
output: __HttpResponse,
|
|
608
640
|
context: __SerdeContext
|
|
@@ -675,6 +707,10 @@ export declare const de_CreateStreamingURLCommand: (
|
|
|
675
707
|
output: __HttpResponse,
|
|
676
708
|
context: __SerdeContext
|
|
677
709
|
) => Promise<CreateStreamingURLCommandOutput>;
|
|
710
|
+
export declare const de_CreateThemeForStackCommand: (
|
|
711
|
+
output: __HttpResponse,
|
|
712
|
+
context: __SerdeContext
|
|
713
|
+
) => Promise<CreateThemeForStackCommandOutput>;
|
|
678
714
|
export declare const de_CreateUpdatedImageCommand: (
|
|
679
715
|
output: __HttpResponse,
|
|
680
716
|
context: __SerdeContext
|
|
@@ -727,6 +763,10 @@ export declare const de_DeleteStackCommand: (
|
|
|
727
763
|
output: __HttpResponse,
|
|
728
764
|
context: __SerdeContext
|
|
729
765
|
) => Promise<DeleteStackCommandOutput>;
|
|
766
|
+
export declare const de_DeleteThemeForStackCommand: (
|
|
767
|
+
output: __HttpResponse,
|
|
768
|
+
context: __SerdeContext
|
|
769
|
+
) => Promise<DeleteThemeForStackCommandOutput>;
|
|
730
770
|
export declare const de_DeleteUsageReportSubscriptionCommand: (
|
|
731
771
|
output: __HttpResponse,
|
|
732
772
|
context: __SerdeContext
|
|
@@ -787,6 +827,10 @@ export declare const de_DescribeStacksCommand: (
|
|
|
787
827
|
output: __HttpResponse,
|
|
788
828
|
context: __SerdeContext
|
|
789
829
|
) => Promise<DescribeStacksCommandOutput>;
|
|
830
|
+
export declare const de_DescribeThemeForStackCommand: (
|
|
831
|
+
output: __HttpResponse,
|
|
832
|
+
context: __SerdeContext
|
|
833
|
+
) => Promise<DescribeThemeForStackCommandOutput>;
|
|
790
834
|
export declare const de_DescribeUsageReportSubscriptionsCommand: (
|
|
791
835
|
output: __HttpResponse,
|
|
792
836
|
context: __SerdeContext
|
|
@@ -903,3 +947,7 @@ export declare const de_UpdateStackCommand: (
|
|
|
903
947
|
output: __HttpResponse,
|
|
904
948
|
context: __SerdeContext
|
|
905
949
|
) => Promise<UpdateStackCommandOutput>;
|
|
950
|
+
export declare const de_UpdateThemeForStackCommand: (
|
|
951
|
+
output: __HttpResponse,
|
|
952
|
+
context: __SerdeContext
|
|
953
|
+
) => Promise<UpdateThemeForStackCommandOutput>;
|
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.630.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,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.629.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.629.0",
|
|
25
|
+
"@aws-sdk/core": "3.629.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.629.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|