aws-sdk-appstream 1.93.0 → 1.100.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +296 -8
- data/lib/aws-sdk-appstream/client_api.rb +129 -0
- data/lib/aws-sdk-appstream/endpoints.rb +119 -300
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +26 -6
- data/lib/aws-sdk-appstream/types.rb +303 -2
- data/lib/aws-sdk-appstream.rb +16 -12
- data/sig/client.rbs +75 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +73 -0
- metadata +4 -4
@@ -15,11 +15,11 @@ module Aws::AppStream
|
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::AppStream::EndpointProvider',
|
17
17
|
rbs_type: 'untyped',
|
18
|
-
docstring:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
docstring: <<~DOCS) do |_cfg|
|
19
|
+
The endpoint provider used to resolve endpoints. Any object that responds to
|
20
|
+
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
21
|
+
`Aws::AppStream::EndpointParameters`.
|
22
|
+
DOCS
|
23
23
|
Aws::AppStream::EndpointProvider.new
|
24
24
|
end
|
25
25
|
|
@@ -40,11 +40,23 @@ module Aws::AppStream
|
|
40
40
|
context[:auth_scheme] =
|
41
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
42
42
|
|
43
|
-
@handler.call(context)
|
43
|
+
with_metrics(context) { @handler.call(context) }
|
44
44
|
end
|
45
45
|
|
46
46
|
private
|
47
47
|
|
48
|
+
def with_metrics(context, &block)
|
49
|
+
metrics = []
|
50
|
+
metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
|
51
|
+
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
|
+
metrics << 'SIGV4A_SIGNING'
|
53
|
+
end
|
54
|
+
if context.config.credentials&.credentials&.account_id
|
55
|
+
metrics << 'RESOLVED_ACCOUNT_ID'
|
56
|
+
end
|
57
|
+
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
58
|
+
end
|
59
|
+
|
48
60
|
def apply_endpoint_headers(context, headers)
|
49
61
|
headers.each do |key, values|
|
50
62
|
value = values
|
@@ -94,6 +106,8 @@ module Aws::AppStream
|
|
94
106
|
Aws::AppStream::Endpoints::CreateStack.build(context)
|
95
107
|
when :create_streaming_url
|
96
108
|
Aws::AppStream::Endpoints::CreateStreamingURL.build(context)
|
109
|
+
when :create_theme_for_stack
|
110
|
+
Aws::AppStream::Endpoints::CreateThemeForStack.build(context)
|
97
111
|
when :create_updated_image
|
98
112
|
Aws::AppStream::Endpoints::CreateUpdatedImage.build(context)
|
99
113
|
when :create_usage_report_subscription
|
@@ -120,6 +134,8 @@ module Aws::AppStream
|
|
120
134
|
Aws::AppStream::Endpoints::DeleteImagePermissions.build(context)
|
121
135
|
when :delete_stack
|
122
136
|
Aws::AppStream::Endpoints::DeleteStack.build(context)
|
137
|
+
when :delete_theme_for_stack
|
138
|
+
Aws::AppStream::Endpoints::DeleteThemeForStack.build(context)
|
123
139
|
when :delete_usage_report_subscription
|
124
140
|
Aws::AppStream::Endpoints::DeleteUsageReportSubscription.build(context)
|
125
141
|
when :delete_user
|
@@ -150,6 +166,8 @@ module Aws::AppStream
|
|
150
166
|
Aws::AppStream::Endpoints::DescribeSessions.build(context)
|
151
167
|
when :describe_stacks
|
152
168
|
Aws::AppStream::Endpoints::DescribeStacks.build(context)
|
169
|
+
when :describe_theme_for_stack
|
170
|
+
Aws::AppStream::Endpoints::DescribeThemeForStack.build(context)
|
153
171
|
when :describe_usage_report_subscriptions
|
154
172
|
Aws::AppStream::Endpoints::DescribeUsageReportSubscriptions.build(context)
|
155
173
|
when :describe_user_stack_associations
|
@@ -208,6 +226,8 @@ module Aws::AppStream
|
|
208
226
|
Aws::AppStream::Endpoints::UpdateImagePermissions.build(context)
|
209
227
|
when :update_stack
|
210
228
|
Aws::AppStream::Endpoints::UpdateStack.build(context)
|
229
|
+
when :update_theme_for_stack
|
230
|
+
Aws::AppStream::Endpoints::UpdateThemeForStack.build(context)
|
211
231
|
end
|
212
232
|
end
|
213
233
|
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
|
@@ -5730,3 +6030,4 @@ module Aws::AppStream
|
|
5730
6030
|
|
5731
6031
|
end
|
5732
6032
|
end
|
6033
|
+
|
data/lib/aws-sdk-appstream.rb
CHANGED
@@ -11,17 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-appstream/client_api'
|
16
|
-
require_relative 'aws-sdk-appstream/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-appstream/client'
|
18
|
-
require_relative 'aws-sdk-appstream/errors'
|
19
|
-
require_relative 'aws-sdk-appstream/waiters'
|
20
|
-
require_relative 'aws-sdk-appstream/resource'
|
21
|
-
require_relative 'aws-sdk-appstream/endpoint_parameters'
|
22
|
-
require_relative 'aws-sdk-appstream/endpoint_provider'
|
23
|
-
require_relative 'aws-sdk-appstream/endpoints'
|
24
|
-
require_relative 'aws-sdk-appstream/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:appstream)
|
25
15
|
|
26
16
|
# This module provides support for Amazon AppStream. This module is available in the
|
27
17
|
# `aws-sdk-appstream` gem.
|
@@ -52,7 +42,21 @@ require_relative 'aws-sdk-appstream/customizations'
|
|
52
42
|
#
|
53
43
|
# @!group service
|
54
44
|
module Aws::AppStream
|
45
|
+
autoload :Types, 'aws-sdk-appstream/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-appstream/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-appstream/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-appstream/client'
|
51
|
+
autoload :Errors, 'aws-sdk-appstream/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-appstream/waiters'
|
53
|
+
autoload :Resource, 'aws-sdk-appstream/resource'
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-appstream/endpoint_parameters'
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-appstream/endpoint_provider'
|
56
|
+
autoload :Endpoints, 'aws-sdk-appstream/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.100.0'
|
57
59
|
|
58
60
|
end
|
61
|
+
|
62
|
+
require_relative 'aws-sdk-appstream/customizations'
|
data/sig/client.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -51,6 +52,7 @@ module Aws
|
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?simple_json: bool,
|
53
54
|
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
56
|
?token_provider: untyped,
|
55
57
|
?use_dualstack_endpoint: bool,
|
56
58
|
?use_fips_endpoint: bool,
|
@@ -447,6 +449,32 @@ module Aws
|
|
447
449
|
) -> _CreateStreamingURLResponseSuccess
|
448
450
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamingURLResponseSuccess
|
449
451
|
|
452
|
+
interface _CreateThemeForStackResponseSuccess
|
453
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateThemeForStackResult]
|
454
|
+
def theme: () -> Types::Theme
|
455
|
+
end
|
456
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#create_theme_for_stack-instance_method
|
457
|
+
def create_theme_for_stack: (
|
458
|
+
stack_name: ::String,
|
459
|
+
?footer_links: Array[
|
460
|
+
{
|
461
|
+
display_name: ::String?,
|
462
|
+
footer_link_url: ::String?
|
463
|
+
},
|
464
|
+
],
|
465
|
+
title_text: ::String,
|
466
|
+
theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED"),
|
467
|
+
organization_logo_s3_location: {
|
468
|
+
s3_bucket: ::String,
|
469
|
+
s3_key: ::String?
|
470
|
+
},
|
471
|
+
favicon_s3_location: {
|
472
|
+
s3_bucket: ::String,
|
473
|
+
s3_key: ::String?
|
474
|
+
}
|
475
|
+
) -> _CreateThemeForStackResponseSuccess
|
476
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateThemeForStackResponseSuccess
|
477
|
+
|
450
478
|
interface _CreateUpdatedImageResponseSuccess
|
451
479
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUpdatedImageResult]
|
452
480
|
def image: () -> Types::Image
|
@@ -580,6 +608,15 @@ module Aws
|
|
580
608
|
) -> _DeleteStackResponseSuccess
|
581
609
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStackResponseSuccess
|
582
610
|
|
611
|
+
interface _DeleteThemeForStackResponseSuccess
|
612
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteThemeForStackResult]
|
613
|
+
end
|
614
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#delete_theme_for_stack-instance_method
|
615
|
+
def delete_theme_for_stack: (
|
616
|
+
stack_name: ::String
|
617
|
+
) -> _DeleteThemeForStackResponseSuccess
|
618
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteThemeForStackResponseSuccess
|
619
|
+
|
583
620
|
interface _DeleteUsageReportSubscriptionResponseSuccess
|
584
621
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUsageReportSubscriptionResult]
|
585
622
|
end
|
@@ -776,6 +813,16 @@ module Aws
|
|
776
813
|
) -> _DescribeStacksResponseSuccess
|
777
814
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStacksResponseSuccess
|
778
815
|
|
816
|
+
interface _DescribeThemeForStackResponseSuccess
|
817
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeThemeForStackResult]
|
818
|
+
def theme: () -> Types::Theme
|
819
|
+
end
|
820
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#describe_theme_for_stack-instance_method
|
821
|
+
def describe_theme_for_stack: (
|
822
|
+
stack_name: ::String
|
823
|
+
) -> _DescribeThemeForStackResponseSuccess
|
824
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeThemeForStackResponseSuccess
|
825
|
+
|
779
826
|
interface _DescribeUsageReportSubscriptionsResponseSuccess
|
780
827
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUsageReportSubscriptionsResult]
|
781
828
|
def usage_report_subscriptions: () -> ::Array[Types::UsageReportSubscription]
|
@@ -1200,6 +1247,34 @@ module Aws
|
|
1200
1247
|
) -> _UpdateStackResponseSuccess
|
1201
1248
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackResponseSuccess
|
1202
1249
|
|
1250
|
+
interface _UpdateThemeForStackResponseSuccess
|
1251
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateThemeForStackResult]
|
1252
|
+
def theme: () -> Types::Theme
|
1253
|
+
end
|
1254
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#update_theme_for_stack-instance_method
|
1255
|
+
def update_theme_for_stack: (
|
1256
|
+
stack_name: ::String,
|
1257
|
+
?footer_links: Array[
|
1258
|
+
{
|
1259
|
+
display_name: ::String?,
|
1260
|
+
footer_link_url: ::String?
|
1261
|
+
},
|
1262
|
+
],
|
1263
|
+
?title_text: ::String,
|
1264
|
+
?theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED"),
|
1265
|
+
?organization_logo_s3_location: {
|
1266
|
+
s3_bucket: ::String,
|
1267
|
+
s3_key: ::String?
|
1268
|
+
},
|
1269
|
+
?favicon_s3_location: {
|
1270
|
+
s3_bucket: ::String,
|
1271
|
+
s3_key: ::String?
|
1272
|
+
},
|
1273
|
+
?state: ("ENABLED" | "DISABLED"),
|
1274
|
+
?attributes_to_delete: Array[("FOOTER_LINKS")]
|
1275
|
+
) -> _UpdateThemeForStackResponseSuccess
|
1276
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateThemeForStackResponseSuccess
|
1277
|
+
|
1203
1278
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#wait_until-instance_method
|
1204
1279
|
def wait_until: (:fleet_started waiter_name,
|
1205
1280
|
?names: Array[::String],
|
data/sig/resource.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -51,6 +52,7 @@ module Aws
|
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?simple_json: bool,
|
53
54
|
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
56
|
?token_provider: untyped,
|
55
57
|
?use_dualstack_endpoint: bool,
|
56
58
|
?use_fips_endpoint: bool,
|