aws-sdk-workspacesinstances 1.19.0 → 1.20.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: 3c935b311eee2cf0b15f05580f8e7c464ad4d8500951f8f909ac65aa256ffbb2
4
- data.tar.gz: 0eac0982e5e23c1a71383547be350b324484cd4ea077c631f33958e39b327158
3
+ metadata.gz: b019d838a9f27989c813a085f9766f5f61d68c5717b33aa6f986a846df064f6e
4
+ data.tar.gz: 7112c37443bbd92a901478b1aa620b857ad2e4bfb3705f3a7ade8c45f595d52c
5
5
  SHA512:
6
- metadata.gz: 74b4caf10aa088b098de1ff39a851721b13d14f84ae08ebb10e503a7e5faf63644b02eb07c12ddcddd1783fd8ed1569f02e48ce3ab03bc5ac0300ffb70b9dbb8
7
- data.tar.gz: 8ff5759a5d374f97b5093e28764f842735500c14040c534dfa14e81889d66cc0917446a8d928f5a4a7433ba4ea60e16837d6faa9ac130ef752292115f70e9a85
6
+ metadata.gz: bc349e0d4e41d3c78d6a1c1dafa75fde63b07a19804d524ada2b5eeddd09e81187d598d68f05cffb3b39dc067c457501ca9c2b8265ef58172cab661da27991de
7
+ data.tar.gz: c6c5bb2575d609cf18588a99a660b18b0d4073cd181e08bdd2ff912e11d5251154bdccf131ae0de8bf38eebb2a1b67545a237661d936e4d0f3cb2995eb817569
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2026-08-31)
5
+ ------------------
6
+
7
+ * Feature - Amazon WorkSpaces Core managed instances now support nested virtualization. Customers can enable nested virtualization with supported instance types at launch via CpuOptions.NestedVirtualization in CreateWorkspaceInstance to run hypervisors and virtual machines inside their WorkSpaces Instance.
8
+
4
9
  1.19.0 (2026-07-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -652,6 +652,7 @@ module Aws::WorkspacesInstances
652
652
  # amd_sev_snp: "enabled", # accepts enabled, disabled
653
653
  # core_count: 1,
654
654
  # threads_per_core: 1,
655
+ # nested_virtualization: "enabled", # accepts enabled, disabled
655
656
  # },
656
657
  # credit_specification: {
657
658
  # cpu_credits: "standard", # accepts standard, unlimited
@@ -1180,7 +1181,7 @@ module Aws::WorkspacesInstances
1180
1181
  tracer: tracer
1181
1182
  )
1182
1183
  context[:gem_name] = 'aws-sdk-workspacesinstances'
1183
- context[:gem_version] = '1.19.0'
1184
+ context[:gem_version] = '1.20.0'
1184
1185
  Seahorse::Client::Request.new(handlers, context)
1185
1186
  end
1186
1187
 
@@ -107,6 +107,7 @@ module Aws::WorkspacesInstances
107
107
  ManagedInstanceRequest = Shapes::StructureShape.new(name: 'ManagedInstanceRequest')
108
108
  MarketTypeEnum = Shapes::StringShape.new(name: 'MarketTypeEnum')
109
109
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
110
+ NestedVirtualizationEnum = Shapes::StringShape.new(name: 'NestedVirtualizationEnum')
110
111
  NetworkInterfaceId = Shapes::StringShape.new(name: 'NetworkInterfaceId')
111
112
  NetworkInterfaces = Shapes::ListShape.new(name: 'NetworkInterfaces')
112
113
  NextToken = Shapes::StringShape.new(name: 'NextToken')
@@ -209,6 +210,7 @@ module Aws::WorkspacesInstances
209
210
  CpuOptionsRequest.add_member(:amd_sev_snp, Shapes::ShapeRef.new(shape: AmdSevSnpEnum, location_name: "AmdSevSnp"))
210
211
  CpuOptionsRequest.add_member(:core_count, Shapes::ShapeRef.new(shape: NonNegativeInteger, location_name: "CoreCount"))
211
212
  CpuOptionsRequest.add_member(:threads_per_core, Shapes::ShapeRef.new(shape: NonNegativeInteger, location_name: "ThreadsPerCore"))
213
+ CpuOptionsRequest.add_member(:nested_virtualization, Shapes::ShapeRef.new(shape: NestedVirtualizationEnum, location_name: "NestedVirtualization"))
212
214
  CpuOptionsRequest.struct_class = Types::CpuOptionsRequest
213
215
 
214
216
  CreateVolumeRequest.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String64, required: true, location_name: "AvailabilityZone"))
@@ -200,12 +200,17 @@ module Aws::WorkspacesInstances
200
200
  # Number of threads per CPU core.
201
201
  # @return [Integer]
202
202
  #
203
+ # @!attribute [rw] nested_virtualization
204
+ # Specifies whether to enable or disable nested virtualization.
205
+ # @return [String]
206
+ #
203
207
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-instances-2022-07-26/CpuOptionsRequest AWS API Documentation
204
208
  #
205
209
  class CpuOptionsRequest < Struct.new(
206
210
  :amd_sev_snp,
207
211
  :core_count,
208
- :threads_per_core)
212
+ :threads_per_core,
213
+ :nested_virtualization)
209
214
  SENSITIVE = []
210
215
  include Aws::Structure
211
216
  end
@@ -55,7 +55,7 @@ module Aws::WorkspacesInstances
55
55
  autoload :EndpointProvider, 'aws-sdk-workspacesinstances/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-workspacesinstances/endpoints'
57
57
 
58
- GEM_VERSION = '1.19.0'
58
+ GEM_VERSION = '1.20.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -158,7 +158,8 @@ module Aws
158
158
  cpu_options: {
159
159
  amd_sev_snp: ("enabled" | "disabled")?,
160
160
  core_count: ::Integer?,
161
- threads_per_core: ::Integer?
161
+ threads_per_core: ::Integer?,
162
+ nested_virtualization: ("enabled" | "disabled")?
162
163
  }?,
163
164
  credit_specification: {
164
165
  cpu_credits: ("standard" | "unlimited")?
data/sig/types.rbs CHANGED
@@ -66,6 +66,7 @@ module Aws::WorkspacesInstances
66
66
  attr_accessor amd_sev_snp: ("enabled" | "disabled")
67
67
  attr_accessor core_count: ::Integer
68
68
  attr_accessor threads_per_core: ::Integer
69
+ attr_accessor nested_virtualization: ("enabled" | "disabled")
69
70
  SENSITIVE: []
70
71
  end
71
72
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspacesinstances
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services