aws-sdk-appstream 1.62.0 → 1.65.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 +28 -2
- data/lib/aws-sdk-appstream/client_api.rb +3 -0
- data/lib/aws-sdk-appstream/types.rb +30 -4
- 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: df0c68b449e57841193fb5d8d358e3e8e17d2b51f30e7e6d05be3a7d054f3dd6
|
4
|
+
data.tar.gz: 8bf1d3066dc89a10300d26d3618ff28af81a22a7e2f26c07e5438906c1de8ddf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efb3c65b5e9cdd7fb8982ddc9c2302984788744deaad391d83ce4dbd5e237bc7a1458b71f77e8246c8450fb4c46254f968f1860a613c6b1579bf82f15491b693
|
7
|
+
data.tar.gz: 9c5cf9ae8436455922c1094ad85abf9e59719472506c11f6a2d11150ecb32612ff26f443cbf35bfb0f5a3d50dd923893af599bda1770615ad4e45c08dc1061ca
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.0 (2022-04-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Includes updates for create and update fleet APIs to manage the session scripts locations for Elastic fleets.
|
8
|
+
|
9
|
+
1.64.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.63.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.62.0 (2022-01-05)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
@@ -27,7 +27,9 @@ 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'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::AppStream
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
80
84
|
|
@@ -1104,6 +1108,10 @@ module Aws::AppStream
|
|
1104
1108
|
# can redirect to the fleet streaming session, when using the Windows
|
1105
1109
|
# native client. This is allowed but not required for Elastic fleets.
|
1106
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
|
+
#
|
1107
1115
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1108
1116
|
#
|
1109
1117
|
# * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -1141,6 +1149,10 @@ module Aws::AppStream
|
|
1141
1149
|
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
1142
1150
|
# max_concurrent_sessions: 1,
|
1143
1151
|
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
1152
|
+
# session_script_s3_location: {
|
1153
|
+
# s3_bucket: "S3Bucket", # required
|
1154
|
+
# s3_key: "S3Key", # required
|
1155
|
+
# },
|
1144
1156
|
# })
|
1145
1157
|
#
|
1146
1158
|
# @example Response structure
|
@@ -1178,6 +1190,8 @@ module Aws::AppStream
|
|
1178
1190
|
# resp.fleet.max_concurrent_sessions #=> Integer
|
1179
1191
|
# resp.fleet.usb_device_filter_strings #=> Array
|
1180
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
|
1181
1195
|
#
|
1182
1196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
|
1183
1197
|
#
|
@@ -2509,6 +2523,8 @@ module Aws::AppStream
|
|
2509
2523
|
# resp.fleets[0].max_concurrent_sessions #=> Integer
|
2510
2524
|
# resp.fleets[0].usb_device_filter_strings #=> Array
|
2511
2525
|
# resp.fleets[0].usb_device_filter_strings[0] #=> String
|
2526
|
+
# resp.fleets[0].session_script_s3_location.s3_bucket #=> String
|
2527
|
+
# resp.fleets[0].session_script_s3_location.s3_key #=> String
|
2512
2528
|
# resp.next_token #=> String
|
2513
2529
|
#
|
2514
2530
|
#
|
@@ -4010,6 +4026,10 @@ module Aws::AppStream
|
|
4010
4026
|
# can redirect to the fleet streaming session, when using the Windows
|
4011
4027
|
# native client. This is allowed but not required for Elastic fleets.
|
4012
4028
|
#
|
4029
|
+
# @option params [Types::S3Location] :session_script_s3_location
|
4030
|
+
# The S3 location of the session scripts configuration zip file. This
|
4031
|
+
# only applies to Elastic fleets.
|
4032
|
+
#
|
4013
4033
|
# @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4014
4034
|
#
|
4015
4035
|
# * {Types::UpdateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -4039,12 +4059,16 @@ module Aws::AppStream
|
|
4039
4059
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
4040
4060
|
# },
|
4041
4061
|
# idle_disconnect_timeout_in_seconds: 1,
|
4042
|
-
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN, USB_DEVICE_FILTER_STRINGS
|
4062
|
+
# 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
|
4043
4063
|
# iam_role_arn: "Arn",
|
4044
4064
|
# stream_view: "APP", # accepts APP, DESKTOP
|
4045
4065
|
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
4046
4066
|
# max_concurrent_sessions: 1,
|
4047
4067
|
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
4068
|
+
# session_script_s3_location: {
|
4069
|
+
# s3_bucket: "S3Bucket", # required
|
4070
|
+
# s3_key: "S3Key", # required
|
4071
|
+
# },
|
4048
4072
|
# })
|
4049
4073
|
#
|
4050
4074
|
# @example Response structure
|
@@ -4082,6 +4106,8 @@ module Aws::AppStream
|
|
4082
4106
|
# resp.fleet.max_concurrent_sessions #=> Integer
|
4083
4107
|
# resp.fleet.usb_device_filter_strings #=> Array
|
4084
4108
|
# resp.fleet.usb_device_filter_strings[0] #=> String
|
4109
|
+
# resp.fleet.session_script_s3_location.s3_bucket #=> String
|
4110
|
+
# resp.fleet.session_script_s3_location.s3_key #=> String
|
4085
4111
|
#
|
4086
4112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
|
4087
4113
|
#
|
@@ -4266,7 +4292,7 @@ module Aws::AppStream
|
|
4266
4292
|
params: params,
|
4267
4293
|
config: config)
|
4268
4294
|
context[:gem_name] = 'aws-sdk-appstream'
|
4269
|
-
context[:gem_version] = '1.
|
4295
|
+
context[:gem_version] = '1.65.0'
|
4270
4296
|
Seahorse::Client::Request.new(handlers, context)
|
4271
4297
|
end
|
4272
4298
|
|
@@ -472,6 +472,7 @@ module Aws::AppStream
|
|
472
472
|
CreateFleetRequest.add_member(:platform, Shapes::ShapeRef.new(shape: PlatformType, location_name: "Platform"))
|
473
473
|
CreateFleetRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
474
474
|
CreateFleetRequest.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
475
|
+
CreateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
475
476
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
476
477
|
|
477
478
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -856,6 +857,7 @@ module Aws::AppStream
|
|
856
857
|
Fleet.add_member(:platform, Shapes::ShapeRef.new(shape: PlatformType, location_name: "Platform"))
|
857
858
|
Fleet.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
858
859
|
Fleet.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
860
|
+
Fleet.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
859
861
|
Fleet.struct_class = Types::Fleet
|
860
862
|
|
861
863
|
FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
|
@@ -1176,6 +1178,7 @@ module Aws::AppStream
|
|
1176
1178
|
UpdateFleetRequest.add_member(:platform, Shapes::ShapeRef.new(shape: PlatformType, location_name: "Platform"))
|
1177
1179
|
UpdateFleetRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
1178
1180
|
UpdateFleetRequest.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
1181
|
+
UpdateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
1179
1182
|
UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
|
1180
1183
|
|
1181
1184
|
UpdateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -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
|
@@ -3497,6 +3507,11 @@ module Aws::AppStream
|
|
3497
3507
|
# The USB device filter strings associated with the fleet.
|
3498
3508
|
# @return [Array<String>]
|
3499
3509
|
#
|
3510
|
+
# @!attribute [rw] session_script_s3_location
|
3511
|
+
# The S3 location of the session scripts configuration zip file. This
|
3512
|
+
# only applies to Elastic fleets.
|
3513
|
+
# @return [Types::S3Location]
|
3514
|
+
#
|
3500
3515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
3501
3516
|
#
|
3502
3517
|
class Fleet < Struct.new(
|
@@ -3522,7 +3537,8 @@ module Aws::AppStream
|
|
3522
3537
|
:stream_view,
|
3523
3538
|
:platform,
|
3524
3539
|
:max_concurrent_sessions,
|
3525
|
-
:usb_device_filter_strings
|
3540
|
+
:usb_device_filter_strings,
|
3541
|
+
:session_script_s3_location)
|
3526
3542
|
SENSITIVE = []
|
3527
3543
|
include Aws::Structure
|
3528
3544
|
end
|
@@ -5025,12 +5041,16 @@ module Aws::AppStream
|
|
5025
5041
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
5026
5042
|
# },
|
5027
5043
|
# 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
|
5044
|
+
# 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
5045
|
# iam_role_arn: "Arn",
|
5030
5046
|
# stream_view: "APP", # accepts APP, DESKTOP
|
5031
5047
|
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
5032
5048
|
# max_concurrent_sessions: 1,
|
5033
5049
|
# usb_device_filter_strings: ["UsbDeviceFilterString"],
|
5050
|
+
# session_script_s3_location: {
|
5051
|
+
# s3_bucket: "S3Bucket", # required
|
5052
|
+
# s3_key: "S3Key", # required
|
5053
|
+
# },
|
5034
5054
|
# }
|
5035
5055
|
#
|
5036
5056
|
# @!attribute [rw] image_name
|
@@ -5253,6 +5273,11 @@ module Aws::AppStream
|
|
5253
5273
|
# native client. This is allowed but not required for Elastic fleets.
|
5254
5274
|
# @return [Array<String>]
|
5255
5275
|
#
|
5276
|
+
# @!attribute [rw] session_script_s3_location
|
5277
|
+
# The S3 location of the session scripts configuration zip file. This
|
5278
|
+
# only applies to Elastic fleets.
|
5279
|
+
# @return [Types::S3Location]
|
5280
|
+
#
|
5256
5281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetRequest AWS API Documentation
|
5257
5282
|
#
|
5258
5283
|
class UpdateFleetRequest < Struct.new(
|
@@ -5275,7 +5300,8 @@ module Aws::AppStream
|
|
5275
5300
|
:stream_view,
|
5276
5301
|
:platform,
|
5277
5302
|
:max_concurrent_sessions,
|
5278
|
-
:usb_device_filter_strings
|
5303
|
+
:usb_device_filter_strings,
|
5304
|
+
:session_script_s3_location)
|
5279
5305
|
SENSITIVE = []
|
5280
5306
|
include Aws::Structure
|
5281
5307
|
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.65.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-04-14 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
|