aws-sdk-appstream 1.93.0 → 1.94.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ba90f9764b53bc8c6ad75e9b759d94af85ee3ce61f963f11b280fc63b30b109
4
- data.tar.gz: 7752455c7e7fb47f6b1917f61fb20abb8723f7bea3f34d011fcd1162505d3c98
3
+ metadata.gz: 36c560bb098f39c30a93a261d9dadd44f67ea2636927f113b2d7eb1e962b7010
4
+ data.tar.gz: fe7beb3f2a446f281a9afa106a5d77667b1021c037f9713512aad07173254948
5
5
  SHA512:
6
- metadata.gz: fa603ba27f3bb008522cefe7709844497e03388a66f506ee7f54207c72580bcca7efdd6e7d22c1cbdbc2b616f53cb26b0e8ce3f8e138ce15a98625fbbdb92e86
7
- data.tar.gz: b23de5e7862005dc60476e8cbb2e3029f849c9194ac4674a83363d7e3440db289297f615fab59076bbe66813df116b6ff2c5df676f17a104843d6a78693b4c89
6
+ metadata.gz: fe072627089df99cfc7cc8e57f72df8983ee13d24d06fd0b1c41563823cdd6351a3255508034deb178b0119b6684b03cbfa767c0d8a96d1258c6dc9dd43e6343
7
+ data.tar.gz: ebef1ad8e6f090e4c00d1460c79b6b7124034c3137da8a82f86a2fb9b78212c687ae6bf2378b8e31cb7bb8578171c0e0696909b26fc0226cf085ee6445e8da20
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.94.0 (2024-08-13)
5
+ ------------------
6
+
7
+ * Feature - This release includes following new APIs: CreateThemeForStack, DescribeThemeForStack, UpdateThemeForStack, DeleteThemeForStack to support custom branding programmatically.
8
+
4
9
  1.93.0 (2024-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.93.0
1
+ 1.94.0
@@ -1288,6 +1288,20 @@ module Aws::AppStream
1288
1288
  #
1289
1289
  # * stream.graphics.g4dn.16xlarge
1290
1290
  #
1291
+ # * stream.graphics.g5.xlarge
1292
+ #
1293
+ # * stream.graphics.g5.2xlarge
1294
+ #
1295
+ # * stream.graphics.g5.4xlarge
1296
+ #
1297
+ # * stream.graphics.g5.8xlarge
1298
+ #
1299
+ # * stream.graphics.g5.12xlarge
1300
+ #
1301
+ # * stream.graphics.g5.16xlarge
1302
+ #
1303
+ # * stream.graphics.g5.24xlarge
1304
+ #
1291
1305
  # * stream.graphics-pro.4xlarge
1292
1306
  #
1293
1307
  # * stream.graphics-pro.8xlarge
@@ -1767,6 +1781,7 @@ module Aws::AppStream
1767
1781
  # resp.image_builder.access_endpoints #=> Array
1768
1782
  # resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
1769
1783
  # resp.image_builder.access_endpoints[0].vpce_id #=> String
1784
+ # resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
1770
1785
  #
1771
1786
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilder AWS API Documentation
1772
1787
  #
@@ -2027,6 +2042,84 @@ module Aws::AppStream
2027
2042
  req.send_request(options)
2028
2043
  end
2029
2044
 
2045
+ # Creates custom branding that customizes the appearance of the
2046
+ # streaming application catalog page.
2047
+ #
2048
+ # @option params [required, String] :stack_name
2049
+ # The name of the stack for the theme.
2050
+ #
2051
+ # @option params [Array<Types::ThemeFooterLink>] :footer_links
2052
+ # The links that are displayed in the footer of the streaming
2053
+ # application catalog page. These links are helpful resources for users,
2054
+ # such as the organization's IT support and product marketing sites.
2055
+ #
2056
+ # @option params [required, String] :title_text
2057
+ # The title that is displayed at the top of the browser tab during
2058
+ # users' application streaming sessions.
2059
+ #
2060
+ # @option params [required, String] :theme_styling
2061
+ # The color theme that is applied to website links, text, and buttons.
2062
+ # These colors are also applied as accents in the background for the
2063
+ # streaming application catalog page.
2064
+ #
2065
+ # @option params [required, Types::S3Location] :organization_logo_s3_location
2066
+ # The organization logo that appears on the streaming application
2067
+ # catalog page.
2068
+ #
2069
+ # @option params [required, Types::S3Location] :favicon_s3_location
2070
+ # The S3 location of the favicon. The favicon enables users to recognize
2071
+ # their application streaming site in a browser full of tabs or
2072
+ # bookmarks. It is displayed at the top of the browser tab for the
2073
+ # application streaming site during users' streaming sessions.
2074
+ #
2075
+ # @return [Types::CreateThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2076
+ #
2077
+ # * {Types::CreateThemeForStackResult#theme #theme} => Types::Theme
2078
+ #
2079
+ # @example Request syntax with placeholder values
2080
+ #
2081
+ # resp = client.create_theme_for_stack({
2082
+ # stack_name: "Name", # required
2083
+ # footer_links: [
2084
+ # {
2085
+ # display_name: "ThemeFooterLinkDisplayName",
2086
+ # footer_link_url: "ThemeFooterLinkURL",
2087
+ # },
2088
+ # ],
2089
+ # title_text: "ThemeTitleText", # required
2090
+ # theme_styling: "LIGHT_BLUE", # required, accepts LIGHT_BLUE, BLUE, PINK, RED
2091
+ # organization_logo_s3_location: { # required
2092
+ # s3_bucket: "S3Bucket", # required
2093
+ # s3_key: "S3Key",
2094
+ # },
2095
+ # favicon_s3_location: { # required
2096
+ # s3_bucket: "S3Bucket", # required
2097
+ # s3_key: "S3Key",
2098
+ # },
2099
+ # })
2100
+ #
2101
+ # @example Response structure
2102
+ #
2103
+ # resp.theme.stack_name #=> String
2104
+ # resp.theme.state #=> String, one of "ENABLED", "DISABLED"
2105
+ # resp.theme.theme_title_text #=> String
2106
+ # resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
2107
+ # resp.theme.theme_footer_links #=> Array
2108
+ # resp.theme.theme_footer_links[0].display_name #=> String
2109
+ # resp.theme.theme_footer_links[0].footer_link_url #=> String
2110
+ # resp.theme.theme_organization_logo_url #=> String
2111
+ # resp.theme.theme_favicon_url #=> String
2112
+ # resp.theme.created_time #=> Time
2113
+ #
2114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateThemeForStack AWS API Documentation
2115
+ #
2116
+ # @overload create_theme_for_stack(params = {})
2117
+ # @param [Hash] params ({})
2118
+ def create_theme_for_stack(params = {}, options = {})
2119
+ req = build_request(:create_theme_for_stack, params)
2120
+ req.send_request(options)
2121
+ end
2122
+
2030
2123
  # Creates a new image with the latest Windows operating system updates,
2031
2124
  # driver updates, and AppStream 2.0 agent software.
2032
2125
  #
@@ -2139,6 +2232,11 @@ module Aws::AppStream
2139
2232
  # resp.image.image_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "MACHINE_ROLE_IS_MISSING", "STS_DISABLED_IN_REGION", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "FLEET_STOPPED", "FLEET_INSTANCE_PROVISIONING_FAILURE", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
2140
2233
  # resp.image.image_errors[0].error_message #=> String
2141
2234
  # resp.image.image_errors[0].error_timestamp #=> Time
2235
+ # resp.image.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
2236
+ # resp.image.supported_instance_families #=> Array
2237
+ # resp.image.supported_instance_families[0] #=> String
2238
+ # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2239
+ # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2142
2240
  # resp.can_update_image #=> Boolean
2143
2241
  #
2144
2242
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImage AWS API Documentation
@@ -2427,6 +2525,11 @@ module Aws::AppStream
2427
2525
  # resp.image.image_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "MACHINE_ROLE_IS_MISSING", "STS_DISABLED_IN_REGION", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "FLEET_STOPPED", "FLEET_INSTANCE_PROVISIONING_FAILURE", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
2428
2526
  # resp.image.image_errors[0].error_message #=> String
2429
2527
  # resp.image.image_errors[0].error_timestamp #=> Time
2528
+ # resp.image.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
2529
+ # resp.image.supported_instance_families #=> Array
2530
+ # resp.image.supported_instance_families[0] #=> String
2531
+ # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2532
+ # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2430
2533
  #
2431
2534
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
2432
2535
  #
@@ -2483,6 +2586,7 @@ module Aws::AppStream
2483
2586
  # resp.image_builder.access_endpoints #=> Array
2484
2587
  # resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
2485
2588
  # resp.image_builder.access_endpoints[0].vpce_id #=> String
2589
+ # resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
2486
2590
  #
2487
2591
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilder AWS API Documentation
2488
2592
  #
@@ -2547,6 +2651,29 @@ module Aws::AppStream
2547
2651
  req.send_request(options)
2548
2652
  end
2549
2653
 
2654
+ # Deletes custom branding that customizes the appearance of the
2655
+ # streaming application catalog page.
2656
+ #
2657
+ # @option params [required, String] :stack_name
2658
+ # The name of the stack for the theme.
2659
+ #
2660
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2661
+ #
2662
+ # @example Request syntax with placeholder values
2663
+ #
2664
+ # resp = client.delete_theme_for_stack({
2665
+ # stack_name: "Name", # required
2666
+ # })
2667
+ #
2668
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteThemeForStack AWS API Documentation
2669
+ #
2670
+ # @overload delete_theme_for_stack(params = {})
2671
+ # @param [Hash] params ({})
2672
+ def delete_theme_for_stack(params = {}, options = {})
2673
+ req = build_request(:delete_theme_for_stack, params)
2674
+ req.send_request(options)
2675
+ end
2676
+
2550
2677
  # Disables usage report generation.
2551
2678
  #
2552
2679
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -3116,6 +3243,7 @@ module Aws::AppStream
3116
3243
  # resp.image_builders[0].access_endpoints #=> Array
3117
3244
  # resp.image_builders[0].access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
3118
3245
  # resp.image_builders[0].access_endpoints[0].vpce_id #=> String
3246
+ # resp.image_builders[0].latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
3119
3247
  # resp.next_token #=> String
3120
3248
  #
3121
3249
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuilders AWS API Documentation
@@ -3261,6 +3389,11 @@ module Aws::AppStream
3261
3389
  # resp.images[0].image_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "MACHINE_ROLE_IS_MISSING", "STS_DISABLED_IN_REGION", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "FLEET_STOPPED", "FLEET_INSTANCE_PROVISIONING_FAILURE", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
3262
3390
  # resp.images[0].image_errors[0].error_message #=> String
3263
3391
  # resp.images[0].image_errors[0].error_timestamp #=> Time
3392
+ # resp.images[0].latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
3393
+ # resp.images[0].supported_instance_families #=> Array
3394
+ # resp.images[0].supported_instance_families[0] #=> String
3395
+ # resp.images[0].dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
3396
+ # resp.images[0].image_shared_with_others #=> String, one of "TRUE", "FALSE"
3264
3397
  # resp.next_token #=> String
3265
3398
  #
3266
3399
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
@@ -3412,6 +3545,45 @@ module Aws::AppStream
3412
3545
  req.send_request(options)
3413
3546
  end
3414
3547
 
3548
+ # Retrieves a list that describes the theme for a specified stack. A
3549
+ # theme is custom branding that customizes the appearance of the
3550
+ # streaming application catalog page.
3551
+ #
3552
+ # @option params [required, String] :stack_name
3553
+ # The name of the stack for the theme.
3554
+ #
3555
+ # @return [Types::DescribeThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3556
+ #
3557
+ # * {Types::DescribeThemeForStackResult#theme #theme} => Types::Theme
3558
+ #
3559
+ # @example Request syntax with placeholder values
3560
+ #
3561
+ # resp = client.describe_theme_for_stack({
3562
+ # stack_name: "Name", # required
3563
+ # })
3564
+ #
3565
+ # @example Response structure
3566
+ #
3567
+ # resp.theme.stack_name #=> String
3568
+ # resp.theme.state #=> String, one of "ENABLED", "DISABLED"
3569
+ # resp.theme.theme_title_text #=> String
3570
+ # resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
3571
+ # resp.theme.theme_footer_links #=> Array
3572
+ # resp.theme.theme_footer_links[0].display_name #=> String
3573
+ # resp.theme.theme_footer_links[0].footer_link_url #=> String
3574
+ # resp.theme.theme_organization_logo_url #=> String
3575
+ # resp.theme.theme_favicon_url #=> String
3576
+ # resp.theme.created_time #=> Time
3577
+ #
3578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeThemeForStack AWS API Documentation
3579
+ #
3580
+ # @overload describe_theme_for_stack(params = {})
3581
+ # @param [Hash] params ({})
3582
+ def describe_theme_for_stack(params = {}, options = {})
3583
+ req = build_request(:describe_theme_for_stack, params)
3584
+ req.send_request(options)
3585
+ end
3586
+
3415
3587
  # Retrieves a list that describes one or more usage report
3416
3588
  # subscriptions.
3417
3589
  #
@@ -4049,6 +4221,7 @@ module Aws::AppStream
4049
4221
  # resp.image_builder.access_endpoints #=> Array
4050
4222
  # resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
4051
4223
  # resp.image_builder.access_endpoints[0].vpce_id #=> String
4224
+ # resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
4052
4225
  #
4053
4226
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilder AWS API Documentation
4054
4227
  #
@@ -4180,6 +4353,7 @@ module Aws::AppStream
4180
4353
  # resp.image_builder.access_endpoints #=> Array
4181
4354
  # resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
4182
4355
  # resp.image_builder.access_endpoints[0].vpce_id #=> String
4356
+ # resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
4183
4357
  #
4184
4358
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilder AWS API Documentation
4185
4359
  #
@@ -5119,6 +5293,93 @@ module Aws::AppStream
5119
5293
  req.send_request(options)
5120
5294
  end
5121
5295
 
5296
+ # Updates custom branding that customizes the appearance of the
5297
+ # streaming application catalog page.
5298
+ #
5299
+ # @option params [required, String] :stack_name
5300
+ # The name of the stack for the theme.
5301
+ #
5302
+ # @option params [Array<Types::ThemeFooterLink>] :footer_links
5303
+ # The links that are displayed in the footer of the streaming
5304
+ # application catalog page. These links are helpful resources for users,
5305
+ # such as the organization's IT support and product marketing sites.
5306
+ #
5307
+ # @option params [String] :title_text
5308
+ # The title that is displayed at the top of the browser tab during
5309
+ # users' application streaming sessions.
5310
+ #
5311
+ # @option params [String] :theme_styling
5312
+ # The color theme that is applied to website links, text, and buttons.
5313
+ # These colors are also applied as accents in the background for the
5314
+ # streaming application catalog page.
5315
+ #
5316
+ # @option params [Types::S3Location] :organization_logo_s3_location
5317
+ # The organization logo that appears on the streaming application
5318
+ # catalog page.
5319
+ #
5320
+ # @option params [Types::S3Location] :favicon_s3_location
5321
+ # The S3 location of the favicon. The favicon enables users to recognize
5322
+ # their application streaming site in a browser full of tabs or
5323
+ # bookmarks. It is displayed at the top of the browser tab for the
5324
+ # application streaming site during users' streaming sessions.
5325
+ #
5326
+ # @option params [String] :state
5327
+ # Specifies whether custom branding should be applied to catalog page or
5328
+ # not.
5329
+ #
5330
+ # @option params [Array<String>] :attributes_to_delete
5331
+ # The attributes to delete.
5332
+ #
5333
+ # @return [Types::UpdateThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5334
+ #
5335
+ # * {Types::UpdateThemeForStackResult#theme #theme} => Types::Theme
5336
+ #
5337
+ # @example Request syntax with placeholder values
5338
+ #
5339
+ # resp = client.update_theme_for_stack({
5340
+ # stack_name: "Name", # required
5341
+ # footer_links: [
5342
+ # {
5343
+ # display_name: "ThemeFooterLinkDisplayName",
5344
+ # footer_link_url: "ThemeFooterLinkURL",
5345
+ # },
5346
+ # ],
5347
+ # title_text: "ThemeTitleText",
5348
+ # theme_styling: "LIGHT_BLUE", # accepts LIGHT_BLUE, BLUE, PINK, RED
5349
+ # organization_logo_s3_location: {
5350
+ # s3_bucket: "S3Bucket", # required
5351
+ # s3_key: "S3Key",
5352
+ # },
5353
+ # favicon_s3_location: {
5354
+ # s3_bucket: "S3Bucket", # required
5355
+ # s3_key: "S3Key",
5356
+ # },
5357
+ # state: "ENABLED", # accepts ENABLED, DISABLED
5358
+ # attributes_to_delete: ["FOOTER_LINKS"], # accepts FOOTER_LINKS
5359
+ # })
5360
+ #
5361
+ # @example Response structure
5362
+ #
5363
+ # resp.theme.stack_name #=> String
5364
+ # resp.theme.state #=> String, one of "ENABLED", "DISABLED"
5365
+ # resp.theme.theme_title_text #=> String
5366
+ # resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
5367
+ # resp.theme.theme_footer_links #=> Array
5368
+ # resp.theme.theme_footer_links[0].display_name #=> String
5369
+ # resp.theme.theme_footer_links[0].footer_link_url #=> String
5370
+ # resp.theme.theme_organization_logo_url #=> String
5371
+ # resp.theme.theme_favicon_url #=> String
5372
+ # resp.theme.created_time #=> Time
5373
+ #
5374
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateThemeForStack AWS API Documentation
5375
+ #
5376
+ # @overload update_theme_for_stack(params = {})
5377
+ # @param [Hash] params ({})
5378
+ def update_theme_for_stack(params = {}, options = {})
5379
+ req = build_request(:update_theme_for_stack, params)
5380
+ req.send_request(options)
5381
+ end
5382
+
5122
5383
  # @!endgroup
5123
5384
 
5124
5385
  # @param params ({})
@@ -5132,7 +5393,7 @@ module Aws::AppStream
5132
5393
  params: params,
5133
5394
  config: config)
