aws-sdk-workspaces 1.15.0 → 1.16.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/lib/aws-sdk-workspaces.rb +1 -1
- data/lib/aws-sdk-workspaces/client.rb +65 -4
- data/lib/aws-sdk-workspaces/client_api.rb +2 -0
- data/lib/aws-sdk-workspaces/types.rb +26 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c448c63b95ca518f19c6c26e27d60369f2c9167a
|
4
|
+
data.tar.gz: 3768e36656d1f820900b65b9b36f54fb98049501
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8baf0cc604d815c5aabf9fd60de4576acbabd46000ace72fc0be93b3f2f3d1ad51560afcf318149120a3962b375c85e30887f8b3eecafce1c2df78cb35fadd09
|
7
|
+
data.tar.gz: d58b6fda15871018d69e462787962a38695a54ff02d3f19b05954e7bb253896ef1917bca9045b3ac80382235d444e3f6be51ad2d206fb0333fdf77601acdc1b4
|
data/lib/aws-sdk-workspaces.rb
CHANGED
@@ -209,6 +209,49 @@ module Aws::WorkSpaces
|
|
209
209
|
# When `true`, request parameters are validated before
|
210
210
|
# sending the request.
|
211
211
|
#
|
212
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
213
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
214
|
+
#
|
215
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
216
|
+
# seconds to wait when opening a HTTP session before rasing a
|
217
|
+
# `Timeout::Error`.
|
218
|
+
#
|
219
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
220
|
+
# number of seconds to wait for response data. This value can
|
221
|
+
# safely be set
|
222
|
+
# per-request on the session yeidled by {#session_for}.
|
223
|
+
#
|
224
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
225
|
+
# seconds a connection is allowed to sit idble before it is
|
226
|
+
# considered stale. Stale connections are closed and removed
|
227
|
+
# from the pool before making a request.
|
228
|
+
#
|
229
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
230
|
+
# seconds to wait for a 100-continue response before sending the
|
231
|
+
# request body. This option has no effect unless the request has
|
232
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
233
|
+
# disables this behaviour. This value can safely be set per
|
234
|
+
# request on the session yeidled by {#session_for}.
|
235
|
+
#
|
236
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
237
|
+
# HTTP debug output will be sent to the `:logger`.
|
238
|
+
#
|
239
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
240
|
+
# SSL peer certificates are verified when establishing a
|
241
|
+
# connection.
|
242
|
+
#
|
243
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
244
|
+
# certificate authority bundle file that should be used when
|
245
|
+
# verifying peer certificates. If you do not pass
|
246
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
247
|
+
# will be used if available.
|
248
|
+
#
|
249
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
250
|
+
# directory that contains the unbundled SSL certificate
|
251
|
+
# authority files for verifying peer certificates. If you do
|
252
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
253
|
+
# system default will be used if available.
|
254
|
+
#
|
212
255
|
def initialize(*args)
|
213
256
|
super
|
214
257
|
end
|
@@ -301,6 +344,9 @@ module Aws::WorkSpaces
|
|
301
344
|
# @option params [Array<Types::IpRuleItem>] :user_rules
|
302
345
|
# The rules to add to the group.
|
303
346
|
#
|
347
|
+
# @option params [Array<Types::Tag>] :tags
|
348
|
+
# The tags. Each WorkSpaces resource can have a maximum of 50 tags.
|
349
|
+
#
|
304
350
|
# @return [Types::CreateIpGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
305
351
|
#
|
306
352
|
# * {Types::CreateIpGroupResult#group_id #group_id} => String
|
@@ -316,6 +362,12 @@ module Aws::WorkSpaces
|
|
316
362
|
# rule_desc: "IpRuleDesc",
|
317
363
|
# },
|
318
364
|
# ],
|
365
|
+
# tags: [
|
366
|
+
# {
|
367
|
+
# key: "TagKey", # required
|
368
|
+
# value: "TagValue",
|
369
|
+
# },
|
370
|
+
# ],
|
319
371
|
# })
|
320
372
|
#
|
321
373
|
# @example Response structure
|
@@ -594,7 +646,7 @@ module Aws::WorkSpaces
|
|
594
646
|
# WorkSpaces clients.
|
595
647
|
#
|
596
648
|
# @option params [required, Array<String>] :resource_ids
|
597
|
-
# The resource
|
649
|
+
# The resource identifier, in the form of directory IDs.
|
598
650
|
#
|
599
651
|
# @return [Types::DescribeClientPropertiesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
600
652
|
#
|
@@ -1026,6 +1078,9 @@ module Aws::WorkSpaces
|
|
1026
1078
|
# @option params [required, String] :image_description
|
1027
1079
|
# The description of the WorkSpace image.
|
1028
1080
|
#
|
1081
|
+
# @option params [Array<Types::Tag>] :tags
|
1082
|
+
# The tags. Each WorkSpaces resource can have a maximum of 50 tags.
|
1083
|
+
#
|
1029
1084
|
# @return [Types::ImportWorkspaceImageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1030
1085
|
#
|
1031
1086
|
# * {Types::ImportWorkspaceImageResult#image_id #image_id} => String
|
@@ -1037,6 +1092,12 @@ module Aws::WorkSpaces
|
|
1037
1092
|
# ingestion_process: "BYOL_REGULAR", # required, accepts BYOL_REGULAR, BYOL_GRAPHICS, BYOL_GRAPHICSPRO
|
1038
1093
|
# image_name: "WorkspaceImageName", # required
|
1039
1094
|
# image_description: "WorkspaceImageDescription", # required
|
1095
|
+
# tags: [
|
1096
|
+
# {
|
1097
|
+
# key: "TagKey", # required
|
1098
|
+
# value: "TagValue",
|
1099
|
+
# },
|
1100
|
+
# ],
|
1040
1101
|
# })
|
1041
1102
|
#
|
1042
1103
|
# @example Response structure
|
@@ -1133,7 +1194,7 @@ module Aws::WorkSpaces
|
|
1133
1194
|
req.send_request(options)
|
1134
1195
|
end
|
1135
1196
|
|
1136
|
-
# Modifies the properties of the specified Amazon WorkSpaces
|
1197
|
+
# Modifies the properties of the specified Amazon WorkSpaces clients.
|
1137
1198
|
#
|
1138
1199
|
# @option params [required, String] :resource_id
|
1139
1200
|
# The resource identifiers, in the form of directory IDs.
|
@@ -1280,7 +1341,7 @@ module Aws::WorkSpaces
|
|
1280
1341
|
#
|
1281
1342
|
#
|
1282
1343
|
#
|
1283
|
-
# [1]:
|
1344
|
+
# [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/reset-workspace.html
|
1284
1345
|
#
|
1285
1346
|
# @option params [required, Array<Types::RebuildRequest>] :rebuild_workspace_requests
|
1286
1347
|
# The WorkSpace to rebuild. You can specify a single WorkSpace.
|
@@ -1506,7 +1567,7 @@ module Aws::WorkSpaces
|
|
1506
1567
|
params: params,
|
1507
1568
|
config: config)
|
1508
1569
|
context[:gem_name] = 'aws-sdk-workspaces'
|
1509
|
-
context[:gem_version] = '1.
|
1570
|
+
context[:gem_version] = '1.16.0'
|
1510
1571
|
Seahorse::Client::Request.new(handlers, context)
|
1511
1572
|
end
|
1512
1573
|
|
@@ -248,6 +248,7 @@ module Aws::WorkSpaces
|
|
248
248
|
CreateIpGroupRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: IpGroupName, required: true, location_name: "GroupName"))
|
249
249
|
CreateIpGroupRequest.add_member(:group_desc, Shapes::ShapeRef.new(shape: IpGroupDesc, location_name: "GroupDesc"))
|
250
250
|
CreateIpGroupRequest.add_member(:user_rules, Shapes::ShapeRef.new(shape: IpRuleList, location_name: "UserRules"))
|
251
|
+
CreateIpGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
251
252
|
CreateIpGroupRequest.struct_class = Types::CreateIpGroupRequest
|
252
253
|
|
253
254
|
CreateIpGroupResult.add_member(:group_id, Shapes::ShapeRef.new(shape: IpGroupId, location_name: "GroupId"))
|
@@ -409,6 +410,7 @@ module Aws::WorkSpaces
|
|
409
410
|
ImportWorkspaceImageRequest.add_member(:ingestion_process, Shapes::ShapeRef.new(shape: WorkspaceImageIngestionProcess, required: true, location_name: "IngestionProcess"))
|
410
411
|
ImportWorkspaceImageRequest.add_member(:image_name, Shapes::ShapeRef.new(shape: WorkspaceImageName, required: true, location_name: "ImageName"))
|
411
412
|
ImportWorkspaceImageRequest.add_member(:image_description, Shapes::ShapeRef.new(shape: WorkspaceImageDescription, required: true, location_name: "ImageDescription"))
|
413
|
+
ImportWorkspaceImageRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
412
414
|
ImportWorkspaceImageRequest.struct_class = Types::ImportWorkspaceImageRequest
|
413
415
|
|
414
416
|
ImportWorkspaceImageResult.add_member(:image_id, Shapes::ShapeRef.new(shape: WorkspaceImageId, location_name: "ImageId"))
|
@@ -177,6 +177,12 @@ module Aws::WorkSpaces
|
|
177
177
|
# rule_desc: "IpRuleDesc",
|
178
178
|
# },
|
179
179
|
# ],
|
180
|
+
# tags: [
|
181
|
+
# {
|
182
|
+
# key: "TagKey", # required
|
183
|
+
# value: "TagValue",
|
184
|
+
# },
|
185
|
+
# ],
|
180
186
|
# }
|
181
187
|
#
|
182
188
|
# @!attribute [rw] group_name
|
@@ -191,12 +197,17 @@ module Aws::WorkSpaces
|
|
191
197
|
# The rules to add to the group.
|
192
198
|
# @return [Array<Types::IpRuleItem>]
|
193
199
|
#
|
200
|
+
# @!attribute [rw] tags
|
201
|
+
# The tags. Each WorkSpaces resource can have a maximum of 50 tags.
|
202
|
+
# @return [Array<Types::Tag>]
|
203
|
+
#
|
194
204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CreateIpGroupRequest AWS API Documentation
|
195
205
|
#
|
196
206
|
class CreateIpGroupRequest < Struct.new(
|
197
207
|
:group_name,
|
198
208
|
:group_desc,
|
199
|
-
:user_rules
|
209
|
+
:user_rules,
|
210
|
+
:tags)
|
200
211
|
include Aws::Structure
|
201
212
|
end
|
202
213
|
|
@@ -488,7 +499,7 @@ module Aws::WorkSpaces
|
|
488
499
|
# }
|
489
500
|
#
|
490
501
|
# @!attribute [rw] resource_ids
|
491
|
-
# The resource
|
502
|
+
# The resource identifier, in the form of directory IDs.
|
492
503
|
# @return [Array<String>]
|
493
504
|
#
|
494
505
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeClientPropertiesRequest AWS API Documentation
|
@@ -941,6 +952,12 @@ module Aws::WorkSpaces
|
|
941
952
|
# ingestion_process: "BYOL_REGULAR", # required, accepts BYOL_REGULAR, BYOL_GRAPHICS, BYOL_GRAPHICSPRO
|
942
953
|
# image_name: "WorkspaceImageName", # required
|
943
954
|
# image_description: "WorkspaceImageDescription", # required
|
955
|
+
# tags: [
|
956
|
+
# {
|
957
|
+
# key: "TagKey", # required
|
958
|
+
# value: "TagValue",
|
959
|
+
# },
|
960
|
+
# ],
|
944
961
|
# }
|
945
962
|
#
|
946
963
|
# @!attribute [rw] ec2_image_id
|
@@ -959,13 +976,18 @@ module Aws::WorkSpaces
|
|
959
976
|
# The description of the WorkSpace image.
|
960
977
|
# @return [String]
|
961
978
|
#
|
979
|
+
# @!attribute [rw] tags
|
980
|
+
# The tags. Each WorkSpaces resource can have a maximum of 50 tags.
|
981
|
+
# @return [Array<Types::Tag>]
|
982
|
+
#
|
962
983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ImportWorkspaceImageRequest AWS API Documentation
|
963
984
|
#
|
964
985
|
class ImportWorkspaceImageRequest < Struct.new(
|
965
986
|
:ec2_image_id,
|
966
987
|
:ingestion_process,
|
967
988
|
:image_name,
|
968
|
-
:image_description
|
989
|
+
:image_description,
|
990
|
+
:tags)
|
969
991
|
include Aws::Structure
|
970
992
|
end
|
971
993
|
|
@@ -1903,7 +1925,7 @@ module Aws::WorkSpaces
|
|
1903
1925
|
#
|
1904
1926
|
#
|
1905
1927
|
#
|
1906
|
-
# [1]:
|
1928
|
+
# [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/running-mode.html
|
1907
1929
|
# @return [String]
|
1908
1930
|
#
|
1909
1931
|
# @!attribute [rw] running_mode_auto_stop_timeout_in_minutes
|
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.16.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: 2019-03-
|
11
|
+
date: 2019-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|