aws-sdk-workspaces 1.138.0 → 1.140.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +33 -9
- data/lib/aws-sdk-workspaces/client_api.rb +27 -0
- data/lib/aws-sdk-workspaces/errors.rb +16 -0
- data/lib/aws-sdk-workspaces/types.rb +59 -1
- data/lib/aws-sdk-workspaces.rb +1 -1
- data/sig/client.rbs +11 -1
- data/sig/errors.rbs +3 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +18 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f9947189f26e04b72af0c1c28dc299c1b2a4715fbd40fc30677c3ee3cff718d
|
4
|
+
data.tar.gz: 6497514f5896cbec2a848ec0bf138fb43d0ecae6377f393ee054e5f9f724b787
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf203eeef58191908b3efe5415d3d40ff32d191b383f9a455b11ccc36fa2c17328281dba810bf7cf14f179e81ccd90472b47bc792c78c7055827fa53269e7946
|
7
|
+
data.tar.gz: c35d04e1fa8d6825796af7a0200eaa5daa841a82602bad74b57b836be63c003f131de428b0b869a135e9c06b685401637454e4e721430a16b6e4974946fcb63b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.140.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.139.0 (2025-06-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updated modifyStreamingProperties to support PrivateLink VPC endpoints for directories
|
13
|
+
|
4
14
|
1.138.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.140.0
|
@@ -95,7 +95,7 @@ module Aws::WorkSpaces
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::WorkSpaces
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::WorkSpaces
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::WorkSpaces
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::WorkSpaces
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -2592,6 +2602,11 @@ module Aws::WorkSpaces
|
|
2592
2602
|
# resp.directories[0].workspace_access_properties.device_type_zero_client #=> String, one of "ALLOW", "DENY"
|
2593
2603
|
# resp.directories[0].workspace_access_properties.device_type_linux #=> String, one of "ALLOW", "DENY"
|
2594
2604
|
# resp.directories[0].workspace_access_properties.device_type_work_spaces_thin_client #=> String, one of "ALLOW", "DENY"
|
2605
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.access_endpoints #=> Array
|
2606
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.access_endpoints[0].access_endpoint_type #=> String, one of "STREAMING_WSP"
|
2607
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.access_endpoints[0].vpc_endpoint_id #=> String
|
2608
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.internet_fallback_protocols #=> Array
|
2609
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.internet_fallback_protocols[0] #=> String, one of "PCOIP"
|
2595
2610
|
# resp.directories[0].tenancy #=> String, one of "DEDICATED", "SHARED"
|
2596
2611
|
# resp.directories[0].selfservice_permissions.restart_workspace #=> String, one of "ENABLED", "DISABLED"
|
2597
2612
|
# resp.directories[0].selfservice_permissions.increase_volume_size #=> String, one of "ENABLED", "DISABLED"
|
@@ -3879,6 +3894,15 @@ module Aws::WorkSpaces
|
|
3879
3894
|
# device_type_zero_client: "ALLOW", # accepts ALLOW, DENY
|
3880
3895
|
# device_type_linux: "ALLOW", # accepts ALLOW, DENY
|
3881
3896
|
# device_type_work_spaces_thin_client: "ALLOW", # accepts ALLOW, DENY
|
3897
|
+
# access_endpoint_config: {
|
3898
|
+
# access_endpoints: [ # required
|
3899
|
+
# {
|
3900
|
+
# access_endpoint_type: "STREAMING_WSP", # accepts STREAMING_WSP
|
3901
|
+
# vpc_endpoint_id: "AlphanumericDashUnderscoreNonEmptyString",
|
3902
|
+
# },
|
3903
|
+
# ],
|
3904
|
+
# internet_fallback_protocols: ["PCOIP"], # accepts PCOIP
|
3905
|
+
# },
|
3882
3906
|
# },
|
3883
3907
|
# })
|
3884
3908
|
#
|
@@ -4885,7 +4909,7 @@ module Aws::WorkSpaces
|
|
4885
4909
|
tracer: tracer
|
4886
4910
|
)
|
4887
4911
|
context[:gem_name] = 'aws-sdk-workspaces'
|
4888
|
-
context[:gem_version] = '1.
|
4912
|
+
context[:gem_version] = '1.140.0'
|
4889
4913
|
Seahorse::Client::Request.new(handlers, context)
|
4890
4914
|
end
|
4891
4915
|
|
@@ -22,6 +22,10 @@ module Aws::WorkSpaces
|
|
22
22
|
AcceptAccountLinkInvitationRequest = Shapes::StructureShape.new(name: 'AcceptAccountLinkInvitationRequest')
|
23
23
|
AcceptAccountLinkInvitationResult = Shapes::StructureShape.new(name: 'AcceptAccountLinkInvitationResult')
|
24
24
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
25
|
+
AccessEndpoint = Shapes::StructureShape.new(name: 'AccessEndpoint')
|
26
|
+
AccessEndpointConfig = Shapes::StructureShape.new(name: 'AccessEndpointConfig')
|
27
|
+
AccessEndpointList = Shapes::ListShape.new(name: 'AccessEndpointList')
|
28
|
+
AccessEndpointType = Shapes::StringShape.new(name: 'AccessEndpointType')
|
25
29
|
AccessPropertyValue = Shapes::StringShape.new(name: 'AccessPropertyValue')
|
26
30
|
AccountLink = Shapes::StructureShape.new(name: 'AccountLink')
|
27
31
|
AccountLinkList = Shapes::ListShape.new(name: 'AccountLinkList')
|
@@ -34,6 +38,7 @@ module Aws::WorkSpaces
|
|
34
38
|
AddInName = Shapes::StringShape.new(name: 'AddInName')
|
35
39
|
AddInUrl = Shapes::StringShape.new(name: 'AddInUrl')
|
36
40
|
Alias = Shapes::StringShape.new(name: 'Alias')
|
41
|
+
AlphanumericDashUnderscoreNonEmptyString = Shapes::StringShape.new(name: 'AlphanumericDashUnderscoreNonEmptyString')
|
37
42
|
AmazonUuid = Shapes::StringShape.new(name: 'AmazonUuid')
|
38
43
|
Application = Shapes::StringShape.new(name: 'Application')
|
39
44
|
ApplicationAssociatedResourceType = Shapes::StringShape.new(name: 'ApplicationAssociatedResourceType')
|
@@ -275,6 +280,9 @@ module Aws::WorkSpaces
|
|
275
280
|
ImportWorkspaceImageResult = Shapes::StructureShape.new(name: 'ImportWorkspaceImageResult')
|
276
281
|
IncompatibleApplicationsException = Shapes::StructureShape.new(name: 'IncompatibleApplicationsException')
|
277
282
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
283
|
+
InternetFallbackProtocol = Shapes::StringShape.new(name: 'InternetFallbackProtocol')
|
284
|
+
InternetFallbackProtocolList = Shapes::ListShape.new(name: 'InternetFallbackProtocolList')
|
285
|
+
InvalidParameterCombinationException = Shapes::StructureShape.new(name: 'InvalidParameterCombinationException')
|
278
286
|
InvalidParameterValuesException = Shapes::StructureShape.new(name: 'InvalidParameterValuesException')
|
279
287
|
InvalidResourceStateException = Shapes::StructureShape.new(name: 'InvalidResourceStateException')
|
280
288
|
Ios2XLogo = Shapes::BlobShape.new(name: 'Ios2XLogo')
|
@@ -539,6 +547,16 @@ module Aws::WorkSpaces
|
|
539
547
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
540
548
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
541
549
|
|
550
|
+
AccessEndpoint.add_member(:access_endpoint_type, Shapes::ShapeRef.new(shape: AccessEndpointType, location_name: "AccessEndpointType"))
|
551
|
+
AccessEndpoint.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: AlphanumericDashUnderscoreNonEmptyString, location_name: "VpcEndpointId"))
|
552
|
+
AccessEndpoint.struct_class = Types::AccessEndpoint
|
553
|
+
|
554
|
+
AccessEndpointConfig.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, required: true, location_name: "AccessEndpoints"))
|
555
|
+
AccessEndpointConfig.add_member(:internet_fallback_protocols, Shapes::ShapeRef.new(shape: InternetFallbackProtocolList, location_name: "InternetFallbackProtocols"))
|
556
|
+
AccessEndpointConfig.struct_class = Types::AccessEndpointConfig
|
557
|
+
|
558
|
+
AccessEndpointList.member = Shapes::ShapeRef.new(shape: AccessEndpoint)
|
559
|
+
|
542
560
|
AccountLink.add_member(:account_link_id, Shapes::ShapeRef.new(shape: LinkId, location_name: "AccountLinkId"))
|
543
561
|
AccountLink.add_member(:account_link_status, Shapes::ShapeRef.new(shape: AccountLinkStatusEnum, location_name: "AccountLinkStatus"))
|
544
562
|
AccountLink.add_member(:source_account_id, Shapes::ShapeRef.new(shape: AwsAccount, location_name: "SourceAccountId"))
|
@@ -1257,6 +1275,11 @@ module Aws::WorkSpaces
|
|
1257
1275
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
1258
1276
|
InternalServerException.struct_class = Types::InternalServerException
|
1259
1277
|
|
1278
|
+
InternetFallbackProtocolList.member = Shapes::ShapeRef.new(shape: InternetFallbackProtocol)
|
1279
|
+
|
1280
|
+
InvalidParameterCombinationException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
1281
|
+
InvalidParameterCombinationException.struct_class = Types::InvalidParameterCombinationException
|
1282
|
+
|
1260
1283
|
InvalidParameterValuesException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
1261
1284
|
InvalidParameterValuesException.struct_class = Types::InvalidParameterValuesException
|
1262
1285
|
|
@@ -1756,6 +1779,7 @@ module Aws::WorkSpaces
|
|
1756
1779
|
WorkspaceAccessProperties.add_member(:device_type_zero_client, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeZeroClient"))
|
1757
1780
|
WorkspaceAccessProperties.add_member(:device_type_linux, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeLinux"))
|
1758
1781
|
WorkspaceAccessProperties.add_member(:device_type_work_spaces_thin_client, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeWorkSpacesThinClient"))
|
1782
|
+
WorkspaceAccessProperties.add_member(:access_endpoint_config, Shapes::ShapeRef.new(shape: AccessEndpointConfig, location_name: "AccessEndpointConfig"))
|
1759
1783
|
WorkspaceAccessProperties.struct_class = Types::WorkspaceAccessProperties
|
1760
1784
|
|
1761
1785
|
WorkspaceBundle.add_member(:bundle_id, Shapes::ShapeRef.new(shape: BundleId, location_name: "BundleId"))
|
@@ -2778,6 +2802,9 @@ module Aws::WorkSpaces
|
|
2778
2802
|
o.output = Shapes::ShapeRef.new(shape: ModifyWorkspaceAccessPropertiesResult)
|
2779
2803
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2780
2804
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2805
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValuesException)
|
2806
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
2807
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
|
2781
2808
|
end)
|
2782
2809
|
|
2783
2810
|
api.add_operation(:modify_workspace_creation_properties, Seahorse::Model::Operation.new.tap do |o|
|
@@ -33,6 +33,7 @@ module Aws::WorkSpaces
|
|
33
33
|
# * {ConflictException}
|
34
34
|
# * {IncompatibleApplicationsException}
|
35
35
|
# * {InternalServerException}
|
36
|
+
# * {InvalidParameterCombinationException}
|
36
37
|
# * {InvalidParameterValuesException}
|
37
38
|
# * {InvalidResourceStateException}
|
38
39
|
# * {OperatingSystemNotCompatibleException}
|
@@ -131,6 +132,21 @@ module Aws::WorkSpaces
|
|
131
132
|
end
|
132
133
|
end
|
133
134
|
|
135
|
+
class InvalidParameterCombinationException < ServiceError
|
136
|
+
|
137
|
+
# @param [Seahorse::Client::RequestContext] context
|
138
|
+
# @param [String] message
|
139
|
+
# @param [Aws::WorkSpaces::Types::InvalidParameterCombinationException] data
|
140
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
141
|
+
super(context, message, data)
|
142
|
+
end
|
143
|
+
|
144
|
+
# @return [String]
|
145
|
+
def message
|
146
|
+
@message || @data[:message]
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
134
150
|
class InvalidParameterValuesException < ServiceError
|
135
151
|
|
136
152
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -53,6 +53,45 @@ module Aws::WorkSpaces
|
|
53
53
|
include Aws::Structure
|
54
54
|
end
|
55
55
|
|
56
|
+
# Describes the access type and endpoint for a WorkSpace.
|
57
|
+
#
|
58
|
+
# @!attribute [rw] access_endpoint_type
|
59
|
+
# Indicates the type of access endpoint.
|
60
|
+
# @return [String]
|
61
|
+
#
|
62
|
+
# @!attribute [rw] vpc_endpoint_id
|
63
|
+
# Indicates the VPC endpoint to use for access.
|
64
|
+
# @return [String]
|
65
|
+
#
|
66
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/AccessEndpoint AWS API Documentation
|
67
|
+
#
|
68
|
+
class AccessEndpoint < Struct.new(
|
69
|
+
:access_endpoint_type,
|
70
|
+
:vpc_endpoint_id)
|
71
|
+
SENSITIVE = []
|
72
|
+
include Aws::Structure
|
73
|
+
end
|
74
|
+
|
75
|
+
# Describes the access endpoint configuration for a WorkSpace.
|
76
|
+
#
|
77
|
+
# @!attribute [rw] access_endpoints
|
78
|
+
# Indicates a list of access endpoints associated with this directory.
|
79
|
+
# @return [Array<Types::AccessEndpoint>]
|
80
|
+
#
|
81
|
+
# @!attribute [rw] internet_fallback_protocols
|
82
|
+
# Indicates a list of protocols that fallback to using the public
|
83
|
+
# Internet when streaming over a VPC endpoint is not available.
|
84
|
+
# @return [Array<String>]
|
85
|
+
#
|
86
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/AccessEndpointConfig AWS API Documentation
|
87
|
+
#
|
88
|
+
class AccessEndpointConfig < Struct.new(
|
89
|
+
:access_endpoints,
|
90
|
+
:internet_fallback_protocols)
|
91
|
+
SENSITIVE = []
|
92
|
+
include Aws::Structure
|
93
|
+
end
|
94
|
+
|
56
95
|
# Information about about the account link.
|
57
96
|
#
|
58
97
|
# @!attribute [rw] account_link_id
|
@@ -3172,6 +3211,20 @@ module Aws::WorkSpaces
|
|
3172
3211
|
include Aws::Structure
|
3173
3212
|
end
|
3174
3213
|
|
3214
|
+
# Two or more of the selected parameter values cannot be used together.
|
3215
|
+
#
|
3216
|
+
# @!attribute [rw] message
|
3217
|
+
# The exception error message.
|
3218
|
+
# @return [String]
|
3219
|
+
#
|
3220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/InvalidParameterCombinationException AWS API Documentation
|
3221
|
+
#
|
3222
|
+
class InvalidParameterCombinationException < Struct.new(
|
3223
|
+
:message)
|
3224
|
+
SENSITIVE = []
|
3225
|
+
include Aws::Structure
|
3226
|
+
end
|
3227
|
+
|
3175
3228
|
# One or more parameter values are not valid.
|
3176
3229
|
#
|
3177
3230
|
# @!attribute [rw] message
|
@@ -5399,6 +5452,10 @@ module Aws::WorkSpaces
|
|
5399
5452
|
# WorkSpaces Thin Client.
|
5400
5453
|
# @return [String]
|
5401
5454
|
#
|
5455
|
+
# @!attribute [rw] access_endpoint_config
|
5456
|
+
# Specifies the configuration for accessing the WorkSpace.
|
5457
|
+
# @return [Types::AccessEndpointConfig]
|
5458
|
+
#
|
5402
5459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceAccessProperties AWS API Documentation
|
5403
5460
|
#
|
5404
5461
|
class WorkspaceAccessProperties < Struct.new(
|
@@ -5410,7 +5467,8 @@ module Aws::WorkSpaces
|
|
5410
5467
|
:device_type_chrome_os,
|
5411
5468
|
:device_type_zero_client,
|
5412
5469
|
:device_type_linux,
|
5413
|
-
:device_type_work_spaces_thin_client
|
5470
|
+
:device_type_work_spaces_thin_client,
|
5471
|
+
:access_endpoint_config)
|
5414
5472
|
SENSITIVE = []
|
5415
5473
|
include Aws::Structure
|
5416
5474
|
end
|
data/lib/aws-sdk-workspaces.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -1086,7 +1087,16 @@ module Aws
|
|
1086
1087
|
device_type_chrome_os: ("ALLOW" | "DENY")?,
|
1087
1088
|
device_type_zero_client: ("ALLOW" | "DENY")?,
|
1088
1089
|
device_type_linux: ("ALLOW" | "DENY")?,
|
1089
|
-
device_type_work_spaces_thin_client: ("ALLOW" | "DENY")
|
1090
|
+
device_type_work_spaces_thin_client: ("ALLOW" | "DENY")?,
|
1091
|
+
access_endpoint_config: {
|
1092
|
+
access_endpoints: Array[
|
1093
|
+
{
|
1094
|
+
access_endpoint_type: ("STREAMING_WSP")?,
|
1095
|
+
vpc_endpoint_id: ::String?
|
1096
|
+
},
|
1097
|
+
],
|
1098
|
+
internet_fallback_protocols: Array[("PCOIP")]?
|
1099
|
+
}?
|
1090
1100
|
}
|
1091
1101
|
) -> _ModifyWorkspaceAccessPropertiesResponseSuccess
|
1092
1102
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyWorkspaceAccessPropertiesResponseSuccess
|
data/sig/errors.rbs
CHANGED
@@ -26,6 +26,9 @@ module Aws
|
|
26
26
|
class InternalServerException < ::Aws::Errors::ServiceError
|
27
27
|
def message: () -> ::String
|
28
28
|
end
|
29
|
+
class InvalidParameterCombinationException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
29
32
|
class InvalidParameterValuesException < ::Aws::Errors::ServiceError
|
30
33
|
def message: () -> ::String
|
31
34
|
end
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -24,6 +24,18 @@ module Aws::WorkSpaces
|
|
24
24
|
SENSITIVE: []
|
25
25
|
end
|
26
26
|
|
27
|
+
class AccessEndpoint
|
28
|
+
attr_accessor access_endpoint_type: ("STREAMING_WSP")
|
29
|
+
attr_accessor vpc_endpoint_id: ::String
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class AccessEndpointConfig
|
34
|
+
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
35
|
+
attr_accessor internet_fallback_protocols: ::Array[("PCOIP")]
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
27
39
|
class AccountLink
|
28
40
|
attr_accessor account_link_id: ::String
|
29
41
|
attr_accessor account_link_status: ("LINKED" | "LINKING_FAILED" | "LINK_NOT_FOUND" | "PENDING_ACCEPTANCE_BY_TARGET_ACCOUNT" | "REJECTED")
|
@@ -945,6 +957,11 @@ module Aws::WorkSpaces
|
|
945
957
|
SENSITIVE: []
|
946
958
|
end
|
947
959
|
|
960
|
+
class InvalidParameterCombinationException
|
961
|
+
attr_accessor message: ::String
|
962
|
+
SENSITIVE: []
|
963
|
+
end
|
964
|
+
|
948
965
|
class InvalidParameterValuesException
|
949
966
|
attr_accessor message: ::String
|
950
967
|
SENSITIVE: []
|
@@ -1589,6 +1606,7 @@ module Aws::WorkSpaces
|
|
1589
1606
|
attr_accessor device_type_zero_client: ("ALLOW" | "DENY")
|
1590
1607
|
attr_accessor device_type_linux: ("ALLOW" | "DENY")
|
1591
1608
|
attr_accessor device_type_work_spaces_thin_client: ("ALLOW" | "DENY")
|
1609
|
+
attr_accessor access_endpoint_config: Types::AccessEndpointConfig
|
1592
1610
|
SENSITIVE: []
|
1593
1611
|
end
|
1594
1612
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-workspaces
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.140.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|