5134
5395
  context[:gem_name] = 'aws-sdk-appstream'
5135
- context[:gem_version] = '1.93.0'
5396
+ context[:gem_version] = '1.94.0'
5136
5397
  Seahorse::Client::Request.new(handlers, context)
5137
5398
  end
5138
5399
 
@@ -90,6 +90,8 @@ module Aws::AppStream
90
90
  CreateStackResult = Shapes::StructureShape.new(name: 'CreateStackResult')
91
91
  CreateStreamingURLRequest = Shapes::StructureShape.new(name: 'CreateStreamingURLRequest')
92
92
  CreateStreamingURLResult = Shapes::StructureShape.new(name: 'CreateStreamingURLResult')
93
+ CreateThemeForStackRequest = Shapes::StructureShape.new(name: 'CreateThemeForStackRequest')
94
+ CreateThemeForStackResult = Shapes::StructureShape.new(name: 'CreateThemeForStackResult')
93
95
  CreateUpdatedImageRequest = Shapes::StructureShape.new(name: 'CreateUpdatedImageRequest')
94
96
  CreateUpdatedImageResult = Shapes::StructureShape.new(name: 'CreateUpdatedImageResult')
95
97
  CreateUsageReportSubscriptionRequest = Shapes::StructureShape.new(name: 'CreateUsageReportSubscriptionRequest')
