Skip to content

Commit 1130415

Browse files
feat: Automated regeneration of workloadmanager v1 client (googleapis#22210)
Auto-created at 2025-03-23 10:37:46 +0000 using the toys pull request generator.
1 parent f37cc77 commit 1130415

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362465,6 +362465,7 @@
362465362465
"/workloadmanager:v1/workloadmanager.projects.locations.operations.list/pageToken": page_token
362466362466
"/workloadmanager:v1/workloadmanager.projects.locations.rules.list": list_project_location_rules
362467362467
"/workloadmanager:v1/workloadmanager.projects.locations.rules.list/customRulesBucket": custom_rules_bucket
362468+
"/workloadmanager:v1/workloadmanager.projects.locations.rules.list/evaluationType": evaluation_type
362468362469
"/workloadmanager:v1/workloadmanager.projects.locations.rules.list/filter": filter
362469362470
"/workloadmanager:v1/workloadmanager.projects.locations.rules.list/pageSize": page_size
362470362471
"/workloadmanager:v1/workloadmanager.projects.locations.rules.list/pageToken": page_token

generated/google-apis-workloadmanager_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-workloadmanager_v1
22

3+
### v0.32.0 (2025-03-23)
4+
5+
* Regenerated from discovery document revision 20250310
6+
37
### v0.31.0 (2025-03-09)
48

59
* Regenerated from discovery document revision 20250226

generated/google-apis-workloadmanager_v1/lib/google/apis/workloadmanager_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 WorkloadmanagerV1
1818
# Version of the google-apis-workloadmanager_v1 gem
19-
GEM_VERSION = "0.31.0"
19+
GEM_VERSION = "0.32.0"
2020

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

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

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,9 @@ def list_project_location_operations(name, filter: nil, page_size: nil, page_tok
858858
# are global available to all projects and all regions
859859
# @param [String] custom_rules_bucket
860860
# The Cloud Storage bucket name for custom rules.
861+
# @param [String] evaluation_type
862+
# Optional. The evaluation type of the rules will be applied to. The Cloud
863+
# Storage bucket name for custom rules.
861864
# @param [String] filter
862865
# Filter based on primary_category, secondary_category
863866
# @param [Fixnum] page_size
@@ -882,12 +885,13 @@ def list_project_location_operations(name, filter: nil, page_size: nil, page_tok
882885
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
883886
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
884887
# @raise [Google::Apis::AuthorizationError] Authorization is required
885-
def list_project_location_rules(parent, custom_rules_bucket: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
888+
def list_project_location_rules(parent, custom_rules_bucket: nil, evaluation_type: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
886889
command = make_simple_command(:get, 'v1/{+parent}/rules', options)
887890
command.response_representation = Google::Apis::WorkloadmanagerV1::ListRulesResponse::Representation
888891
command.response_class = Google::Apis::WorkloadmanagerV1::ListRulesResponse
889892
command.params['parent'] = parent unless parent.nil?
890893
command.query['customRulesBucket'] = custom_rules_bucket unless custom_rules_bucket.nil?
894+
command.query['evaluationType'] = evaluation_type unless evaluation_type.nil?
891895
command.query['filter'] = filter unless filter.nil?
892896
command.query['pageSize'] = page_size unless page_size.nil?
893897
command.query['pageToken'] = page_token unless page_token.nil?

0 commit comments

Comments
 (0)