aws-sdk-appstream 1.101.0 → 1.103.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +22 -22
- data/lib/aws-sdk-appstream/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-appstream/endpoints.rb +2 -867
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +1 -164
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +4 -4
- data/sig/types.rbs +8 -8
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::AppStream::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,169 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :associate_app_block_builder_app_block
|
74
|
-
Aws::AppStream::Endpoints::AssociateAppBlockBuilderAppBlock.build(context)
|
75
|
-
when :associate_application_fleet
|
76
|
-
Aws::AppStream::Endpoints::AssociateApplicationFleet.build(context)
|
77
|
-
when :associate_application_to_entitlement
|
78
|
-
Aws::AppStream::Endpoints::AssociateApplicationToEntitlement.build(context)
|
79
|
-
when :associate_fleet
|
80
|
-
Aws::AppStream::Endpoints::AssociateFleet.build(context)
|
81
|
-
when :batch_associate_user_stack
|
82
|
-
Aws::AppStream::Endpoints::BatchAssociateUserStack.build(context)
|
83
|
-
when :batch_disassociate_user_stack
|
84
|
-
Aws::AppStream::Endpoints::BatchDisassociateUserStack.build(context)
|
85
|
-
when :copy_image
|
86
|
-
Aws::AppStream::Endpoints::CopyImage.build(context)
|
87
|
-
when :create_app_block
|
88
|
-
Aws::AppStream::Endpoints::CreateAppBlock.build(context)
|
89
|
-
when :create_app_block_builder
|
90
|
-
Aws::AppStream::Endpoints::CreateAppBlockBuilder.build(context)
|
91
|
-
when :create_app_block_builder_streaming_url
|
92
|
-
Aws::AppStream::Endpoints::CreateAppBlockBuilderStreamingURL.build(context)
|
93
|
-
when :create_application
|
94
|
-
Aws::AppStream::Endpoints::CreateApplication.build(context)
|
95
|
-
when :create_directory_config
|
96
|
-
Aws::AppStream::Endpoints::CreateDirectoryConfig.build(context)
|
97
|
-
when :create_entitlement
|
98
|
-
Aws::AppStream::Endpoints::CreateEntitlement.build(context)
|
99
|
-
when :create_fleet
|
100
|
-
Aws::AppStream::Endpoints::CreateFleet.build(context)
|
101
|
-
when :create_image_builder
|
102
|
-
Aws::AppStream::Endpoints::CreateImageBuilder.build(context)
|
103
|
-
when :create_image_builder_streaming_url
|
104
|
-
Aws::AppStream::Endpoints::CreateImageBuilderStreamingURL.build(context)
|
105
|
-
when :create_stack
|
106
|
-
Aws::AppStream::Endpoints::CreateStack.build(context)
|
107
|
-
when :create_streaming_url
|
108
|
-
Aws::AppStream::Endpoints::CreateStreamingURL.build(context)
|
109
|
-
when :create_theme_for_stack
|
110
|
-
Aws::AppStream::Endpoints::CreateThemeForStack.build(context)
|
111
|
-
when :create_updated_image
|
112
|
-
Aws::AppStream::Endpoints::CreateUpdatedImage.build(context)
|
113
|
-
when :create_usage_report_subscription
|
114
|
-
Aws::AppStream::Endpoints::CreateUsageReportSubscription.build(context)
|
115
|
-
when :create_user
|
116
|
-
Aws::AppStream::Endpoints::CreateUser.build(context)
|
117
|
-
when :delete_app_block
|
118
|
-
Aws::AppStream::Endpoints::DeleteAppBlock.build(context)
|
119
|
-
when :delete_app_block_builder
|
120
|
-
Aws::AppStream::Endpoints::DeleteAppBlockBuilder.build(context)
|
121
|
-
when :delete_application
|
122
|
-
Aws::AppStream::Endpoints::DeleteApplication.build(context)
|
123
|
-
when :delete_directory_config
|
124
|
-
Aws::AppStream::Endpoints::DeleteDirectoryConfig.build(context)
|
125
|
-
when :delete_entitlement
|
126
|
-
Aws::AppStream::Endpoints::DeleteEntitlement.build(context)
|
127
|
-
when :delete_fleet
|
128
|
-
Aws::AppStream::Endpoints::DeleteFleet.build(context)
|
129
|
-
when :delete_image
|
130
|
-
Aws::AppStream::Endpoints::DeleteImage.build(context)
|
131
|
-
when :delete_image_builder
|
132
|
-
Aws::AppStream::Endpoints::DeleteImageBuilder.build(context)
|
133
|
-
when :delete_image_permissions
|
134
|
-
Aws::AppStream::Endpoints::DeleteImagePermissions.build(context)
|
135
|
-
when :delete_stack
|
136
|
-
Aws::AppStream::Endpoints::DeleteStack.build(context)
|
137
|
-
when :delete_theme_for_stack
|
138
|
-
Aws::AppStream::Endpoints::DeleteThemeForStack.build(context)
|
139
|
-
when :delete_usage_report_subscription
|
140
|
-
Aws::AppStream::Endpoints::DeleteUsageReportSubscription.build(context)
|
141
|
-
when :delete_user
|
142
|
-
Aws::AppStream::Endpoints::DeleteUser.build(context)
|
143
|
-
when :describe_app_block_builder_app_block_associations
|
144
|
-
Aws::AppStream::Endpoints::DescribeAppBlockBuilderAppBlockAssociations.build(context)
|
145
|
-
when :describe_app_block_builders
|
146
|
-
Aws::AppStream::Endpoints::DescribeAppBlockBuilders.build(context)
|
147
|
-
when :describe_app_blocks
|
148
|
-
Aws::AppStream::Endpoints::DescribeAppBlocks.build(context)
|
149
|
-
when :describe_application_fleet_associations
|
150
|
-
Aws::AppStream::Endpoints::DescribeApplicationFleetAssociations.build(context)
|
151
|
-
when :describe_applications
|
152
|
-
Aws::AppStream::Endpoints::DescribeApplications.build(context)
|
153
|
-
when :describe_directory_configs
|
154
|
-
Aws::AppStream::Endpoints::DescribeDirectoryConfigs.build(context)
|
155
|
-
when :describe_entitlements
|
156
|
-
Aws::AppStream::Endpoints::DescribeEntitlements.build(context)
|
157
|
-
when :describe_fleets
|
158
|
-
Aws::AppStream::Endpoints::DescribeFleets.build(context)
|
159
|
-
when :describe_image_builders
|
160
|
-
Aws::AppStream::Endpoints::DescribeImageBuilders.build(context)
|
161
|
-
when :describe_image_permissions
|
162
|
-
Aws::AppStream::Endpoints::DescribeImagePermissions.build(context)
|
163
|
-
when :describe_images
|
164
|
-
Aws::AppStream::Endpoints::DescribeImages.build(context)
|
165
|
-
when :describe_sessions
|
166
|
-
Aws::AppStream::Endpoints::DescribeSessions.build(context)
|
167
|
-
when :describe_stacks
|
168
|
-
Aws::AppStream::Endpoints::DescribeStacks.build(context)
|
169
|
-
when :describe_theme_for_stack
|
170
|
-
Aws::AppStream::Endpoints::DescribeThemeForStack.build(context)
|
171
|
-
when :describe_usage_report_subscriptions
|
172
|
-
Aws::AppStream::Endpoints::DescribeUsageReportSubscriptions.build(context)
|
173
|
-
when :describe_user_stack_associations
|
174
|
-
Aws::AppStream::Endpoints::DescribeUserStackAssociations.build(context)
|
175
|
-
when :describe_users
|
176
|
-
Aws::AppStream::Endpoints::DescribeUsers.build(context)
|
177
|
-
when :disable_user
|
178
|
-
Aws::AppStream::Endpoints::DisableUser.build(context)
|
179
|
-
when :disassociate_app_block_builder_app_block
|
180
|
-
Aws::AppStream::Endpoints::DisassociateAppBlockBuilderAppBlock.build(context)
|
181
|
-
when :disassociate_application_fleet
|
182
|
-
Aws::AppStream::Endpoints::DisassociateApplicationFleet.build(context)
|
183
|
-
when :disassociate_application_from_entitlement
|
184
|
-
Aws::AppStream::Endpoints::DisassociateApplicationFromEntitlement.build(context)
|
185
|
-
when :disassociate_fleet
|
186
|
-
Aws::AppStream::Endpoints::DisassociateFleet.build(context)
|
187
|
-
when :enable_user
|
188
|
-
Aws::AppStream::Endpoints::EnableUser.build(context)
|
189
|
-
when :expire_session
|
190
|
-
Aws::AppStream::Endpoints::ExpireSession.build(context)
|
191
|
-
when :list_associated_fleets
|
192
|
-
Aws::AppStream::Endpoints::ListAssociatedFleets.build(context)
|
193
|
-
when :list_associated_stacks
|
194
|
-
Aws::AppStream::Endpoints::ListAssociatedStacks.build(context)
|
195
|
-
when :list_entitled_applications
|
196
|
-
Aws::AppStream::Endpoints::ListEntitledApplications.build(context)
|
197
|
-
when :list_tags_for_resource
|
198
|
-
Aws::AppStream::Endpoints::ListTagsForResource.build(context)
|
199
|
-
when :start_app_block_builder
|
200
|
-
Aws::AppStream::Endpoints::StartAppBlockBuilder.build(context)
|
201
|
-
when :start_fleet
|
202
|
-
Aws::AppStream::Endpoints::StartFleet.build(context)
|
203
|
-
when :start_image_builder
|
204
|
-
Aws::AppStream::Endpoints::StartImageBuilder.build(context)
|
205
|
-
when :stop_app_block_builder
|
206
|
-
Aws::AppStream::Endpoints::StopAppBlockBuilder.build(context)
|
207
|
-
when :stop_fleet
|
208
|
-
Aws::AppStream::Endpoints::StopFleet.build(context)
|
209
|
-
when :stop_image_builder
|
210
|
-
Aws::AppStream::Endpoints::StopImageBuilder.build(context)
|
211
|
-
when :tag_resource
|
212
|
-
Aws::AppStream::Endpoints::TagResource.build(context)
|
213
|
-
when :untag_resource
|
214
|
-
Aws::AppStream::Endpoints::UntagResource.build(context)
|
215
|
-
when :update_app_block_builder
|
216
|
-
Aws::AppStream::Endpoints::UpdateAppBlockBuilder.build(context)
|
217
|
-
when :update_application
|
218
|
-
Aws::AppStream::Endpoints::UpdateApplication.build(context)
|
219
|
-
when :update_directory_config
|
220
|
-
Aws::AppStream::Endpoints::UpdateDirectoryConfig.build(context)
|
221
|
-
when :update_entitlement
|
222
|
-
Aws::AppStream::Endpoints::UpdateEntitlement.build(context)
|
223
|
-
when :update_fleet
|
224
|
-
Aws::AppStream::Endpoints::UpdateFleet.build(context)
|
225
|
-
when :update_image_permissions
|
226
|
-
Aws::AppStream::Endpoints::UpdateImagePermissions.build(context)
|
227
|
-
when :update_stack
|
228
|
-
Aws::AppStream::Endpoints::UpdateStack.build(context)
|
229
|
-
when :update_theme_for_stack
|
230
|
-
Aws::AppStream::Endpoints::UpdateThemeForStack.build(context)
|
231
|
-
end
|
232
|
-
end
|
233
70
|
end
|
234
71
|
|
235
72
|
def add_handlers(handlers, _config)
|
data/lib/aws-sdk-appstream.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -257,7 +257,7 @@ module Aws
|
|
257
257
|
launch_path: ::String,
|
258
258
|
?working_directory: ::String,
|
259
259
|
?launch_parameters: ::String,
|
260
|
-
platforms: Array[("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")],
|
260
|
+
platforms: Array[("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")],
|
261
261
|
instance_families: Array[::String],
|
262
262
|
app_block_arn: ::String,
|
263
263
|
?tags: Hash[::String, ::String]
|
@@ -334,7 +334,7 @@ module Aws
|
|
334
334
|
?idle_disconnect_timeout_in_seconds: ::Integer,
|
335
335
|
?iam_role_arn: ::String,
|
336
336
|
?stream_view: ("APP" | "DESKTOP"),
|
337
|
-
?platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8"),
|
337
|
+
?platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8"),
|
338
338
|
?max_concurrent_sessions: ::Integer,
|
339
339
|
?usb_device_filter_strings: Array[::String],
|
340
340
|
?session_script_s3_location: {
|
@@ -1069,7 +1069,7 @@ module Aws
|
|
1069
1069
|
name: ::String,
|
1070
1070
|
?description: ::String,
|
1071
1071
|
?display_name: ::String,
|
1072
|
-
?platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8"),
|
1072
|
+
?platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8"),
|
1073
1073
|
?instance_type: ::String,
|
1074
1074
|
?vpc_config: {
|
1075
1075
|
subnet_ids: Array[::String]?,
|
@@ -1178,7 +1178,7 @@ module Aws
|
|
1178
1178
|
?attributes_to_delete: Array[("VPC_CONFIGURATION" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS" | "DOMAIN_JOIN_INFO" | "IAM_ROLE_ARN" | "USB_DEVICE_FILTER_STRINGS" | "SESSION_SCRIPT_S3_LOCATION" | "MAX_SESSIONS_PER_INSTANCE")],
|
1179
1179
|
?iam_role_arn: ::String,
|
1180
1180
|
?stream_view: ("APP" | "DESKTOP"),
|
1181
|
-
?platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8"),
|
1181
|
+
?platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8"),
|
1182
1182
|
?max_concurrent_sessions: ::Integer,
|
1183
1183
|
?usb_device_filter_strings: Array[::String],
|
1184
1184
|
?session_script_s3_location: {
|
data/sig/types.rbs
CHANGED
@@ -72,7 +72,7 @@ module Aws::AppStream
|
|
72
72
|
attr_accessor arn: ::String
|
73
73
|
attr_accessor app_block_arn: ::String
|
74
74
|
attr_accessor icon_s3_location: Types::S3Location
|
75
|
-
attr_accessor platforms: ::Array[("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")]
|
75
|
+
attr_accessor platforms: ::Array[("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")]
|
76
76
|
attr_accessor instance_families: ::Array[::String]
|
77
77
|
attr_accessor created_time: ::Time
|
78
78
|
SENSITIVE: []
|
@@ -256,7 +256,7 @@ module Aws::AppStream
|
|
256
256
|
attr_accessor launch_path: ::String
|
257
257
|
attr_accessor working_directory: ::String
|
258
258
|
attr_accessor launch_parameters: ::String
|
259
|
-
attr_accessor platforms: ::Array[("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")]
|
259
|
+
attr_accessor platforms: ::Array[("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")]
|
260
260
|
attr_accessor instance_families: ::Array[::String]
|
261
261
|
attr_accessor app_block_arn: ::String
|
262
262
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -313,7 +313,7 @@ module Aws::AppStream
|
|
313
313
|
attr_accessor idle_disconnect_timeout_in_seconds: ::Integer
|
314
314
|
attr_accessor iam_role_arn: ::String
|
315
315
|
attr_accessor stream_view: ("APP" | "DESKTOP")
|
316
|
-
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")
|
316
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
|
317
317
|
attr_accessor max_concurrent_sessions: ::Integer
|
318
318
|
attr_accessor usb_device_filter_strings: ::Array[::String]
|
319
319
|
attr_accessor session_script_s3_location: Types::S3Location
|
@@ -923,7 +923,7 @@ module Aws::AppStream
|
|
923
923
|
attr_accessor idle_disconnect_timeout_in_seconds: ::Integer
|
924
924
|
attr_accessor iam_role_arn: ::String
|
925
925
|
attr_accessor stream_view: ("APP" | "DESKTOP")
|
926
|
-
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")
|
926
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
|
927
927
|
attr_accessor max_concurrent_sessions: ::Integer
|
928
928
|
attr_accessor usb_device_filter_strings: ::Array[::String]
|
929
929
|
attr_accessor session_script_s3_location: Types::S3Location
|
@@ -946,7 +946,7 @@ module Aws::AppStream
|
|
946
946
|
attr_accessor visibility: ("PUBLIC" | "PRIVATE" | "SHARED")
|
947
947
|
attr_accessor image_builder_supported: bool
|
948
948
|
attr_accessor image_builder_name: ::String
|
949
|
-
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")
|
949
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
|
950
950
|
attr_accessor description: ::String
|
951
951
|
attr_accessor state_change_reason: Types::ImageStateChangeReason
|
952
952
|
attr_accessor applications: ::Array[Types::Application]
|
@@ -970,7 +970,7 @@ module Aws::AppStream
|
|
970
970
|
attr_accessor display_name: ::String
|
971
971
|
attr_accessor vpc_config: Types::VpcConfig
|
972
972
|
attr_accessor instance_type: ::String
|
973
|
-
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")
|
973
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
|
974
974
|
attr_accessor iam_role_arn: ::String
|
975
975
|
attr_accessor state: ("PENDING" | "UPDATING_AGENT" | "RUNNING" | "STOPPING" | "STOPPED" | "REBOOTING" | "SNAPSHOTTING" | "DELETING" | "FAILED" | "UPDATING" | "PENDING_QUALIFICATION")
|
976
976
|
attr_accessor state_change_reason: Types::ImageBuilderStateChangeReason
|
@@ -1299,7 +1299,7 @@ module Aws::AppStream
|
|
1299
1299
|
attr_accessor name: ::String
|
1300
1300
|
attr_accessor description: ::String
|
1301
1301
|
attr_accessor display_name: ::String
|
1302
|
-
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")
|
1302
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
|
1303
1303
|
attr_accessor instance_type: ::String
|
1304
1304
|
attr_accessor vpc_config: Types::VpcConfig
|
1305
1305
|
attr_accessor enable_default_internet_access: bool
|
@@ -1377,7 +1377,7 @@ module Aws::AppStream
|
|
1377
1377
|
attr_accessor attributes_to_delete: ::Array[("VPC_CONFIGURATION" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS" | "DOMAIN_JOIN_INFO" | "IAM_ROLE_ARN" | "USB_DEVICE_FILTER_STRINGS" | "SESSION_SCRIPT_S3_LOCATION" | "MAX_SESSIONS_PER_INSTANCE")]
|
1378
1378
|
attr_accessor iam_role_arn: ::String
|
1379
1379
|
attr_accessor stream_view: ("APP" | "DESKTOP")
|
1380
|
-
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8")
|
1380
|
+
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
|
1381
1381
|
attr_accessor max_concurrent_sessions: ::Integer
|
1382
1382
|
attr_accessor usb_device_filter_strings: ::Array[::String]
|
1383
1383
|
attr_accessor session_script_s3_location: Types::S3Location
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appstream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.103.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|