@@ -116,6 +118,8 @@ module Aws::AppStream
116
118
  DeleteImageResult = Shapes::StructureShape.new(name: 'DeleteImageResult')
117
119
  DeleteStackRequest = Shapes::StructureShape.new(name: 'DeleteStackRequest')
118
120
  DeleteStackResult = Shapes::StructureShape.new(name: 'DeleteStackResult')
121
+ DeleteThemeForStackRequest = Shapes::StructureShape.new(name: 'DeleteThemeForStackRequest')
122
+ DeleteThemeForStackResult = Shapes::StructureShape.new(name: 'DeleteThemeForStackResult')
119
123
  DeleteUsageReportSubscriptionRequest = Shapes::StructureShape.new(name: 'DeleteUsageReportSubscriptionRequest')
120
124
  DeleteUsageReportSubscriptionResult = Shapes::StructureShape.new(name: 'DeleteUsageReportSubscriptionResult')
121
125
  DeleteUserRequest = Shapes::StructureShape.new(name: 'DeleteUserRequest')
@@ -147,6 +151,8 @@ module Aws::AppStream
147
151
  DescribeSessionsResult = Shapes::StructureShape.new(name: 'DescribeSessionsResult')
148
152
  DescribeStacksRequest = Shapes::StructureShape.new(name: 'DescribeStacksRequest')
