aws-sdk-appstream 1.64.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72e26c96c04b24c665e63fffb9a02413d7dca14deca84762fcaf9426f215b52f
4
- data.tar.gz: 8f64284dedd27653f50bb9bfc5c2726b767a7602178626715b3a02ea4ab08872
3
+ metadata.gz: df0c68b449e57841193fb5d8d358e3e8e17d2b51f30e7e6d05be3a7d054f3dd6
4
+ data.tar.gz: 8bf1d3066dc89a10300d26d3618ff28af81a22a7e2f26c07e5438906c1de8ddf
5
5
  SHA512:
6
- metadata.gz: 68746d6529debb352692d5fbd4053512516556e683db7e786ba87a809810636eba2a56fb2d1329ec1b8915a7ee5c6a9c53f71a6b291ae612cdb0688348a787ce
7
- data.tar.gz: 815233bb30f279e1393becad9a4a2b4a58158d25b14425a880431b2346268719bb37e81bfbbd8c50ce90da93ff2cb9fface7eff065635444074149ee82606de5
6
+ metadata.gz: efb3c65b5e9cdd7fb8982ddc9c2302984788744deaad391d83ce4dbd5e237bc7a1458b71f77e8246c8450fb4c46254f968f1860a613c6b1579bf82f15491b693
7
+ data.tar.gz: 9c5cf9ae8436455922c1094ad85abf9e59719472506c11f6a2d11150ecb32612ff26f443cbf35bfb0f5a3d50dd923893af599bda1770615ad4e45c08dc1061ca
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.64.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.65.0
@@ -1108,6 +1108,10 @@ module Aws::AppStream
1108
1108
  # can redirect to the fleet streaming session, when using the Windows
1109
1109
  # native client. This is allowed but not required for Elastic fleets.
1110
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
+ #
1111
1115
  # @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1112
1116
  #
1113
1117
  # * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
@@ -1145,6 +1149,10 @@ module Aws::AppStream
1145
1149
  # platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
1146
1150
  # max_concurrent_sessions: 1,
1147
1151
  # usb_device_filter_strings: ["UsbDeviceFilterString"],
1152
+ # session_script_s3_location: {
1153
+ # s3_bucket: "S3Bucket", # required
1154
+ # s3_key: "S3Key", # required
1155
+ # },
1148
1156
  # })
1149
1157
  #
1150
1158
  # @example Response structure
@@ -1182,6 +1190,8 @@ module Aws::AppStream
1182
1190
  # resp.fleet.max_concurrent_sessions #=> Integer
1183
1191
  # resp.fleet.usb_device_filter_strings #=> Array
1184
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
1185
1195
  #
1186
1196
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
1187
1197
  #
@@ -2513,6 +2523,8 @@ module Aws::AppStream
2513
2523
  # resp.fleets[0].max_concurrent_sessions #=> Integer
2514
2524
  # resp.fleets[0].usb_device_filter_strings #=> Array
2515
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
2516
2528
  # resp.next_token #=> String
2517
2529
  #
2518
2530
  #
@@ -4014,6 +4026,10 @@ module Aws::AppStream
4014
4026
  # can redirect to the fleet streaming session, when using the Windows
4015
4027
  # native client. This is allowed but not required for Elastic fleets.
4016
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
+ #
4017
4033
  # @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4018
4034
  #
4019
4035
  # * {Types::UpdateFleetResult#fleet #fleet} => Types::Fleet
@@ -4043,12 +4059,16 @@ module Aws::AppStream
4043
4059
  # organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
4044
4060
  # },
4045
4061
  # idle_disconnect_timeout_in_seconds: 1,
4046
- # 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
4047
4063
  # iam_role_arn: "Arn",
4048
4064
  # stream_view: "APP", # accepts APP, DESKTOP
4049
4065
  # platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
4050
4066
  # max_concurrent_sessions: 1,
4051
4067
  # usb_device_filter_strings: ["UsbDeviceFilterString"],
4068
+ # session_script_s3_location: {
4069
+ # s3_bucket: "S3Bucket", # required
4070
+ # s3_key: "S3Key", # required
4071
+ # },
4052
4072
  # })
4053
4073
  #
4054
4074
  # @example Response structure
@@ -4086,6 +4106,8 @@ module Aws::AppStream
4086
4106
  # resp.fleet.max_concurrent_sessions #=> Integer
4087
4107
  # resp.fleet.usb_device_filter_strings #=> Array
4088
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
4089
4111
  #
4090
4112
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
4091
4113
  #
@@ -4270,7 +4292,7 @@ module Aws::AppStream
4270
4292
  params: params,
4271
4293
  config: config)
4272
4294
  context[:gem_name] = 'aws-sdk-appstream'
4273
- context[:gem_version] = '1.64.0'
4295
+ context[:gem_version] = '1.65.0'
4274
4296
  Seahorse::Client::Request.new(handlers, context)
4275
4297
  end
4276
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
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-appstream/customizations'
49
49
  # @!group service
50
50
  module Aws::AppStream
51
51
 
52
- GEM_VERSION = '1.64.0'
52
+ GEM_VERSION = '1.65.0'
53
53
 
54
54
  end
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.64.0
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-02-24 00:00:00.000000000 Z
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