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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +262 -1
- 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 +73 -0
- data/sig/types.rbs +73 -0
- metadata +2 -2
@@ -264,6 +264,20 @@ module Aws::AppStream
|
|
264
264
|
end
|
265
265
|
end
|
266
266
|
|
267
|
+
class CreateThemeForStack
|
268
|
+
def self.build(context)
|
269
|
+
unless context.config.regional_endpoint
|
270
|
+
endpoint = context.config.endpoint.to_s
|
271
|
+
end
|
272
|
+
Aws::AppStream::EndpointParameters.new(
|
273
|
+
region: context.config.region,
|
274
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
275
|
+
use_fips: context.config.use_fips_endpoint,
|
276
|
+
endpoint: endpoint,
|
277
|
+
)
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
267
281
|
class CreateUpdatedImage
|
268
282
|
def self.build(context)
|
269
283
|
unless context.config.regional_endpoint
|
@@ -446,6 +460,20 @@ module Aws::AppStream
|
|
446
460
|
end
|
447
461
|
end
|
448
462
|
|
463
|
+
class DeleteThemeForStack
|
464
|
+
def self.build(context)
|
465
|
+
unless context.config.regional_endpoint
|
466
|
+
endpoint = context.config.endpoint.to_s
|
467
|
+
end
|
468
|
+
Aws::AppStream::EndpointParameters.new(
|
469
|
+
region: context.config.region,
|
470
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
471
|
+
use_fips: context.config.use_fips_endpoint,
|
472
|
+
endpoint: endpoint,
|
473
|
+
)
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
449
477
|
class DeleteUsageReportSubscription
|
450
478
|
def self.build(context)
|
451
479
|
unless context.config.regional_endpoint
|
@@ -656,6 +684,20 @@ module Aws::AppStream
|
|
656
684
|
end
|
657
685
|
end
|
658
686
|
|
687
|
+
class DescribeThemeForStack
|
688
|
+
def self.build(context)
|
689
|
+
unless context.config.regional_endpoint
|
690
|
+
endpoint = context.config.endpoint.to_s
|
691
|
+
end
|
692
|
+
Aws::AppStream::EndpointParameters.new(
|
693
|
+
region: context.config.region,
|
694
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
695
|
+
use_fips: context.config.use_fips_endpoint,
|
696
|
+
endpoint: endpoint,
|
697
|
+
)
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
659
701
|
class DescribeUsageReportSubscriptions
|
660
702
|
def self.build(context)
|
661
703
|
unless context.config.regional_endpoint
|
@@ -1062,5 +1104,19 @@ module Aws::AppStream
|
|
1062
1104
|
end
|
1063
1105
|
end
|
1064
1106
|
|
1107
|
+
class UpdateThemeForStack
|
1108
|
+
def self.build(context)
|
1109
|
+
unless context.config.regional_endpoint
|
1110
|
+
endpoint = context.config.endpoint.to_s
|
1111
|
+
end
|
1112
|
+
Aws::AppStream::EndpointParameters.new(
|
1113
|
+
region: context.config.region,
|
1114
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1115
|
+
use_fips: context.config.use_fips_endpoint,
|
1116
|
+
endpoint: endpoint,
|
1117
|
+
)
|
1118
|
+
end
|
1119
|
+
end
|
1120
|
+
|
1065
1121
|
end
|
1066
1122
|
end
|
@@ -94,6 +94,8 @@ module Aws::AppStream
|
|
94
94
|
Aws::AppStream::Endpoints::CreateStack.build(context)
|
95
95
|
when :create_streaming_url
|
96
96
|
Aws::AppStream::Endpoints::CreateStreamingURL.build(context)
|
97
|
+
when :create_theme_for_stack
|
98
|
+
Aws::AppStream::Endpoints::CreateThemeForStack.build(context)
|
97
99
|
when :create_updated_image
|
98
100
|
Aws::AppStream::Endpoints::CreateUpdatedImage.build(context)
|
99
101
|
when :create_usage_report_subscription
|
@@ -120,6 +122,8 @@ module Aws::AppStream
|
|
120
122
|
Aws::AppStream::Endpoints::DeleteImagePermissions.build(context)
|
121
123
|
when :delete_stack
|
122
124
|
Aws::AppStream::Endpoints::DeleteStack.build(context)
|
125
|
+
when :delete_theme_for_stack
|
126
|
+
Aws::AppStream::Endpoints::DeleteThemeForStack.build(context)
|
123
127
|
when :delete_usage_report_subscription
|
124
128
|
Aws::AppStream::Endpoints::DeleteUsageReportSubscription.build(context)
|
125
129
|
when :delete_user
|
@@ -150,6 +154,8 @@ module Aws::AppStream
|
|
150
154
|
Aws::AppStream::Endpoints::DescribeSessions.build(context)
|
151
155
|
when :describe_stacks
|
152
156
|
Aws::AppStream::Endpoints::DescribeStacks.build(context)
|
157
|
+
when :describe_theme_for_stack
|
158
|
+
Aws::AppStream::Endpoints::DescribeThemeForStack.build(context)
|
153
159
|
when :describe_usage_report_subscriptions
|
154
160
|
Aws::AppStream::Endpoints::DescribeUsageReportSubscriptions.build(context)
|
155
161
|
when :describe_user_stack_associations
|
@@ -208,6 +214,8 @@ module Aws::AppStream
|
|
208
214
|
Aws::AppStream::Endpoints::UpdateImagePermissions.build(context)
|
209
215
|
when :update_stack
|
210
216
|
Aws::AppStream::Endpoints::UpdateStack.build(context)
|
217
|
+
when :update_theme_for_stack
|
218
|
+
Aws::AppStream::Endpoints::UpdateThemeForStack.build(context)
|
211
219
|
end
|
212
220
|
end
|
213
221
|
end
|
@@ -1204,6 +1204,20 @@ module Aws::AppStream
|
|
1204
1204
|
#
|
1205
1205
|
# * stream.graphics.g4dn.16xlarge
|
1206
1206
|
#
|
1207
|
+
# * stream.graphics.g5.xlarge
|
1208
|
+
#
|
1209
|
+
# * stream.graphics.g5.2xlarge
|
1210
|
+
#
|
1211
|
+
# * stream.graphics.g5.4xlarge
|
1212
|
+
#
|
1213
|
+
# * stream.graphics.g5.8xlarge
|
1214
|
+
#
|
1215
|
+
# * stream.graphics.g5.12xlarge
|
1216
|
+
#
|
1217
|
+
# * stream.graphics.g5.16xlarge
|
1218
|
+
#
|
1219
|
+
# * stream.graphics.g5.24xlarge
|
1220
|
+
#
|
1207
1221
|
# * stream.graphics-pro.4xlarge
|
1208
1222
|
#
|
1209
1223
|
# * stream.graphics-pro.8xlarge
|
@@ -1832,6 +1846,65 @@ module Aws::AppStream
|
|
1832
1846
|
include Aws::Structure
|
1833
1847
|
end
|
1834
1848
|
|
1849
|
+
# @!attribute [rw] stack_name
|
1850
|
+
# The name of the stack for the theme.
|
1851
|
+
# @return [String]
|
1852
|
+
#
|
1853
|
+
# @!attribute [rw] footer_links
|
1854
|
+
# The links that are displayed in the footer of the streaming
|
1855
|
+
# application catalog page. These links are helpful resources for
|
1856
|
+
# users, such as the organization's IT support and product marketing
|
1857
|
+
# sites.
|
1858
|
+
# @return [Array<Types::ThemeFooterLink>]
|
1859
|
+
#
|
1860
|
+
# @!attribute [rw] title_text
|
1861
|
+
# The title that is displayed at the top of the browser tab during
|
1862
|
+
# users' application streaming sessions.
|
1863
|
+
# @return [String]
|
1864
|
+
#
|
1865
|
+
# @!attribute [rw] theme_styling
|
1866
|
+
# The color theme that is applied to website links, text, and buttons.
|
1867
|
+
# These colors are also applied as accents in the background for the
|
1868
|
+
# streaming application catalog page.
|
1869
|
+
# @return [String]
|
1870
|
+
#
|
1871
|
+
# @!attribute [rw] organization_logo_s3_location
|
1872
|
+
# The organization logo that appears on the streaming application
|
1873
|
+
# catalog page.
|
1874
|
+
# @return [Types::S3Location]
|
1875
|
+
#
|
1876
|
+
# @!attribute [rw] favicon_s3_location
|
1877
|
+
# The S3 location of the favicon. The favicon enables users to
|
1878
|
+
# recognize their application streaming site in a browser full of tabs
|
1879
|
+
# or bookmarks. It is displayed at the top of the browser tab for the
|
1880
|
+
# application streaming site during users' streaming sessions.
|
1881
|
+
# @return [Types::S3Location]
|
1882
|
+
#
|
1883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateThemeForStackRequest AWS API Documentation
|
1884
|
+
#
|
1885
|
+
class CreateThemeForStackRequest < Struct.new(
|
1886
|
+
:stack_name,
|
1887
|
+
:footer_links,
|
1888
|
+
:title_text,
|
1889
|
+
:theme_styling,
|
1890
|
+
:organization_logo_s3_location,
|
1891
|
+
:favicon_s3_location)
|
1892
|
+
SENSITIVE = []
|
1893
|
+
include Aws::Structure
|
1894
|
+
end
|
1895
|
+
|
1896
|
+
# @!attribute [rw] theme
|
1897
|
+
# The theme object that contains the metadata of the custom branding.
|
1898
|
+
# @return [Types::Theme]
|
1899
|
+
#
|
1900
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateThemeForStackResult AWS API Documentation
|
1901
|
+
#
|
1902
|
+
class CreateThemeForStackResult < Struct.new(
|
1903
|
+
:theme)
|
1904
|
+
SENSITIVE = []
|
1905
|
+
include Aws::Structure
|
1906
|
+
end
|
1907
|
+
|
1835
1908
|
# @!attribute [rw] existing_image_name
|
1836
1909
|
# The name of the image to update.
|
1837
1910
|
# @return [String]
|
@@ -2180,6 +2253,22 @@ module Aws::AppStream
|
|
2180
2253
|
#
|
2181
2254
|
class DeleteStackResult < Aws::EmptyStructure; end
|
2182
2255
|
|
2256
|
+
# @!attribute [rw] stack_name
|
2257
|
+
# The name of the stack for the theme.
|
2258
|
+
# @return [String]
|
2259
|
+
#
|
2260
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteThemeForStackRequest AWS API Documentation
|
2261
|
+
#
|
2262
|
+
class DeleteThemeForStackRequest < Struct.new(
|
2263
|
+
:stack_name)
|
2264
|
+
SENSITIVE = []
|
2265
|
+
include Aws::Structure
|
2266
|
+
end
|
2267
|
+
|
2268
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteThemeForStackResult AWS API Documentation
|
2269
|
+
#
|
2270
|
+
class DeleteThemeForStackResult < Aws::EmptyStructure; end
|
2271
|
+
|
2183
2272
|
# @api private
|
2184
2273
|
#
|
2185
2274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteUsageReportSubscriptionRequest AWS API Documentation
|
@@ -2801,6 +2890,30 @@ module Aws::AppStream
|
|
2801
2890
|
include Aws::Structure
|
2802
2891
|
end
|
2803
2892
|
|
2893
|
+
# @!attribute [rw] stack_name
|
2894
|
+
# The name of the stack for the theme.
|
2895
|
+
# @return [String]
|
2896
|
+
#
|
2897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeThemeForStackRequest AWS API Documentation
|
2898
|
+
#
|
2899
|
+
class DescribeThemeForStackRequest < Struct.new(
|
2900
|
+
:stack_name)
|
2901
|
+
SENSITIVE = []
|
2902
|
+
include Aws::Structure
|
2903
|
+
end
|
2904
|
+
|
2905
|
+
# @!attribute [rw] theme
|
2906
|
+
# The theme object that contains the metadata of the custom branding.
|
2907
|
+
# @return [Types::Theme]
|
2908
|
+
#
|
2909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeThemeForStackResult AWS API Documentation
|
2910
|
+
#
|
2911
|
+
class DescribeThemeForStackResult < Struct.new(
|
2912
|
+
:theme)
|
2913
|
+
SENSITIVE = []
|
2914
|
+
include Aws::Structure
|
2915
|
+
end
|
2916
|
+
|
2804
2917
|
# @!attribute [rw] max_results
|
2805
2918
|
# The maximum size of each page of results.
|
2806
2919
|
# @return [Integer]
|
@@ -3687,6 +3800,42 @@ module Aws::AppStream
|
|
3687
3800
|
# created.
|
3688
3801
|
# @return [Array<Types::ResourceError>]
|
3689
3802
|
#
|
3803
|
+
# @!attribute [rw] latest_appstream_agent_version
|
3804
|
+
# Indicates whether the image is using the latest AppStream 2.0 agent
|
3805
|
+
# version or not.
|
3806
|
+
# @return [String]
|
3807
|
+
#
|
3808
|
+
# @!attribute [rw] supported_instance_families
|
3809
|
+
# The supported instances families that determine which image a
|
3810
|
+
# customer can use when the customer launches a fleet or image
|
3811
|
+
# builder. The following instances families are supported:
|
3812
|
+
#
|
3813
|
+
# * General Purpose
|
3814
|
+
#
|
3815
|
+
# * Compute Optimized
|
3816
|
+
#
|
3817
|
+
# * Memory Optimized
|
3818
|
+
#
|
3819
|
+
# * Graphics
|
3820
|
+
#
|
3821
|
+
# * Graphics Design
|
3822
|
+
#
|
3823
|
+
# * Graphics Pro
|
3824
|
+
#
|
3825
|
+
# * Graphics G4
|
3826
|
+
#
|
3827
|
+
# * Graphics G5
|
3828
|
+
# @return [Array<String>]
|
3829
|
+
#
|
3830
|
+
# @!attribute [rw] dynamic_app_providers_enabled
|
3831
|
+
# Indicates whether dynamic app providers are enabled within an
|
3832
|
+
# AppStream 2.0 image or not.
|
3833
|
+
# @return [String]
|
3834
|
+
#
|
3835
|
+
# @!attribute [rw] image_shared_with_others
|
3836
|
+
# Indicates whether the image is shared with another account ID.
|
3837
|
+
# @return [String]
|
3838
|
+
#
|
3690
3839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Image AWS API Documentation
|
3691
3840
|
#
|
3692
3841
|
class Image < Struct.new(
|
@@ -3706,7 +3855,11 @@ module Aws::AppStream
|
|
3706
3855
|
:public_base_image_released_date,
|
3707
3856
|
:appstream_agent_version,
|
3708
3857
|
:image_permissions,
|
3709
|
-
:image_errors
|
3858
|
+
:image_errors,
|
3859
|
+
:latest_appstream_agent_version,
|
3860
|
+
:supported_instance_families,
|
3861
|
+
:dynamic_app_providers_enabled,
|
3862
|
+
:image_shared_with_others)
|
3710
3863
|
SENSITIVE = []
|
3711
3864
|
include Aws::Structure
|
3712
3865
|
end
|
@@ -3871,6 +4024,11 @@ module Aws::AppStream
|
|
3871
4024
|
# specified endpoints.
|
3872
4025
|
# @return [Array<Types::AccessEndpoint>]
|
3873
4026
|
#
|
4027
|
+
# @!attribute [rw] latest_appstream_agent_version
|
4028
|
+
# Indicates whether the image builder is using the latest AppStream
|
4029
|
+
# 2.0 agent version or not.
|
4030
|
+
# @return [String]
|
4031
|
+
#
|
3874
4032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilder AWS API Documentation
|
3875
4033
|
#
|
3876
4034
|
class ImageBuilder < Struct.new(
|
@@ -3891,7 +4049,8 @@ module Aws::AppStream
|
|
3891
4049
|
:network_access_configuration,
|
3892
4050
|
:image_builder_errors,
|
3893
4051
|
:appstream_agent_version,
|
3894
|
-
:access_endpoints
|
4052
|
+
:access_endpoints,
|
4053
|
+
:latest_appstream_agent_version)
|
3895
4054
|
SENSITIVE = []
|
3896
4055
|
include Aws::Structure
|
3897
4056
|
end
|
@@ -4816,6 +4975,77 @@ module Aws::AppStream
|
|
4816
4975
|
#
|
4817
4976
|
class TagResourceResponse < Aws::EmptyStructure; end
|
4818
4977
|
|
4978
|
+
# The custom branding theme, which might include a custom logo, website
|
4979
|
+
# links, and other branding to display to users.
|
4980
|
+
#
|
4981
|
+
# @!attribute [rw] stack_name
|
4982
|
+
# The stack that has the custom branding theme.
|
4983
|
+
# @return [String]
|
4984
|
+
#
|
4985
|
+
# @!attribute [rw] state
|
4986
|
+
# The state of the theme.
|
4987
|
+
# @return [String]
|
4988
|
+
#
|
4989
|
+
# @!attribute [rw] theme_title_text
|
4990
|
+
# The browser tab page title.
|
4991
|
+
# @return [String]
|
4992
|
+
#
|
4993
|
+
# @!attribute [rw] theme_styling
|
4994
|
+
# The color that is used for the website links, text, buttons, and
|
4995
|
+
# catalog page background.
|
4996
|
+
# @return [String]
|
4997
|
+
#
|
4998
|
+
# @!attribute [rw] theme_footer_links
|
4999
|
+
# The website links that display in the catalog page footer.
|
5000
|
+
# @return [Array<Types::ThemeFooterLink>]
|
5001
|
+
#
|
5002
|
+
# @!attribute [rw] theme_organization_logo_url
|
5003
|
+
# The URL of the logo that displays in the catalog page header.
|
5004
|
+
# @return [String]
|
5005
|
+
#
|
5006
|
+
# @!attribute [rw] theme_favicon_url
|
5007
|
+
# The URL of the icon that displays at the top of a user's browser
|
5008
|
+
# tab during streaming sessions.
|
5009
|
+
# @return [String]
|
5010
|
+
#
|
5011
|
+
# @!attribute [rw] created_time
|
5012
|
+
# The time the theme was created.
|
5013
|
+
# @return [Time]
|
5014
|
+
#
|
5015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Theme AWS API Documentation
|
5016
|
+
#
|
5017
|
+
class Theme < Struct.new(
|
5018
|
+
:stack_name,
|
5019
|
+
:state,
|
5020
|
+
:theme_title_text,
|
5021
|
+
:theme_styling,
|
5022
|
+
:theme_footer_links,
|
5023
|
+
:theme_organization_logo_url,
|
5024
|
+
:theme_favicon_url,
|
5025
|
+
:created_time)
|
5026
|
+
SENSITIVE = []
|
5027
|
+
include Aws::Structure
|
5028
|
+
end
|
5029
|
+
|
5030
|
+
# The website links that display in the catalog page footer.
|
5031
|
+
#
|
5032
|
+
# @!attribute [rw] display_name
|
5033
|
+
# The name of the websites that display in the catalog page footer.
|
5034
|
+
# @return [String]
|
5035
|
+
#
|
5036
|
+
# @!attribute [rw] footer_link_url
|
5037
|
+
# The URL of the websites that display in the catalog page footer.
|
5038
|
+
# @return [String]
|
5039
|
+
#
|
5040
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ThemeFooterLink AWS API Documentation
|
5041
|
+
#
|
5042
|
+
class ThemeFooterLink < Struct.new(
|
5043
|
+
:display_name,
|
5044
|
+
:footer_link_url)
|
5045
|
+
SENSITIVE = []
|
5046
|
+
include Aws::Structure
|
5047
|
+
end
|
5048
|
+
|
4819
5049
|
# @!attribute [rw] resource_arn
|
4820
5050
|
# The Amazon Resource Name (ARN) of the resource.
|
4821
5051
|
# @return [String]
|
@@ -5504,6 +5734,76 @@ module Aws::AppStream
|
|
5504
5734
|
include Aws::Structure
|
5505
5735
|
end
|
5506
5736
|
|
5737
|
+
# @!attribute [rw] stack_name
|
5738
|
+
# The name of the stack for the theme.
|
5739
|
+
# @return [String]
|
5740
|
+
#
|
5741
|
+
# @!attribute [rw] footer_links
|
5742
|
+
# The links that are displayed in the footer of the streaming
|
5743
|
+
# application catalog page. These links are helpful resources for
|
5744
|
+
# users, such as the organization's IT support and product marketing
|
5745
|
+
# sites.
|
5746
|
+
# @return [Array<Types::ThemeFooterLink>]
|
5747
|
+
#
|
5748
|
+
# @!attribute [rw] title_text
|
5749
|
+
# The title that is displayed at the top of the browser tab during
|
5750
|
+
# users' application streaming sessions.
|
5751
|
+
# @return [String]
|
5752
|
+
#
|
5753
|
+
# @!attribute [rw] theme_styling
|
5754
|
+
# The color theme that is applied to website links, text, and buttons.
|
5755
|
+
# These colors are also applied as accents in the background for the
|
5756
|
+
# streaming application catalog page.
|
5757
|
+
# @return [String]
|
5758
|
+
#
|
5759
|
+
# @!attribute [rw] organization_logo_s3_location
|
5760
|
+
# The organization logo that appears on the streaming application
|
5761
|
+
# catalog page.
|
5762
|
+
# @return [Types::S3Location]
|
5763
|
+
#
|
5764
|
+
# @!attribute [rw] favicon_s3_location
|
5765
|
+
# The S3 location of the favicon. The favicon enables users to
|
5766
|
+
# recognize their application streaming site in a browser full of tabs
|
5767
|
+
# or bookmarks. It is displayed at the top of the browser tab for the
|
5768
|
+
# application streaming site during users' streaming sessions.
|
5769
|
+
# @return [Types::S3Location]
|
5770
|
+
#
|
5771
|
+
# @!attribute [rw] state
|
5772
|
+
# Specifies whether custom branding should be applied to catalog page
|
5773
|
+
# or not.
|
5774
|
+
# @return [String]
|
5775
|
+
#
|
5776
|
+
# @!attribute [rw] attributes_to_delete
|
5777
|
+
# The attributes to delete.
|
5778
|
+
# @return [Array<String>]
|
5779
|
+
#
|
5780
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateThemeForStackRequest AWS API Documentation
|
5781
|
+
#
|
5782
|
+
class UpdateThemeForStackRequest < Struct.new(
|
5783
|
+
:stack_name,
|
5784
|
+
:footer_links,
|
5785
|
+
:title_text,
|
5786
|
+
:theme_styling,
|
5787
|
+
:organization_logo_s3_location,
|
5788
|
+
:favicon_s3_location,
|
5789
|
+
:state,
|
5790
|
+
:attributes_to_delete)
|
5791
|
+
SENSITIVE = []
|
5792
|
+
include Aws::Structure
|
5793
|
+
end
|
5794
|
+
|
5795
|
+
# @!attribute [rw] theme
|
5796
|
+
# The theme object that contains the metadata of the custom branding.
|
5797
|
+
# @return [Types::Theme]
|
5798
|
+
#
|
5799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateThemeForStackResult AWS API Documentation
|
5800
|
+
#
|
5801
|
+
class UpdateThemeForStackResult < Struct.new(
|
5802
|
+
:theme)
|
5803
|
+
SENSITIVE = []
|
5804
|
+
include Aws::Structure
|
5805
|
+
end
|
5806
|
+
|
5507
5807
|
# Describes information about the usage report subscription.
|
5508
5808
|
#
|
5509
5809
|
# @!attribute [rw] s3_bucket_name
|
data/lib/aws-sdk-appstream.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -447,6 +447,32 @@ module Aws
|
|
447
447
|
) -> _CreateStreamingURLResponseSuccess
|
448
448
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamingURLResponseSuccess
|
449
449
|
|
450
|
+
interface _CreateThemeForStackResponseSuccess
|
451
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateThemeForStackResult]
|
452
|
+
def theme: () -> Types::Theme
|
453
|
+
end
|
454
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#create_theme_for_stack-instance_method
|
455
|
+
def create_theme_for_stack: (
|
456
|
+
stack_name: ::String,
|
457
|
+
?footer_links: Array[
|
458
|
+
{
|
459
|
+
display_name: ::String?,
|
460
|
+
footer_link_url: ::String?
|
461
|
+
},
|
462
|
+
],
|
463
|
+
title_text: ::String,
|
464
|
+
theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED"),
|
465
|
+
organization_logo_s3_location: {
|
466
|
+
s3_bucket: ::String,
|
467
|
+
s3_key: ::String?
|
468
|
+
},
|
469
|
+
favicon_s3_location: {
|
470
|
+
s3_bucket: ::String,
|
471
|
+
s3_key: ::String?
|
472
|
+
}
|
473
|
+
) -> _CreateThemeForStackResponseSuccess
|
474
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateThemeForStackResponseSuccess
|
475
|
+
|
450
476
|
interface _CreateUpdatedImageResponseSuccess
|
451
477
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUpdatedImageResult]
|
452
478
|
def image: () -> Types::Image
|
@@ -580,6 +606,15 @@ module Aws
|
|
580
606
|
) -> _DeleteStackResponseSuccess
|
581
607
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStackResponseSuccess
|
582
608
|
|
609
|
+
interface _DeleteThemeForStackResponseSuccess
|
610
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteThemeForStackResult]
|
611
|
+
end
|
612
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#delete_theme_for_stack-instance_method
|
613
|
+
def delete_theme_for_stack: (
|
614
|
+
stack_name: ::String
|
615
|
+
) -> _DeleteThemeForStackResponseSuccess
|
616
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteThemeForStackResponseSuccess
|
617
|
+
|
583
618
|
interface _DeleteUsageReportSubscriptionResponseSuccess
|
584
619
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUsageReportSubscriptionResult]
|
585
620
|
end
|
@@ -776,6 +811,16 @@ module Aws
|
|
776
811
|
) -> _DescribeStacksResponseSuccess
|
777
812
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStacksResponseSuccess
|
778
813
|
|
814
|
+
interface _DescribeThemeForStackResponseSuccess
|
815
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeThemeForStackResult]
|
816
|
+
def theme: () -> Types::Theme
|
817
|
+
end
|
818
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#describe_theme_for_stack-instance_method
|
819
|
+
def describe_theme_for_stack: (
|
820
|
+
stack_name: ::String
|
821
|
+
) -> _DescribeThemeForStackResponseSuccess
|
822
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeThemeForStackResponseSuccess
|
823
|
+
|
779
824
|
interface _DescribeUsageReportSubscriptionsResponseSuccess
|
780
825
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUsageReportSubscriptionsResult]
|
781
826
|
def usage_report_subscriptions: () -> ::Array[Types::UsageReportSubscription]
|
@@ -1200,6 +1245,34 @@ module Aws
|
|
1200
1245
|
) -> _UpdateStackResponseSuccess
|
1201
1246
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackResponseSuccess
|
1202
1247
|
|
1248
|
+
interface _UpdateThemeForStackResponseSuccess
|
1249
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateThemeForStackResult]
|
1250
|
+
def theme: () -> Types::Theme
|
1251
|
+
end
|
1252
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#update_theme_for_stack-instance_method
|
1253
|
+
def update_theme_for_stack: (
|
1254
|
+
stack_name: ::String,
|
1255
|
+
?footer_links: Array[
|
1256
|
+
{
|
1257
|
+
display_name: ::String?,
|
1258
|
+
footer_link_url: ::String?
|
1259
|
+
},
|
1260
|
+
],
|
1261
|
+
?title_text: ::String,
|
1262
|
+
?theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED"),
|
1263
|
+
?organization_logo_s3_location: {
|
1264
|
+
s3_bucket: ::String,
|
1265
|
+
s3_key: ::String?
|
1266
|
+
},
|
1267
|
+
?favicon_s3_location: {
|
1268
|
+
s3_bucket: ::String,
|
1269
|
+
s3_key: ::String?
|
1270
|
+
},
|
1271
|
+
?state: ("ENABLED" | "DISABLED"),
|
1272
|
+
?attributes_to_delete: Array[("FOOTER_LINKS")]
|
1273
|
+
) -> _UpdateThemeForStackResponseSuccess
|
1274
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateThemeForStackResponseSuccess
|
1275
|
+
|
1203
1276
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#wait_until-instance_method
|
1204
1277
|
def wait_until: (:fleet_started waiter_name,
|
1205
1278
|
?names: Array[::String],
|