aws-sdk-workspaces 1.52.0 → 1.53.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 553a4c937277a752749d3b7be96cec35b24cb590109c96ba67993d5bc0c4d420
4
- data.tar.gz: dac62420c5cda1615d7121d6ab68382927b4ce7f2e2624ab9a5d5af8acaabb9f
3
+ metadata.gz: d272aa25b5236ec34cd0eda84b614db7926f537065ba327c04076f0d92486acf
4
+ data.tar.gz: 71cbac01cf010e80b4a38809a76d9524cf994cbfdc85dc5e464b88e53672ff25
5
5
  SHA512:
6
- metadata.gz: a1cae895f13622e42e8fd12df53442dbbe51d5c1dfa16085bf3f40e93d2afa5bedfa26042e605444e28600c2dd4220a32a898322d56d5481d6ef195b34d63849
7
- data.tar.gz: 9d55f575aadeb3e851b2b4249475409d94cc57330efc8c240d3c07e50e708968dd70ed5ced1edbfa47caebf9de11c929d3a6ef33f7f5d6edf2b4176527f362ef
6
+ metadata.gz: bb3efdffd67faa7b406e5136ddbcf8eb4e9b8988fc893a7a9a10013547638b08dbc7c67b641c37cd9b110e0ec82fafe2289da3d238ec453eb769d86c38be49da
7
+ data.tar.gz: 997aa6f30ebccc11a43af5972b961fd87a18f0446a9451e361ed076f041e87f269b186138fd79ab9d5b011120dcb159af0312e34123d5a6b1e4f5357908100d6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2021-05-25)
5
+ ------------------
6
+
7
+ * Feature - Adds support for Linux device types in WorkspaceAccessProperties
8
+
4
9
  1.52.0 (2021-03-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-workspaces/customizations'
48
48
  # @!group service
49
49
  module Aws::WorkSpaces
50
50
 
51
- GEM_VERSION = '1.52.0'
51
+ GEM_VERSION = '1.53.0'
52
52
 
53
53
  end
@@ -691,7 +691,7 @@ module Aws::WorkSpaces
691
691
  # @option params [Array<Types::Tag>] :tags
692
692
  # The tags associated with the bundle.
693
693
  #
694
- # <note markdown="1"> To add tags at the same time that you're creating the bundle, you
694
+ # <note markdown="1"> To add tags at the same time when you're creating the bundle, you
695
695
  # must create an IAM policy that grants your IAM user permissions to use
696
696
  # `workspaces:CreateTags`.
697
697
  #
@@ -1428,6 +1428,7 @@ module Aws::WorkSpaces
1428
1428
  # resp.directories[0].workspace_access_properties.device_type_android #=> String, one of "ALLOW", "DENY"
1429
1429
  # resp.directories[0].workspace_access_properties.device_type_chrome_os #=> String, one of "ALLOW", "DENY"
1430
1430
  # resp.directories[0].workspace_access_properties.device_type_zero_client #=> String, one of "ALLOW", "DENY"
1431
+ # resp.directories[0].workspace_access_properties.device_type_linux #=> String, one of "ALLOW", "DENY"
1431
1432
  # resp.directories[0].tenancy #=> String, one of "DEDICATED", "SHARED"
1432
1433
  # resp.directories[0].selfservice_permissions.restart_workspace #=> String, one of "ENABLED", "DISABLED"
1433
1434
  # resp.directories[0].selfservice_permissions.increase_volume_size #=> String, one of "ENABLED", "DISABLED"
@@ -2076,6 +2077,7 @@ module Aws::WorkSpaces
2076
2077
  # device_type_android: "ALLOW", # accepts ALLOW, DENY
2077
2078
  # device_type_chrome_os: "ALLOW", # accepts ALLOW, DENY
2078
2079
  # device_type_zero_client: "ALLOW", # accepts ALLOW, DENY
2080
+ # device_type_linux: "ALLOW", # accepts ALLOW, DENY
2079
2081
  # },
2080
2082
  # })
2081
2083
  #
@@ -2769,7 +2771,7 @@ module Aws::WorkSpaces
2769
2771
  params: params,
2770
2772
  config: config)
