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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +3 -1
- data/lib/aws-sdk-workspaces/client_api.rb +1 -0
- data/lib/aws-sdk-workspaces/types.rb +7 -1
- data/lib/aws-sdk-workspaces.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c544343c4ff56b0ace2ac7f0f7fc7802aaac61df5bb803e05295ba3ade9da06
|
4
|
+
data.tar.gz: 369d3154ea09c787816a27574bb142d2c7257e7ff6678bdb9129ee46cabbbdaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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
|
data/lib/aws-sdk-workspaces.rb
CHANGED
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.
|
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-
|
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
|