@aws-sdk/client-appstream 3.629.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 +1 -1
|
@@ -1853,6 +1853,27 @@ export interface CreateFleetRequest {
|
|
|
1853
1853
|
* <p>stream.graphics.g4dn.16xlarge</p>
|
|
1854
1854
|
* </li>
|
|
1855
1855
|
* <li>
|
|
1856
|
+
* <p>stream.graphics.g5.xlarge</p>
|
|
1857
|
+
* </li>
|
|
1858
|
+
* <li>
|
|
1859
|
+
* <p>stream.graphics.g5.2xlarge</p>
|
|
1860
|
+
* </li>
|
|
1861
|
+
* <li>
|
|
1862
|
+
* <p>stream.graphics.g5.4xlarge</p>
|
|
1863
|
+
* </li>
|
|
1864
|
+
* <li>
|
|
1865
|
+
* <p>stream.graphics.g5.8xlarge</p>
|
|
1866
|
+
* </li>
|
|
1867
|
+
* <li>
|
|
1868
|
+
* <p>stream.graphics.g5.12xlarge</p>
|
|
1869
|
+
* </li>
|
|
1870
|
+
* <li>
|
|
1871
|
+
* <p>stream.graphics.g5.16xlarge</p>
|
|
1872
|
+
* </li>
|
|
1873
|
+
* <li>
|
|
1874
|
+
* <p>stream.graphics.g5.24xlarge</p>
|
|
1875
|
+
* </li>
|
|
1876
|
+
* <li>
|
|
1856
1877
|
* <p>stream.graphics-pro.4xlarge</p>
|
|
1857
1878
|
* </li>
|
|
1858
1879
|
* <li>
|
|
@@ -2488,6 +2509,18 @@ export interface CreateImageBuilderRequest {
|
|
|
2488
2509
|
*/
|
|
2489
2510
|
AccessEndpoints?: AccessEndpoint[];
|
|
2490
2511
|
}
|
|
2512
|
+
/**
|
|
2513
|
+
* @public
|
|
2514
|
+
* @enum
|
|
2515
|
+
*/
|
|
2516
|
+
export declare const LatestAppstreamAgentVersion: {
|
|
2517
|
+
readonly FALSE: "FALSE";
|
|
2518
|
+
readonly TRUE: "TRUE";
|
|
2519
|
+
};
|
|
2520
|
+
/**
|
|
2521
|
+
* @public
|
|
2522
|
+
*/
|
|
2523
|
+
export type LatestAppstreamAgentVersion = (typeof LatestAppstreamAgentVersion)[keyof typeof LatestAppstreamAgentVersion];
|
|
2491
2524
|
/**
|
|
2492
2525
|
* <p>Describes the network details of the fleet or image builder instance.</p>
|
|
2493
2526
|
* @public
|
|
@@ -2750,6 +2783,11 @@ export interface ImageBuilder {
|
|
|
2750
2783
|
* @public
|
|
2751
2784
|
*/
|
|
2752
2785
|
AccessEndpoints?: AccessEndpoint[];
|
|
2786
|
+
/**
|
|
2787
|
+
* <p>Indicates whether the image builder is using the latest AppStream 2.0 agent version or not.</p>
|
|
2788
|
+
* @public
|
|
2789
|
+
*/
|
|
2790
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion;
|
|
2753
2791
|
}
|
|
2754
2792
|
/**
|
|
2755
2793
|
* @public
|
|
@@ -3120,6 +3158,139 @@ export interface CreateStreamingURLResult {
|
|
|
3120
3158
|
*/
|
|
3121
3159
|
Expires?: Date;
|
|
3122
3160
|
}
|
|
3161
|
+
/**
|
|
3162
|
+
* <p>The website links that display in the catalog page footer.</p>
|
|
3163
|
+
* @public
|
|
3164
|
+
*/
|
|
3165
|
+
export interface ThemeFooterLink {
|
|
3166
|
+
/**
|
|
3167
|
+
* <p>The name of the websites that display in the catalog page footer.</p>
|
|
3168
|
+
* @public
|
|
3169
|
+
*/
|
|
3170
|
+
DisplayName?: string;
|
|
3171
|
+
/**
|
|
3172
|
+
* <p>The URL of the websites that display in the catalog page footer.</p>
|
|
3173
|
+
* @public
|
|
3174
|
+
*/
|
|
3175
|
+
FooterLinkURL?: string;
|
|
3176
|
+
}
|
|
3177
|
+
/**
|
|
3178
|
+
* @public
|
|
3179
|
+
* @enum
|
|
3180
|
+
*/
|
|
3181
|
+
export declare const ThemeStyling: {
|
|
3182
|
+
readonly BLUE: "BLUE";
|
|
3183
|
+
readonly LIGHT_BLUE: "LIGHT_BLUE";
|
|
3184
|
+
readonly PINK: "PINK";
|
|
3185
|
+
readonly RED: "RED";
|
|
3186
|
+
};
|
|
3187
|
+
/**
|
|
3188
|
+
* @public
|
|
3189
|
+
*/
|
|
3190
|
+
export type ThemeStyling = (typeof ThemeStyling)[keyof typeof ThemeStyling];
|
|
3191
|
+
/**
|
|
3192
|
+
* @public
|
|
3193
|
+
*/
|
|
3194
|
+
export interface CreateThemeForStackRequest {
|
|
3195
|
+
/**
|
|
3196
|
+
* <p>The name of the stack for the theme.</p>
|
|
3197
|
+
* @public
|
|
3198
|
+
*/
|
|
3199
|
+
StackName: string | undefined;
|
|
3200
|
+
/**
|
|
3201
|
+
* <p>The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.</p>
|
|
3202
|
+
* @public
|
|
3203
|
+
*/
|
|
3204
|
+
FooterLinks?: ThemeFooterLink[];
|
|
3205
|
+
/**
|
|
3206
|
+
* <p>The title that is displayed at the top of the browser tab during users' application streaming sessions.</p>
|
|
3207
|
+
* @public
|
|
3208
|
+
*/
|
|
3209
|
+
TitleText: string | undefined;
|
|
3210
|
+
/**
|
|
3211
|
+
* <p>The color theme that is applied to website links, text, and buttons. These colors are also applied as accents in the background for the streaming application catalog page.</p>
|
|
3212
|
+
* @public
|
|
3213
|
+
*/
|
|
3214
|
+
ThemeStyling: ThemeStyling | undefined;
|
|
3215
|
+
/**
|
|
3216
|
+
* <p>The organization logo that appears on the streaming application catalog page.</p>
|
|
3217
|
+
* @public
|
|
3218
|
+
*/
|
|
3219
|
+
OrganizationLogoS3Location: S3Location | undefined;
|
|
3220
|
+
/**
|
|
3221
|
+
* <p>The S3 location of the favicon. The favicon enables users to recognize their application streaming site in a browser full of tabs or bookmarks. It is displayed at the top of the browser tab for the application streaming site during users' streaming sessions.</p>
|
|
3222
|
+
* @public
|
|
3223
|
+
*/
|
|
3224
|
+
FaviconS3Location: S3Location | undefined;
|
|
3225
|
+
}
|
|
3226
|
+
/**
|
|
3227
|
+
* @public
|
|
3228
|
+
* @enum
|
|
3229
|
+
*/
|
|
3230
|
+
export declare const ThemeState: {
|
|
3231
|
+
readonly DISABLED: "DISABLED";
|
|
3232
|
+
readonly ENABLED: "ENABLED";
|
|
3233
|
+
};
|
|
3234
|
+
/**
|
|
3235
|
+
* @public
|
|
3236
|
+
*/
|
|
3237
|
+
export type ThemeState = (typeof ThemeState)[keyof typeof ThemeState];
|
|
3238
|
+
/**
|
|
3239
|
+
* <p>The custom branding theme, which might include a custom logo, website links, and other branding to display to users.</p>
|
|
3240
|
+
* @public
|
|
3241
|
+
*/
|
|
3242
|
+
export interface Theme {
|
|
3243
|
+
/**
|
|
3244
|
+
* <p>The stack that has the custom branding theme.</p>
|
|
3245
|
+
* @public
|
|
3246
|
+
*/
|
|
3247
|
+
StackName?: string;
|
|
3248
|
+
/**
|
|
3249
|
+
* <p>The state of the theme.</p>
|
|
3250
|
+
* @public
|
|
3251
|
+
*/
|
|
3252
|
+
State?: ThemeState;
|
|
3253
|
+
/**
|
|
3254
|
+
* <p>The browser tab page title.</p>
|
|
3255
|
+
* @public
|
|
3256
|
+
*/
|
|
3257
|
+
ThemeTitleText?: string;
|
|
3258
|
+
/**
|
|
3259
|
+
* <p>The color that is used for the website links, text, buttons, and catalog page background.</p>
|
|
3260
|
+
* @public
|
|
3261
|
+
*/
|
|
3262
|
+
ThemeStyling?: ThemeStyling;
|
|
3263
|
+
/**
|
|
3264
|
+
* <p>The website links that display in the catalog page footer.</p>
|
|
3265
|
+
* @public
|
|
3266
|
+
*/
|
|
3267
|
+
ThemeFooterLinks?: ThemeFooterLink[];
|
|
3268
|
+
/**
|
|
3269
|
+
* <p>The URL of the logo that displays in the catalog page header.</p>
|
|
3270
|
+
* @public
|
|
3271
|
+
*/
|
|
3272
|
+
ThemeOrganizationLogoURL?: string;
|
|
3273
|
+
/**
|
|
3274
|
+
* <p>The URL of the icon that displays at the top of a user's browser tab during streaming sessions.</p>
|
|
3275
|
+
* @public
|
|
3276
|
+
*/
|
|
3277
|
+
ThemeFaviconURL?: string;
|
|
3278
|
+
/**
|
|
3279
|
+
* <p>The time the theme was created.</p>
|
|
3280
|
+
* @public
|
|
3281
|
+
*/
|
|
3282
|
+
CreatedTime?: Date;
|
|
3283
|
+
}
|
|
3284
|
+
/**
|
|
3285
|
+
* @public
|
|
3286
|
+
*/
|
|
3287
|
+
export interface CreateThemeForStackResult {
|
|
3288
|
+
/**
|
|
3289
|
+
* <p> The theme object that contains the metadata of the custom branding.</p>
|
|
3290
|
+
* @public
|
|
3291
|
+
*/
|
|
3292
|
+
Theme?: Theme;
|
|
3293
|
+
}
|
|
3123
3294
|
/**
|
|
3124
3295
|
* @public
|
|
3125
3296
|
*/
|
|
@@ -3159,6 +3330,18 @@ export interface CreateUpdatedImageRequest {
|
|
|
3159
3330
|
*/
|
|
3160
3331
|
dryRun?: boolean;
|
|
3161
3332
|
}
|
|
3333
|
+
/**
|
|
3334
|
+
* @public
|
|
3335
|
+
* @enum
|
|
3336
|
+
*/
|
|
3337
|
+
export declare const DynamicAppProvidersEnabled: {
|
|
3338
|
+
readonly DISABLED: "DISABLED";
|
|
3339
|
+
readonly ENABLED: "ENABLED";
|
|
3340
|
+
};
|
|
3341
|
+
/**
|
|
3342
|
+
* @public
|
|
3343
|
+
*/
|
|
3344
|
+
export type DynamicAppProvidersEnabled = (typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
|
|
3162
3345
|
/**
|
|
3163
3346
|
* <p>Describes the permissions for an image. </p>
|
|
3164
3347
|
* @public
|
|
@@ -3175,6 +3358,18 @@ export interface ImagePermissions {
|
|
|
3175
3358
|
*/
|
|
3176
3359
|
allowImageBuilder?: boolean;
|
|
3177
3360
|
}
|
|
3361
|
+
/**
|
|
3362
|
+
* @public
|
|
3363
|
+
* @enum
|
|
3364
|
+
*/
|
|
3365
|
+
export declare const ImageSharedWithOthers: {
|
|
3366
|
+
readonly FALSE: "FALSE";
|
|
3367
|
+
readonly TRUE: "TRUE";
|
|
3368
|
+
};
|
|
3369
|
+
/**
|
|
3370
|
+
* @public
|
|
3371
|
+
*/
|
|
3372
|
+
export type ImageSharedWithOthers = (typeof ImageSharedWithOthers)[keyof typeof ImageSharedWithOthers];
|
|
3178
3373
|
/**
|
|
3179
3374
|
* @public
|
|
3180
3375
|
* @enum
|
|
@@ -3326,6 +3521,52 @@ export interface Image {
|
|
|
3326
3521
|
* @public
|
|
3327
3522
|
*/
|
|
3328
3523
|
ImageErrors?: ResourceError[];
|
|
3524
|
+
/**
|
|
3525
|
+
* <p>Indicates whether the image is using the latest AppStream 2.0 agent version or not.</p>
|
|
3526
|
+
* @public
|
|
3527
|
+
*/
|
|
3528
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion;
|
|
3529
|
+
/**
|
|
3530
|
+
* <p>The supported instances families that determine which image a customer can use when the customer launches a fleet or image builder. The following instances families are supported:</p>
|
|
3531
|
+
* <ul>
|
|
3532
|
+
* <li>
|
|
3533
|
+
* <p>General Purpose</p>
|
|
3534
|
+
* </li>
|
|
3535
|
+
* <li>
|
|
3536
|
+
* <p>Compute Optimized</p>
|
|
3537
|
+
* </li>
|
|
3538
|
+
* <li>
|
|
3539
|
+
* <p>Memory Optimized</p>
|
|
3540
|
+
* </li>
|
|
3541
|
+
* <li>
|
|
3542
|
+
* <p>Graphics</p>
|
|
3543
|
+
* </li>
|
|
3544
|
+
* <li>
|
|
3545
|
+
* <p>Graphics Design</p>
|
|
3546
|
+
* </li>
|
|
3547
|
+
* <li>
|
|
3548
|
+
* <p>Graphics Pro</p>
|
|
3549
|
+
* </li>
|
|
3550
|
+
* <li>
|
|
3551
|
+
* <p>Graphics G4</p>
|
|
3552
|
+
* </li>
|
|
3553
|
+
* <li>
|
|
3554
|
+
* <p>Graphics G5</p>
|
|
3555
|
+
* </li>
|
|
3556
|
+
* </ul>
|
|
3557
|
+
* @public
|
|
3558
|
+
*/
|
|
3559
|
+
SupportedInstanceFamilies?: string[];
|
|
3560
|
+
/**
|
|
3561
|
+
* <p>Indicates whether dynamic app providers are enabled within an AppStream 2.0 image or not.</p>
|
|
3562
|
+
* @public
|
|
3563
|
+
*/
|
|
3564
|
+
DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled;
|
|
3565
|
+
/**
|
|
3566
|
+
* <p>Indicates whether the image is shared with another account ID.</p>
|
|
3567
|
+
* @public
|
|
3568
|
+
*/
|
|
3569
|
+
ImageSharedWithOthers?: ImageSharedWithOthers;
|
|
3329
3570
|
}
|
|
3330
3571
|
/**
|
|
3331
3572
|
* @public
|
|
@@ -3618,6 +3859,21 @@ export interface DeleteStackRequest {
|
|
|
3618
3859
|
*/
|
|
3619
3860
|
export interface DeleteStackResult {
|
|
3620
3861
|
}
|
|
3862
|
+
/**
|
|
3863
|
+
* @public
|
|
3864
|
+
*/
|
|
3865
|
+
export interface DeleteThemeForStackRequest {
|
|
3866
|
+
/**
|
|
3867
|
+
* <p>The name of the stack for the theme.</p>
|
|
3868
|
+
* @public
|
|
3869
|
+
*/
|
|
3870
|
+
StackName: string | undefined;
|
|
3871
|
+
}
|
|
3872
|
+
/**
|
|
3873
|
+
* @public
|
|
3874
|
+
*/
|
|
3875
|
+
export interface DeleteThemeForStackResult {
|
|
3876
|
+
}
|
|
3621
3877
|
/**
|
|
3622
3878
|
* @public
|
|
3623
3879
|
*/
|
|
@@ -4267,6 +4523,26 @@ export interface DescribeStacksResult {
|
|
|
4267
4523
|
*/
|
|
4268
4524
|
NextToken?: string;
|
|
4269
4525
|
}
|
|
4526
|
+
/**
|
|
4527
|
+
* @public
|
|
4528
|
+
*/
|
|
4529
|
+
export interface DescribeThemeForStackRequest {
|
|
4530
|
+
/**
|
|
4531
|
+
* <p>The name of the stack for the theme.</p>
|
|
4532
|
+
* @public
|
|
4533
|
+
*/
|
|
4534
|
+
StackName: string | undefined;
|
|
4535
|
+
}
|
|
4536
|
+
/**
|
|
4537
|
+
* @public
|
|
4538
|
+
*/
|
|
4539
|
+
export interface DescribeThemeForStackResult {
|
|
4540
|
+
/**
|
|
4541
|
+
* <p> The theme object that contains the metadata of the custom branding.</p>
|
|
4542
|
+
* @public
|
|
4543
|
+
*/
|
|
4544
|
+
Theme?: Theme;
|
|
4545
|
+
}
|
|
4270
4546
|
/**
|
|
4271
4547
|
* @public
|
|
4272
4548
|
*/
|
|
@@ -5589,6 +5865,72 @@ export interface UpdateStackResult {
|
|
|
5589
5865
|
*/
|
|
5590
5866
|
Stack?: Stack;
|
|
5591
5867
|
}
|
|
5868
|
+
/**
|
|
5869
|
+
* @public
|
|
5870
|
+
* @enum
|
|
5871
|
+
*/
|
|
5872
|
+
export declare const ThemeAttribute: {
|
|
5873
|
+
readonly FOOTER_LINKS: "FOOTER_LINKS";
|
|
5874
|
+
};
|
|
5875
|
+
/**
|
|
5876
|
+
* @public
|
|
5877
|
+
*/
|
|
5878
|
+
export type ThemeAttribute = (typeof ThemeAttribute)[keyof typeof ThemeAttribute];
|
|
5879
|
+
/**
|
|
5880
|
+
* @public
|
|
5881
|
+
*/
|
|
5882
|
+
export interface UpdateThemeForStackRequest {
|
|
5883
|
+
/**
|
|
5884
|
+
* <p>The name of the stack for the theme.</p>
|
|
5885
|
+
* @public
|
|
5886
|
+
*/
|
|
5887
|
+
StackName: string | undefined;
|
|
5888
|
+
/**
|
|
5889
|
+
* <p>The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.</p>
|
|
5890
|
+
* @public
|
|
5891
|
+
*/
|
|
5892
|
+
FooterLinks?: ThemeFooterLink[];
|
|
5893
|
+
/**
|
|
5894
|
+
* <p>The title that is displayed at the top of the browser tab during users' application streaming sessions.</p>
|
|
5895
|
+
* @public
|
|
5896
|
+
*/
|
|
5897
|
+
TitleText?: string;
|
|
5898
|
+
/**
|
|
5899
|
+
* <p>The color theme that is applied to website links, text, and buttons. These colors are also applied as accents in the background for the streaming application catalog page.</p>
|
|
5900
|
+
* @public
|
|
5901
|
+
*/
|
|
5902
|
+
ThemeStyling?: ThemeStyling;
|
|
5903
|
+
/**
|
|
5904
|
+
* <p>The organization logo that appears on the streaming application catalog page.</p>
|
|
5905
|
+
* @public
|
|
5906
|
+
*/
|
|
5907
|
+
OrganizationLogoS3Location?: S3Location;
|
|
5908
|
+
/**
|
|
5909
|
+
* <p>The S3 location of the favicon. The favicon enables users to recognize their application streaming site in a browser full of tabs or bookmarks. It is displayed at the top of the browser tab for the application streaming site during users' streaming sessions.</p>
|
|
5910
|
+
* @public
|
|
5911
|
+
*/
|
|
5912
|
+
FaviconS3Location?: S3Location;
|
|
5913
|
+
/**
|
|
5914
|
+
* <p>Specifies whether custom branding should be applied to catalog page or not.</p>
|
|
5915
|
+
* @public
|
|
5916
|
+
*/
|
|
5917
|
+
State?: ThemeState;
|
|
5918
|
+
/**
|
|
5919
|
+
* <p>The attributes to delete.</p>
|
|
5920
|
+
* @public
|
|
5921
|
+
*/
|
|
5922
|
+
AttributesToDelete?: ThemeAttribute[];
|
|
5923
|
+
}
|
|
5924
|
+
/**
|
|
5925
|
+
* @public
|
|
5926
|
+
*/
|
|
5927
|
+
export interface UpdateThemeForStackResult {
|
|
5928
|
+
/**
|
|
5929
|
+
* <p> The theme object that contains the metadata of the custom branding.</p>
|
|
5930
|
+
* @public
|
|
5931
|
+
*/
|
|
5932
|
+
Theme?: Theme;
|
|
5933
|
+
}
|
|
5592
5934
|
/**
|
|
5593
5935
|
* @internal
|
|
5594
5936
|
*/
|
|
@@ -18,6 +18,7 @@ import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from
|
|
|
18
18
|
import { CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput } from "../commands/CreateImageBuilderStreamingURLCommand";
|
|
19
19
|
import { CreateStackCommandInput, CreateStackCommandOutput } from "../commands/CreateStackCommand";
|
|
20
20
|
import { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from "../commands/CreateStreamingURLCommand";
|
|
21
|
+
import { CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput } from "../commands/CreateThemeForStackCommand";
|
|
21
22
|
import { CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput } from "../commands/CreateUpdatedImageCommand";
|
|
22
23
|
import { CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput } from "../commands/CreateUsageReportSubscriptionCommand";
|
|
23
24
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
@@ -31,6 +32,7 @@ import { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from
|
|
|
31
32
|
import { DeleteImageCommandInput, DeleteImageCommandOutput } from "../commands/DeleteImageCommand";
|
|
32
33
|
import { DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput } from "../commands/DeleteImagePermissionsCommand";
|
|
33
34
|
import { DeleteStackCommandInput, DeleteStackCommandOutput } from "../commands/DeleteStackCommand";
|
|
35
|
+
import { DeleteThemeForStackCommandInput, DeleteThemeForStackCommandOutput } from "../commands/DeleteThemeForStackCommand";
|
|
34
36
|
import { DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput } from "../commands/DeleteUsageReportSubscriptionCommand";
|
|
35
37
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
36
38
|
import { DescribeAppBlockBuilderAppBlockAssociationsCommandInput, DescribeAppBlockBuilderAppBlockAssociationsCommandOutput } from "../commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
|
|
@@ -46,6 +48,7 @@ import { DescribeImagePermissionsCommandInput, DescribeImagePermissionsCommandOu
|
|
|
46
48
|
import { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "../commands/DescribeImagesCommand";
|
|
47
49
|
import { DescribeSessionsCommandInput, DescribeSessionsCommandOutput } from "../commands/DescribeSessionsCommand";
|
|
48
50
|
import { DescribeStacksCommandInput, DescribeStacksCommandOutput } from "../commands/DescribeStacksCommand";
|
|
51
|
+
import { DescribeThemeForStackCommandInput, DescribeThemeForStackCommandOutput } from "../commands/DescribeThemeForStackCommand";
|
|
49
52
|
import { DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput } from "../commands/DescribeUsageReportSubscriptionsCommand";
|
|
50
53
|
import { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "../commands/DescribeUsersCommand";
|
|
51
54
|
import { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "../commands/DescribeUserStackAssociationsCommand";
|
|
@@ -75,6 +78,7 @@ import { UpdateEntitlementCommandInput, UpdateEntitlementCommandOutput } from ".
|
|
|
75
78
|
import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "../commands/UpdateFleetCommand";
|
|
76
79
|
import { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "../commands/UpdateImagePermissionsCommand";
|
|
77
80
|
import { UpdateStackCommandInput, UpdateStackCommandOutput } from "../commands/UpdateStackCommand";
|
|
81
|
+
import { UpdateThemeForStackCommandInput, UpdateThemeForStackCommandOutput } from "../commands/UpdateThemeForStackCommand";
|
|
78
82
|
/**
|
|
79
83
|
* serializeAws_json1_1AssociateAppBlockBuilderAppBlockCommand
|
|
80
84
|
*/
|
|
@@ -147,6 +151,10 @@ export declare const se_CreateStackCommand: (input: CreateStackCommandInput, con
|
|
|
147
151
|
* serializeAws_json1_1CreateStreamingURLCommand
|
|
148
152
|
*/
|
|
149
153
|
export declare const se_CreateStreamingURLCommand: (input: CreateStreamingURLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
|
+
/**
|
|
155
|
+
* serializeAws_json1_1CreateThemeForStackCommand
|
|
156
|
+
*/
|
|
157
|
+
export declare const se_CreateThemeForStackCommand: (input: CreateThemeForStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
158
|
/**
|
|
151
159
|
* serializeAws_json1_1CreateUpdatedImageCommand
|
|
152
160
|
*/
|
|
@@ -199,6 +207,10 @@ export declare const se_DeleteImagePermissionsCommand: (input: DeleteImagePermis
|
|
|
199
207
|
* serializeAws_json1_1DeleteStackCommand
|
|
200
208
|
*/
|
|
201
209
|
export declare const se_DeleteStackCommand: (input: DeleteStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
210
|
+
/**
|
|
211
|
+
* serializeAws_json1_1DeleteThemeForStackCommand
|
|
212
|
+
*/
|
|
213
|
+
export declare const se_DeleteThemeForStackCommand: (input: DeleteThemeForStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
202
214
|
/**
|
|
203
215
|
* serializeAws_json1_1DeleteUsageReportSubscriptionCommand
|
|
204
216
|
*/
|
|
@@ -259,6 +271,10 @@ export declare const se_DescribeSessionsCommand: (input: DescribeSessionsCommand
|
|
|
259
271
|
* serializeAws_json1_1DescribeStacksCommand
|
|
260
272
|
*/
|
|
261
273
|
export declare const se_DescribeStacksCommand: (input: DescribeStacksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
274
|
+
/**
|
|
275
|
+
* serializeAws_json1_1DescribeThemeForStackCommand
|
|
276
|
+
*/
|
|
277
|
+
export declare const se_DescribeThemeForStackCommand: (input: DescribeThemeForStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
262
278
|
/**
|
|
263
279
|
* serializeAws_json1_1DescribeUsageReportSubscriptionsCommand
|
|
264
280
|
*/
|
|
@@ -375,6 +391,10 @@ export declare const se_UpdateImagePermissionsCommand: (input: UpdateImagePermis
|
|
|
375
391
|
* serializeAws_json1_1UpdateStackCommand
|
|
376
392
|
*/
|
|
377
393
|
export declare const se_UpdateStackCommand: (input: UpdateStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
394
|
+
/**
|
|
395
|
+
* serializeAws_json1_1UpdateThemeForStackCommand
|
|
396
|
+
*/
|
|
397
|
+
export declare const se_UpdateThemeForStackCommand: (input: UpdateThemeForStackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
378
398
|
/**
|
|
379
399
|
* deserializeAws_json1_1AssociateAppBlockBuilderAppBlockCommand
|
|
380
400
|
*/
|
|
@@ -447,6 +467,10 @@ export declare const de_CreateStackCommand: (output: __HttpResponse, context: __
|
|
|
447
467
|
* deserializeAws_json1_1CreateStreamingURLCommand
|
|
448
468
|
*/
|
|
449
469
|
export declare const de_CreateStreamingURLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamingURLCommandOutput>;
|
|
470
|
+
/**
|
|
471
|
+
* deserializeAws_json1_1CreateThemeForStackCommand
|
|
472
|
+
*/
|
|
473
|
+
export declare const de_CreateThemeForStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateThemeForStackCommandOutput>;
|
|
450
474
|
/**
|
|
451
475
|
* deserializeAws_json1_1CreateUpdatedImageCommand
|
|
452
476
|
*/
|
|
@@ -499,6 +523,10 @@ export declare const de_DeleteImagePermissionsCommand: (output: __HttpResponse,
|
|
|
499
523
|
* deserializeAws_json1_1DeleteStackCommand
|
|
500
524
|
*/
|
|
501
525
|
export declare const de_DeleteStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStackCommandOutput>;
|
|
526
|
+
/**
|
|
527
|
+
* deserializeAws_json1_1DeleteThemeForStackCommand
|
|
528
|
+
*/
|
|
529
|
+
export declare const de_DeleteThemeForStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteThemeForStackCommandOutput>;
|
|
502
530
|
/**
|
|
503
531
|
* deserializeAws_json1_1DeleteUsageReportSubscriptionCommand
|
|
504
532
|
*/
|
|
@@ -559,6 +587,10 @@ export declare const de_DescribeSessionsCommand: (output: __HttpResponse, contex
|
|
|
559
587
|
* deserializeAws_json1_1DescribeStacksCommand
|
|
560
588
|
*/
|
|
561
589
|
export declare const de_DescribeStacksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStacksCommandOutput>;
|
|
590
|
+
/**
|
|
591
|
+
* deserializeAws_json1_1DescribeThemeForStackCommand
|
|
592
|
+
*/
|
|
593
|
+
export declare const de_DescribeThemeForStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeThemeForStackCommandOutput>;
|
|
562
594
|
/**
|
|
563
595
|
* deserializeAws_json1_1DescribeUsageReportSubscriptionsCommand
|
|
564
596
|
*/
|
|
@@ -675,3 +707,7 @@ export declare const de_UpdateImagePermissionsCommand: (output: __HttpResponse,
|
|
|
675
707
|
* deserializeAws_json1_1UpdateStackCommand
|
|
676
708
|
*/
|
|
677
709
|
export declare const de_UpdateStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStackCommandOutput>;
|
|
710
|
+
/**
|
|
711
|
+
* deserializeAws_json1_1UpdateThemeForStackCommand
|
|
712
|
+
*/
|
|
713
|
+
export declare const de_UpdateThemeForStackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateThemeForStackCommandOutput>;
|
|
@@ -72,6 +72,10 @@ import {
|
|
|
72
72
|
CreateStreamingURLCommandInput,
|
|
73
73
|
CreateStreamingURLCommandOutput,
|
|
74
74
|
} from "./commands/CreateStreamingURLCommand";
|
|
75
|
+
import {
|
|
76
|
+
CreateThemeForStackCommandInput,
|
|
77
|
+
CreateThemeForStackCommandOutput,
|
|
78
|
+
} from "./commands/CreateThemeForStackCommand";
|
|
75
79
|
import {
|
|
76
80
|
CreateUpdatedImageCommandInput,
|
|
77
81
|
CreateUpdatedImageCommandOutput,
|
|
@@ -124,6 +128,10 @@ import {
|
|
|
124
128
|
DeleteStackCommandInput,
|
|
125
129
|
DeleteStackCommandOutput,
|
|
126
130
|
} from "./commands/DeleteStackCommand";
|
|
131
|
+
import {
|
|
132
|
+
DeleteThemeForStackCommandInput,
|
|
133
|
+
DeleteThemeForStackCommandOutput,
|
|
134
|
+
} from "./commands/DeleteThemeForStackCommand";
|
|
127
135
|
import {
|
|
128
136
|
DeleteUsageReportSubscriptionCommandInput,
|
|
129
137
|
DeleteUsageReportSubscriptionCommandOutput,
|
|
@@ -184,6 +192,10 @@ import {
|
|
|
184
192
|
DescribeStacksCommandInput,
|
|
185
193
|
DescribeStacksCommandOutput,
|
|
186
194
|
} from "./commands/DescribeStacksCommand";
|
|
195
|
+
import {
|
|
196
|
+
DescribeThemeForStackCommandInput,
|
|
197
|
+
DescribeThemeForStackCommandOutput,
|
|
198
|
+
} from "./commands/DescribeThemeForStackCommand";
|
|
187
199
|
import {
|
|
188
200
|
DescribeUsageReportSubscriptionsCommandInput,
|
|
189
201
|
DescribeUsageReportSubscriptionsCommandOutput,
|
|
@@ -300,6 +312,10 @@ import {
|
|
|
300
312
|
UpdateStackCommandInput,
|
|
301
313
|
UpdateStackCommandOutput,
|
|
302
314
|
} from "./commands/UpdateStackCommand";
|
|
315
|
+
import {
|
|
316
|
+
UpdateThemeForStackCommandInput,
|
|
317
|
+
UpdateThemeForStackCommandOutput,
|
|
318
|
+
} from "./commands/UpdateThemeForStackCommand";
|
|
303
319
|
export interface AppStream {
|
|
304
320
|
associateAppBlockBuilderAppBlock(
|
|
305
321
|
args: AssociateAppBlockBuilderAppBlockCommandInput,
|
|
@@ -547,6 +563,19 @@ export interface AppStream {
|
|
|
547
563
|
options: __HttpHandlerOptions,
|
|
548
564
|
cb: (err: any, data?: CreateStreamingURLCommandOutput) => void
|
|
549
565
|
): void;
|
|
566
|
+
createThemeForStack(
|
|
567
|
+
args: CreateThemeForStackCommandInput,
|
|
568
|
+
options?: __HttpHandlerOptions
|
|
569
|
+
): Promise<CreateThemeForStackCommandOutput>;
|
|
570
|
+
createThemeForStack(
|
|
571
|
+
args: CreateThemeForStackCommandInput,
|
|
572
|
+
cb: (err: any, data?: CreateThemeForStackCommandOutput) => void
|
|
573
|
+
): void;
|
|
574
|
+
createThemeForStack(
|
|
575
|
+
args: CreateThemeForStackCommandInput,
|
|
576
|
+
options: __HttpHandlerOptions,
|
|
577
|
+
cb: (err: any, data?: CreateThemeForStackCommandOutput) => void
|
|
578
|
+
): void;
|
|
550
579
|
createUpdatedImage(
|
|
551
580
|
args: CreateUpdatedImageCommandInput,
|
|
552
581
|
options?: __HttpHandlerOptions
|
|
@@ -717,6 +746,19 @@ export interface AppStream {
|
|
|
717
746
|
options: __HttpHandlerOptions,
|
|
718
747
|
cb: (err: any, data?: DeleteStackCommandOutput) => void
|
|
719
748
|
): void;
|
|
749
|
+
deleteThemeForStack(
|
|
750
|
+
args: DeleteThemeForStackCommandInput,
|
|
751
|
+
options?: __HttpHandlerOptions
|
|
752
|
+
): Promise<DeleteThemeForStackCommandOutput>;
|
|
753
|
+
deleteThemeForStack(
|
|
754
|
+
args: DeleteThemeForStackCommandInput,
|
|
755
|
+
cb: (err: any, data?: DeleteThemeForStackCommandOutput) => void
|
|
756
|
+
): void;
|
|
757
|
+
deleteThemeForStack(
|
|
758
|
+
args: DeleteThemeForStackCommandInput,
|
|
759
|
+
options: __HttpHandlerOptions,
|
|
760
|
+
cb: (err: any, data?: DeleteThemeForStackCommandOutput) => void
|
|
761
|
+
): void;
|
|
720
762
|
deleteUsageReportSubscription(): Promise<DeleteUsageReportSubscriptionCommandOutput>;
|
|
721
763
|
deleteUsageReportSubscription(
|
|
722
764
|
args: DeleteUsageReportSubscriptionCommandInput,
|
|
@@ -935,6 +977,19 @@ export interface AppStream {
|
|
|
935
977
|
options: __HttpHandlerOptions,
|
|
936
978
|
cb: (err: any, data?: DescribeStacksCommandOutput) => void
|
|
937
979
|
): void;
|
|
980
|
+
describeThemeForStack(
|
|
981
|
+
args: DescribeThemeForStackCommandInput,
|
|
982
|
+
options?: __HttpHandlerOptions
|
|
983
|
+
): Promise<DescribeThemeForStackCommandOutput>;
|
|
984
|
+
describeThemeForStack(
|
|
985
|
+
args: DescribeThemeForStackCommandInput,
|
|
986
|
+
cb: (err: any, data?: DescribeThemeForStackCommandOutput) => void
|
|
987
|
+
): void;
|
|
988
|
+
describeThemeForStack(
|
|
989
|
+
args: DescribeThemeForStackCommandInput,
|
|
990
|
+
options: __HttpHandlerOptions,
|
|
991
|
+
cb: (err: any, data?: DescribeThemeForStackCommandOutput) => void
|
|
992
|
+
): void;
|
|
938
993
|
describeUsageReportSubscriptions(): Promise<DescribeUsageReportSubscriptionsCommandOutput>;
|
|
939
994
|
describeUsageReportSubscriptions(
|
|
940
995
|
args: DescribeUsageReportSubscriptionsCommandInput,
|
|
@@ -1327,5 +1382,18 @@ export interface AppStream {
|
|
|
1327
1382
|
options: __HttpHandlerOptions,
|
|
1328
1383
|
cb: (err: any, data?: UpdateStackCommandOutput) => void
|
|
1329
1384
|
): void;
|
|
1385
|
+
updateThemeForStack(
|
|
1386
|
+
args: UpdateThemeForStackCommandInput,
|
|
1387
|
+
options?: __HttpHandlerOptions
|
|
1388
|
+
): Promise<UpdateThemeForStackCommandOutput>;
|
|
1389
|
+
updateThemeForStack(
|
|
1390
|
+
args: UpdateThemeForStackCommandInput,
|
|
1391
|
+
cb: (err: any, data?: UpdateThemeForStackCommandOutput) => void
|
|
1392
|
+
): void;
|
|
1393
|
+
updateThemeForStack(
|
|
1394
|
+
args: UpdateThemeForStackCommandInput,
|
|
1395
|
+
options: __HttpHandlerOptions,
|
|
1396
|
+
cb: (err: any, data?: UpdateThemeForStackCommandOutput) => void
|
|
1397
|
+
): void;
|
|
1330
1398
|
}
|
|
1331
1399
|
export declare class AppStream extends AppStreamClient implements AppStream {}
|