149
153
  DescribeStacksResult = Shapes::StructureShape.new(name: 'DescribeStacksResult')
154
+ DescribeThemeForStackRequest = Shapes::StructureShape.new(name: 'DescribeThemeForStackRequest')
155
+ DescribeThemeForStackResult = Shapes::StructureShape.new(name: 'DescribeThemeForStackResult')
150
156
  DescribeUsageReportSubscriptionsRequest = Shapes::StructureShape.new(name: 'DescribeUsageReportSubscriptionsRequest')
151
157
  DescribeUsageReportSubscriptionsResult = Shapes::StructureShape.new(name: 'DescribeUsageReportSubscriptionsResult')
152
158
  DescribeUserStackAssociationsRequest = Shapes::StructureShape.new(name: 'DescribeUserStackAssociationsRequest')
@@ -172,6 +178,7 @@ module Aws::AppStream
172
178
  Domain = Shapes::StringShape.new(name: 'Domain')
173
179
  DomainJoinInfo = Shapes::StructureShape.new(name: 'DomainJoinInfo')
174
180
  DomainList = Shapes::ListShape.new(name: 'DomainList')
181
+ DynamicAppProvidersEnabled = Shapes::StringShape.new(name: 'DynamicAppProvidersEnabled')
175
182
  EmbedHostDomain = Shapes::StringShape.new(name: 'EmbedHostDomain')
