aws-sdk-workspaces 1.34.0 → 1.39.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-workspaces.rb +9 -4
- data/lib/aws-sdk-workspaces/client.rb +78 -14
- data/lib/aws-sdk-workspaces/client_api.rb +2 -0
- data/lib/aws-sdk-workspaces/errors.rb +38 -14
- data/lib/aws-sdk-workspaces/resource.rb +3 -0
- data/lib/aws-sdk-workspaces/types.rb +108 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 610d7b2f67eed4f06cff0a55c36be157d3e6496876b38c1e2628a8d8dab2d41c
|
4
|
+
data.tar.gz: 8fe8a82586cc076f17fd795189dde1618d612ef9b8487125c5345c5b00a92e01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ff275caeb386de0901dd664eb015b44b2c2b4a5affed1522ac5756cc5e43e7c331e6338bb15c0d3eab9e6ab8f516bcc8c5c9e9ce9371ab9ff0c6a20df3d6394
|
7
|
+
data.tar.gz: 2f3d0b0a41ba2655ad8ec9a471a49f278a6e11c2f9800b371aca084400c6888e34457fbcbe37886776551efa9de7935c5c27b5661a401f2443e1825b6a4c06f9
|
data/lib/aws-sdk-workspaces.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-workspaces/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# work_spaces = Aws::WorkSpaces::Client.new
|
30
|
+
# resp = work_spaces.associate_ip_groups(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from Amazon WorkSpaces
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from Amazon WorkSpaces are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::WorkSpaces::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all Amazon WorkSpaces API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-workspaces/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::WorkSpaces
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.39.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:workspaces)
|
31
34
|
|
32
35
|
module Aws::WorkSpaces
|
36
|
+
# An API client for WorkSpaces. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::WorkSpaces::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::WorkSpaces
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::WorkSpaces
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::WorkSpaces
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::WorkSpaces
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::WorkSpaces
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::WorkSpaces
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::WorkSpaces
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::WorkSpaces
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -219,16 +278,15 @@ module Aws::WorkSpaces
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::WorkSpaces
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -864,6 +922,8 @@ module Aws::WorkSpaces
|
|
864
922
|
# * {Types::DescribeWorkspaceBundlesResult#bundles #bundles} => Array<Types::WorkspaceBundle>
|
865
923
|
# * {Types::DescribeWorkspaceBundlesResult#next_token #next_token} => String
|
866
924
|
#
|
925
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
926
|
+
#
|
867
927
|
# @example Request syntax with placeholder values
|
868
928
|
#
|
869
929
|
# resp = client.describe_workspace_bundles({
|
@@ -914,6 +974,8 @@ module Aws::WorkSpaces
|
|
914
974
|
# * {Types::DescribeWorkspaceDirectoriesResult#directories #directories} => Array<Types::WorkspaceDirectory>
|
915
975
|
# * {Types::DescribeWorkspaceDirectoriesResult#next_token #next_token} => String
|
916
976
|
#
|
977
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
978
|
+
#
|
917
979
|
# @example Request syntax with placeholder values
|
918
980
|
#
|
919
981
|
# resp = client.describe_workspace_directories({
|
@@ -1090,6 +1152,8 @@ module Aws::WorkSpaces
|
|
1090
1152
|
# * {Types::DescribeWorkspacesResult#workspaces #workspaces} => Array<Types::Workspace>
|
1091
1153
|
# * {Types::DescribeWorkspacesResult#next_token #next_token} => String
|
1092
1154
|
#
|
1155
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1156
|
+
#
|
1093
1157
|
# @example Request syntax with placeholder values
|
1094
1158
|
#
|
1095
1159
|
# resp = client.describe_workspaces({
|
@@ -1984,7 +2048,7 @@ module Aws::WorkSpaces
|
|
1984
2048
|
params: params,
|
1985
2049
|
config: config)
|
1986
2050
|
context[:gem_name] = 'aws-sdk-workspaces'
|
1987
|
-
context[:gem_version] = '1.
|
2051
|
+
context[:gem_version] = '1.39.0'
|
1988
2052
|
Seahorse::Client::Request.new(handlers, context)
|
1989
2053
|
end
|
1990
2054
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,42 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::WorkSpaces
|
11
|
+
|
12
|
+
# When WorkSpaces returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::WorkSpaces::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all WorkSpaces errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::WorkSpaces::Errors::ServiceError
|
20
|
+
# # rescues all WorkSpaces API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {AccessDeniedException}
|
31
|
+
# * {InvalidParameterValuesException}
|
32
|
+
# * {InvalidResourceStateException}
|
33
|
+
# * {OperationInProgressException}
|
34
|
+
# * {OperationNotSupportedException}
|
35
|
+
# * {ResourceAlreadyExistsException}
|
36
|
+
# * {ResourceAssociatedException}
|
37
|
+
# * {ResourceCreationFailedException}
|
38
|
+
# * {ResourceLimitExceededException}
|
39
|
+
# * {ResourceNotFoundException}
|
40
|
+
# * {ResourceUnavailableException}
|
41
|
+
# * {UnsupportedNetworkConfigurationException}
|
42
|
+
# * {UnsupportedWorkspaceConfigurationException}
|
43
|
+
# * {WorkspacesDefaultRoleNotFoundException}
|
44
|
+
#
|
45
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
46
|
+
# if they are not defined above.
|
9
47
|
module Errors
|
10
48
|
|
11
49
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +61,6 @@ module Aws::WorkSpaces
|
|
23
61
|
def message
|
24
62
|
@message || @data[:message]
|
25
63
|
end
|
26
|
-
|
27
64
|
end
|
28
65
|
|
29
66
|
class InvalidParameterValuesException < ServiceError
|
@@ -39,7 +76,6 @@ module Aws::WorkSpaces
|
|
39
76
|
def message
|
40
77
|
@message || @data[:message]
|
41
78
|
end
|
42
|
-
|
43
79
|
end
|
44
80
|
|
45
81
|
class InvalidResourceStateException < ServiceError
|
@@ -55,7 +91,6 @@ module Aws::WorkSpaces
|
|
55
91
|
def message
|
56
92
|
@message || @data[:message]
|
57
93
|
end
|
58
|
-
|
59
94
|
end
|
60
95
|
|
61
96
|
class OperationInProgressException < ServiceError
|
@@ -71,7 +106,6 @@ module Aws::WorkSpaces
|
|
71
106
|
def message
|
72
107
|
@message || @data[:message]
|
73
108
|
end
|
74
|
-
|
75
109
|
end
|
76
110
|
|
77
111
|
class OperationNotSupportedException < ServiceError
|
@@ -87,7 +121,6 @@ module Aws::WorkSpaces
|
|
87
121
|
def message
|
88
122
|
@message || @data[:message]
|
89
123
|
end
|
90
|
-
|
91
124
|
end
|
92
125
|
|
93
126
|
class ResourceAlreadyExistsException < ServiceError
|
@@ -103,7 +136,6 @@ module Aws::WorkSpaces
|
|
103
136
|
def message
|
104
137
|
@message || @data[:message]
|
105
138
|
end
|
106
|
-
|
107
139
|
end
|
108
140
|
|
109
141
|
class ResourceAssociatedException < ServiceError
|
@@ -119,7 +151,6 @@ module Aws::WorkSpaces
|
|
119
151
|
def message
|
120
152
|
@message || @data[:message]
|
121
153
|
end
|
122
|
-
|
123
154
|
end
|
124
155
|
|
125
156
|
class ResourceCreationFailedException < ServiceError
|
@@ -135,7 +166,6 @@ module Aws::WorkSpaces
|
|
135
166
|
def message
|
136
167
|
@message || @data[:message]
|
137
168
|
end
|
138
|
-
|
139
169
|
end
|
140
170
|
|
141
171
|
class ResourceLimitExceededException < ServiceError
|
@@ -151,7 +181,6 @@ module Aws::WorkSpaces
|
|
151
181
|
def message
|
152
182
|
@message || @data[:message]
|
153
183
|
end
|
154
|
-
|
155
184
|
end
|
156
185
|
|
157
186
|
class ResourceNotFoundException < ServiceError
|
@@ -172,7 +201,6 @@ module Aws::WorkSpaces
|
|
172
201
|
def resource_id
|
173
202
|
@data[:resource_id]
|
174
203
|
end
|
175
|
-
|
176
204
|
end
|
177
205
|
|
178
206
|
class ResourceUnavailableException < ServiceError
|
@@ -193,7 +221,6 @@ module Aws::WorkSpaces
|
|
193
221
|
def resource_id
|
194
222
|
@data[:resource_id]
|
195
223
|
end
|
196
|
-
|
197
224
|
end
|
198
225
|
|
199
226
|
class UnsupportedNetworkConfigurationException < ServiceError
|
@@ -209,7 +236,6 @@ module Aws::WorkSpaces
|
|
209
236
|
def message
|
210
237
|
@message || @data[:message]
|
211
238
|
end
|
212
|
-
|
213
239
|
end
|
214
240
|
|
215
241
|
class UnsupportedWorkspaceConfigurationException < ServiceError
|
@@ -225,7 +251,6 @@ module Aws::WorkSpaces
|
|
225
251
|
def message
|
226
252
|
@message || @data[:message]
|
227
253
|
end
|
228
|
-
|
229
254
|
end
|
230
255
|
|
231
256
|
class WorkspacesDefaultRoleNotFoundException < ServiceError
|
@@ -241,7 +266,6 @@ module Aws::WorkSpaces
|
|
241
266
|
def message
|
242
267
|
@message || @data[:message]
|
243
268
|
end
|
244
|
-
|
245
269
|
end
|
246
270
|
|
247
271
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::WorkSpaces
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::WorkSpaces
|
|
17
19
|
#
|
18
20
|
class AccessDeniedException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -60,6 +63,7 @@ module Aws::WorkSpaces
|
|
60
63
|
:start_time,
|
61
64
|
:error_code,
|
62
65
|
:error_message)
|
66
|
+
SENSITIVE = []
|
63
67
|
include Aws::Structure
|
64
68
|
end
|
65
69
|
|
@@ -84,6 +88,7 @@ module Aws::WorkSpaces
|
|
84
88
|
class AssociateIpGroupsRequest < Struct.new(
|
85
89
|
:directory_id,
|
86
90
|
:group_ids)
|
91
|
+
SENSITIVE = []
|
87
92
|
include Aws::Structure
|
88
93
|
end
|
89
94
|
|
@@ -117,6 +122,7 @@ module Aws::WorkSpaces
|
|
117
122
|
class AuthorizeIpRulesRequest < Struct.new(
|
118
123
|
:group_id,
|
119
124
|
:user_rules)
|
125
|
+
SENSITIVE = []
|
120
126
|
include Aws::Structure
|
121
127
|
end
|
122
128
|
|
@@ -143,6 +149,7 @@ module Aws::WorkSpaces
|
|
143
149
|
#
|
144
150
|
class ClientProperties < Struct.new(
|
145
151
|
:reconnect_enabled)
|
152
|
+
SENSITIVE = []
|
146
153
|
include Aws::Structure
|
147
154
|
end
|
148
155
|
|
@@ -161,6 +168,7 @@ module Aws::WorkSpaces
|
|
161
168
|
class ClientPropertiesResult < Struct.new(
|
162
169
|
:resource_id,
|
163
170
|
:client_properties)
|
171
|
+
SENSITIVE = []
|
164
172
|
include Aws::Structure
|
165
173
|
end
|
166
174
|
|
@@ -174,6 +182,7 @@ module Aws::WorkSpaces
|
|
174
182
|
#
|
175
183
|
class ComputeType < Struct.new(
|
176
184
|
:name)
|
185
|
+
SENSITIVE = []
|
177
186
|
include Aws::Structure
|
178
187
|
end
|
179
188
|
|
@@ -221,6 +230,7 @@ module Aws::WorkSpaces
|
|
221
230
|
:source_image_id,
|
222
231
|
:source_region,
|
223
232
|
:tags)
|
233
|
+
SENSITIVE = []
|
224
234
|
include Aws::Structure
|
225
235
|
end
|
226
236
|
|
@@ -232,6 +242,7 @@ module Aws::WorkSpaces
|
|
232
242
|
#
|
233
243
|
class CopyWorkspaceImageResult < Struct.new(
|
234
244
|
:image_id)
|
245
|
+
SENSITIVE = []
|
235
246
|
include Aws::Structure
|
236
247
|
end
|
237
248
|
|
@@ -278,6 +289,7 @@ module Aws::WorkSpaces
|
|
278
289
|
:group_desc,
|
279
290
|
:user_rules,
|
280
291
|
:tags)
|
292
|
+
SENSITIVE = []
|
281
293
|
include Aws::Structure
|
282
294
|
end
|
283
295
|
|
@@ -289,6 +301,7 @@ module Aws::WorkSpaces
|
|
289
301
|
#
|
290
302
|
class CreateIpGroupResult < Struct.new(
|
291
303
|
:group_id)
|
304
|
+
SENSITIVE = []
|
292
305
|
include Aws::Structure
|
293
306
|
end
|
294
307
|
|
@@ -322,6 +335,7 @@ module Aws::WorkSpaces
|
|
322
335
|
class CreateTagsRequest < Struct.new(
|
323
336
|
:resource_id,
|
324
337
|
:tags)
|
338
|
+
SENSITIVE = []
|
325
339
|
include Aws::Structure
|
326
340
|
end
|
327
341
|
|
@@ -366,6 +380,7 @@ module Aws::WorkSpaces
|
|
366
380
|
#
|
367
381
|
class CreateWorkspacesRequest < Struct.new(
|
368
382
|
:workspaces)
|
383
|
+
SENSITIVE = []
|
369
384
|
include Aws::Structure
|
370
385
|
end
|
371
386
|
|
@@ -387,6 +402,7 @@ module Aws::WorkSpaces
|
|
387
402
|
class CreateWorkspacesResult < Struct.new(
|
388
403
|
:failed_requests,
|
389
404
|
:pending_requests)
|
405
|
+
SENSITIVE = []
|
390
406
|
include Aws::Structure
|
391
407
|
end
|
392
408
|
|
@@ -453,6 +469,7 @@ module Aws::WorkSpaces
|
|
453
469
|
:custom_security_group_id,
|
454
470
|
:user_enabled_as_local_administrator,
|
455
471
|
:enable_maintenance_mode)
|
472
|
+
SENSITIVE = []
|
456
473
|
include Aws::Structure
|
457
474
|
end
|
458
475
|
|
@@ -471,6 +488,7 @@ module Aws::WorkSpaces
|
|
471
488
|
#
|
472
489
|
class DeleteIpGroupRequest < Struct.new(
|
473
490
|
:group_id)
|
491
|
+
SENSITIVE = []
|
474
492
|
include Aws::Structure
|
475
493
|
end
|
476
494
|
|
@@ -501,6 +519,7 @@ module Aws::WorkSpaces
|
|
501
519
|
class DeleteTagsRequest < Struct.new(
|
502
520
|
:resource_id,
|
503
521
|
:tag_keys)
|
522
|
+
SENSITIVE = []
|
504
523
|
include Aws::Structure
|
505
524
|
end
|
506
525
|
|
@@ -523,6 +542,7 @@ module Aws::WorkSpaces
|
|
523
542
|
#
|
524
543
|
class DeleteWorkspaceImageRequest < Struct.new(
|
525
544
|
:image_id)
|
545
|
+
SENSITIVE = []
|
526
546
|
include Aws::Structure
|
527
547
|
end
|
528
548
|
|
@@ -548,6 +568,7 @@ module Aws::WorkSpaces
|
|
548
568
|
#
|
549
569
|
class DeregisterWorkspaceDirectoryRequest < Struct.new(
|
550
570
|
:directory_id)
|
571
|
+
SENSITIVE = []
|
551
572
|
include Aws::Structure
|
552
573
|
end
|
553
574
|
|
@@ -571,6 +592,7 @@ module Aws::WorkSpaces
|
|
571
592
|
#
|
572
593
|
class DescribeAccountModificationsRequest < Struct.new(
|
573
594
|
:next_token)
|
595
|
+
SENSITIVE = []
|
574
596
|
include Aws::Structure
|
575
597
|
end
|
576
598
|
|
@@ -588,6 +610,7 @@ module Aws::WorkSpaces
|
|
588
610
|
class DescribeAccountModificationsResult < Struct.new(
|
589
611
|
:account_modifications,
|
590
612
|
:next_token)
|
613
|
+
SENSITIVE = []
|
591
614
|
include Aws::Structure
|
592
615
|
end
|
593
616
|
|
@@ -616,6 +639,7 @@ module Aws::WorkSpaces
|
|
616
639
|
class DescribeAccountResult < Struct.new(
|
617
640
|
:dedicated_tenancy_support,
|
618
641
|
:dedicated_tenancy_management_cidr_range)
|
642
|
+
SENSITIVE = []
|
619
643
|
include Aws::Structure
|
620
644
|
end
|
621
645
|
|
@@ -634,6 +658,7 @@ module Aws::WorkSpaces
|
|
634
658
|
#
|
635
659
|
class DescribeClientPropertiesRequest < Struct.new(
|
636
660
|
:resource_ids)
|
661
|
+
SENSITIVE = []
|
637
662
|
include Aws::Structure
|
638
663
|
end
|
639
664
|
|
@@ -645,6 +670,7 @@ module Aws::WorkSpaces
|
|
645
670
|
#
|
646
671
|
class DescribeClientPropertiesResult < Struct.new(
|
647
672
|
:client_properties_list)
|
673
|
+
SENSITIVE = []
|
648
674
|
include Aws::Structure
|
649
675
|
end
|
650
676
|
|
@@ -676,6 +702,7 @@ module Aws::WorkSpaces
|
|
676
702
|
:group_ids,
|
677
703
|
:next_token,
|
678
704
|
:max_results)
|
705
|
+
SENSITIVE = []
|
679
706
|
include Aws::Structure
|
680
707
|
end
|
681
708
|
|
@@ -693,6 +720,7 @@ module Aws::WorkSpaces
|
|
693
720
|
class DescribeIpGroupsResult < Struct.new(
|
694
721
|
:result,
|
695
722
|
:next_token)
|
723
|
+
SENSITIVE = []
|
696
724
|
include Aws::Structure
|
697
725
|
end
|
698
726
|
|
@@ -713,6 +741,7 @@ module Aws::WorkSpaces
|
|
713
741
|
#
|
714
742
|
class DescribeTagsRequest < Struct.new(
|
715
743
|
:resource_id)
|
744
|
+
SENSITIVE = []
|
716
745
|
include Aws::Structure
|
717
746
|
end
|
718
747
|
|
@@ -724,6 +753,7 @@ module Aws::WorkSpaces
|
|
724
753
|
#
|
725
754
|
class DescribeTagsResult < Struct.new(
|
726
755
|
:tag_list)
|
756
|
+
SENSITIVE = []
|
727
757
|
include Aws::Structure
|
728
758
|
end
|
729
759
|
|
@@ -760,6 +790,7 @@ module Aws::WorkSpaces
|
|
760
790
|
:bundle_ids,
|
761
791
|
:owner,
|
762
792
|
:next_token)
|
793
|
+
SENSITIVE = []
|
763
794
|
include Aws::Structure
|
764
795
|
end
|
765
796
|
|
@@ -778,6 +809,7 @@ module Aws::WorkSpaces
|
|
778
809
|
class DescribeWorkspaceBundlesResult < Struct.new(
|
779
810
|
:bundles,
|
780
811
|
:next_token)
|
812
|
+
SENSITIVE = []
|
781
813
|
include Aws::Structure
|
782
814
|
end
|
783
815
|
|
@@ -810,6 +842,7 @@ module Aws::WorkSpaces
|
|
810
842
|
:directory_ids,
|
811
843
|
:limit,
|
812
844
|
:next_token)
|
845
|
+
SENSITIVE = []
|
813
846
|
include Aws::Structure
|
814
847
|
end
|
815
848
|
|
@@ -827,6 +860,7 @@ module Aws::WorkSpaces
|
|
827
860
|
class DescribeWorkspaceDirectoriesResult < Struct.new(
|
828
861
|
:directories,
|
829
862
|
:next_token)
|
863
|
+
SENSITIVE = []
|
830
864
|
include Aws::Structure
|
831
865
|
end
|
832
866
|
|
@@ -858,6 +892,7 @@ module Aws::WorkSpaces
|
|
858
892
|
:image_ids,
|
859
893
|
:next_token,
|
860
894
|
:max_results)
|
895
|
+
SENSITIVE = []
|
861
896
|
include Aws::Structure
|
862
897
|
end
|
863
898
|
|
@@ -875,6 +910,7 @@ module Aws::WorkSpaces
|
|
875
910
|
class DescribeWorkspaceImagesResult < Struct.new(
|
876
911
|
:images,
|
877
912
|
:next_token)
|
913
|
+
SENSITIVE = []
|
878
914
|
include Aws::Structure
|
879
915
|
end
|
880
916
|
|
@@ -893,6 +929,7 @@ module Aws::WorkSpaces
|
|
893
929
|
#
|
894
930
|
class DescribeWorkspaceSnapshotsRequest < Struct.new(
|
895
931
|
:workspace_id)
|
932
|
+
SENSITIVE = []
|
896
933
|
include Aws::Structure
|
897
934
|
end
|
898
935
|
|
@@ -912,6 +949,7 @@ module Aws::WorkSpaces
|
|
912
949
|
class DescribeWorkspaceSnapshotsResult < Struct.new(
|
913
950
|
:rebuild_snapshots,
|
914
951
|
:restore_snapshots)
|
952
|
+
SENSITIVE = []
|
915
953
|
include Aws::Structure
|
916
954
|
end
|
917
955
|
|
@@ -938,6 +976,7 @@ module Aws::WorkSpaces
|
|
938
976
|
class DescribeWorkspacesConnectionStatusRequest < Struct.new(
|
939
977
|
:workspace_ids,
|
940
978
|
:next_token)
|
979
|
+
SENSITIVE = []
|
941
980
|
include Aws::Structure
|
942
981
|
end
|
943
982
|
|
@@ -955,6 +994,7 @@ module Aws::WorkSpaces
|
|
955
994
|
class DescribeWorkspacesConnectionStatusResult < Struct.new(
|
956
995
|
:workspaces_connection_status,
|
957
996
|
:next_token)
|
997
|
+
SENSITIVE = []
|
958
998
|
include Aws::Structure
|
959
999
|
end
|
960
1000
|
|
@@ -1015,6 +1055,7 @@ module Aws::WorkSpaces
|
|
1015
1055
|
:bundle_id,
|
1016
1056
|
:limit,
|
1017
1057
|
:next_token)
|
1058
|
+
SENSITIVE = []
|
1018
1059
|
include Aws::Structure
|
1019
1060
|
end
|
1020
1061
|
|
@@ -1035,6 +1076,7 @@ module Aws::WorkSpaces
|
|
1035
1076
|
class DescribeWorkspacesResult < Struct.new(
|
1036
1077
|
:workspaces,
|
1037
1078
|
:next_token)
|
1079
|
+
SENSITIVE = []
|
1038
1080
|
include Aws::Structure
|
1039
1081
|
end
|
1040
1082
|
|
@@ -1059,6 +1101,7 @@ module Aws::WorkSpaces
|
|
1059
1101
|
class DisassociateIpGroupsRequest < Struct.new(
|
1060
1102
|
:directory_id,
|
1061
1103
|
:group_ids)
|
1104
|
+
SENSITIVE = []
|
1062
1105
|
include Aws::Structure
|
1063
1106
|
end
|
1064
1107
|
|
@@ -1087,6 +1130,7 @@ module Aws::WorkSpaces
|
|
1087
1130
|
:workspace_request,
|
1088
1131
|
:error_code,
|
1089
1132
|
:error_message)
|
1133
|
+
SENSITIVE = []
|
1090
1134
|
include Aws::Structure
|
1091
1135
|
end
|
1092
1136
|
|
@@ -1114,6 +1158,7 @@ module Aws::WorkSpaces
|
|
1114
1158
|
:workspace_id,
|
1115
1159
|
:error_code,
|
1116
1160
|
:error_message)
|
1161
|
+
SENSITIVE = []
|
1117
1162
|
include Aws::Structure
|
1118
1163
|
end
|
1119
1164
|
|
@@ -1161,6 +1206,7 @@ module Aws::WorkSpaces
|
|
1161
1206
|
:image_name,
|
1162
1207
|
:image_description,
|
1163
1208
|
:tags)
|
1209
|
+
SENSITIVE = []
|
1164
1210
|
include Aws::Structure
|
1165
1211
|
end
|
1166
1212
|
|
@@ -1172,6 +1218,7 @@ module Aws::WorkSpaces
|
|
1172
1218
|
#
|
1173
1219
|
class ImportWorkspaceImageResult < Struct.new(
|
1174
1220
|
:image_id)
|
1221
|
+
SENSITIVE = []
|
1175
1222
|
include Aws::Structure
|
1176
1223
|
end
|
1177
1224
|
|
@@ -1185,6 +1232,7 @@ module Aws::WorkSpaces
|
|
1185
1232
|
#
|
1186
1233
|
class InvalidParameterValuesException < Struct.new(
|
1187
1234
|
:message)
|
1235
|
+
SENSITIVE = []
|
1188
1236
|
include Aws::Structure
|
1189
1237
|
end
|
1190
1238
|
|
@@ -1197,6 +1245,7 @@ module Aws::WorkSpaces
|
|
1197
1245
|
#
|
1198
1246
|
class InvalidResourceStateException < Struct.new(
|
1199
1247
|
:message)
|
1248
|
+
SENSITIVE = []
|
1200
1249
|
include Aws::Structure
|
1201
1250
|
end
|
1202
1251
|
|
@@ -1223,6 +1272,7 @@ module Aws::WorkSpaces
|
|
1223
1272
|
class IpRuleItem < Struct.new(
|
1224
1273
|
:ip_rule,
|
1225
1274
|
:rule_desc)
|
1275
|
+
SENSITIVE = []
|
1226
1276
|
include Aws::Structure
|
1227
1277
|
end
|
1228
1278
|
|
@@ -1256,6 +1306,7 @@ module Aws::WorkSpaces
|
|
1256
1306
|
:management_cidr_range_constraint,
|
1257
1307
|
:max_results,
|
1258
1308
|
:next_token)
|
1309
|
+
SENSITIVE = []
|
1259
1310
|
include Aws::Structure
|
1260
1311
|
end
|
1261
1312
|
|
@@ -1274,6 +1325,7 @@ module Aws::WorkSpaces
|
|
1274
1325
|
class ListAvailableManagementCidrRangesResult < Struct.new(
|
1275
1326
|
:management_cidr_ranges,
|
1276
1327
|
:next_token)
|
1328
|
+
SENSITIVE = []
|
1277
1329
|
include Aws::Structure
|
1278
1330
|
end
|
1279
1331
|
|
@@ -1299,6 +1351,7 @@ module Aws::WorkSpaces
|
|
1299
1351
|
class MigrateWorkspaceRequest < Struct.new(
|
1300
1352
|
:source_workspace_id,
|
1301
1353
|
:bundle_id)
|
1354
|
+
SENSITIVE = []
|
1302
1355
|
include Aws::Structure
|
1303
1356
|
end
|
1304
1357
|
|
@@ -1317,6 +1370,7 @@ module Aws::WorkSpaces
|
|
1317
1370
|
class MigrateWorkspaceResult < Struct.new(
|
1318
1371
|
:source_workspace_id,
|
1319
1372
|
:target_workspace_id)
|
1373
|
+
SENSITIVE = []
|
1320
1374
|
include Aws::Structure
|
1321
1375
|
end
|
1322
1376
|
|
@@ -1335,6 +1389,7 @@ module Aws::WorkSpaces
|
|
1335
1389
|
class ModificationState < Struct.new(
|
1336
1390
|
:resource,
|
1337
1391
|
:state)
|
1392
|
+
SENSITIVE = []
|
1338
1393
|
include Aws::Structure
|
1339
1394
|
end
|
1340
1395
|
|
@@ -1364,6 +1419,7 @@ module Aws::WorkSpaces
|
|
1364
1419
|
class ModifyAccountRequest < Struct.new(
|
1365
1420
|
:dedicated_tenancy_support,
|
1366
1421
|
:dedicated_tenancy_management_cidr_range)
|
1422
|
+
SENSITIVE = []
|
1367
1423
|
include Aws::Structure
|
1368
1424
|
end
|
1369
1425
|
|
@@ -1394,6 +1450,7 @@ module Aws::WorkSpaces
|
|
1394
1450
|
class ModifyClientPropertiesRequest < Struct.new(
|
1395
1451
|
:resource_id,
|
1396
1452
|
:client_properties)
|
1453
|
+
SENSITIVE = []
|
1397
1454
|
include Aws::Structure
|
1398
1455
|
end
|
1399
1456
|
|
@@ -1428,6 +1485,7 @@ module Aws::WorkSpaces
|
|
1428
1485
|
class ModifySelfservicePermissionsRequest < Struct.new(
|
1429
1486
|
:resource_id,
|
1430
1487
|
:selfservice_permissions)
|
1488
|
+
SENSITIVE = []
|
1431
1489
|
include Aws::Structure
|
1432
1490
|
end
|
1433
1491
|
|
@@ -1465,6 +1523,7 @@ module Aws::WorkSpaces
|
|
1465
1523
|
class ModifyWorkspaceAccessPropertiesRequest < Struct.new(
|
1466
1524
|
:resource_id,
|
1467
1525
|
:workspace_access_properties)
|
1526
|
+
SENSITIVE = []
|
1468
1527
|
include Aws::Structure
|
1469
1528
|
end
|
1470
1529
|
|
@@ -1499,6 +1558,7 @@ module Aws::WorkSpaces
|
|
1499
1558
|
class ModifyWorkspaceCreationPropertiesRequest < Struct.new(
|
1500
1559
|
:resource_id,
|
1501
1560
|
:workspace_creation_properties)
|
1561
|
+
SENSITIVE = []
|
1502
1562
|
include Aws::Structure
|
1503
1563
|
end
|
1504
1564
|
|
@@ -1533,6 +1593,7 @@ module Aws::WorkSpaces
|
|
1533
1593
|
class ModifyWorkspacePropertiesRequest < Struct.new(
|
1534
1594
|
:workspace_id,
|
1535
1595
|
:workspace_properties)
|
1596
|
+
SENSITIVE = []
|
1536
1597
|
include Aws::Structure
|
1537
1598
|
end
|
1538
1599
|
|
@@ -1561,6 +1622,7 @@ module Aws::WorkSpaces
|
|
1561
1622
|
class ModifyWorkspaceStateRequest < Struct.new(
|
1562
1623
|
:workspace_id,
|
1563
1624
|
:workspace_state)
|
1625
|
+
SENSITIVE = []
|
1564
1626
|
include Aws::Structure
|
1565
1627
|
end
|
1566
1628
|
|
@@ -1578,6 +1640,7 @@ module Aws::WorkSpaces
|
|
1578
1640
|
#
|
1579
1641
|
class OperatingSystem < Struct.new(
|
1580
1642
|
:type)
|
1643
|
+
SENSITIVE = []
|
1581
1644
|
include Aws::Structure
|
1582
1645
|
end
|
1583
1646
|
|
@@ -1591,6 +1654,7 @@ module Aws::WorkSpaces
|
|
1591
1654
|
#
|
1592
1655
|
class OperationInProgressException < Struct.new(
|
1593
1656
|
:message)
|
1657
|
+
SENSITIVE = []
|
1594
1658
|
include Aws::Structure
|
1595
1659
|
end
|
1596
1660
|
|
@@ -1603,6 +1667,7 @@ module Aws::WorkSpaces
|
|
1603
1667
|
#
|
1604
1668
|
class OperationNotSupportedException < Struct.new(
|
1605
1669
|
:message)
|
1670
|
+
SENSITIVE = []
|
1606
1671
|
include Aws::Structure
|
1607
1672
|
end
|
1608
1673
|
|
@@ -1623,6 +1688,7 @@ module Aws::WorkSpaces
|
|
1623
1688
|
#
|
1624
1689
|
class RebootRequest < Struct.new(
|
1625
1690
|
:workspace_id)
|
1691
|
+
SENSITIVE = []
|
1626
1692
|
include Aws::Structure
|
1627
1693
|
end
|
1628
1694
|
|
@@ -1645,6 +1711,7 @@ module Aws::WorkSpaces
|
|
1645
1711
|
#
|
1646
1712
|
class RebootWorkspacesRequest < Struct.new(
|
1647
1713
|
:reboot_workspace_requests)
|
1714
|
+
SENSITIVE = []
|
1648
1715
|
include Aws::Structure
|
1649
1716
|
end
|
1650
1717
|
|
@@ -1656,6 +1723,7 @@ module Aws::WorkSpaces
|
|
1656
1723
|
#
|
1657
1724
|
class RebootWorkspacesResult < Struct.new(
|
1658
1725
|
:failed_requests)
|
1726
|
+
SENSITIVE = []
|
1659
1727
|
include Aws::Structure
|
1660
1728
|
end
|
1661
1729
|
|
@@ -1676,6 +1744,7 @@ module Aws::WorkSpaces
|
|
1676
1744
|
#
|
1677
1745
|
class RebuildRequest < Struct.new(
|
1678
1746
|
:workspace_id)
|
1747
|
+
SENSITIVE = []
|
1679
1748
|
include Aws::Structure
|
1680
1749
|
end
|
1681
1750
|
|
@@ -1698,6 +1767,7 @@ module Aws::WorkSpaces
|
|
1698
1767
|
#
|
1699
1768
|
class RebuildWorkspacesRequest < Struct.new(
|
1700
1769
|
:rebuild_workspace_requests)
|
1770
|
+
SENSITIVE = []
|
1701
1771
|
include Aws::Structure
|
1702
1772
|
end
|
1703
1773
|
|
@@ -1709,6 +1779,7 @@ module Aws::WorkSpaces
|
|
1709
1779
|
#
|
1710
1780
|
class RebuildWorkspacesResult < Struct.new(
|
1711
1781
|
:failed_requests)
|
1782
|
+
SENSITIVE = []
|
1712
1783
|
include Aws::Structure
|
1713
1784
|
end
|
1714
1785
|
|
@@ -1785,6 +1856,7 @@ module Aws::WorkSpaces
|
|
1785
1856
|
:enable_self_service,
|
1786
1857
|
:tenancy,
|
1787
1858
|
:tags)
|
1859
|
+
SENSITIVE = []
|
1788
1860
|
include Aws::Structure
|
1789
1861
|
end
|
1790
1862
|
|
@@ -1801,6 +1873,7 @@ module Aws::WorkSpaces
|
|
1801
1873
|
#
|
1802
1874
|
class ResourceAlreadyExistsException < Struct.new(
|
1803
1875
|
:message)
|
1876
|
+
SENSITIVE = []
|
1804
1877
|
include Aws::Structure
|
1805
1878
|
end
|
1806
1879
|
|
@@ -1813,6 +1886,7 @@ module Aws::WorkSpaces
|
|
1813
1886
|
#
|
1814
1887
|
class ResourceAssociatedException < Struct.new(
|
1815
1888
|
:message)
|
1889
|
+
SENSITIVE = []
|
1816
1890
|
include Aws::Structure
|
1817
1891
|
end
|
1818
1892
|
|
@@ -1825,6 +1899,7 @@ module Aws::WorkSpaces
|
|
1825
1899
|
#
|
1826
1900
|
class ResourceCreationFailedException < Struct.new(
|
1827
1901
|
:message)
|
1902
|
+
SENSITIVE = []
|
1828
1903
|
include Aws::Structure
|
1829
1904
|
end
|
1830
1905
|
|
@@ -1838,6 +1913,7 @@ module Aws::WorkSpaces
|
|
1838
1913
|
#
|
1839
1914
|
class ResourceLimitExceededException < Struct.new(
|
1840
1915
|
:message)
|
1916
|
+
SENSITIVE = []
|
1841
1917
|
include Aws::Structure
|
1842
1918
|
end
|
1843
1919
|
|
@@ -1856,6 +1932,7 @@ module Aws::WorkSpaces
|
|
1856
1932
|
class ResourceNotFoundException < Struct.new(
|
1857
1933
|
:message,
|
1858
1934
|
:resource_id)
|
1935
|
+
SENSITIVE = []
|
1859
1936
|
include Aws::Structure
|
1860
1937
|
end
|
1861
1938
|
|
@@ -1874,6 +1951,7 @@ module Aws::WorkSpaces
|
|
1874
1951
|
class ResourceUnavailableException < Struct.new(
|
1875
1952
|
:message,
|
1876
1953
|
:resource_id)
|
1954
|
+
SENSITIVE = []
|
1877
1955
|
include Aws::Structure
|
1878
1956
|
end
|
1879
1957
|
|
@@ -1892,6 +1970,7 @@ module Aws::WorkSpaces
|
|
1892
1970
|
#
|
1893
1971
|
class RestoreWorkspaceRequest < Struct.new(
|
1894
1972
|
:workspace_id)
|
1973
|
+
SENSITIVE = []
|
1895
1974
|
include Aws::Structure
|
1896
1975
|
end
|
1897
1976
|
|
@@ -1920,6 +1999,7 @@ module Aws::WorkSpaces
|
|
1920
1999
|
class RevokeIpRulesRequest < Struct.new(
|
1921
2000
|
:group_id,
|
1922
2001
|
:user_rules)
|
2002
|
+
SENSITIVE = []
|
1923
2003
|
include Aws::Structure
|
1924
2004
|
end
|
1925
2005
|
|
@@ -1937,6 +2017,7 @@ module Aws::WorkSpaces
|
|
1937
2017
|
#
|
1938
2018
|
class RootStorage < Struct.new(
|
1939
2019
|
:capacity)
|
2020
|
+
SENSITIVE = []
|
1940
2021
|
include Aws::Structure
|
1941
2022
|
end
|
1942
2023
|
|
@@ -1991,6 +2072,7 @@ module Aws::WorkSpaces
|
|
1991
2072
|
:change_compute_type,
|
1992
2073
|
:switch_running_mode,
|
1993
2074
|
:rebuild_workspace)
|
2075
|
+
SENSITIVE = []
|
1994
2076
|
include Aws::Structure
|
1995
2077
|
end
|
1996
2078
|
|
@@ -2004,6 +2086,7 @@ module Aws::WorkSpaces
|
|
2004
2086
|
#
|
2005
2087
|
class Snapshot < Struct.new(
|
2006
2088
|
:snapshot_time)
|
2089
|
+
SENSITIVE = []
|
2007
2090
|
include Aws::Structure
|
2008
2091
|
end
|
2009
2092
|
|
@@ -2024,6 +2107,7 @@ module Aws::WorkSpaces
|
|
2024
2107
|
#
|
2025
2108
|
class StartRequest < Struct.new(
|
2026
2109
|
:workspace_id)
|
2110
|
+
SENSITIVE = []
|
2027
2111
|
include Aws::Structure
|
2028
2112
|
end
|
2029
2113
|
|
@@ -2046,6 +2130,7 @@ module Aws::WorkSpaces
|
|
2046
2130
|
#
|
2047
2131
|
class StartWorkspacesRequest < Struct.new(
|
2048
2132
|
:start_workspace_requests)
|
2133
|
+
SENSITIVE = []
|
2049
2134
|
include Aws::Structure
|
2050
2135
|
end
|
2051
2136
|
|
@@ -2057,6 +2142,7 @@ module Aws::WorkSpaces
|
|
2057
2142
|
#
|
2058
2143
|
class StartWorkspacesResult < Struct.new(
|
2059
2144
|
:failed_requests)
|
2145
|
+
SENSITIVE = []
|
2060
2146
|
include Aws::Structure
|
2061
2147
|
end
|
2062
2148
|
|
@@ -2077,6 +2163,7 @@ module Aws::WorkSpaces
|
|
2077
2163
|
#
|
2078
2164
|
class StopRequest < Struct.new(
|
2079
2165
|
:workspace_id)
|
2166
|
+
SENSITIVE = []
|
2080
2167
|
include Aws::Structure
|
2081
2168
|
end
|
2082
2169
|
|
@@ -2099,6 +2186,7 @@ module Aws::WorkSpaces
|
|
2099
2186
|
#
|
2100
2187
|
class StopWorkspacesRequest < Struct.new(
|
2101
2188
|
:stop_workspace_requests)
|
2189
|
+
SENSITIVE = []
|
2102
2190
|
include Aws::Structure
|
2103
2191
|
end
|
2104
2192
|
|
@@ -2110,6 +2198,7 @@ module Aws::WorkSpaces
|
|
2110
2198
|
#
|
2111
2199
|
class StopWorkspacesResult < Struct.new(
|
2112
2200
|
:failed_requests)
|
2201
|
+
SENSITIVE = []
|
2113
2202
|
include Aws::Structure
|
2114
2203
|
end
|
2115
2204
|
|
@@ -2136,6 +2225,7 @@ module Aws::WorkSpaces
|
|
2136
2225
|
class Tag < Struct.new(
|
2137
2226
|
:key,
|
2138
2227
|
:value)
|
2228
|
+
SENSITIVE = []
|
2139
2229
|
include Aws::Structure
|
2140
2230
|
end
|
2141
2231
|
|
@@ -2156,6 +2246,7 @@ module Aws::WorkSpaces
|
|
2156
2246
|
#
|
2157
2247
|
class TerminateRequest < Struct.new(
|
2158
2248
|
:workspace_id)
|
2249
|
+
SENSITIVE = []
|
2159
2250
|
include Aws::Structure
|
2160
2251
|
end
|
2161
2252
|
|
@@ -2178,6 +2269,7 @@ module Aws::WorkSpaces
|
|
2178
2269
|
#
|
2179
2270
|
class TerminateWorkspacesRequest < Struct.new(
|
2180
2271
|
:terminate_workspace_requests)
|
2272
|
+
SENSITIVE = []
|
2181
2273
|
include Aws::Structure
|
2182
2274
|
end
|
2183
2275
|
|
@@ -2189,6 +2281,7 @@ module Aws::WorkSpaces
|
|
2189
2281
|
#
|
2190
2282
|
class TerminateWorkspacesResult < Struct.new(
|
2191
2283
|
:failed_requests)
|
2284
|
+
SENSITIVE = []
|
2192
2285
|
include Aws::Structure
|
2193
2286
|
end
|
2194
2287
|
|
@@ -2208,6 +2301,7 @@ module Aws::WorkSpaces
|
|
2208
2301
|
#
|
2209
2302
|
class UnsupportedNetworkConfigurationException < Struct.new(
|
2210
2303
|
:message)
|
2304
|
+
SENSITIVE = []
|
2211
2305
|
include Aws::Structure
|
2212
2306
|
end
|
2213
2307
|
|
@@ -2226,6 +2320,7 @@ module Aws::WorkSpaces
|
|
2226
2320
|
#
|
2227
2321
|
class UnsupportedWorkspaceConfigurationException < Struct.new(
|
2228
2322
|
:message)
|
2323
|
+
SENSITIVE = []
|
2229
2324
|
include Aws::Structure
|
2230
2325
|
end
|
2231
2326
|
|
@@ -2255,6 +2350,7 @@ module Aws::WorkSpaces
|
|
2255
2350
|
class UpdateRulesOfIpGroupRequest < Struct.new(
|
2256
2351
|
:group_id,
|
2257
2352
|
:user_rules)
|
2353
|
+
SENSITIVE = []
|
2258
2354
|
include Aws::Structure
|
2259
2355
|
end
|
2260
2356
|
|
@@ -2272,6 +2368,7 @@ module Aws::WorkSpaces
|
|
2272
2368
|
#
|
2273
2369
|
class UserStorage < Struct.new(
|
2274
2370
|
:capacity)
|
2371
|
+
SENSITIVE = []
|
2275
2372
|
include Aws::Structure
|
2276
2373
|
end
|
2277
2374
|
|
@@ -2359,6 +2456,7 @@ module Aws::WorkSpaces
|
|
2359
2456
|
:root_volume_encryption_enabled,
|
2360
2457
|
:workspace_properties,
|
2361
2458
|
:modification_states)
|
2459
|
+
SENSITIVE = []
|
2362
2460
|
include Aws::Structure
|
2363
2461
|
end
|
2364
2462
|
|
@@ -2442,6 +2540,7 @@ module Aws::WorkSpaces
|
|
2442
2540
|
:device_type_android,
|
2443
2541
|
:device_type_chrome_os,
|
2444
2542
|
:device_type_zero_client)
|
2543
|
+
SENSITIVE = []
|
2445
2544
|
include Aws::Structure
|
2446
2545
|
end
|
2447
2546
|
|
@@ -2501,6 +2600,7 @@ module Aws::WorkSpaces
|
|
2501
2600
|
:user_storage,
|
2502
2601
|
:compute_type,
|
2503
2602
|
:last_updated_time)
|
2603
|
+
SENSITIVE = []
|
2504
2604
|
include Aws::Structure
|
2505
2605
|
end
|
2506
2606
|
|
@@ -2530,6 +2630,7 @@ module Aws::WorkSpaces
|
|
2530
2630
|
:connection_state,
|
2531
2631
|
:connection_state_check_timestamp,
|
2532
2632
|
:last_known_user_connection_timestamp)
|
2633
|
+
SENSITIVE = []
|
2533
2634
|
include Aws::Structure
|
2534
2635
|
end
|
2535
2636
|
|
@@ -2586,6 +2687,7 @@ module Aws::WorkSpaces
|
|
2586
2687
|
:custom_security_group_id,
|
2587
2688
|
:user_enabled_as_local_administrator,
|
2588
2689
|
:enable_maintenance_mode)
|
2690
|
+
SENSITIVE = []
|
2589
2691
|
include Aws::Structure
|
2590
2692
|
end
|
2591
2693
|
|
@@ -2688,6 +2790,7 @@ module Aws::WorkSpaces
|
|
2688
2790
|
:workspace_access_properties,
|
2689
2791
|
:tenancy,
|
2690
2792
|
:selfservice_permissions)
|
2793
|
+
SENSITIVE = []
|
2691
2794
|
include Aws::Structure
|
2692
2795
|
end
|
2693
2796
|
|
@@ -2743,6 +2846,7 @@ module Aws::WorkSpaces
|
|
2743
2846
|
:required_tenancy,
|
2744
2847
|
:error_code,
|
2745
2848
|
:error_message)
|
2849
|
+
SENSITIVE = []
|
2746
2850
|
include Aws::Structure
|
2747
2851
|
end
|
2748
2852
|
|
@@ -2798,6 +2902,7 @@ module Aws::WorkSpaces
|
|
2798
2902
|
:root_volume_size_gib,
|
2799
2903
|
:user_volume_size_gib,
|
2800
2904
|
:compute_type_name)
|
2905
|
+
SENSITIVE = []
|
2801
2906
|
include Aws::Structure
|
2802
2907
|
end
|
2803
2908
|
|
@@ -2877,6 +2982,7 @@ module Aws::WorkSpaces
|
|
2877
2982
|
:root_volume_encryption_enabled,
|
2878
2983
|
:workspace_properties,
|
2879
2984
|
:tags)
|
2985
|
+
SENSITIVE = []
|
2880
2986
|
include Aws::Structure
|
2881
2987
|
end
|
2882
2988
|
|
@@ -2897,6 +3003,7 @@ module Aws::WorkSpaces
|
|
2897
3003
|
#
|
2898
3004
|
class WorkspacesDefaultRoleNotFoundException < Struct.new(
|
2899
3005
|
:message)
|
3006
|
+
SENSITIVE = []
|
2900
3007
|
include Aws::Structure
|
2901
3008
|
end
|
2902
3009
|
|
@@ -2925,6 +3032,7 @@ module Aws::WorkSpaces
|
|
2925
3032
|
:group_name,
|
2926
3033
|
:group_desc,
|
2927
3034
|
:user_rules)
|
3035
|
+
SENSITIVE = []
|
2928
3036
|
include Aws::Structure
|
2929
3037
|
end
|
2930
3038
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.39.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: 2020-
|
11
|
+
date: 2020-06-23 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon WorkSpaces
|