google-apis-vmwareengine_v1 0.19.0 → 0.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: 3adad58cd0e9b3248dd346fcc744a2ca96fc6507b0a20e47330eb18a5f316fbf
4
- data.tar.gz: 36486c4796cebe7b3b421014f34e0f35303af49fcad67f72debb9bfac70fa767
3
+ metadata.gz: ce4bdecda20533ff14f8f09a635a489b6a5112808d7e92ba33cbb86aca339d3b
4
+ data.tar.gz: ba8ab0273d86e825018594eb7178ff54b60caa1e9459fb3fb4c0a39bc12d20d5
5
5
  SHA512:
6
- metadata.gz: 32e4351d866d8a4fb2a19375825d5e63a0bebe16f73238cc8ae190ca9615438476c6029973950a35dc1b30397cc9708e2547a81195d06857a41ee8618f4c8b14
7
- data.tar.gz: 7bd99dbf6c026b6f63ce50d80619aee53557c6f91c13d95bbce94d039e505181d25e0cad6649c6fd729ff8c025ae2145b2de3d387a9055cf4e637e353ccbe819
6
+ metadata.gz: 44abf45e0d10b6609e2357d0ae6a02abb778d05dce08e7f0b7487135555a3cc20601169535b448857dd5d28bdbbc7fe4fc9fcef5db74045ce35e4a9f08085ccd
7
+ data.tar.gz: 640eca345ff45f7264546293cda787098ddd6b0cca008b3e290d0944970960f96bfe2d141fd911d2fe0970bd13779793157fe0a1a2c019e606491e58b9a68f36
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-vmwareengine_v1
2
2
 
3
+ ### v0.20.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260608
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.19.0 (2026-05-31)
4
9
 
5
10
  * Regenerated from discovery document revision 20260518
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/solutions/vmware-as-a-servi
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -843,6 +843,36 @@ module Google
843
843
  end
844
844
  end
845
845
 
846
+ # Encryption configuration for a private cloud.
847
+ class EncryptionConfig
848
+ include Google::Apis::Core::Hashable
849
+
850
+ # Optional. The resource name of the Cloud KMS key to be used for CMEK
851
+ # encryption. The format of this field is `projects/`project`/locations/`
852
+ # location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``. The key must be in the
853
+ # same region as the private cloud. This key is used for wrapping the key-
854
+ # encrypting key of vSAN clusters. This field must be provided when `type` is `
855
+ # CMEK` or `LEGACY_CMEK`, and must not be set when `type` is `OTHER`.
856
+ # Corresponds to the JSON property `cryptoKeyName`
857
+ # @return [String]
858
+ attr_accessor :crypto_key_name
859
+
860
+ # Required. The encryption type of the private cloud.
861
+ # Corresponds to the JSON property `type`
862
+ # @return [String]
863
+ attr_accessor :type
864
+
865
+ def initialize(**args)
866
+ update!(**args)
867
+ end
868
+
869
+ # Update properties of this object
870
+ def update!(**args)
871
+ @crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
872
+ @type = args[:type] if args.key?(:type)
873
+ end
874
+ end
875
+
846
876
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
847
877
  # CEL is a C-like expression language. The syntax and semantics of CEL are
848
878
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -3247,6 +3277,11 @@ module Google
3247
3277
  # @return [String]
3248
3278
  attr_accessor :description
3249
3279
 
3280
+ # Encryption configuration for a private cloud.
3281
+ # Corresponds to the JSON property `encryptionConfig`
3282
+ # @return [Google::Apis::VmwareengineV1::EncryptionConfig]
3283
+ attr_accessor :encryption_config
3284
+
3250
3285
  # Output only. Time when the resource will be irreversibly deleted.
3251
3286
  # Corresponds to the JSON property `expireTime`
3252
3287
  # @return [String]
@@ -3316,6 +3351,7 @@ module Google
3316
3351
  @create_time = args[:create_time] if args.key?(:create_time)
3317
3352
  @delete_time = args[:delete_time] if args.key?(:delete_time)
3318
3353
  @description = args[:description] if args.key?(:description)
3354
+ @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
3319
3355
  @expire_time = args[:expire_time] if args.key?(:expire_time)
3320
3356
  @hcx = args[:hcx] if args.key?(:hcx)
3321
3357
  @management_cluster = args[:management_cluster] if args.key?(:management_cluster)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VmwareengineV1
18
18
  # Version of the google-apis-vmwareengine_v1 gem
19
- GEM_VERSION = "0.19.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260518"
25
+ REVISION = "20260608"
26
26
  end
27
27
  end
28
28
  end
@@ -118,6 +118,12 @@ module Google
118
118
  include Google::Apis::Core::JsonObjectSupport
119
119
  end
120
120
 
121
+ class EncryptionConfig
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
121
127
  class Expr
122
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
129
 
@@ -776,6 +782,14 @@ module Google
776
782
  end
777
783
  end
778
784
 
785
+ class EncryptionConfig
786
+ # @private
787
+ class Representation < Google::Apis::Core::JsonRepresentation
788
+ property :crypto_key_name, as: 'cryptoKeyName'
789
+ property :type, as: 'type'
790
+ end
791
+ end
792
+
779
793
  class Expr
780
794
  # @private
781
795
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1364,6 +1378,8 @@ module Google
1364
1378
  property :create_time, as: 'createTime'
1365
1379
  property :delete_time, as: 'deleteTime'
1366
1380
  property :description, as: 'description'
1381
+ property :encryption_config, as: 'encryptionConfig', class: Google::Apis::VmwareengineV1::EncryptionConfig, decorator: Google::Apis::VmwareengineV1::EncryptionConfig::Representation
1382
+
1367
1383
  property :expire_time, as: 'expireTime'
1368
1384
  property :hcx, as: 'hcx', class: Google::Apis::VmwareengineV1::Hcx, decorator: Google::Apis::VmwareengineV1::Hcx::Representation
1369
1385
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vmwareengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmwareengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmwareengine_v1/v0.19.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmwareengine_v1/v0.20.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmwareengine_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="