176
183
  EmbedHostDomains = Shapes::ListShape.new(name: 'EmbedHostDomains')
177
184
  EnableUserRequest = Shapes::StructureShape.new(name: 'EnableUserRequest')
@@ -207,6 +214,7 @@ module Aws::AppStream
207
214
  ImageBuilderStateChangeReasonCode = Shapes::StringShape.new(name: 'ImageBuilderStateChangeReasonCode')
208
215
  ImageList = Shapes::ListShape.new(name: 'ImageList')
209
216
  ImagePermissions = Shapes::StructureShape.new(name: 'ImagePermissions')
217
+ ImageSharedWithOthers = Shapes::StringShape.new(name: 'ImageSharedWithOthers')
210
218
  ImageState = Shapes::StringShape.new(name: 'ImageState')
211
219
  ImageStateChangeReason = Shapes::StructureShape.new(name: 'ImageStateChangeReason')
212
220
  ImageStateChangeReasonCode = Shapes::StringShape.new(name: 'ImageStateChangeReasonCode')
@@ -217,6 +225,7 @@ module Aws::AppStream
217
225
  InvalidRoleException = Shapes::StructureShape.new(name: 'InvalidRoleException')
218
226
  LastReportGenerationExecutionError = Shapes::StructureShape.new(name: 'LastReportGenerationExecutionError')
219
227
  LastReportGenerationExecutionErrors = Shapes::ListShape.new(name: 'LastReportGenerationExecutionErrors')
228
+ LatestAppstreamAgentVersion = Shapes::StringShape.new(name: 'LatestAppstreamAgentVersion')
220
229
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
221
230
  ListAssociatedFleetsRequest = Shapes::StructureShape.new(name: 'ListAssociatedFleetsRequest')
222
231
  ListAssociatedFleetsResult = Shapes::StructureShape.new(name: 'ListAssociatedFleetsResult')
@@ -297,6 +306,16 @@ module Aws::AppStream
297
306
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
298
307
  TagValue = Shapes::StringShape.new(name: 'TagValue')
299
308
  Tags = Shapes::MapShape.new(name: 'Tags')
