aws-sdk-appstream 1.93.0 → 1.95.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +280 -2
- data/lib/aws-sdk-appstream/client_api.rb +128 -0
- data/lib/aws-sdk-appstream/endpoints.rb +56 -0
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-appstream/types.rb +302 -2
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +74 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +73 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8edbf868a7a7bd569f0644a8fa2bb91c6122410fb577257c761b98a1b7ae8a72
|
4
|
+
data.tar.gz: 9f0927c4ce88d665051c9af8a04e240773c89d43e6970edbf668bb53276f22cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58ab1e88146e3eaf6903bbeb1432e6b77e69891ca08c17524d6162e780cd8f915a5f4e5f5a4526725839ed880690ca88270dc67c4bf9e39f94c04542ab18aa94
|
7
|
+
data.tar.gz: 4c5fc0c70784775897cb49610f09b0074f98b18fc5bdd1a00dd806913196af1a2446900a795641c67a74ea96517eb77fc901fd79faf77f4d276fb978d271432a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.95.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.94.0 (2024-08-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release includes following new APIs: CreateThemeForStack, DescribeThemeForStack, UpdateThemeForStack, DeleteThemeForStack to support custom branding programmatically.
|
13
|
+
|
4
14
|
1.93.0 (2024-07-30)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.95.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::AppStream
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
88
90
|
add_plugin(Aws::AppStream::Plugins::Endpoints)
|
@@ -337,6 +339,16 @@ module Aws::AppStream
|
|
337
339
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
338
340
|
# requests are made, and retries are disabled.
|
339
341
|
#
|
342
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
343
|
+
# Allows you to provide a telemetry provider, which is used to
|
344
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
345
|
+
# will not record or emit any telemetry data. The SDK supports the
|
346
|
+
# following telemetry providers:
|
347
|
+
#
|
348
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
349
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
350
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
351
|
+
#
|
340
352
|
# @option options [Aws::TokenProvider] :token_provider
|
341
353
|
# A Bearer Token Provider. This can be an instance of any one of the
|
342
354
|
# following classes:
|
@@ -1288,6 +1300,20 @@ module Aws::AppStream
|
|
1288
1300
|
#
|
1289
1301
|
# * stream.graphics.g4dn.16xlarge
|
1290
1302
|
#
|
1303
|
+
# * stream.graphics.g5.xlarge
|
1304
|
+
#
|
1305
|
+
# * stream.graphics.g5.2xlarge
|
1306
|
+
#
|
1307
|
+
# * stream.graphics.g5.4xlarge
|
1308
|
+
#
|
1309
|
+
# * stream.graphics.g5.8xlarge
|
1310
|
+
#
|
1311
|
+
# * stream.graphics.g5.12xlarge
|
1312
|
+
#
|
1313
|
+
# * stream.graphics.g5.16xlarge
|
1314
|
+
#
|
1315
|
+
# * stream.graphics.g5.24xlarge
|
1316
|
+
#
|
1291
1317
|
# * stream.graphics-pro.4xlarge
|
1292
1318
|
#
|
1293
1319
|
# * stream.graphics-pro.8xlarge
|
@@ -1767,6 +1793,7 @@ module Aws::AppStream
|
|
1767
1793
|
# resp.image_builder.access_endpoints #=> Array
|
1768
1794
|
# resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
1769
1795
|
# resp.image_builder.access_endpoints[0].vpce_id #=> String
|
1796
|
+
# resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
1770
1797
|
#
|
1771
1798
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilder AWS API Documentation
|
1772
1799
|
#
|
@@ -2027,6 +2054,84 @@ module Aws::AppStream
|
|
2027
2054
|
req.send_request(options)
|
2028
2055
|
end
|
2029
2056
|
|
2057
|
+
# Creates custom branding that customizes the appearance of the
|
2058
|
+
# streaming application catalog page.
|
2059
|
+
#
|
2060
|
+
# @option params [required, String] :stack_name
|
2061
|
+
# The name of the stack for the theme.
|
2062
|
+
#
|
2063
|
+
# @option params [Array<Types::ThemeFooterLink>] :footer_links
|
2064
|
+
# The links that are displayed in the footer of the streaming
|
2065
|
+
# application catalog page. These links are helpful resources for users,
|
2066
|
+
# such as the organization's IT support and product marketing sites.
|
2067
|
+
#
|
2068
|
+
# @option params [required, String] :title_text
|
2069
|
+
# The title that is displayed at the top of the browser tab during
|
2070
|
+
# users' application streaming sessions.
|
2071
|
+
#
|
2072
|
+
# @option params [required, String] :theme_styling
|
2073
|
+
# The color theme that is applied to website links, text, and buttons.
|
2074
|
+
# These colors are also applied as accents in the background for the
|
2075
|
+
# streaming application catalog page.
|
2076
|
+
#
|
2077
|
+
# @option params [required, Types::S3Location] :organization_logo_s3_location
|
2078
|
+
# The organization logo that appears on the streaming application
|
2079
|
+
# catalog page.
|
2080
|
+
#
|
2081
|
+
# @option params [required, Types::S3Location] :favicon_s3_location
|
2082
|
+
# The S3 location of the favicon. The favicon enables users to recognize
|
2083
|
+
# their application streaming site in a browser full of tabs or
|
2084
|
+
# bookmarks. It is displayed at the top of the browser tab for the
|
2085
|
+
# application streaming site during users' streaming sessions.
|
2086
|
+
#
|
2087
|
+
# @return [Types::CreateThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2088
|
+
#
|
2089
|
+
# * {Types::CreateThemeForStackResult#theme #theme} => Types::Theme
|
2090
|
+
#
|
2091
|
+
# @example Request syntax with placeholder values
|
2092
|
+
#
|
2093
|
+
# resp = client.create_theme_for_stack({
|
2094
|
+
# stack_name: "Name", # required
|
2095
|
+
# footer_links: [
|
2096
|
+
# {
|
2097
|
+
# display_name: "ThemeFooterLinkDisplayName",
|
2098
|
+
# footer_link_url: "ThemeFooterLinkURL",
|
2099
|
+
# },
|
2100
|
+
# ],
|
2101
|
+
# title_text: "ThemeTitleText", # required
|
2102
|
+
# theme_styling: "LIGHT_BLUE", # required, accepts LIGHT_BLUE, BLUE, PINK, RED
|
2103
|
+
# organization_logo_s3_location: { # required
|
2104
|
+
# s3_bucket: "S3Bucket", # required
|
2105
|
+
# s3_key: "S3Key",
|
2106
|
+
# },
|
2107
|
+
# favicon_s3_location: { # required
|
2108
|
+
# s3_bucket: "S3Bucket", # required
|
2109
|
+
# s3_key: "S3Key",
|
2110
|
+
# },
|
2111
|
+
# })
|
2112
|
+
#
|
2113
|
+
# @example Response structure
|
2114
|
+
#
|
2115
|
+
# resp.theme.stack_name #=> String
|
2116
|
+
# resp.theme.state #=> String, one of "ENABLED", "DISABLED"
|
2117
|
+
# resp.theme.theme_title_text #=> String
|
2118
|
+
# resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
|
2119
|
+
# resp.theme.theme_footer_links #=> Array
|
2120
|
+
# resp.theme.theme_footer_links[0].display_name #=> String
|
2121
|
+
# resp.theme.theme_footer_links[0].footer_link_url #=> String
|
2122
|
+
# resp.theme.theme_organization_logo_url #=> String
|
2123
|
+
# resp.theme.theme_favicon_url #=> String
|
2124
|
+
# resp.theme.created_time #=> Time
|
2125
|
+
#
|
2126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateThemeForStack AWS API Documentation
|
2127
|
+
#
|
2128
|
+
# @overload create_theme_for_stack(params = {})
|
2129
|
+
# @param [Hash] params ({})
|
2130
|
+
def create_theme_for_stack(params = {}, options = {})
|
2131
|
+
req = build_request(:create_theme_for_stack, params)
|
2132
|
+
req.send_request(options)
|
2133
|
+
end
|
2134
|
+
|
2030
2135
|
# Creates a new image with the latest Windows operating system updates,
|
2031
2136
|
# driver updates, and AppStream 2.0 agent software.
|
2032
2137
|
#
|
@@ -2139,6 +2244,11 @@ module Aws::AppStream
|
|
2139
2244
|
# 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
2245
|
# resp.image.image_errors[0].error_message #=> String
|
2141
2246
|
# resp.image.image_errors[0].error_timestamp #=> Time
|
2247
|
+
# resp.image.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
2248
|
+
# resp.image.supported_instance_families #=> Array
|
2249
|
+
# resp.image.supported_instance_families[0] #=> String
|
2250
|
+
# resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
|
2251
|
+
# resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
|
2142
2252
|
# resp.can_update_image #=> Boolean
|
2143
2253
|
#
|
2144
2254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImage AWS API Documentation
|
@@ -2427,6 +2537,11 @@ module Aws::AppStream
|
|
2427
2537
|
# 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
2538
|
# resp.image.image_errors[0].error_message #=> String
|
2429
2539
|
# resp.image.image_errors[0].error_timestamp #=> Time
|
2540
|
+
# resp.image.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
2541
|
+
# resp.image.supported_instance_families #=> Array
|
2542
|
+
# resp.image.supported_instance_families[0] #=> String
|
2543
|
+
# resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
|
2544
|
+
# resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
|
2430
2545
|
#
|
2431
2546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
|
2432
2547
|
#
|
@@ -2483,6 +2598,7 @@ module Aws::AppStream
|
|
2483
2598
|
# resp.image_builder.access_endpoints #=> Array
|
2484
2599
|
# resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
2485
2600
|
# resp.image_builder.access_endpoints[0].vpce_id #=> String
|
2601
|
+
# resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
2486
2602
|
#
|
2487
2603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilder AWS API Documentation
|
2488
2604
|
#
|
@@ -2547,6 +2663,29 @@ module Aws::AppStream
|
|
2547
2663
|
req.send_request(options)
|
2548
2664
|
end
|
2549
2665
|
|
2666
|
+
# Deletes custom branding that customizes the appearance of the
|
2667
|
+
# streaming application catalog page.
|
2668
|
+
#
|
2669
|
+
# @option params [required, String] :stack_name
|
2670
|
+
# The name of the stack for the theme.
|
2671
|
+
#
|
2672
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2673
|
+
#
|
2674
|
+
# @example Request syntax with placeholder values
|
2675
|
+
#
|
2676
|
+
# resp = client.delete_theme_for_stack({
|
2677
|
+
# stack_name: "Name", # required
|
2678
|
+
# })
|
2679
|
+
#
|
2680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteThemeForStack AWS API Documentation
|
2681
|
+
#
|
2682
|
+
# @overload delete_theme_for_stack(params = {})
|
2683
|
+
# @param [Hash] params ({})
|
2684
|
+
def delete_theme_for_stack(params = {}, options = {})
|
2685
|
+
req = build_request(:delete_theme_for_stack, params)
|
2686
|
+
req.send_request(options)
|
2687
|
+
end
|
2688
|
+
|
2550
2689
|
# Disables usage report generation.
|
2551
2690
|
#
|
2552
2691
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -3116,6 +3255,7 @@ module Aws::AppStream
|
|
3116
3255
|
# resp.image_builders[0].access_endpoints #=> Array
|
3117
3256
|
# resp.image_builders[0].access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
3118
3257
|
# resp.image_builders[0].access_endpoints[0].vpce_id #=> String
|
3258
|
+
# resp.image_builders[0].latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
3119
3259
|
# resp.next_token #=> String
|
3120
3260
|
#
|
3121
3261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuilders AWS API Documentation
|
@@ -3261,6 +3401,11 @@ module Aws::AppStream
|
|
3261
3401
|
# 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
3402
|
# resp.images[0].image_errors[0].error_message #=> String
|
3263
3403
|
# resp.images[0].image_errors[0].error_timestamp #=> Time
|
3404
|
+
# resp.images[0].latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
3405
|
+
# resp.images[0].supported_instance_families #=> Array
|
3406
|
+
# resp.images[0].supported_instance_families[0] #=> String
|
3407
|
+
# resp.images[0].dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
|
3408
|
+
# resp.images[0].image_shared_with_others #=> String, one of "TRUE", "FALSE"
|
3264
3409
|
# resp.next_token #=> String
|
3265
3410
|
#
|
3266
3411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
|
@@ -3412,6 +3557,45 @@ module Aws::AppStream
|
|
3412
3557
|
req.send_request(options)
|
3413
3558
|
end
|
3414
3559
|
|
3560
|
+
# Retrieves a list that describes the theme for a specified stack. A
|
3561
|
+
# theme is custom branding that customizes the appearance of the
|
3562
|
+
# streaming application catalog page.
|
3563
|
+
#
|
3564
|
+
# @option params [required, String] :stack_name
|
3565
|
+
# The name of the stack for the theme.
|
3566
|
+
#
|
3567
|
+
# @return [Types::DescribeThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3568
|
+
#
|
3569
|
+
# * {Types::DescribeThemeForStackResult#theme #theme} => Types::Theme
|
3570
|
+
#
|
3571
|
+
# @example Request syntax with placeholder values
|
3572
|
+
#
|
3573
|
+
# resp = client.describe_theme_for_stack({
|
3574
|
+
# stack_name: "Name", # required
|
3575
|
+
# })
|
3576
|
+
#
|
3577
|
+
# @example Response structure
|
3578
|
+
#
|
3579
|
+
# resp.theme.stack_name #=> String
|
3580
|
+
# resp.theme.state #=> String, one of "ENABLED", "DISABLED"
|
3581
|
+
# resp.theme.theme_title_text #=> String
|
3582
|
+
# resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
|
3583
|
+
# resp.theme.theme_footer_links #=> Array
|
3584
|
+
# resp.theme.theme_footer_links[0].display_name #=> String
|
3585
|
+
# resp.theme.theme_footer_links[0].footer_link_url #=> String
|
3586
|
+
# resp.theme.theme_organization_logo_url #=> String
|
3587
|
+
# resp.theme.theme_favicon_url #=> String
|
3588
|
+
# resp.theme.created_time #=> Time
|
3589
|
+
#
|
3590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeThemeForStack AWS API Documentation
|
3591
|
+
#
|
3592
|
+
# @overload describe_theme_for_stack(params = {})
|
3593
|
+
# @param [Hash] params ({})
|
3594
|
+
def describe_theme_for_stack(params = {}, options = {})
|
3595
|
+
req = build_request(:describe_theme_for_stack, params)
|
3596
|
+
req.send_request(options)
|
3597
|
+
end
|
3598
|
+
|
3415
3599
|
# Retrieves a list that describes one or more usage report
|
3416
3600
|
# subscriptions.
|
3417
3601
|
#
|
@@ -4049,6 +4233,7 @@ module Aws::AppStream
|
|
4049
4233
|
# resp.image_builder.access_endpoints #=> Array
|
4050
4234
|
# resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
4051
4235
|
# resp.image_builder.access_endpoints[0].vpce_id #=> String
|
4236
|
+
# resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
4052
4237
|
#
|
4053
4238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilder AWS API Documentation
|
4054
4239
|
#
|
@@ -4180,6 +4365,7 @@ module Aws::AppStream
|
|
4180
4365
|
# resp.image_builder.access_endpoints #=> Array
|
4181
4366
|
# resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
|
4182
4367
|
# resp.image_builder.access_endpoints[0].vpce_id #=> String
|
4368
|
+
# resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
|
4183
4369
|
#
|
4184
4370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilder AWS API Documentation
|
4185
4371
|
#
|
@@ -5119,20 +5305,112 @@ module Aws::AppStream
|
|
5119
5305
|
req.send_request(options)
|
5120
5306
|
end
|
5121
5307
|
|
5308
|
+
# Updates custom branding that customizes the appearance of the
|
5309
|
+
# streaming application catalog page.
|
5310
|
+
#
|
5311
|
+
# @option params [required, String] :stack_name
|
5312
|
+
# The name of the stack for the theme.
|
5313
|
+
#
|
5314
|
+
# @option params [Array<Types::ThemeFooterLink>] :footer_links
|
5315
|
+
# The links that are displayed in the footer of the streaming
|
5316
|
+
# application catalog page. These links are helpful resources for users,
|
5317
|
+
# such as the organization's IT support and product marketing sites.
|
5318
|
+
#
|
5319
|
+
# @option params [String] :title_text
|
5320
|
+
# The title that is displayed at the top of the browser tab during
|
5321
|
+
# users' application streaming sessions.
|
5322
|
+
#
|
5323
|
+
# @option params [String] :theme_styling
|
5324
|
+
# The color theme that is applied to website links, text, and buttons.
|
5325
|
+
# These colors are also applied as accents in the background for the
|
5326
|
+
# streaming application catalog page.
|
5327
|
+
#
|
5328
|
+
# @option params [Types::S3Location] :organization_logo_s3_location
|
5329
|
+
# The organization logo that appears on the streaming application
|
5330
|
+
# catalog page.
|
5331
|
+
#
|
5332
|
+
# @option params [Types::S3Location] :favicon_s3_location
|
5333
|
+
# The S3 location of the favicon. The favicon enables users to recognize
|
5334
|
+
# their application streaming site in a browser full of tabs or
|
5335
|
+
# bookmarks. It is displayed at the top of the browser tab for the
|
5336
|
+
# application streaming site during users' streaming sessions.
|
5337
|
+
#
|
5338
|
+
# @option params [String] :state
|
5339
|
+
# Specifies whether custom branding should be applied to catalog page or
|
5340
|
+
# not.
|
5341
|
+
#
|
5342
|
+
# @option params [Array<String>] :attributes_to_delete
|
5343
|
+
# The attributes to delete.
|
5344
|
+
#
|
5345
|
+
# @return [Types::UpdateThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5346
|
+
#
|
5347
|
+
# * {Types::UpdateThemeForStackResult#theme #theme} => Types::Theme
|
5348
|
+
#
|
5349
|
+
# @example Request syntax with placeholder values
|
5350
|
+
#
|
5351
|
+
# resp = client.update_theme_for_stack({
|
5352
|
+
# stack_name: "Name", # required
|
5353
|
+
# footer_links: [
|
5354
|
+
# {
|
5355
|
+
# display_name: "ThemeFooterLinkDisplayName",
|
5356
|
+
# footer_link_url: "ThemeFooterLinkURL",
|
5357
|
+
# },
|
5358
|
+
# ],
|
5359
|
+
# title_text: "ThemeTitleText",
|
5360
|
+
# theme_styling: "LIGHT_BLUE", # accepts LIGHT_BLUE, BLUE, PINK, RED
|
5361
|
+
# organization_logo_s3_location: {
|
5362
|
+
# s3_bucket: "S3Bucket", # required
|
5363
|
+
# s3_key: "S3Key",
|
5364
|
+
# },
|
5365
|
+
# favicon_s3_location: {
|
5366
|
+
# s3_bucket: "S3Bucket", # required
|
5367
|
+
# s3_key: "S3Key",
|
5368
|
+
# },
|
5369
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
5370
|
+
# attributes_to_delete: ["FOOTER_LINKS"], # accepts FOOTER_LINKS
|
5371
|
+
# })
|
5372
|
+
#
|
5373
|
+
# @example Response structure
|
5374
|
+
#
|
5375
|
+
# resp.theme.stack_name #=> String
|
5376
|
+
# resp.theme.state #=> String, one of "ENABLED", "DISABLED"
|
5377
|
+
# resp.theme.theme_title_text #=> String
|
5378
|
+
# resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
|
5379
|
+
# resp.theme.theme_footer_links #=> Array
|
5380
|
+
# resp.theme.theme_footer_links[0].display_name #=> String
|
5381
|
+
# resp.theme.theme_footer_links[0].footer_link_url #=> String
|
5382
|
+
# resp.theme.theme_organization_logo_url #=> String
|
5383
|
+
# resp.theme.theme_favicon_url #=> String
|
5384
|
+
# resp.theme.created_time #=> Time
|
5385
|
+
#
|
5386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateThemeForStack AWS API Documentation
|
5387
|
+
#
|
5388
|
+
# @overload update_theme_for_stack(params = {})
|
5389
|
+
# @param [Hash] params ({})
|
5390
|
+
def update_theme_for_stack(params = {}, options = {})
|
5391
|
+
req = build_request(:update_theme_for_stack, params)
|
5392
|
+
req.send_request(options)
|
5393
|
+
end
|
5394
|
+
|
5122
5395
|
# @!endgroup
|
5123
5396
|
|
5124
5397
|
# @param params ({})
|
5125
5398
|
# @api private
|
5126
5399
|
def build_request(operation_name, params = {})
|
5127
5400
|
handlers = @handlers.for(operation_name)
|
5401
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
5402
|
+
Aws::Telemetry.module_to_tracer_name('Aws::AppStream')
|
5403
|
+
)
|
5128
5404
|
context = Seahorse::Client::RequestContext.new(
|
5129
5405
|
operation_name: operation_name,
|
5130
5406
|
operation: config.api.operation(operation_name),
|
5131
5407
|
client: self,
|
5132
5408
|
params: params,
|
5133
|
-
config: config
|
5409
|
+
config: config,
|
5410
|
+
tracer: tracer
|
5411
|
+
)
|
5134
5412
|
context[:gem_name] = 'aws-sdk-appstream'
|
5135
|
-
context[:gem_version] = '1.
|
5413
|
+
context[:gem_version] = '1.95.0'
|
5136
5414
|
Seahorse::Client::Request.new(handlers, context)
|
5137
5415
|
end
|
5138
5416
|
|