aws-sdk-workspaces 1.131.0 → 1.132.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f15c430736b6f7c9bbc7f3d7ccf9d810fa6a5e3fee87c5caca2cd6a660201f48
4
- data.tar.gz: 7cfc6cfa22276ec49c0ceb806c9bbe6af689cfe3b0787e318e968ca4bf9f1dcf
3
+ metadata.gz: 6c544343c4ff56b0ace2ac7f0f7fc7802aaac61df5bb803e05295ba3ade9da06
4
+ data.tar.gz: 369d3154ea09c787816a27574bb142d2c7257e7ff6678bdb9129ee46cabbbdaf
5
5
  SHA512:
6
- metadata.gz: e9f12da4ceddccf753abf455cbad099c4d8c9c4501b3d81a418c0eb4f2a02aa9489277c27ad6de38f1da62c041cf058e5064465c4e90a7413c06487c5c3dbe5b
7
- data.tar.gz: 51d447a1129ef3dbe0c55e0d27dc11dc1f98b78798b27434793e22fb743b7b015f08a8aa63f4246ca39691bf668ff4e2219f60b21c8307937b1e5a949775c369
6
+ metadata.gz: f33599316316a5267920c2abf796afe3fb61c39d7c8aee9ff7365ba11148b38879bc3458443b05bddd59a00ba19b77876c7667340532fbdbb266a538cd06aa7b
7
+ data.tar.gz: 7e66c97a37f63837eb4985208a2c53e595d5399a6d3ad096fd37caac9404fbc282c7e19ecd959bcb08912a1a86580882f0073b30a64130eaf187108107df8a5d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.132.0 (2025-03-05)
5
+ ------------------
6
+
7
+ * Feature - Added DeviceTypeWorkSpacesThinClient type to allow users to access their WorkSpaces through a WorkSpaces Thin Client.
8
+
4
9
  1.131.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.131.0
1
+ 1.132.0
@@ -2588,6 +2588,7 @@ module Aws::WorkSpaces
2588
2588
  # resp.directories[0].workspace_access_properties.device_type_chrome_os #=> String, one of "ALLOW", "DENY"
2589
2589
  # resp.directories[0].workspace_access_properties.device_type_zero_client #=> String, one of "ALLOW", "DENY"
2590
2590
  # resp.directories[0].workspace_access_properties.device_type_linux #=> String, one of "ALLOW", "DENY"
2591
+ # resp.directories[0].workspace_access_properties.device_type_work_spaces_thin_client #=> String, one of "ALLOW", "DENY"
2591
2592
  # resp.directories[0].tenancy #=> String, one of "DEDICATED", "SHARED"
2592
2593
  # resp.directories[0].selfservice_permissions.restart_workspace #=> String, one of "ENABLED", "DISABLED"
2593
2594
  # resp.directories[0].selfservice_permissions.increase_volume_size #=> String, one of "ENABLED", "DISABLED"
@@ -3842,6 +3843,7 @@ module Aws::WorkSpaces
3842
3843
  # device_type_chrome_os: "ALLOW", # accepts ALLOW, DENY
3843
3844
  # device_type_zero_client: "ALLOW", # accepts ALLOW, DENY
3844
3845
  # device_type_linux: "ALLOW", # accepts ALLOW, DENY
3846
+ # device_type_work_spaces_thin_client: "ALLOW", # accepts ALLOW, DENY
3845
3847
  # },
3846
3848
  # })
3847
3849
  #
@@ -4850,7 +4852,7 @@ module Aws::WorkSpaces
4850
4852
  tracer: tracer
4851
4853
  )
4852
4854
  context[:gem_name] = 'aws-sdk-workspaces'
4853
- context[:gem_version] = '1.131.0'
4855
+ context[:gem_version] = '1.132.0'
4854
4856
  Seahorse::Client::Request.new(handlers, context)
4855
4857
  end
4856
4858
 
@@ -1745,6 +1745,7 @@ module Aws::WorkSpaces
1745
1745
  WorkspaceAccessProperties.add_member(:device_type_chrome_os, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeChromeOs"))
1746
1746
  WorkspaceAccessProperties.add_member(:device_type_zero_client, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeZeroClient"))
1747
1747
  WorkspaceAccessProperties.add_member(:device_type_linux, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeLinux"))
1748
+ WorkspaceAccessProperties.add_member(:device_type_work_spaces_thin_client, Shapes::ShapeRef.new(shape: AccessPropertyValue, location_name: "DeviceTypeWorkSpacesThinClient"))
1748
1749
  WorkspaceAccessProperties.struct_class = Types::WorkspaceAccessProperties
1749
1750
 
1750
1751
  WorkspaceBundle.add_member(:bundle_id, Shapes::ShapeRef.new(shape: BundleId, location_name: "BundleId"))
@@ -5373,6 +5373,11 @@ module Aws::WorkSpaces
5373
5373
  # WorkSpaces.
5374
5374
  # @return [String]
5375
5375
  #
5376
+ # @!attribute [rw] device_type_work_spaces_thin_client
5377
+ # Indicates whether users can access their WorkSpaces through a
5378
+ # WorkSpaces Thin Client.
5379
+ # @return [String]
5380
+ #
5376
5381
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceAccessProperties AWS API Documentation
5377
5382
  #
5378
5383
  class WorkspaceAccessProperties < Struct.new(
@@ -5383,7 +5388,8 @@ module Aws::WorkSpaces
5383
5388
  :device_type_android,
5384
5389
  :device_type_chrome_os,
5385
5390
  :device_type_zero_client,
5386
- :device_type_linux)
5391
+ :device_type_linux,
5392
+ :device_type_work_spaces_thin_client)
5387
5393
  SENSITIVE = []
5388
5394
  include Aws::Structure
5389
5395
  end
@@ -54,7 +54,7 @@ module Aws::WorkSpaces
54
54
  autoload :EndpointProvider, 'aws-sdk-workspaces/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-workspaces/endpoints'
56
56
 
57
- GEM_VERSION = '1.131.0'
57
+ GEM_VERSION = '1.132.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1074,7 +1074,8 @@ module Aws
1074
1074
  device_type_android: ("ALLOW" | "DENY")?,
1075
1075
  device_type_chrome_os: ("ALLOW" | "DENY")?,
1076
1076
  device_type_zero_client: ("ALLOW" | "DENY")?,
1077
- device_type_linux: ("ALLOW" | "DENY")?
1077
+ device_type_linux: ("ALLOW" | "DENY")?,
1078
+ device_type_work_spaces_thin_client: ("ALLOW" | "DENY")?
1078
1079
  }
1079
1080
  ) -> _ModifyWorkspaceAccessPropertiesResponseSuccess
1080
1081
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyWorkspaceAccessPropertiesResponseSuccess
data/sig/types.rbs CHANGED
@@ -1579,6 +1579,7 @@ module Aws::WorkSpaces
1579
1579
  attr_accessor device_type_chrome_os: ("ALLOW" | "DENY")
1580
1580
  attr_accessor device_type_zero_client: ("ALLOW" | "DENY")
1581
1581
  attr_accessor device_type_linux: ("ALLOW" | "DENY")
1582
+ attr_accessor device_type_work_spaces_thin_client: ("ALLOW" | "DENY")
1582
1583
  SENSITIVE: []
1583
1584
  end
1584
1585
 
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.131.0
4
+ version: 1.132.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core