309
+ Theme = Shapes::StructureShape.new(name: 'Theme')
310
+ ThemeAttribute = Shapes::StringShape.new(name: 'ThemeAttribute')
311
+ ThemeAttributes = Shapes::ListShape.new(name: 'ThemeAttributes')
312
+ ThemeFooterLink = Shapes::StructureShape.new(name: 'ThemeFooterLink')
313
+ ThemeFooterLinkDisplayName = Shapes::StringShape.new(name: 'ThemeFooterLinkDisplayName')
314
+ ThemeFooterLinkURL = Shapes::StringShape.new(name: 'ThemeFooterLinkURL')
315
+ ThemeFooterLinks = Shapes::ListShape.new(name: 'ThemeFooterLinks')
316
+ ThemeState = Shapes::StringShape.new(name: 'ThemeState')
317
+ ThemeStyling = Shapes::StringShape.new(name: 'ThemeStyling')
318
+ ThemeTitleText = Shapes::StringShape.new(name: 'ThemeTitleText')
300
319
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
301
320
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
302
321
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
@@ -314,6 +333,8 @@ module Aws::AppStream
314
333
  UpdateImagePermissionsResult = Shapes::StructureShape.new(name: 'UpdateImagePermissionsResult')
315
334
  UpdateStackRequest = Shapes::StructureShape.new(name: 'UpdateStackRequest')
316
335
  UpdateStackResult = Shapes::StructureShape.new(name: 'UpdateStackResult')
336
+ UpdateThemeForStackRequest = Shapes::StructureShape.new(name: 'UpdateThemeForStackRequest')
337
+ UpdateThemeForStackResult = Shapes::StructureShape.new(name: 'UpdateThemeForStackResult')
317
338
  UsageReportExecutionErrorCode = Shapes::StringShape.new(name: 'UsageReportExecutionErrorCode')
318
339
  UsageReportSchedule = Shapes::StringShape.new(name: 'UsageReportSchedule')
319
340
  UsageReportSubscription = Shapes::StructureShape.new(name: 'UsageReportSubscription')
@@ -648,6 +669,17 @@ module Aws::AppStream
648
669
  CreateStreamingURLResult.add_member(:expires, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Expires"))
649
670
  CreateStreamingURLResult.struct_class = Types::CreateStreamingURLResult
650
671
 
672
+ CreateThemeForStackRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "StackName"))
673
+ CreateThemeForStackRequest.add_member(:footer_links, Shapes::ShapeRef.new(shape: ThemeFooterLinks, location_name: "FooterLinks"))
674
+ CreateThemeForStackRequest.add_member(:title_text, Shapes::ShapeRef.new(shape: ThemeTitleText, required: true, location_name: "TitleText"))
675
+ CreateThemeForStackRequest.add_member(:theme_styling, Shapes::ShapeRef.new(shape: ThemeStyling, required: true, location_name: "ThemeStyling"))
676
+ CreateThemeForStackRequest.add_member(:organization_logo_s3_location, Shapes::ShapeRef.new(shape: S3Location, required: true, location_name: "OrganizationLogoS3Location"))
677
+ CreateThemeForStackRequest.add_member(:favicon_s3_location, Shapes::ShapeRef.new(shape: S3Location, required: true, location_name: "FaviconS3Location"))
678
+ CreateThemeForStackRequest.struct_class = Types::CreateThemeForStackRequest
679
+
680
+ CreateThemeForStackResult.add_member(:theme, Shapes::ShapeRef.new(shape: Theme, location_name: "Theme"))
681
+ CreateThemeForStackResult.struct_class = Types::CreateThemeForStackResult
682
+
651
683
  CreateUpdatedImageRequest.add_member(:existing_image_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "existingImageName"))
652
684
  CreateUpdatedImageRequest.add_member(:new_image_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "newImageName"))
653
685
  CreateUpdatedImageRequest.add_member(:new_image_description, Shapes::ShapeRef.new(shape: Description, location_name: "newImageDescription"))
@@ -729,6 +761,11 @@ module Aws::AppStream
729
761
 
730
762
  DeleteStackResult.struct_class = Types::DeleteStackResult
731
763
 
764
+ DeleteThemeForStackRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "StackName"))
765
+ DeleteThemeForStackRequest.struct_class = Types::DeleteThemeForStackRequest
766
+
767
+ DeleteThemeForStackResult.struct_class = Types::DeleteThemeForStackResult
768
+
732
769
  DeleteUsageReportSubscriptionRequest.struct_class = Types::DeleteUsageReportSubscriptionRequest
733
770
 
734
771
  DeleteUsageReportSubscriptionResult.struct_class = Types::DeleteUsageReportSubscriptionResult
@@ -865,6 +902,12 @@ module Aws::AppStream
865
902
  DescribeStacksResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
866
903
  DescribeStacksResult.struct_class = Types::DescribeStacksResult
867
904
 
905
+ DescribeThemeForStackRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "StackName"))
906
+ DescribeThemeForStackRequest.struct_class = Types::DescribeThemeForStackRequest
907
+
908
+ DescribeThemeForStackResult.add_member(:theme, Shapes::ShapeRef.new(shape: Theme, location_name: "Theme"))
909
+ DescribeThemeForStackResult.struct_class = Types::DescribeThemeForStackResult
910
+
868
911
  DescribeUsageReportSubscriptionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
