google-apis-gkeonprem_v1 0.28.0 → 0.30.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: 65327df025f21594037746090cf98e380900108203bd6e6114a94fd4c68d8fc3
4
- data.tar.gz: f9d15d037e2fba6e3289fdf1c8673a410aadbc82edbefd0c817109baccb2a777
3
+ metadata.gz: a5d3f5daa12703b923ce4d8e7a2118e6d74e5c44b123d7896fce22b217396639
4
+ data.tar.gz: 719de69a52c58f7ca3b2747f516146b6549b57b229f0d953c4ac08c010e5233d
5
5
  SHA512:
6
- metadata.gz: 28a518209b374e48ab20e835d600f1f49db918ba26ea6f2c67db98965bded67c16b4596636d05385185251d487e1bf741ddd412c397d0054b4408d35de1445cc
7
- data.tar.gz: f16ff210351d5cae678dc380d13d7c22894a177b5f05c420ead97b2b157032b27e62b88c71006c59f8ebc1cc539a05e6fe687737c787920f16a76c121732d785
6
+ metadata.gz: cc442ad82ae7e5668c0cdd4ffe77fd31096e8443f75869d38ae8b17fa34d2ebcefe308abd2f6185043a152dc9088cf8dc0ee1c9878e6d0524e3ebca9e4fa41b4
7
+ data.tar.gz: 13975d039f3c409de3c388b81cc0e4cfb2b7ed8c118b8bd9cd6b46a291f4bd4018b0e112f1e6e79f520dea9bf1b36a73119527e6974353d985c73c47a5e52a98
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-gkeonprem_v1
2
2
 
3
+ ### v0.30.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250606
6
+
7
+ ### v0.29.0 (2025-05-25)
8
+
9
+ * Regenerated from discovery document revision 20250519
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.28.0 (2025-05-04)
4
13
 
5
14
  * Regenerated from discovery document revision 20250423
@@ -2335,6 +2335,11 @@ module Google
2335
2335
  # @return [String]
2336
2336
  attr_accessor :local_name
2337
2337
 
2338
+ # Optional. The namespace of the cluster.
2339
+ # Corresponds to the JSON property `localNamespace`
2340
+ # @return [String]
2341
+ attr_accessor :local_namespace
2342
+
2338
2343
  def initialize(**args)
2339
2344
  update!(**args)
2340
2345
  end
@@ -2344,6 +2349,7 @@ module Google
2344
2349
  @admin_cluster_membership = args[:admin_cluster_membership] if args.key?(:admin_cluster_membership)
2345
2350
  @bare_metal_cluster_id = args[:bare_metal_cluster_id] if args.key?(:bare_metal_cluster_id)
2346
2351
  @local_name = args[:local_name] if args.key?(:local_name)
2352
+ @local_namespace = args[:local_namespace] if args.key?(:local_namespace)
2347
2353
  end
2348
2354
  end
2349
2355
 
@@ -3892,6 +3898,12 @@ module Google
3892
3898
  # @return [Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig]
3893
3899
  attr_accessor :prepared_secrets
3894
3900
 
3901
+ # VmwareAdminPrivateRegistryConfig represents configuration for admin cluster
3902
+ # registry.
3903
+ # Corresponds to the JSON property `privateRegistryConfig`
3904
+ # @return [Google::Apis::GkeonpremV1::VmwareAdminPrivateRegistryConfig]
3905
+ attr_accessor :private_registry_config
3906
+
3895
3907
  # Output only. If set, there are currently changes in flight to the VMware admin
3896
3908
  # cluster.
3897
3909
  # Corresponds to the JSON property `reconciling`
@@ -3958,6 +3970,7 @@ module Google
3958
3970
  @on_prem_version = args[:on_prem_version] if args.key?(:on_prem_version)
3959
3971
  @platform_config = args[:platform_config] if args.key?(:platform_config)
3960
3972
  @prepared_secrets = args[:prepared_secrets] if args.key?(:prepared_secrets)
3973
+ @private_registry_config = args[:private_registry_config] if args.key?(:private_registry_config)
3961
3974
  @reconciling = args[:reconciling] if args.key?(:reconciling)
3962
3975
  @state = args[:state] if args.key?(:state)
3963
3976
  @status = args[:status] if args.key?(:status)
@@ -4267,6 +4280,35 @@ module Google
4267
4280
  end
4268
4281
  end
4269
4282
 
4283
+ # VmwareAdminPrivateRegistryConfig represents configuration for admin cluster
4284
+ # registry.
4285
+ class VmwareAdminPrivateRegistryConfig
4286
+ include Google::Apis::Core::Hashable
4287
+
4288
+ # The registry address.
4289
+ # Corresponds to the JSON property `address`
4290
+ # @return [String]
4291
+ attr_accessor :address
4292
+
4293
+ # When the container runtime pulls an image from private registry, the registry
4294
+ # must prove its identity by presenting a certificate. The registry's
4295
+ # certificate is signed by a certificate authority (CA). The container runtime
4296
+ # uses the CA's certificate to validate the registry's certificate.
4297
+ # Corresponds to the JSON property `caCert`
4298
+ # @return [String]
4299
+ attr_accessor :ca_cert
4300
+
4301
+ def initialize(**args)
4302
+ update!(**args)
4303
+ end
4304
+
4305
+ # Update properties of this object
4306
+ def update!(**args)
4307
+ @address = args[:address] if args.key?(:address)
4308
+ @ca_cert = args[:ca_cert] if args.key?(:ca_cert)
4309
+ end
4310
+ end
4311
+
4270
4312
  # VmwareSeesawConfig represents configuration parameters for an already existing
