aws-sdk-appstream 1.63.0 → 1.66.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +46 -5
- data/lib/aws-sdk-appstream/client_api.rb +11 -0
- data/lib/aws-sdk-appstream/types.rb +84 -8
- data/lib/aws-sdk-appstream.rb +1 -1
- 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: 3a30adb51aab9c1363fb0797743ebb55f3f65318dc2a8c847298c34b0ef13640
|
4
|
+
data.tar.gz: aaabd3aa2b8f8a45af59524a78b272150013fb9e81edced8fa4f9189451e27e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e44ef081ede83daeec58aca2afbcf3fa23da5d295277cf7b8d16f1292210e76c4aca0877e89703ef917d30151c0abdb76ec4f510823a4350ac224835a32259aa
|
7
|
+
data.tar.gz: e94396bb3cfb808157f42d87a16e025709962e89b2131b4f0e05d014bcc82185d10c2b578315ada3b759ef7953df6afff18b35ed0a96e0065348a39fa159c6b2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.66.0 (2022-06-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Includes support for StreamingExperienceSettings in CreateStack and UpdateStack APIs
|
8
|
+
|
9
|
+
1.65.0 (2022-04-14)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Includes updates for create and update fleet APIs to manage the session scripts locations for Elastic fleets.
|
13
|
+
|
14
|
+
1.64.0 (2022-02-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.63.0 (2022-02-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.66.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::AppStream
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -1106,6 +1108,10 @@ module Aws::AppStream
|
|
1106
1108
|
# can redirect to the fleet streaming session, when using the Windows
|
1107
1109
|
# native client. This is allowed but not required for Elastic fleets.
|
1108
1110
|
#
|
1111
|
+
# @option params [Types::S3Location] :session_script_s3_location
|
1112
|
+
# The S3 location of the session scripts configuration zip file. This
|
1113
|
+
# only applies to Elastic fleets.
|
1114
|
+
#
|
1109
1115
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1110
1116
|
#
|
1111
1117
|
# * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -1143,6 +1149,10 @@ module Aws::AppStream
|
|
1143
1149
|
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
1144
1150
|
# max_concurrent_sessions: 1,
|
1145
1151
|
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
1152
|
+
# session_script_s3_location: {
|
1153
|
+
# s3_bucket: "S3Bucket", # required
|
1154
|
+
# s3_key: "S3Key", # required
|
1155
|
+
# },
|
1146
1156
|
# })
|
1147
1157
|
#
|
1148
1158
|
# @example Response structure
|
@@ -1180,6 +1190,8 @@ module Aws::AppStream
|
|
1180
1190
|
# resp.fleet.max_concurrent_sessions #=> Integer
|
1181
1191
|
# resp.fleet.usb_device_filter_strings #=> Array
|
1182
1192
|
# resp.fleet.usb_device_filter_strings[0] #=> String
|
1193
|
+
# resp.fleet.session_script_s3_location.s3_bucket #=> String
|
1194
|
+
# resp.fleet.session_script_s3_location.s3_key #=> String
|
1183
1195
|
#
|
1184
1196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
|
1185
1197
|
#
|
@@ -1513,6 +1525,10 @@ module Aws::AppStream
|
|
1513
1525
|
# an iframe. You must approve the domains that you want to host embedded
|
1514
1526
|
# AppStream 2.0 streaming sessions.
|
1515
1527
|
#
|
1528
|
+
# @option params [Types::StreamingExperienceSettings] :streaming_experience_settings
|
1529
|
+
# The streaming protocol you want your stack to prefer. This can be UDP
|
1530
|
+
# or TCP. Currently, UDP is only supported in the Windows native client.
|
1531
|
+
#
|
1516
1532
|
# @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1517
1533
|
#
|
1518
1534
|
# * {Types::CreateStackResult#stack #stack} => Types::Stack
|
@@ -1552,6 +1568,9 @@ module Aws::AppStream
|
|
1552
1568
|
# },
|
1553
1569
|
# ],
|
1554
1570
|
# embed_host_domains: ["EmbedHostDomain"],
|
1571
|
+
# streaming_experience_settings: {
|
1572
|
+
# preferred_protocol: "TCP", # accepts TCP, UDP
|
1573
|
+
# },
|
1555
1574
|
# })
|
1556
1575
|
#
|
1557
1576
|
# @example Response structure
|
@@ -1582,6 +1601,7 @@ module Aws::AppStream
|
|
1582
1601
|
# resp.stack.access_endpoints[0].vpce_id #=> String
|
1583
1602
|
# resp.stack.embed_host_domains #=> Array
|
1584
1603
|
# resp.stack.embed_host_domains[0] #=> String
|
1604
|
+
# resp.stack.streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
|
1585
1605
|
#
|
1586
1606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStack AWS API Documentation
|
1587
1607
|
#
|
@@ -2511,6 +2531,8 @@ module Aws::AppStream
|
|
2511
2531
|
# resp.fleets[0].max_concurrent_sessions #=> Integer
|
2512
2532
|
# resp.fleets[0].usb_device_filter_strings #=> Array
|
2513
2533
|
# resp.fleets[0].usb_device_filter_strings[0] #=> String
|
2534
|
+
# resp.fleets[0].session_script_s3_location.s3_bucket #=> String
|
2535
|
+
# resp.fleets[0].session_script_s3_location.s3_key #=> String
|
2514
2536
|
# resp.next_token #=> String
|
2515
2537
|
#
|
2516
2538
|
#
|
@@ -2865,6 +2887,7 @@ module Aws::AppStream
|
|
2865
2887
|
# resp.stacks[0].access_endpoints[0].vpce_id #=> String
|
2866
2888
|
# resp.stacks[0].embed_host_domains #=> Array
|
2867
2889
|
# resp.stacks[0].embed_host_domains[0] #=> String
|
2890
|
+
# resp.stacks[0].streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
|
2868
2891
|
# resp.next_token #=> String
|
2869
2892
|
#
|
2870
2893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeStacks AWS API Documentation
|
@@ -3810,8 +3833,8 @@ module Aws::AppStream
|
|
3810
3833
|
# * Elastic fleet type
|
3811
3834
|
#
|
3812
3835
|
# You can update the `DisplayName`, `IdleDisconnectTimeoutInSeconds`,
|
3813
|
-
# `DisconnectTimeoutInSeconds`, `MaxConcurrentSessions`,
|
3814
|
-
# `UsbDeviceFilterStrings` attributes.
|
3836
|
+
# `DisconnectTimeoutInSeconds`, `MaxConcurrentSessions`,
|
3837
|
+
# `SessionScriptS3Location` and `UsbDeviceFilterStrings` attributes.
|
3815
3838
|
#
|
3816
3839
|
# If the fleet is in the `STARTING` or `STOPPED` state, you can't
|
3817
3840
|
# update it.
|
@@ -4012,6 +4035,10 @@ module Aws::AppStream
|
|
4012
4035
|
# can redirect to the fleet streaming session, when using the Windows
|
4013
4036
|
# native client. This is allowed but not required for Elastic fleets.
|
4014
4037
|
#
|
4038
|
+
# @option params [Types::S3Location] :session_script_s3_location
|
4039
|
+
# The S3 location of the session scripts configuration zip file. This
|
4040
|
+
# only applies to Elastic fleets.
|
4041
|
+
#
|
4015
4042
|
# @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4016
4043
|
#
|
4017
4044
|
# * {Types::UpdateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -4041,12 +4068,16 @@ module Aws::AppStream
|
|
4041
4068
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
4042
4069
|
# },
|
4043
4070
|
# idle_disconnect_timeout_in_seconds: 1,
|
4044
|
-
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN, USB_DEVICE_FILTER_STRINGS
|
4071
|
+
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN, USB_DEVICE_FILTER_STRINGS, SESSION_SCRIPT_S3_LOCATION
|
4045
4072
|
# iam_role_arn: "Arn",
|
4046
4073
|
# stream_view: "APP", # accepts APP, DESKTOP
|
4047
4074
|
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
4048
4075
|
# max_concurrent_sessions: 1,
|
4049
4076
|
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
4077
|
+
# session_script_s3_location: {
|
4078
|
+
# s3_bucket: "S3Bucket", # required
|
4079
|
+
# s3_key: "S3Key", # required
|
4080
|
+
# },
|
4050
4081
|
# })
|
4051
4082
|
#
|
4052
4083
|
# @example Response structure
|
@@ -4084,6 +4115,8 @@ module Aws::AppStream
|
|
4084
4115
|
# resp.fleet.max_concurrent_sessions #=> Integer
|
4085
4116
|
# resp.fleet.usb_device_filter_strings #=> Array
|
4086
4117
|
# resp.fleet.usb_device_filter_strings[0] #=> String
|
4118
|
+
# resp.fleet.session_script_s3_location.s3_bucket #=> String
|
4119
|
+
# resp.fleet.session_script_s3_location.s3_key #=> String
|
4087
4120
|
#
|
4088
4121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
|
4089
4122
|
#
|
@@ -4177,6 +4210,10 @@ module Aws::AppStream
|
|
4177
4210
|
# an iframe. You must approve the domains that you want to host embedded
|
4178
4211
|
# AppStream 2.0 streaming sessions.
|
4179
4212
|
#
|
4213
|
+
# @option params [Types::StreamingExperienceSettings] :streaming_experience_settings
|
4214
|
+
# The streaming protocol you want your stack to prefer. This can be UDP
|
4215
|
+
# or TCP. Currently, UDP is only supported in the Windows native client.
|
4216
|
+
#
|
4180
4217
|
# @return [Types::UpdateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4181
4218
|
#
|
4182
4219
|
# * {Types::UpdateStackResult#stack #stack} => Types::Stack
|
@@ -4197,7 +4234,7 @@ module Aws::AppStream
|
|
4197
4234
|
# delete_storage_connectors: false,
|
4198
4235
|
# redirect_url: "RedirectURL",
|
4199
4236
|
# feedback_url: "FeedbackURL",
|
4200
|
-
# attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS
|
4237
|
+
# attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS, STREAMING_EXPERIENCE_SETTINGS
|
4201
4238
|
# user_settings: [
|
4202
4239
|
# {
|
4203
4240
|
# action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts CLIPBOARD_COPY_FROM_LOCAL_DEVICE, CLIPBOARD_COPY_TO_LOCAL_DEVICE, FILE_UPLOAD, FILE_DOWNLOAD, PRINTING_TO_LOCAL_DEVICE, DOMAIN_PASSWORD_SIGNIN, DOMAIN_SMART_CARD_SIGNIN
|
@@ -4215,6 +4252,9 @@ module Aws::AppStream
|
|
4215
4252
|
# },
|
4216
4253
|
# ],
|
4217
4254
|
# embed_host_domains: ["EmbedHostDomain"],
|
4255
|
+
# streaming_experience_settings: {
|
4256
|
+
# preferred_protocol: "TCP", # accepts TCP, UDP
|
4257
|
+
# },
|
4218
4258
|
# })
|
4219
4259
|
#
|
4220
4260
|
# @example Response structure
|
@@ -4245,6 +4285,7 @@ module Aws::AppStream
|
|
4245
4285
|
# resp.stack.access_endpoints[0].vpce_id #=> String
|
4246
4286
|
# resp.stack.embed_host_domains #=> Array
|
4247
4287
|
# resp.stack.embed_host_domains[0] #=> String
|
4288
|
+
# resp.stack.streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
|
4248
4289
|
#
|
4249
4290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStack AWS API Documentation
|
4250
4291
|
#
|
@@ -4268,7 +4309,7 @@ module Aws::AppStream
|
|
4268
4309
|
params: params,
|
4269
4310
|
config: config)
|
4270
4311
|
context[:gem_name] = 'aws-sdk-appstream'
|
4271
|
-
context[:gem_version] = '1.
|
4312
|
+
context[:gem_version] = '1.66.0'
|
4272
4313
|
Seahorse::Client::Request.new(handlers, context)
|
4273
4314
|
end
|
4274
4315
|
|
@@ -209,6 +209,7 @@ module Aws::AppStream
|
|
209
209
|
Permission = Shapes::StringShape.new(name: 'Permission')
|
210
210
|
PlatformType = Shapes::StringShape.new(name: 'PlatformType')
|
211
211
|
Platforms = Shapes::ListShape.new(name: 'Platforms')
|
212
|
+
PreferredProtocol = Shapes::StringShape.new(name: 'PreferredProtocol')
|
212
213
|
RedirectURL = Shapes::StringShape.new(name: 'RedirectURL')
|
213
214
|
RegionName = Shapes::StringShape.new(name: 'RegionName')
|
214
215
|
RequestLimitExceededException = Shapes::StructureShape.new(name: 'RequestLimitExceededException')
|
@@ -251,6 +252,7 @@ module Aws::AppStream
|
|
251
252
|
StorageConnectorList = Shapes::ListShape.new(name: 'StorageConnectorList')
|
252
253
|
StorageConnectorType = Shapes::StringShape.new(name: 'StorageConnectorType')
|
253
254
|
StreamView = Shapes::StringShape.new(name: 'StreamView')
|
255
|
+
StreamingExperienceSettings = Shapes::StructureShape.new(name: 'StreamingExperienceSettings')
|
254
256
|
StreamingUrlUserId = Shapes::StringShape.new(name: 'StreamingUrlUserId')
|
255
257
|
String = Shapes::StringShape.new(name: 'String')
|
256
258
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
@@ -472,6 +474,7 @@ module Aws::AppStream
|
|
472
474
|
CreateFleetRequest.add_member(:platform, Shapes::ShapeRef.new(shape: PlatformType, location_name: "Platform"))
|
473
475
|
CreateFleetRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
474
476
|
CreateFleetRequest.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
477
|
+
CreateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
475
478
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
476
479
|
|
477
480
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -514,6 +517,7 @@ module Aws::AppStream
|
|
514
517
|
CreateStackRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
515
518
|
CreateStackRequest.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
516
519
|
CreateStackRequest.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
|
520
|
+
CreateStackRequest.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
|
517
521
|
CreateStackRequest.struct_class = Types::CreateStackRequest
|
518
522
|
|
519
523
|
CreateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
|
@@ -856,6 +860,7 @@ module Aws::AppStream
|
|
856
860
|
Fleet.add_member(:platform, Shapes::ShapeRef.new(shape: PlatformType, location_name: "Platform"))
|
857
861
|
Fleet.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
858
862
|
Fleet.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
863
|
+
Fleet.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
859
864
|
Fleet.struct_class = Types::Fleet
|
860
865
|
|
861
866
|
FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
|
@@ -1061,6 +1066,7 @@ module Aws::AppStream
|
|
1061
1066
|
Stack.add_member(:application_settings, Shapes::ShapeRef.new(shape: ApplicationSettingsResponse, location_name: "ApplicationSettings"))
|
1062
1067
|
Stack.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
1063
1068
|
Stack.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
|
1069
|
+
Stack.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
|
1064
1070
|
Stack.struct_class = Types::Stack
|
1065
1071
|
|
1066
1072
|
StackAttributes.member = Shapes::ShapeRef.new(shape: StackAttribute)
|
@@ -1103,6 +1109,9 @@ module Aws::AppStream
|
|
1103
1109
|
|
1104
1110
|
StorageConnectorList.member = Shapes::ShapeRef.new(shape: StorageConnector)
|
1105
1111
|
|
1112
|
+
StreamingExperienceSettings.add_member(:preferred_protocol, Shapes::ShapeRef.new(shape: PreferredProtocol, location_name: "PreferredProtocol"))
|
1113
|
+
StreamingExperienceSettings.struct_class = Types::StreamingExperienceSettings
|
1114
|
+
|
1106
1115
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
1107
1116
|
|
1108
1117
|
SubnetIdList.member = Shapes::ShapeRef.new(shape: String)
|
@@ -1176,6 +1185,7 @@ module Aws::AppStream
|
|
1176
1185
|
UpdateFleetRequest.add_member(:platform, Shapes::ShapeRef.new(shape: PlatformType, location_name: "Platform"))
|
1177
1186
|
UpdateFleetRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
1178
1187
|
UpdateFleetRequest.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
1188
|
+
UpdateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
1179
1189
|
UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
|
1180
1190
|
|
1181
1191
|
UpdateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -1200,6 +1210,7 @@ module Aws::AppStream
|
|
1200
1210
|
UpdateStackRequest.add_member(:application_settings, Shapes::ShapeRef.new(shape: ApplicationSettings, location_name: "ApplicationSettings"))
|
1201
1211
|
UpdateStackRequest.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
1202
1212
|
UpdateStackRequest.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
|
1213
|
+
UpdateStackRequest.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
|
1203
1214
|
UpdateStackRequest.struct_class = Types::UpdateStackRequest
|
1204
1215
|
|
1205
1216
|
UpdateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
|
@@ -877,6 +877,10 @@ module Aws::AppStream
|
|
877
877
|
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
878
878
|
# max_concurrent_sessions: 1,
|
879
879
|
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
880
|
+
# session_script_s3_location: {
|
881
|
+
# s3_bucket: "S3Bucket", # required
|
882
|
+
# s3_key: "S3Key", # required
|
883
|
+
# },
|
880
884
|
# }
|
881
885
|
#
|
882
886
|
# @!attribute [rw] name
|
@@ -1130,6 +1134,11 @@ module Aws::AppStream
|
|
1130
1134
|
# native client. This is allowed but not required for Elastic fleets.
|
1131
1135
|
# @return [Array<String>]
|
1132
1136
|
#
|
1137
|
+
# @!attribute [rw] session_script_s3_location
|
1138
|
+
# The S3 location of the session scripts configuration zip file. This
|
1139
|
+
# only applies to Elastic fleets.
|
1140
|
+
# @return [Types::S3Location]
|
1141
|
+
#
|
1133
1142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
1134
1143
|
#
|
1135
1144
|
class CreateFleetRequest < Struct.new(
|
@@ -1152,7 +1161,8 @@ module Aws::AppStream
|
|
1152
1161
|
:stream_view,
|
1153
1162
|
:platform,
|
1154
1163
|
:max_concurrent_sessions,
|
1155
|
-
:usb_device_filter_strings
|
1164
|
+
:usb_device_filter_strings,
|
1165
|
+
:session_script_s3_location)
|
1156
1166
|
SENSITIVE = []
|
1157
1167
|
include Aws::Structure
|
1158
1168
|
end
|
@@ -1468,6 +1478,9 @@ module Aws::AppStream
|
|
1468
1478
|
# },
|
1469
1479
|
# ],
|
1470
1480
|
# embed_host_domains: ["EmbedHostDomain"],
|
1481
|
+
# streaming_experience_settings: {
|
1482
|
+
# preferred_protocol: "TCP", # accepts TCP, UDP
|
1483
|
+
# },
|
1471
1484
|
# }
|
1472
1485
|
#
|
1473
1486
|
# @!attribute [rw] name
|
@@ -1541,6 +1554,12 @@ module Aws::AppStream
|
|
1541
1554
|
# embedded AppStream 2.0 streaming sessions.
|
1542
1555
|
# @return [Array<String>]
|
1543
1556
|
#
|
1557
|
+
# @!attribute [rw] streaming_experience_settings
|
1558
|
+
# The streaming protocol you want your stack to prefer. This can be
|
1559
|
+
# UDP or TCP. Currently, UDP is only supported in the Windows native
|
1560
|
+
# client.
|
1561
|
+
# @return [Types::StreamingExperienceSettings]
|
1562
|
+
#
|
1544
1563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
|
1545
1564
|
#
|
1546
1565
|
class CreateStackRequest < Struct.new(
|
@@ -1554,7 +1573,8 @@ module Aws::AppStream
|
|
1554
1573
|
:application_settings,
|
1555
1574
|
:tags,
|
1556
1575
|
:access_endpoints,
|
1557
|
-
:embed_host_domains
|
1576
|
+
:embed_host_domains,
|
1577
|
+
:streaming_experience_settings)
|
1558
1578
|
SENSITIVE = []
|
1559
1579
|
include Aws::Structure
|
1560
1580
|
end
|
@@ -3497,6 +3517,11 @@ module Aws::AppStream
|
|
3497
3517
|
# The USB device filter strings associated with the fleet.
|
3498
3518
|
# @return [Array<String>]
|
3499
3519
|
#
|
3520
|
+
# @!attribute [rw] session_script_s3_location
|
3521
|
+
# The S3 location of the session scripts configuration zip file. This
|
3522
|
+
# only applies to Elastic fleets.
|
3523
|
+
# @return [Types::S3Location]
|
3524
|
+
#
|
3500
3525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
3501
3526
|
#
|
3502
3527
|
class Fleet < Struct.new(
|
@@ -3522,7 +3547,8 @@ module Aws::AppStream
|
|
3522
3547
|
:stream_view,
|
3523
3548
|
:platform,
|
3524
3549
|
:max_concurrent_sessions,
|
3525
|
-
:usb_device_filter_strings
|
3550
|
+
:usb_device_filter_strings,
|
3551
|
+
:session_script_s3_location)
|
3526
3552
|
SENSITIVE = []
|
3527
3553
|
include Aws::Structure
|
3528
3554
|
end
|
@@ -4550,6 +4576,12 @@ module Aws::AppStream
|
|
4550
4576
|
# embedded AppStream 2.0 streaming sessions.
|
4551
4577
|
# @return [Array<String>]
|
4552
4578
|
#
|
4579
|
+
# @!attribute [rw] streaming_experience_settings
|
4580
|
+
# The streaming protocol you want your stack to prefer. This can be
|
4581
|
+
# UDP or TCP. Currently, UDP is only supported in the Windows native
|
4582
|
+
# client.
|
4583
|
+
# @return [Types::StreamingExperienceSettings]
|
4584
|
+
#
|
4553
4585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack AWS API Documentation
|
4554
4586
|
#
|
4555
4587
|
class Stack < Struct.new(
|
@@ -4565,7 +4597,8 @@ module Aws::AppStream
|
|
4565
4597
|
:user_settings,
|
4566
4598
|
:application_settings,
|
4567
4599
|
:access_endpoints,
|
4568
|
-
:embed_host_domains
|
4600
|
+
:embed_host_domains,
|
4601
|
+
:streaming_experience_settings)
|
4569
4602
|
SENSITIVE = []
|
4570
4603
|
include Aws::Structure
|
4571
4604
|
end
|
@@ -4738,6 +4771,29 @@ module Aws::AppStream
|
|
4738
4771
|
include Aws::Structure
|
4739
4772
|
end
|
4740
4773
|
|
4774
|
+
# The streaming protocol you want your stack to prefer. This can be UDP
|
4775
|
+
# or TCP. Currently, UDP is only supported in the Windows native client.
|
4776
|
+
#
|
4777
|
+
# @note When making an API call, you may pass StreamingExperienceSettings
|
4778
|
+
# data as a hash:
|
4779
|
+
#
|
4780
|
+
# {
|
4781
|
+
# preferred_protocol: "TCP", # accepts TCP, UDP
|
4782
|
+
# }
|
4783
|
+
#
|
4784
|
+
# @!attribute [rw] preferred_protocol
|
4785
|
+
# The preferred protocol that you want to use while streaming your
|
4786
|
+
# application.
|
4787
|
+
# @return [String]
|
4788
|
+
#
|
4789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StreamingExperienceSettings AWS API Documentation
|
4790
|
+
#
|
4791
|
+
class StreamingExperienceSettings < Struct.new(
|
4792
|
+
:preferred_protocol)
|
4793
|
+
SENSITIVE = []
|
4794
|
+
include Aws::Structure
|
4795
|
+
end
|
4796
|
+
|
4741
4797
|
# @note When making an API call, you may pass TagResourceRequest
|
4742
4798
|
# data as a hash:
|
4743
4799
|
#
|
@@ -5025,12 +5081,16 @@ module Aws::AppStream
|
|
5025
5081
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
5026
5082
|
# },
|
5027
5083
|
# idle_disconnect_timeout_in_seconds: 1,
|
5028
|
-
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN, USB_DEVICE_FILTER_STRINGS
|
5084
|
+
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN, USB_DEVICE_FILTER_STRINGS, SESSION_SCRIPT_S3_LOCATION
|
5029
5085
|
# iam_role_arn: "Arn",
|
5030
5086
|
# stream_view: "APP", # accepts APP, DESKTOP
|
5031
5087
|
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
5032
5088
|
# max_concurrent_sessions: 1,
|
5033
5089
|
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
5090
|
+
# session_script_s3_location: {
|
5091
|
+
# s3_bucket: "S3Bucket", # required
|
5092
|
+
# s3_key: "S3Key", # required
|
5093
|
+
# },
|
5034
5094
|
# }
|
5035
5095
|
#
|
5036
5096
|
# @!attribute [rw] image_name
|
@@ -5253,6 +5313,11 @@ module Aws::AppStream
|
|
5253
5313
|
# native client. This is allowed but not required for Elastic fleets.
|
5254
5314
|
# @return [Array<String>]
|
5255
5315
|
#
|
5316
|
+
# @!attribute [rw] session_script_s3_location
|
5317
|
+
# The S3 location of the session scripts configuration zip file. This
|
5318
|
+
# only applies to Elastic fleets.
|
5319
|
+
# @return [Types::S3Location]
|
5320
|
+
#
|
5256
5321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetRequest AWS API Documentation
|
5257
5322
|
#
|
5258
5323
|
class UpdateFleetRequest < Struct.new(
|
@@ -5275,7 +5340,8 @@ module Aws::AppStream
|
|
5275
5340
|
:stream_view,
|
5276
5341
|
:platform,
|
5277
5342
|
:max_concurrent_sessions,
|
5278
|
-
:usb_device_filter_strings
|
5343
|
+
:usb_device_filter_strings,
|
5344
|
+
:session_script_s3_location)
|
5279
5345
|
SENSITIVE = []
|
5280
5346
|
include Aws::Structure
|
5281
5347
|
end
|
@@ -5348,7 +5414,7 @@ module Aws::AppStream
|
|
5348
5414
|
# delete_storage_connectors: false,
|
5349
5415
|
# redirect_url: "RedirectURL",
|
5350
5416
|
# feedback_url: "FeedbackURL",
|
5351
|
-
# attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS
|
5417
|
+
# attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS, STREAMING_EXPERIENCE_SETTINGS
|
5352
5418
|
# user_settings: [
|
5353
5419
|
# {
|
5354
5420
|
# action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts CLIPBOARD_COPY_FROM_LOCAL_DEVICE, CLIPBOARD_COPY_TO_LOCAL_DEVICE, FILE_UPLOAD, FILE_DOWNLOAD, PRINTING_TO_LOCAL_DEVICE, DOMAIN_PASSWORD_SIGNIN, DOMAIN_SMART_CARD_SIGNIN
|
@@ -5366,6 +5432,9 @@ module Aws::AppStream
|
|
5366
5432
|
# },
|
5367
5433
|
# ],
|
5368
5434
|
# embed_host_domains: ["EmbedHostDomain"],
|
5435
|
+
# streaming_experience_settings: {
|
5436
|
+
# preferred_protocol: "TCP", # accepts TCP, UDP
|
5437
|
+
# },
|
5369
5438
|
# }
|
5370
5439
|
#
|
5371
5440
|
# @!attribute [rw] display_name
|
@@ -5427,6 +5496,12 @@ module Aws::AppStream
|
|
5427
5496
|
# embedded AppStream 2.0 streaming sessions.
|
5428
5497
|
# @return [Array<String>]
|
5429
5498
|
#
|
5499
|
+
# @!attribute [rw] streaming_experience_settings
|
5500
|
+
# The streaming protocol you want your stack to prefer. This can be
|
5501
|
+
# UDP or TCP. Currently, UDP is only supported in the Windows native
|
5502
|
+
# client.
|
5503
|
+
# @return [Types::StreamingExperienceSettings]
|
5504
|
+
#
|
5430
5505
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStackRequest AWS API Documentation
|
5431
5506
|
#
|
5432
5507
|
class UpdateStackRequest < Struct.new(
|
@@ -5441,7 +5516,8 @@ module Aws::AppStream
|
|
5441
5516
|
:user_settings,
|
5442
5517
|
:application_settings,
|
5443
5518
|
:access_endpoints,
|
5444
|
-
:embed_host_domains
|
5519
|
+
:embed_host_domains,
|
5520
|
+
:streaming_experience_settings)
|
5445
5521
|
SENSITIVE = []
|
5446
5522
|
include Aws::Structure
|
5447
5523
|
end
|
data/lib/aws-sdk-appstream.rb
CHANGED
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.66.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: 2022-
|
11
|
+
date: 2022-06-29 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.127.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.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|