869
912
  DescribeUsageReportSubscriptionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
870
913
  DescribeUsageReportSubscriptionsRequest.struct_class = Types::DescribeUsageReportSubscriptionsRequest
@@ -1042,6 +1085,10 @@ module Aws::AppStream
1042
1085
  Image.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
1043
1086
  Image.add_member(:image_permissions, Shapes::ShapeRef.new(shape: ImagePermissions, location_name: "ImagePermissions"))
1044
1087
  Image.add_member(:image_errors, Shapes::ShapeRef.new(shape: ResourceErrors, location_name: "ImageErrors"))
1088
+ Image.add_member(:latest_appstream_agent_version, Shapes::ShapeRef.new(shape: LatestAppstreamAgentVersion, location_name: "LatestAppstreamAgentVersion"))
1089
+ Image.add_member(:supported_instance_families, Shapes::ShapeRef.new(shape: StringList, location_name: "SupportedInstanceFamilies"))
1090
+ Image.add_member(:dynamic_app_providers_enabled, Shapes::ShapeRef.new(shape: DynamicAppProvidersEnabled, location_name: "DynamicAppProvidersEnabled"))
1091
+ Image.add_member(:image_shared_with_others, Shapes::ShapeRef.new(shape: ImageSharedWithOthers, location_name: "ImageSharedWithOthers"))
1045
1092
  Image.struct_class = Types::Image
1046
1093
 
1047
1094
  ImageBuilder.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
@@ -1062,6 +1109,7 @@ module Aws::AppStream
1062
1109
  ImageBuilder.add_member(:image_builder_errors, Shapes::ShapeRef.new(shape: ResourceErrors, location_name: "ImageBuilderErrors"))
1063
1110
  ImageBuilder.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
1064
1111
  ImageBuilder.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
1112
+ ImageBuilder.add_member(:latest_appstream_agent_version, Shapes::ShapeRef.new(shape: LatestAppstreamAgentVersion, location_name: "LatestAppstreamAgentVersion"))
1065
1113
  ImageBuilder.struct_class = Types::ImageBuilder
1066
1114
 
1067
1115
  ImageBuilderList.member = Shapes::ShapeRef.new(shape: ImageBuilder)
@@ -1292,6 +1340,24 @@ module Aws::AppStream
1292
1340
  Tags.key = Shapes::ShapeRef.new(shape: TagKey)
1293
1341
  Tags.value = Shapes::ShapeRef.new(shape: TagValue)
1294
1342
 
1343
+ Theme.add_member(:stack_name, Shapes::ShapeRef.new(shape: Name, location_name: "StackName"))
1344
+ Theme.add_member(:state, Shapes::ShapeRef.new(shape: ThemeState, location_name: "State"))
1345
+ Theme.add_member(:theme_title_text, Shapes::ShapeRef.new(shape: ThemeTitleText, location_name: "ThemeTitleText"))
1346
+ Theme.add_member(:theme_styling, Shapes::ShapeRef.new(shape: ThemeStyling, location_name: "ThemeStyling"))
1347
+ Theme.add_member(:theme_footer_links, Shapes::ShapeRef.new(shape: ThemeFooterLinks, location_name: "ThemeFooterLinks"))
1348
+ Theme.add_member(:theme_organization_logo_url, Shapes::ShapeRef.new(shape: String, location_name: "ThemeOrganizationLogoURL"))
1349
+ Theme.add_member(:theme_favicon_url, Shapes::ShapeRef.new(shape: String, location_name: "ThemeFaviconURL"))
1350
+ Theme.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
1351
+ Theme.struct_class = Types::Theme
1352
+
1353
+ ThemeAttributes.member = Shapes::ShapeRef.new(shape: ThemeAttribute)
1354
+
1355
+ ThemeFooterLink.add_member(:display_name, Shapes::ShapeRef.new(shape: ThemeFooterLinkDisplayName, location_name: "DisplayName"))
1356
+ ThemeFooterLink.add_member(:footer_link_url, Shapes::ShapeRef.new(shape: ThemeFooterLinkURL, location_name: "FooterLinkURL"))
1357
+ ThemeFooterLink.struct_class = Types::ThemeFooterLink
1358
+
1359
+ ThemeFooterLinks.member = Shapes::ShapeRef.new(shape: ThemeFooterLink)
1360
+
1295
1361
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ResourceArn"))
1296
1362
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
1297
1363
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -1398,6 +1464,19 @@ module Aws::AppStream
1398
1464
  UpdateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
1399
1465
  UpdateStackResult.struct_class = Types::UpdateStackResult
1400
1466
 
