aws-sdk-appstream 1.77.0 → 1.79.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 +8 -40
- data/lib/aws-sdk-appstream/client_api.rb +4 -14
- data/lib/aws-sdk-appstream/types.rb +8 -86
- data/lib/aws-sdk-appstream/waiters.rb +6 -6
- 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: 863236235704d541da7b1616f8803db06c9acd6f4c79c7d662fd5225d3a07c1f
|
4
|
+
data.tar.gz: fcd8ecd098bd571be4fe1a3f7cac6628901edc90be84281d9bb55a4d18489696
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfd31682edfcc3975d1d394a6065c7eaeb456a544c1176f4b4c6d6e36f2062cc515b5e8e5c94d61d338ca770b64dbd2311e6866cbc2a4138049e9d05f616d195
|
7
|
+
data.tar.gz: 34470da9aa113d7f6f9b6e46bb4f42932af017291719a8151ae14559d87a499646caf87e99e22b645808c3dcf6b4abcaed80da1cd9f5087506cb12a55150325a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.79.0 (2023-09-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.78.0 (2023-09-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release introduces app block builder, allowing customers to provision a resource to package applications into an app block
|
13
|
+
|
4
14
|
1.77.0 (2023-09-14)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.79.0
|
@@ -1304,7 +1304,7 @@ module Aws::AppStream
|
|
1304
1304
|
# open documents before being disconnected. After this time elapses, the
|
1305
1305
|
# instance is terminated and replaced by a new instance.
|
1306
1306
|
#
|
1307
|
-
# Specify a value between 600 and
|
1307
|
+
# Specify a value between 600 and 360000.
|
1308
1308
|
#
|
1309
1309
|
# @option params [Integer] :disconnect_timeout_in_seconds
|
1310
1310
|
# The amount of time that a streaming session remains active after users
|
@@ -1418,10 +1418,6 @@ module Aws::AppStream
|
|
1418
1418
|
# The S3 location of the session scripts configuration zip file. This
|
1419
1419
|
# only applies to Elastic fleets.
|
1420
1420
|
#
|
1421
|
-
# @option params [Integer] :max_sessions_per_instance
|
1422
|
-
# The maximum number of user sessions on an instance. This only applies
|
1423
|
-
# to multi-session fleets.
|
1424
|
-
#
|
1425
1421
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1426
1422
|
#
|
1427
1423
|
# * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -1435,8 +1431,7 @@ module Aws::AppStream
|
|
1435
1431
|
# instance_type: "String", # required
|
1436
1432
|
# fleet_type: "ALWAYS_ON", # accepts ALWAYS_ON, ON_DEMAND, ELASTIC
|
1437
1433
|
# compute_capacity: {
|
1438
|
-
# desired_instances: 1,
|
1439
|
-
# desired_sessions: 1,
|
1434
|
+
# desired_instances: 1, # required
|
1440
1435
|
# },
|
1441
1436
|
# vpc_config: {
|
1442
1437
|
# subnet_ids: ["String"],
|
@@ -1464,7 +1459,6 @@ module Aws::AppStream
|
|
1464
1459
|
# s3_bucket: "S3Bucket", # required
|
1465
1460
|
# s3_key: "S3Key",
|
1466
1461
|
# },
|
1467
|
-
# max_sessions_per_instance: 1,
|
1468
1462
|
# })
|
1469
1463
|
#
|
1470
1464
|
# @example Response structure
|
@@ -1481,10 +1475,6 @@ module Aws::AppStream
|
|
1481
1475
|
# resp.fleet.compute_capacity_status.running #=> Integer
|
1482
1476
|
# resp.fleet.compute_capacity_status.in_use #=> Integer
|
1483
1477
|
# resp.fleet.compute_capacity_status.available #=> Integer
|
1484
|
-
# resp.fleet.compute_capacity_status.desired_user_sessions #=> Integer
|
1485
|
-
# resp.fleet.compute_capacity_status.available_user_sessions #=> Integer
|
1486
|
-
# resp.fleet.compute_capacity_status.active_user_sessions #=> Integer
|
1487
|
-
# resp.fleet.compute_capacity_status.actual_user_sessions #=> Integer
|
1488
1478
|
# resp.fleet.max_user_duration_in_seconds #=> Integer
|
1489
1479
|
# resp.fleet.disconnect_timeout_in_seconds #=> Integer
|
1490
1480
|
# resp.fleet.state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED"
|
@@ -1508,7 +1498,6 @@ module Aws::AppStream
|
|
1508
1498
|
# resp.fleet.usb_device_filter_strings[0] #=> String
|
1509
1499
|
# resp.fleet.session_script_s3_location.s3_bucket #=> String
|
1510
1500
|
# resp.fleet.session_script_s3_location.s3_key #=> String
|
1511
|
-
# resp.fleet.max_sessions_per_instance #=> Integer
|
1512
1501
|
#
|
1513
1502
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
|
1514
1503
|
#
|
@@ -2976,10 +2965,6 @@ module Aws::AppStream
|
|
2976
2965
|
# resp.fleets[0].compute_capacity_status.running #=> Integer
|
2977
2966
|
# resp.fleets[0].compute_capacity_status.in_use #=> Integer
|
2978
2967
|
# resp.fleets[0].compute_capacity_status.available #=> Integer
|
2979
|
-
# resp.fleets[0].compute_capacity_status.desired_user_sessions #=> Integer
|
2980
|
-
# resp.fleets[0].compute_capacity_status.available_user_sessions #=> Integer
|
2981
|
-
# resp.fleets[0].compute_capacity_status.active_user_sessions #=> Integer
|
2982
|
-
# resp.fleets[0].compute_capacity_status.actual_user_sessions #=> Integer
|
2983
2968
|
# resp.fleets[0].max_user_duration_in_seconds #=> Integer
|
2984
2969
|
# resp.fleets[0].disconnect_timeout_in_seconds #=> Integer
|
2985
2970
|
# resp.fleets[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED"
|
@@ -3003,7 +2988,6 @@ module Aws::AppStream
|
|
3003
2988
|
# resp.fleets[0].usb_device_filter_strings[0] #=> String
|
3004
2989
|
# resp.fleets[0].session_script_s3_location.s3_bucket #=> String
|
3005
2990
|
# resp.fleets[0].session_script_s3_location.s3_key #=> String
|
3006
|
-
# resp.fleets[0].max_sessions_per_instance #=> Integer
|
3007
2991
|
# resp.next_token #=> String
|
3008
2992
|
#
|
3009
2993
|
#
|
@@ -3265,9 +3249,6 @@ module Aws::AppStream
|
|
3265
3249
|
# using a streaming URL or `SAML` for a SAML federated user. The default
|
3266
3250
|
# is to authenticate users using a streaming URL.
|
3267
3251
|
#
|
3268
|
-
# @option params [String] :instance_id
|
3269
|
-
# The identifier for the instance hosting the session.
|
3270
|
-
#
|
3271
3252
|
# @return [Types::DescribeSessionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3272
3253
|
#
|
3273
3254
|
# * {Types::DescribeSessionsResult#sessions #sessions} => Array<Types::Session>
|
@@ -3276,13 +3257,12 @@ module Aws::AppStream
|
|
3276
3257
|
# @example Request syntax with placeholder values
|
3277
3258
|
#
|
3278
3259
|
# resp = client.describe_sessions({
|
3279
|
-
# stack_name: "
|
3280
|
-
# fleet_name: "
|
3260
|
+
# stack_name: "String", # required
|
3261
|
+
# fleet_name: "String", # required
|
3281
3262
|
# user_id: "UserId",
|
3282
3263
|
# next_token: "String",
|
3283
3264
|
# limit: 1,
|
3284
3265
|
# authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
|
3285
|
-
# instance_id: "String",
|
3286
3266
|
# })
|
3287
3267
|
#
|
3288
3268
|
# @example Response structure
|
@@ -3299,7 +3279,6 @@ module Aws::AppStream
|
|
3299
3279
|
# resp.sessions[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
|
3300
3280
|
# resp.sessions[0].network_access_configuration.eni_private_ip_address #=> String
|
3301
3281
|
# resp.sessions[0].network_access_configuration.eni_id #=> String
|
3302
|
-
# resp.sessions[0].instance_id #=> String
|
3303
3282
|
# resp.next_token #=> String
|
3304
3283
|
#
|
3305
3284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeSessions AWS API Documentation
|
@@ -4812,10 +4791,6 @@ module Aws::AppStream
|
|
4812
4791
|
# The S3 location of the session scripts configuration zip file. This
|
4813
4792
|
# only applies to Elastic fleets.
|
4814
4793
|
#
|
4815
|
-
# @option params [Integer] :max_sessions_per_instance
|
4816
|
-
# The maximum number of user sessions on an instance. This only applies
|
4817
|
-
# to multi-session fleets.
|
4818
|
-
#
|
4819
4794
|
# @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4820
4795
|
#
|
4821
4796
|
# * {Types::UpdateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -4825,11 +4800,10 @@ module Aws::AppStream
|
|
4825
4800
|
# resp = client.update_fleet({
|
4826
4801
|
# image_name: "String",
|
4827
4802
|
# image_arn: "Arn",
|
4828
|
-
# name: "
|
4803
|
+
# name: "String",
|
4829
4804
|
# instance_type: "String",
|
4830
4805
|
# compute_capacity: {
|
4831
|
-
# desired_instances: 1,
|
4832
|
-
# desired_sessions: 1,
|
4806
|
+
# desired_instances: 1, # required
|
4833
4807
|
# },
|
4834
4808
|
# vpc_config: {
|
4835
4809
|
# subnet_ids: ["String"],
|
@@ -4846,7 +4820,7 @@ module Aws::AppStream
|
|
4846
4820
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
4847
4821
|
# },
|
4848
4822
|
# idle_disconnect_timeout_in_seconds: 1,
|
4849
|
-
# 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
|
4823
|
+
# 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
|
4850
4824
|
# iam_role_arn: "Arn",
|
4851
4825
|
# stream_view: "APP", # accepts APP, DESKTOP
|
4852
4826
|
# platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, AMAZON_LINUX2
|
@@ -4856,7 +4830,6 @@ module Aws::AppStream
|
|
4856
4830
|
# s3_bucket: "S3Bucket", # required
|
4857
4831
|
# s3_key: "S3Key",
|
4858
4832
|
# },
|
4859
|
-
# max_sessions_per_instance: 1,
|
4860
4833
|
# })
|
4861
4834
|
#
|
4862
4835
|
# @example Response structure
|
@@ -4873,10 +4846,6 @@ module Aws::AppStream
|
|
4873
4846
|
# resp.fleet.compute_capacity_status.running #=> Integer
|
4874
4847
|
# resp.fleet.compute_capacity_status.in_use #=> Integer
|
4875
4848
|
# resp.fleet.compute_capacity_status.available #=> Integer
|
4876
|
-
# resp.fleet.compute_capacity_status.desired_user_sessions #=> Integer
|
4877
|
-
# resp.fleet.compute_capacity_status.available_user_sessions #=> Integer
|
4878
|
-
# resp.fleet.compute_capacity_status.active_user_sessions #=> Integer
|
4879
|
-
# resp.fleet.compute_capacity_status.actual_user_sessions #=> Integer
|
4880
4849
|
# resp.fleet.max_user_duration_in_seconds #=> Integer
|
4881
4850
|
# resp.fleet.disconnect_timeout_in_seconds #=> Integer
|
4882
4851
|
# resp.fleet.state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED"
|
@@ -4900,7 +4869,6 @@ module Aws::AppStream
|
|
4900
4869
|
# resp.fleet.usb_device_filter_strings[0] #=> String
|
4901
4870
|
# resp.fleet.session_script_s3_location.s3_bucket #=> String
|
4902
4871
|
# resp.fleet.session_script_s3_location.s3_key #=> String
|
4903
|
-
# resp.fleet.max_sessions_per_instance #=> Integer
|
4904
4872
|
#
|
4905
4873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
|
4906
4874
|
#
|
@@ -5093,7 +5061,7 @@ module Aws::AppStream
|
|
5093
5061
|
params: params,
|
5094
5062
|
config: config)
|
5095
5063
|
context[:gem_name] = 'aws-sdk-appstream'
|
5096
|
-
context[:gem_version] = '1.
|
5064
|
+
context[:gem_version] = '1.79.0'
|
5097
5065
|
Seahorse::Client::Request.new(handlers, context)
|
5098
5066
|
end
|
5099
5067
|
|
@@ -469,18 +469,13 @@ module Aws::AppStream
|
|
469
469
|
CertificateBasedAuthProperties.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateAuthorityArn"))
|
470
470
|
CertificateBasedAuthProperties.struct_class = Types::CertificateBasedAuthProperties
|
471
471
|
|
472
|
-
ComputeCapacity.add_member(:desired_instances, Shapes::ShapeRef.new(shape: Integer, location_name: "DesiredInstances"))
|
473
|
-
ComputeCapacity.add_member(:desired_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "DesiredSessions"))
|
472
|
+
ComputeCapacity.add_member(:desired_instances, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DesiredInstances"))
|
474
473
|
ComputeCapacity.struct_class = Types::ComputeCapacity
|
475
474
|
|
476
475
|
ComputeCapacityStatus.add_member(:desired, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "Desired"))
|
477
476
|
ComputeCapacityStatus.add_member(:running, Shapes::ShapeRef.new(shape: Integer, location_name: "Running"))
|
478
477
|
ComputeCapacityStatus.add_member(:in_use, Shapes::ShapeRef.new(shape: Integer, location_name: "InUse"))
|
479
478
|
ComputeCapacityStatus.add_member(:available, Shapes::ShapeRef.new(shape: Integer, location_name: "Available"))
|
480
|
-
ComputeCapacityStatus.add_member(:desired_user_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "DesiredUserSessions"))
|
481
|
-
ComputeCapacityStatus.add_member(:available_user_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "AvailableUserSessions"))
|
482
|
-
ComputeCapacityStatus.add_member(:active_user_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "ActiveUserSessions"))
|
483
|
-
ComputeCapacityStatus.add_member(:actual_user_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "ActualUserSessions"))
|
484
479
|
ComputeCapacityStatus.struct_class = Types::ComputeCapacityStatus
|
485
480
|
|
486
481
|
ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -587,7 +582,6 @@ module Aws::AppStream
|
|
587
582
|
CreateFleetRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
588
583
|
CreateFleetRequest.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
589
584
|
CreateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
590
|
-
CreateFleetRequest.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
591
585
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
592
586
|
|
593
587
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -844,13 +838,12 @@ module Aws::AppStream
|
|
844
838
|
DescribeImagesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
845
839
|
DescribeImagesResult.struct_class = Types::DescribeImagesResult
|
846
840
|
|
847
|
-
DescribeSessionsRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape:
|
848
|
-
DescribeSessionsRequest.add_member(:fleet_name, Shapes::ShapeRef.new(shape:
|
841
|
+
DescribeSessionsRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "StackName"))
|
842
|
+
DescribeSessionsRequest.add_member(:fleet_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "FleetName"))
|
849
843
|
DescribeSessionsRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, location_name: "UserId"))
|
850
844
|
DescribeSessionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
851
845
|
DescribeSessionsRequest.add_member(:limit, Shapes::ShapeRef.new(shape: Integer, location_name: "Limit"))
|
852
846
|
DescribeSessionsRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "AuthenticationType"))
|
853
|
-
DescribeSessionsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "InstanceId"))
|
854
847
|
DescribeSessionsRequest.struct_class = Types::DescribeSessionsRequest
|
855
848
|
|
856
849
|
DescribeSessionsResult.add_member(:sessions, Shapes::ShapeRef.new(shape: SessionList, location_name: "Sessions"))
|
@@ -1012,7 +1005,6 @@ module Aws::AppStream
|
|
1012
1005
|
Fleet.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
1013
1006
|
Fleet.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
1014
1007
|
Fleet.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
1015
|
-
Fleet.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
1016
1008
|
Fleet.struct_class = Types::Fleet
|
1017
1009
|
|
1018
1010
|
FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
|
@@ -1195,7 +1187,6 @@ module Aws::AppStream
|
|
1195
1187
|
Session.add_member(:max_expiration_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "MaxExpirationTime"))
|
1196
1188
|
Session.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "AuthenticationType"))
|
1197
1189
|
Session.add_member(:network_access_configuration, Shapes::ShapeRef.new(shape: NetworkAccessConfiguration, location_name: "NetworkAccessConfiguration"))
|
1198
|
-
Session.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "InstanceId"))
|
1199
1190
|
Session.struct_class = Types::Session
|
1200
1191
|
|
1201
1192
|
SessionList.member = Shapes::ShapeRef.new(shape: Session)
|
@@ -1348,7 +1339,7 @@ module Aws::AppStream
|
|
1348
1339
|
|
1349
1340
|
UpdateFleetRequest.add_member(:image_name, Shapes::ShapeRef.new(shape: String, location_name: "ImageName"))
|
1350
1341
|
UpdateFleetRequest.add_member(:image_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ImageArn"))
|
1351
|
-
UpdateFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
1342
|
+
UpdateFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
1352
1343
|
UpdateFleetRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "InstanceType"))
|
1353
1344
|
UpdateFleetRequest.add_member(:compute_capacity, Shapes::ShapeRef.new(shape: ComputeCapacity, location_name: "ComputeCapacity"))
|
1354
1345
|
UpdateFleetRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
@@ -1367,7 +1358,6 @@ module Aws::AppStream
|
|
1367
1358
|
UpdateFleetRequest.add_member(:max_concurrent_sessions, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxConcurrentSessions"))
|
1368
1359
|
UpdateFleetRequest.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
1369
1360
|
UpdateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
1370
|
-
UpdateFleetRequest.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
1371
1361
|
UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
|
1372
1362
|
|
1373
1363
|
UpdateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -589,20 +589,10 @@ module Aws::AppStream
|
|
589
589
|
# The desired number of streaming instances.
|
590
590
|
# @return [Integer]
|
591
591
|
#
|
592
|
-
# @!attribute [rw] desired_sessions
|
593
|
-
# The desired number of user sessions for a multi-session fleet. This
|
594
|
-
# is not allowed for single-session fleets.
|
595
|
-
#
|
596
|
-
# When you create a fleet, you must set either the DesiredSessions or
|
597
|
-
# DesiredInstances attribute, based on the type of fleet you create.
|
598
|
-
# You can’t define both attributes or leave both attributes blank.
|
599
|
-
# @return [Integer]
|
600
|
-
#
|
601
592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ComputeCapacity AWS API Documentation
|
602
593
|
#
|
603
594
|
class ComputeCapacity < Struct.new(
|
604
|
-
:desired_instances
|
605
|
-
:desired_sessions)
|
595
|
+
:desired_instances)
|
606
596
|
SENSITIVE = []
|
607
597
|
include Aws::Structure
|
608
598
|
end
|
@@ -627,53 +617,13 @@ module Aws::AppStream
|
|
627
617
|
# stream sessions.
|
628
618
|
# @return [Integer]
|
629
619
|
#
|
630
|
-
# @!attribute [rw] desired_user_sessions
|
631
|
-
# The total number of sessions slots that are either running or
|
632
|
-
# pending. This represents the total number of concurrent streaming
|
633
|
-
# sessions your fleet can support in a steady state.
|
634
|
-
#
|
635
|
-
# DesiredUserSessionCapacity = ActualUserSessionCapacity +
|
636
|
-
# PendingUserSessionCapacity
|
637
|
-
#
|
638
|
-
# This only applies to multi-session fleets.
|
639
|
-
# @return [Integer]
|
640
|
-
#
|
641
|
-
# @!attribute [rw] available_user_sessions
|
642
|
-
# The number of idle session slots currently available for user
|
643
|
-
# sessions.
|
644
|
-
#
|
645
|
-
# AvailableUserSessionCapacity = ActualUserSessionCapacity -
|
646
|
-
# ActiveUserSessions
|
647
|
-
#
|
648
|
-
# This only applies to multi-session fleets.
|
649
|
-
# @return [Integer]
|
650
|
-
#
|
651
|
-
# @!attribute [rw] active_user_sessions
|
652
|
-
# The number of user sessions currently being used for streaming
|
653
|
-
# sessions. This only applies to multi-session fleets.
|
654
|
-
# @return [Integer]
|
655
|
-
#
|
656
|
-
# @!attribute [rw] actual_user_sessions
|
657
|
-
# The total number of session slots that are available for streaming
|
658
|
-
# or are currently streaming.
|
659
|
-
#
|
660
|
-
# ActualUserSessionCapacity = AvailableUserSessionCapacity +
|
661
|
-
# ActiveUserSessions
|
662
|
-
#
|
663
|
-
# This only applies to multi-session fleets.
|
664
|
-
# @return [Integer]
|
665
|
-
#
|
666
620
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ComputeCapacityStatus AWS API Documentation
|
667
621
|
#
|
668
622
|
class ComputeCapacityStatus < Struct.new(
|
669
623
|
:desired,
|
670
624
|
:running,
|
671
625
|
:in_use,
|
672
|
-
:available
|
673
|
-
:desired_user_sessions,
|
674
|
-
:available_user_sessions,
|
675
|
-
:active_user_sessions,
|
676
|
-
:actual_user_sessions)
|
626
|
+
:available)
|
677
627
|
SENSITIVE = []
|
678
628
|
include Aws::Structure
|
679
629
|
end
|
@@ -1260,7 +1210,7 @@ module Aws::AppStream
|
|
1260
1210
|
# this time elapses, the instance is terminated and replaced by a new
|
1261
1211
|
# instance.
|
1262
1212
|
#
|
1263
|
-
# Specify a value between 600 and
|
1213
|
+
# Specify a value between 600 and 360000.
|
1264
1214
|
# @return [Integer]
|
1265
1215
|
#
|
1266
1216
|
# @!attribute [rw] disconnect_timeout_in_seconds
|
@@ -1390,11 +1340,6 @@ module Aws::AppStream
|
|
1390
1340
|
# only applies to Elastic fleets.
|
1391
1341
|
# @return [Types::S3Location]
|
1392
1342
|
#
|
1393
|
-
# @!attribute [rw] max_sessions_per_instance
|
1394
|
-
# The maximum number of user sessions on an instance. This only
|
1395
|
-
# applies to multi-session fleets.
|
1396
|
-
# @return [Integer]
|
1397
|
-
#
|
1398
1343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
1399
1344
|
#
|
1400
1345
|
class CreateFleetRequest < Struct.new(
|
@@ -1418,8 +1363,7 @@ module Aws::AppStream
|
|
1418
1363
|
:platform,
|
1419
1364
|
:max_concurrent_sessions,
|
1420
1365
|
:usb_device_filter_strings,
|
1421
|
-
:session_script_s3_location
|
1422
|
-
:max_sessions_per_instance)
|
1366
|
+
:session_script_s3_location)
|
1423
1367
|
SENSITIVE = []
|
1424
1368
|
include Aws::Structure
|
1425
1369
|
end
|
@@ -2729,10 +2673,6 @@ module Aws::AppStream
|
|
2729
2673
|
# default is to authenticate users using a streaming URL.
|
2730
2674
|
# @return [String]
|
2731
2675
|
#
|
2732
|
-
# @!attribute [rw] instance_id
|
2733
|
-
# The identifier for the instance hosting the session.
|
2734
|
-
# @return [String]
|
2735
|
-
#
|
2736
2676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeSessionsRequest AWS API Documentation
|
2737
2677
|
#
|
2738
2678
|
class DescribeSessionsRequest < Struct.new(
|
@@ -2741,8 +2681,7 @@ module Aws::AppStream
|
|
2741
2681
|
:user_id,
|
2742
2682
|
:next_token,
|
2743
2683
|
:limit,
|
2744
|
-
:authentication_type
|
2745
|
-
:instance_id)
|
2684
|
+
:authentication_type)
|
2746
2685
|
SENSITIVE = []
|
2747
2686
|
include Aws::Structure
|
2748
2687
|
end
|
@@ -3553,11 +3492,6 @@ module Aws::AppStream
|
|
3553
3492
|
# only applies to Elastic fleets.
|
3554
3493
|
# @return [Types::S3Location]
|
3555
3494
|
#
|
3556
|
-
# @!attribute [rw] max_sessions_per_instance
|
3557
|
-
# The maximum number of user sessions on an instance. This only
|
3558
|
-
# applies to multi-session fleets.
|
3559
|
-
# @return [Integer]
|
3560
|
-
#
|
3561
3495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
3562
3496
|
#
|
3563
3497
|
class Fleet < Struct.new(
|
@@ -3584,8 +3518,7 @@ module Aws::AppStream
|
|
3584
3518
|
:platform,
|
3585
3519
|
:max_concurrent_sessions,
|
3586
3520
|
:usb_device_filter_strings,
|
3587
|
-
:session_script_s3_location
|
3588
|
-
:max_sessions_per_instance)
|
3521
|
+
:session_script_s3_location)
|
3589
3522
|
SENSITIVE = []
|
3590
3523
|
include Aws::Structure
|
3591
3524
|
end
|
@@ -4460,10 +4393,6 @@ module Aws::AppStream
|
|
4460
4393
|
# The network details for the streaming session.
|
4461
4394
|
# @return [Types::NetworkAccessConfiguration]
|
4462
4395
|
#
|
4463
|
-
# @!attribute [rw] instance_id
|
4464
|
-
# The identifier for the instance hosting the session.
|
4465
|
-
# @return [String]
|
4466
|
-
#
|
4467
4396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Session AWS API Documentation
|
4468
4397
|
#
|
4469
4398
|
class Session < Struct.new(
|
@@ -4476,8 +4405,7 @@ module Aws::AppStream
|
|
4476
4405
|
:start_time,
|
4477
4406
|
:max_expiration_time,
|
4478
4407
|
:authentication_type,
|
4479
|
-
:network_access_configuration
|
4480
|
-
:instance_id)
|
4408
|
+
:network_access_configuration)
|
4481
4409
|
SENSITIVE = []
|
4482
4410
|
include Aws::Structure
|
4483
4411
|
end
|
@@ -5334,11 +5262,6 @@ module Aws::AppStream
|
|
5334
5262
|
# only applies to Elastic fleets.
|
5335
5263
|
# @return [Types::S3Location]
|
5336
5264
|
#
|
5337
|
-
# @!attribute [rw] max_sessions_per_instance
|
5338
|
-
# The maximum number of user sessions on an instance. This only
|
5339
|
-
# applies to multi-session fleets.
|
5340
|
-
# @return [Integer]
|
5341
|
-
#
|
5342
5265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetRequest AWS API Documentation
|
5343
5266
|
#
|
5344
5267
|
class UpdateFleetRequest < Struct.new(
|
@@ -5362,8 +5285,7 @@ module Aws::AppStream
|
|
5362
5285
|
:platform,
|
5363
5286
|
:max_concurrent_sessions,
|
5364
5287
|
:usb_device_filter_strings,
|
5365
|
-
:session_script_s3_location
|
5366
|
-
:max_sessions_per_instance)
|
5288
|
+
:session_script_s3_location)
|
5367
5289
|
SENSITIVE = []
|
5368
5290
|
include Aws::Structure
|
5369
5291
|
end
|
@@ -94,19 +94,19 @@ module Aws::AppStream
|
|
94
94
|
"state" => "success",
|
95
95
|
"matcher" => "pathAll",
|
96
96
|
"argument" => "fleets[].state",
|
97
|
-
"expected" => "
|
97
|
+
"expected" => "RUNNING"
|
98
98
|
},
|
99
99
|
{
|
100
100
|
"state" => "failure",
|
101
101
|
"matcher" => "pathAny",
|
102
102
|
"argument" => "fleets[].state",
|
103
|
-
"expected" => "
|
103
|
+
"expected" => "STOPPING"
|
104
104
|
},
|
105
105
|
{
|
106
106
|
"state" => "failure",
|
107
107
|
"matcher" => "pathAny",
|
108
108
|
"argument" => "fleets[].state",
|
109
|
-
"expected" => "
|
109
|
+
"expected" => "STOPPED"
|
110
110
|
}
|
111
111
|
]
|
112
112
|
)
|
@@ -144,19 +144,19 @@ module Aws::AppStream
|
|
144
144
|
"state" => "success",
|
145
145
|
"matcher" => "pathAll",
|
146
146
|
"argument" => "fleets[].state",
|
147
|
-
"expected" => "
|
147
|
+
"expected" => "STOPPED"
|
148
148
|
},
|
149
149
|
{
|
150
150
|
"state" => "failure",
|
151
151
|
"matcher" => "pathAny",
|
152
152
|
"argument" => "fleets[].state",
|
153
|
-
"expected" => "
|
153
|
+
"expected" => "STARTING"
|
154
154
|
},
|
155
155
|
{
|
156
156
|
"state" => "failure",
|
157
157
|
"matcher" => "pathAny",
|
158
158
|
"argument" => "fleets[].state",
|
159
|
-
"expected" => "
|
159
|
+
"expected" => "RUNNING"
|
160
160
|
}
|
161
161
|
]
|
162
162
|
)
|
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.79.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: 2023-09-
|
11
|
+
date: 2023-09-27 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.184.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.184.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|