aws-sdk-workspaces 1.109.0 → 1.110.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: b179a92a5b16af1fb0106442542c0a46640f33bee5a2c16e11f7435e15fae2bf
4
- data.tar.gz: 037547e1231d5703a9a9279b24905aa5c807c048a9aa0496668365dedd0d3624
3
+ metadata.gz: d0726456f9101a3a9b7967d84abd45af4c064d4cda85edb410537cd6bad806ef
4
+ data.tar.gz: 48210d00c74d52ec3e673f872f27e8a21ca1990f5a5a2ecd76df7803b9eea07e
5
5
  SHA512:
6
- metadata.gz: e6c76b9986334e93131280764f07c7a4be42c2fcc610fa1dba52a0b5caea210920563e406f96d9014bb845c35f28d437d65c62bbf126daaaec8ae5a79dbd13b0
7
- data.tar.gz: 2fe8594fb293df0c87727c6d2ffdcbd560d7231615b03adb6b7cf772d029637434849d5965fe52ede985b899d25f572f09e5a080e7256629987769b2bd19e28e
6
+ metadata.gz: d21c314d390a824e5871c4c33d8891d4653bffaede6c4279fad5d62eae0ac6dced20148ac9c3ceae50b5e01c6ae19afcf320ee9afb2de57efebae61a106a9441
7
+ data.tar.gz: d103740bdbd462832c415ab51cb88e8307702596962ad89f769595eacafac3f04b60024d72dc3900b2cccf4308e24b33414d35d438edcf9c820d255c19df1ea4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.110.0 (2024-07-03)
5
+ ------------------
6
+
7
+ * Feature - Fix create workspace bundle RootStorage/UserStorage to accept non null values
8
+
4
9
  1.109.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.109.0
1
+ 1.110.0
@@ -1091,10 +1091,10 @@ module Aws::WorkSpaces
1091
1091
  # name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
1092
1092
  # },
1093
1093
  # user_storage: { # required
1094
- # capacity: "NonEmptyString",
1094
+ # capacity: "NonEmptyString", # required
1095
1095
  # },
1096
1096
  # root_storage: {
1097
- # capacity: "NonEmptyString",
1097
+ # capacity: "NonEmptyString", # required
1098
1098
  # },
1099
1099
  # tags: [
1100
1100
  # {
@@ -4746,7 +4746,7 @@ module Aws::WorkSpaces
4746
4746
  params: params,
4747
4747
  config: config)
4748
4748
  context[:gem_name] = 'aws-sdk-workspaces'
4749
- context[:gem_version] = '1.109.0'
4749
+ context[:gem_version] = '1.110.0'
4750
4750
  Seahorse::Client::Request.new(handlers, context)
4751
4751
  end
4752
4752
 
@@ -1470,7 +1470,7 @@ module Aws::WorkSpaces
1470
1470
 
1471
1471
  RevokeIpRulesResult.struct_class = Types::RevokeIpRulesResult
1472
1472
 
1473
- RootStorage.add_member(:capacity, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Capacity"))
1473
+ RootStorage.add_member(:capacity, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "Capacity"))
1474
1474
  RootStorage.struct_class = Types::RootStorage
1475
1475
 
1476
1476
  SamlProperties.add_member(:status, Shapes::ShapeRef.new(shape: SamlStatusEnum, location_name: "Status"))
@@ -1647,7 +1647,7 @@ module Aws::WorkSpaces
1647
1647
 
1648
1648
  UserSettings.member = Shapes::ShapeRef.new(shape: UserSetting)
1649
1649
 
1650
- UserStorage.add_member(:capacity, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Capacity"))
1650
+ UserStorage.add_member(:capacity, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "Capacity"))
1651
1651
  UserStorage.struct_class = Types::UserStorage
1652
1652
 
1653
1653
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspaces/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpaces
54
54
 
55
- GEM_VERSION = '1.109.0'
55
+ GEM_VERSION = '1.110.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -284,10 +284,10 @@ module Aws
284
284
  name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?
285
285
  },
286
286
  user_storage: {
287
- capacity: ::String?
287
+ capacity: ::String
288
288
  },
289
289
  ?root_storage: {
290
- capacity: ::String?
290
+ capacity: ::String
291
291
  },
292
292
  ?tags: Array[
293
293
  {
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.109.0
4
+ version: 1.110.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: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core