aws-sdk-appstream 1.83.0 → 1.85.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 +6 -1
- data/lib/aws-sdk-appstream/client_api.rb +2 -0
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-appstream/types.rb +21 -1
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +1216 -0
- data/sig/errors.rbs +58 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1417 -0
- data/sig/waiters.rbs +35 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 241a6935905becac37408b9c5595df2278f36d71890d7b3e1501ac15b466d92a
|
4
|
+
data.tar.gz: 60f747131aa313bce518ebd6e66f3de1e2da73121a8b1550809a4f797dbb6f04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1bd20b6319dc8933c8da94b924d8e416b444bcac6fa99bdf6827010229b8a03c0d164510f2e6c55ef57026b28a534c2072124ff69878bda27e58307c0e05ec9
|
7
|
+
data.tar.gz: 6e7615eef3cd7205d0efa73b92ff6d49a09e443bb9139f7671d50fbc0576daa1d593cae96840805f0b5d53ecc387e1e295e0c60b68a8d69f7e7ba032aa16fb4a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.85.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.84.0 (2023-12-20)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release introduces configurable clipboard, allowing admins to specify the maximum length of text that can be copied by the users from their device to the remote session and vice-versa.
|
13
|
+
|
4
14
|
1.83.0 (2023-12-14)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.85.0
|
@@ -1869,6 +1869,7 @@ module Aws::AppStream
|
|
1869
1869
|
# {
|
1870
1870
|
# 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
|
1871
1871
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
1872
|
+
# maximum_length: 1,
|
1872
1873
|
# },
|
1873
1874
|
# ],
|
1874
1875
|
# application_settings: {
|
@@ -1910,6 +1911,7 @@ module Aws::AppStream
|
|
1910
1911
|
# resp.stack.user_settings #=> Array
|
1911
1912
|
# resp.stack.user_settings[0].action #=> String, one of "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"
|
1912
1913
|
# resp.stack.user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
1914
|
+
# resp.stack.user_settings[0].maximum_length #=> Integer
|
1913
1915
|
# resp.stack.application_settings.enabled #=> Boolean
|
1914
1916
|
# resp.stack.application_settings.settings_group #=> String
|
1915
1917
|
# resp.stack.application_settings.s3_bucket_name #=> String
|
@@ -3355,6 +3357,7 @@ module Aws::AppStream
|
|
3355
3357
|
# resp.stacks[0].user_settings #=> Array
|
3356
3358
|
# resp.stacks[0].user_settings[0].action #=> String, one of "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"
|
3357
3359
|
# resp.stacks[0].user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
3360
|
+
# resp.stacks[0].user_settings[0].maximum_length #=> Integer
|
3358
3361
|
# resp.stacks[0].application_settings.enabled #=> Boolean
|
3359
3362
|
# resp.stacks[0].application_settings.settings_group #=> String
|
3360
3363
|
# resp.stacks[0].application_settings.s3_bucket_name #=> String
|
@@ -5023,6 +5026,7 @@ module Aws::AppStream
|
|
5023
5026
|
# {
|
5024
5027
|
# 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
|
5025
5028
|
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
5029
|
+
# maximum_length: 1,
|
5026
5030
|
# },
|
5027
5031
|
# ],
|
5028
5032
|
# application_settings: {
|
@@ -5061,6 +5065,7 @@ module Aws::AppStream
|
|
5061
5065
|
# resp.stack.user_settings #=> Array
|
5062
5066
|
# resp.stack.user_settings[0].action #=> String, one of "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"
|
5063
5067
|
# resp.stack.user_settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
5068
|
+
# resp.stack.user_settings[0].maximum_length #=> Integer
|
5064
5069
|
# resp.stack.application_settings.enabled #=> Boolean
|
5065
5070
|
# resp.stack.application_settings.settings_group #=> String
|
5066
5071
|
# resp.stack.application_settings.s3_bucket_name #=> String
|
@@ -5093,7 +5098,7 @@ module Aws::AppStream
|
|
5093
5098
|
params: params,
|
5094
5099
|
config: config)
|
5095
5100
|
context[:gem_name] = 'aws-sdk-appstream'
|
5096
|
-
context[:gem_version] = '1.
|
5101
|
+
context[:gem_version] = '1.85.0'
|
5097
5102
|
Seahorse::Client::Request.new(handlers, context)
|
5098
5103
|
end
|
5099
5104
|
|
@@ -1422,6 +1422,7 @@ module Aws::AppStream
|
|
1422
1422
|
|
1423
1423
|
UserSetting.add_member(:action, Shapes::ShapeRef.new(shape: Action, required: true, location_name: "Action"))
|
1424
1424
|
UserSetting.add_member(:permission, Shapes::ShapeRef.new(shape: Permission, required: true, location_name: "Permission"))
|
1425
|
+
UserSetting.add_member(:maximum_length, Shapes::ShapeRef.new(shape: Integer, location_name: "MaximumLength"))
|
1425
1426
|
UserSetting.struct_class = Types::UserSetting
|
1426
1427
|
|
1427
1428
|
UserSettingList.member = Shapes::ShapeRef.new(shape: UserSetting)
|
@@ -1691,6 +1692,7 @@ module Aws::AppStream
|
|
1691
1692
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1692
1693
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1693
1694
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1695
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1694
1696
|
end)
|
1695
1697
|
|
1696
1698
|
api.add_operation(:create_streaming_url, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14,6 +14,7 @@ module Aws::AppStream
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::AppStream::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -5618,11 +5618,31 @@ module Aws::AppStream
|
|
5618
5618
|
# Indicates whether the action is enabled or disabled.
|
5619
5619
|
# @return [String]
|
5620
5620
|
#
|
5621
|
+
# @!attribute [rw] maximum_length
|
5622
|
+
# Specifies the number of characters that can be copied by end users
|
5623
|
+
# from the local device to the remote session, and to the local device
|
5624
|
+
# from the remote session.
|
5625
|
+
#
|
5626
|
+
# This can be specified only for the
|
5627
|
+
# `CLIPBOARD_COPY_FROM_LOCAL_DEVICE` and
|
5628
|
+
# `CLIPBOARD_COPY_TO_LOCAL_DEVICE` actions.
|
5629
|
+
#
|
5630
|
+
# This defaults to 20,971,520 (20 MB) when unspecified and the
|
5631
|
+
# permission is `ENABLED`. This can't be specified when the
|
5632
|
+
# permission is `DISABLED`.
|
5633
|
+
#
|
5634
|
+
# This can only be specified for AlwaysOn and OnDemand fleets. The
|
5635
|
+
# attribute is not supported on Elastic fleets.
|
5636
|
+
#
|
5637
|
+
# The value can be between 1 and 20,971,520 (20 MB).
|
5638
|
+
# @return [Integer]
|
5639
|
+
#
|
5621
5640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UserSetting AWS API Documentation
|
5622
5641
|
#
|
5623
5642
|
class UserSetting < Struct.new(
|
5624
5643
|
:action,
|
5625
|
-
:permission
|
5644
|
+
:permission,
|
5645
|
+
:maximum_length)
|
5626
5646
|
SENSITIVE = []
|
5627
5647
|
include Aws::Structure
|
5628
5648
|
end
|