4271
4313
  # Seesaw load balancer. IMPORTANT: Please note that the Anthos On-Prem API will
4272
4314
  # not generate or update Seesaw configurations it can only bind a pre-existing
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkeonpremV1
18
18
  # Version of the google-apis-gkeonprem_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250423"
25
+ REVISION = "20250606"
26
26
  end
27
27
  end
28
28
  end
@@ -736,6 +736,12 @@ module Google
736
736
  include Google::Apis::Core::JsonObjectSupport
737
737
  end
738
738
 
739
+ class VmwareAdminPrivateRegistryConfig
740
+ class Representation < Google::Apis::Core::JsonRepresentation; end
741
+
742
+ include Google::Apis::Core::JsonObjectSupport
743
+ end
744
+
739
745
  class VmwareAdminSeesawConfig
740
746
  class Representation < Google::Apis::Core::JsonRepresentation; end
741
747
 
@@ -1616,6 +1622,7 @@ module Google
1616
1622
  property :admin_cluster_membership, as: 'adminClusterMembership'
1617
1623
  property :bare_metal_cluster_id, as: 'bareMetalClusterId'
1618
1624
  property :local_name, as: 'localName'
1625
+ property :local_namespace, as: 'localNamespace'
1619
1626
  end
1620
1627
  end
1621
1628
 
@@ -2036,6 +2043,8 @@ module Google
2036
2043
 
2037
2044
  property :prepared_secrets, as: 'preparedSecrets', class: Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig, decorator: Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig::Representation
2038
2045
 
2046
+ property :private_registry_config, as: 'privateRegistryConfig', class: Google::Apis::GkeonpremV1::VmwareAdminPrivateRegistryConfig, decorator: Google::Apis::GkeonpremV1::VmwareAdminPrivateRegistryConfig::Representation
2047
+
2039
2048
  property :reconciling, as: 'reconciling'
2040
2049
  property :state, as: 'state'
2041
2050
  property :status, as: 'status', class: Google::Apis::GkeonpremV1::ResourceStatus, decorator: Google::Apis::GkeonpremV1::ResourceStatus::Representation
@@ -2133,6 +2142,14 @@ module Google
2133
2142
  end
2134
2143
  end
2135
2144
 
2145
+ class VmwareAdminPrivateRegistryConfig
2146
+ # @private
2147
+ class Representation < Google::Apis::Core::JsonRepresentation
2148
+ property :address, as: 'address'
2149
+ property :ca_cert, as: 'caCert'
2150
+ end
2151
+ end
2152
+
2136
2153
  class VmwareAdminSeesawConfig
2137
2154
  # @private
2138
2155
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2213,6 +2213,13 @@ module Google
2213
2213
  # The current etag of the VMware admin cluster. If an etag is provided and does
2214
2214
  # not match the current etag of the cluster, deletion will be blocked and an
2215
2215
  # ABORTED error will be returned.
2216
+ # @param [Boolean] ignore_errors
2217
+ # Optional. If set to true, the unenrollment of a vmware admin cluster resource
2218
+ # will succeed even if errors occur during unenrollment. This parameter can be
2219
+ # used when you want to unenroll admin cluster resource and the on-prem admin
2220
+ # cluster is disconnected / unreachable. WARNING: Using this parameter when your
2221
+ # admin cluster still exists may result in a deleted GCP admin cluster but
2222
+ # existing resourcelink in on-prem admin cluster and membership.
2216
2223
  # @param [Boolean] validate_only
2217
2224
  # Validate the request without actually doing any updates.
2218
2225
  # @param [String] fields
@@ -2232,13 +2239,14 @@ module Google
2232
2239
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2233
2240
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2234
2241
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2235
- def unenroll_project_location_vmware_admin_cluster(name, allow_missing: nil, etag: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2242
+ def unenroll_project_location_vmware_admin_cluster(name, allow_missing: nil, etag: nil, ignore_errors: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2236
2243
  command = make_simple_command(:delete, 'v1/{+name}:unenroll', options)
2237
2244
  command.response_representation = Google::Apis::GkeonpremV1::Operation::Representation
2238
2245
  command.response_class = Google::Apis::GkeonpremV1::Operation
2239
2246
  command.params['name'] = name unless name.nil?
2240
2247
  command.query['allowMissing'] = allow_missing unless allow_missing.nil?
2241
2248
  command.query['etag'] = etag unless etag.nil?
2249
+ command.query['ignoreErrors'] = ignore_errors unless ignore_errors.nil?
2242
2250
  command.query['validateOnly'] = validate_only unless validate_only.nil?
2243
2251
  command.query['fields'] = fields unless fields.nil?
2244
2252
  command.query['quotaUser'] = quota_user unless quota_user.nil?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkeonprem_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.30.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-gkeonprem_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.28.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.30.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkeonprem_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for GKE On-Prem API V1
79
79
  test_files: []