2771
2773
  context[:gem_name] = 'aws-sdk-workspaces'
2772
- context[:gem_version] = '1.52.0'
2774
+ context[:gem_version] = '1.53.0'
2773
2775
  Seahorse::Client::Request.new(handlers, context)
2774
2776
  end
2775
2777
 
@@ -893,6 +893,7 @@ module Aws::WorkSpaces
893
893
  WorkspaceAccessProperties.add_member(:device_type_android, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeAndroid"))
894
894
  WorkspaceAccessProperties.add_member(:device_type_chrome_os, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeChromeOs"))
895
895
  WorkspaceAccessProperties.add_member(:device_type_zero_client, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeZeroClient"))
896
+ WorkspaceAccessProperties.add_member(:device_type_linux, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeLinux"))
896
897
  WorkspaceAccessProperties.struct_class = Types::WorkspaceAccessProperties
897
898
 
898
899
  WorkspaceBundle.add_member(:bundle_id, Shapes::ShapeRef.new(shape: BundleId, location_name: "BundleId"))
@@ -603,7 +603,7 @@ module Aws::WorkSpaces
603
603
  # @!attribute [rw] tags
604
604
  # The tags associated with the bundle.
605
605
  #
606
- # <note markdown="1"> To add tags at the same time that you're creating the bundle, you
606
+ # <note markdown="1"> To add tags at the same time when you're creating the bundle, you
607
607
  # must create an IAM policy that grants your IAM user permissions to
608
608
  # use `workspaces:CreateTags`.
609
609
  #
@@ -2095,6 +2095,7 @@ module Aws::WorkSpaces
2095
2095
  # device_type_android: "ALLOW", # accepts ALLOW, DENY
2096
2096
  # device_type_chrome_os: "ALLOW", # accepts ALLOW, DENY
2097
2097
  # device_type_zero_client: "ALLOW", # accepts ALLOW, DENY
2098
+ # device_type_linux: "ALLOW", # accepts ALLOW, DENY
2098
2099
  # },
2099
2100
  # }
2100
2101
  #
@@ -3205,6 +3206,7 @@ module Aws::WorkSpaces
3205
3206
  # device_type_android: "ALLOW", # accepts ALLOW, DENY
3206
3207
  # device_type_chrome_os: "ALLOW", # accepts ALLOW, DENY
3207
3208
  # device_type_zero_client: "ALLOW", # accepts ALLOW, DENY
3209
+ # device_type_linux: "ALLOW", # accepts ALLOW, DENY
3208
3210
  # }
3209
3211
  #
3210
3212
  # @!attribute [rw] device_type_windows
@@ -3256,6 +3258,11 @@ module Aws::WorkSpaces
3256
3258
  # WorkSpaces.
3257
3259
  # @return [String]
3258
3260
  #
3261
+ # @!attribute [rw] device_type_linux
3262
+ # Indicates whether users can use Linux clients to access their
3263
+ # WorkSpaces.
3264
+ # @return [String]
3265
+ #
3259
3266
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceAccessProperties AWS API Documentation
3260
3267
  #
3261
3268
  class WorkspaceAccessProperties < Struct.new(
@@ -3265,7 +3272,8 @@ module Aws::WorkSpaces
3265
3272
  :device_type_ios,
3266
3273
  :device_type_android,
3267
3274
  :device_type_chrome_os,
3268
- :device_type_zero_client)
3275
+ :device_type_zero_client,
3276
+ :device_type_linux)
3269
3277
  SENSITIVE = []
3270
3278
  include Aws::Structure
3271
3279
  end
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.52.0
4
+ version: 1.53.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: 2021-03-12 00:00:00.000000000 Z
11
+ date: 2021-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-workspaces
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-workspaces/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspaces
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspaces/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - Amazon WorkSpaces