1467
+ UpdateThemeForStackRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "StackName"))
1468
+ UpdateThemeForStackRequest.add_member(:footer_links, Shapes::ShapeRef.new(shape: ThemeFooterLinks, location_name: "FooterLinks"))
1469
+ UpdateThemeForStackRequest.add_member(:title_text, Shapes::ShapeRef.new(shape: ThemeTitleText, location_name: "TitleText"))
1470
+ UpdateThemeForStackRequest.add_member(:theme_styling, Shapes::ShapeRef.new(shape: ThemeStyling, location_name: "ThemeStyling"))
1471
+ UpdateThemeForStackRequest.add_member(:organization_logo_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "OrganizationLogoS3Location"))
1472
+ UpdateThemeForStackRequest.add_member(:favicon_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "FaviconS3Location"))
1473
+ UpdateThemeForStackRequest.add_member(:state, Shapes::ShapeRef.new(shape: ThemeState, location_name: "State"))
1474
+ UpdateThemeForStackRequest.add_member(:attributes_to_delete, Shapes::ShapeRef.new(shape: ThemeAttributes, location_name: "AttributesToDelete"))
1475
+ UpdateThemeForStackRequest.struct_class = Types::UpdateThemeForStackRequest
1476
+
1477
+ UpdateThemeForStackResult.add_member(:theme, Shapes::ShapeRef.new(shape: Theme, location_name: "Theme"))
1478
+ UpdateThemeForStackResult.struct_class = Types::UpdateThemeForStackResult
1479
+
1401
1480
  UsageReportSubscription.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "S3BucketName"))
1402
1481
  UsageReportSubscription.add_member(:schedule, Shapes::ShapeRef.new(shape: UsageReportSchedule, location_name: "Schedule"))
1403
1482
  UsageReportSubscription.add_member(:last_generated_report_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastGeneratedReportDate"))
@@ -1709,6 +1788,20 @@ module Aws::AppStream
1709
1788
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
1710
1789
  end)
1711
1790
 
1791
+ api.add_operation(:create_theme_for_stack, Seahorse::Model::Operation.new.tap do |o|
1792
+ o.name = "CreateThemeForStack"
1793
+ o.http_method = "POST"
1794
+ o.http_request_uri = "/"
1795
+ o.input = Shapes::ShapeRef.new(shape: CreateThemeForStackRequest)
1796
+ o.output = Shapes::ShapeRef.new(shape: CreateThemeForStackResult)
1797
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1798
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1799
+ o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
1800
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1801
+ o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
1802
+ o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
1803
+ end)
1804
+
1712
1805
  api.add_operation(:create_updated_image, Seahorse::Model::Operation.new.tap do |o|
1713
1806
  o.name = "CreateUpdatedImage"
1714
1807
  o.http_method = "POST"
@@ -1862,6 +1955,17 @@ module Aws::AppStream
1862
1955
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1863
1956
  end)
1864
1957
 
1958
+ api.add_operation(:delete_theme_for_stack, Seahorse::Model::Operation.new.tap do |o|
1959
+ o.name = "DeleteThemeForStack"
1960
+ o.http_method = "POST"
1961
+ o.http_request_uri = "/"
1962
+ o.input = Shapes::ShapeRef.new(shape: DeleteThemeForStackRequest)
1963
+ o.output = Shapes::ShapeRef.new(shape: DeleteThemeForStackResult)
1964
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1965
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1966
+ o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
1967
+ end)
1968
+
1865
1969
  api.add_operation(:delete_usage_report_subscription, Seahorse::Model::Operation.new.tap do |o|
1866
1970
  o.name = "DeleteUsageReportSubscription"
1867
1971
  o.http_method = "POST"
@@ -2030,6 +2134,16 @@ module Aws::AppStream
2030
2134
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2031
2135
  end)
2032
2136
 
2137
+ api.add_operation(:describe_theme_for_stack, Seahorse::Model::Operation.new.tap do |o|
2138
+ o.name = "DescribeThemeForStack"
2139
+ o.http_method = "POST"
2140
+ o.http_request_uri = "/"
2141
+ o.input = Shapes::ShapeRef.new(shape: DescribeThemeForStackRequest)
2142
+ o.output = Shapes::ShapeRef.new(shape: DescribeThemeForStackResult)
2143
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2144
+ o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
2145
+ end)
2146
+
2033
2147
  api.add_operation(:describe_usage_report_subscriptions, Seahorse::Model::Operation.new.tap do |o|
2034
2148
  o.name = "DescribeUsageReportSubscriptions"
2035
2149
  o.http_method = "POST"
@@ -2367,6 +2481,20 @@ module Aws::AppStream
2367
2481
  o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
2368
2482
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
2369
2483
  end)
2484
+
2485
+ api.add_operation(:update_theme_for_stack, Seahorse::Model::Operation.new.tap do |o|
2486
+ o.name = "UpdateThemeForStack"
2487
+ o.http_method = "POST"
2488
+ o.http_request_uri = "/"
2489
+ o.input = Shapes::ShapeRef.new(shape: UpdateThemeForStackRequest)
2490
+ o.output = Shapes::ShapeRef.new(shape: UpdateThemeForStackResult)
2491
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
2492
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2493
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
2494
+ o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
2495
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
2496
+ o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
2497
+ end)
2370
2498
  end
2371
2499
 
2372
2500
  end