Skip to content

Commit ad55ca3

Browse files
feat: Automated regeneration of gkeonprem v1 client (googleapis#23407)
Auto-created at 2025-06-15 09:50:10 +0000 using the toys pull request generator.
1 parent c85808b commit ad55ca3

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253743,6 +253743,7 @@
253743253743
"/gkeonprem:v1/gkeonprem.projects.locations.vmwareAdminClusters.unenroll": unenroll_project_location_vmware_admin_cluster
253744253744
"/gkeonprem:v1/gkeonprem.projects.locations.vmwareAdminClusters.unenroll/allowMissing": allow_missing
253745253745
"/gkeonprem:v1/gkeonprem.projects.locations.vmwareAdminClusters.unenroll/etag": etag
253746+
"/gkeonprem:v1/gkeonprem.projects.locations.vmwareAdminClusters.unenroll/ignoreErrors": ignore_errors
253746253747
"/gkeonprem:v1/gkeonprem.projects.locations.vmwareAdminClusters.unenroll/name": name
253747253748
"/gkeonprem:v1/gkeonprem.projects.locations.vmwareAdminClusters.unenroll/validateOnly": validate_only
253748253749
"/gkeonprem:v1/gkeonprem.projects.locations.vmwareClusters.create": create_project_location_vmware_cluster

generated/google-apis-gkeonprem_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-gkeonprem_v1
22

3+
### v0.30.0 (2025-06-15)
4+
5+
* Regenerated from discovery document revision 20250606
6+
37
### v0.29.0 (2025-05-25)
48

59
* Regenerated from discovery document revision 20250519

generated/google-apis-gkeonprem_v1/lib/google/apis/gkeonprem_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module GkeonpremV1
1818
# Version of the google-apis-gkeonprem_v1 gem
19-
GEM_VERSION = "0.29.0"
19+
GEM_VERSION = "0.30.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250519"
25+
REVISION = "20250606"
2626
end
2727
end
2828
end

generated/google-apis-gkeonprem_v1/lib/google/apis/gkeonprem_v1/service.rb

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2213,6 +2213,13 @@ def test_vmware_admin_cluster_iam_permissions(resource, test_iam_permissions_req
22132213
# The current etag of the VMware admin cluster. If an etag is provided and does
22142214
# not match the current etag of the cluster, deletion will be blocked and an
22152215
# 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.
22162223
# @param [Boolean] validate_only
22172224
# Validate the request without actually doing any updates.
22182225
# @param [String] fields
@@ -2232,13 +2239,14 @@ def test_vmware_admin_cluster_iam_permissions(resource, test_iam_permissions_req
22322239
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22332240
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22342241
# @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)
22362243
command = make_simple_command(:delete, 'v1/{+name}:unenroll', options)
22372244
command.response_representation = Google::Apis::GkeonpremV1::Operation::Representation
22382245
command.response_class = Google::Apis::GkeonpremV1::Operation
22392246
command.params['name'] = name unless name.nil?
22402247
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
22412248
command.query['etag'] = etag unless etag.nil?
2249+
command.query['ignoreErrors'] = ignore_errors unless ignore_errors.nil?
22422250
command.query['validateOnly'] = validate_only unless validate_only.nil?
22432251
command.query['fields'] = fields unless fields.nil?
22442252
command.query['quotaUser'] = quota_user unless quota_user.nil?

0 commit comments

Comments
 (0)