aws-sdk-workspaces 1.138.0 → 1.139.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +15 -1
- 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 +10 -1
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +18 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 668e6be1664795e50c9f1635cad58ecdf8599644e2f6488c5f31bea59d8c8b1a
|
4
|
+
data.tar.gz: ed1d9025b6146274c3bee0bff7b90394125112fc8b71bb7921cfb8bb534d057e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d14e2cd4736cd6b19dad4efa9a87d0a8123cab9a4cdc8a62ad7335d27aa7f6fd2c3ca23418115ba309f44a6dcdaf3c620203288fa9b6ff2856bd03a72ed4fc1b
|
7
|
+
data.tar.gz: 5b49a0df93312f17d2ca6de00a485fe851d2b559b1059490233d213b2e231dbe1d8d493bede901a1bfb218034eacf10c10ce495789fe3a61203e9cba384bb9a7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.139.0
|
@@ -2592,6 +2592,11 @@ module Aws::WorkSpaces
|
|
2592
2592
|
# resp.directories[0].workspace_access_properties.device_type_zero_client #=> String, one of "ALLOW", "DENY"
|
2593
2593
|
# resp.directories[0].workspace_access_properties.device_type_linux #=> String, one of "ALLOW", "DENY"
|
2594
2594
|
# resp.directories[0].workspace_access_properties.device_type_work_spaces_thin_client #=> String, one of "ALLOW", "DENY"
|
2595
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.access_endpoints #=> Array
|
2596
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.access_endpoints[0].access_endpoint_type #=> String, one of "STREAMING_WSP"
|
2597
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.access_endpoints[0].vpc_endpoint_id #=> String
|
2598
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.internet_fallback_protocols #=> Array
|
2599
|
+
# resp.directories[0].workspace_access_properties.access_endpoint_config.internet_fallback_protocols[0] #=> String, one of "PCOIP"
|
2595
2600
|
# resp.directories[0].tenancy #=> String, one of "DEDICATED", "SHARED"
|
2596
2601
|
# resp.directories[0].selfservice_permissions.restart_workspace #=> String, one of "ENABLED", "DISABLED"
|
2597
2602
|
# resp.directories[0].selfservice_permissions.increase_volume_size #=> String, one of "ENABLED", "DISABLED"
|
@@ -3879,6 +3884,15 @@ module Aws::WorkSpaces
|
|
3879
3884
|
# device_type_zero_client: "ALLOW", # accepts ALLOW, DENY
|
3880
3885
|
# device_type_linux: "ALLOW", # accepts ALLOW, DENY
|
3881
3886
|
# device_type_work_spaces_thin_client: "ALLOW", # accepts ALLOW, DENY
|
3887
|
+
# access_endpoint_config: {
|
3888
|
+
# access_endpoints: [ # required
|
3889
|
+
# {
|
3890
|
+
# access_endpoint_type: "STREAMING_WSP", # accepts STREAMING_WSP
|
3891
|
+
# vpc_endpoint_id: "AlphanumericDashUnderscoreNonEmptyString",
|
3892
|
+
# },
|
3893
|
+
# ],
|
3894
|
+
# internet_fallback_protocols: ["PCOIP"], # accepts PCOIP
|
3895
|
+
# },
|
3882
3896
|
# },
|
3883
3897
|
# })
|
3884
3898
|
#
|
@@ -4885,7 +4899,7 @@ module Aws::WorkSpaces
|
|
4885
4899
|
tracer: tracer
|
4886
4900
|
)
|
4887
4901
|
context[:gem_name] = 'aws-sdk-workspaces'
|
4888
|
-
context[:gem_version] = '1.
|
4902
|
+
context[:gem_version] = '1.139.0'
|
4889
4903
|
Seahorse::Client::Request.new(handlers, context)
|
4890
4904
|
end
|
4891
4905
|
|
@@ -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
@@ -1086,7 +1086,16 @@ module Aws
|
|
1086
1086
|
device_type_chrome_os: ("ALLOW" | "DENY")?,
|
1087
1087
|
device_type_zero_client: ("ALLOW" | "DENY")?,
|
1088
1088
|
device_type_linux: ("ALLOW" | "DENY")?,
|
1089
|
-
device_type_work_spaces_thin_client: ("ALLOW" | "DENY")
|
1089
|
+
device_type_work_spaces_thin_client: ("ALLOW" | "DENY")?,
|
1090
|
+
access_endpoint_config: {
|
1091
|
+
access_endpoints: Array[
|
1092
|
+
{
|
1093
|
+
access_endpoint_type: ("STREAMING_WSP")?,
|
1094
|
+
vpc_endpoint_id: ::String?
|
1095
|
+
},
|
1096
|
+
],
|
1097
|
+
internet_fallback_protocols: Array[("PCOIP")]?
|
1098
|
+
}?
|
1090
1099
|
}
|
1091
1100
|
) -> _ModifyWorkspaceAccessPropertiesResponseSuccess
|
1092
1101
|
| (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/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
|
|