Skip to content

Commit

Permalink
feat: Automated regeneration of run v2 client (#20341)
Browse files Browse the repository at this point in the history
Auto-created at 2024-10-06 09:39:25 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Oct 6, 2024
1 parent 6256387 commit 5a1d6ba
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -289999,6 +289999,7 @@
"/run:v2/GoogleCloudRunV2Service/expireTime": expire_time
"/run:v2/GoogleCloudRunV2Service/generation": generation
"/run:v2/GoogleCloudRunV2Service/ingress": ingress
"/run:v2/GoogleCloudRunV2Service/invokerIamDisabled": invoker_iam_disabled
"/run:v2/GoogleCloudRunV2Service/labels": labels
"/run:v2/GoogleCloudRunV2Service/labels/label": label
"/run:v2/GoogleCloudRunV2Service/lastModifier": last_modifier
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-run_v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-run_v2

### v0.75.0 (2024-10-06)

* Regenerated from discovery document revision 20240927

### v0.74.0 (2024-09-22)

* Regenerated from discovery document revision 20240916
Expand Down
10 changes: 9 additions & 1 deletion generated/google-apis-run_v2/lib/google/apis/run_v2/classes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2286,6 +2286,13 @@ class GoogleCloudRunV2Service
# @return [String]
attr_accessor :ingress

# Optional. Disables IAM permission check for run.routes.invoke for callers of
# this service. This setting should not be used with external ingress.
# Corresponds to the JSON property `invokerIamDisabled`
# @return [Boolean]
attr_accessor :invoker_iam_disabled
alias_method :invoker_iam_disabled?, :invoker_iam_disabled

# Optional. Unstructured key value map that can be used to organize and
# categorize objects. User-provided labels are shared with Google's billing
# system, so they can be used to filter, or break down billing charges by team,
Expand Down Expand Up @@ -2446,6 +2453,7 @@ def update!(**args)
@expire_time = args[:expire_time] if args.key?(:expire_time)
@generation = args[:generation] if args.key?(:generation)
@ingress = args[:ingress] if args.key?(:ingress)
@invoker_iam_disabled = args[:invoker_iam_disabled] if args.key?(:invoker_iam_disabled)
@labels = args[:labels] if args.key?(:labels)
@last_modifier = args[:last_modifier] if args.key?(:last_modifier)
@latest_created_revision = args[:latest_created_revision] if args.key?(:latest_created_revision)
Expand Down Expand Up @@ -2495,7 +2503,7 @@ class GoogleCloudRunV2ServiceScaling

# Optional. total min instances for the service. This number of instances is
# divided among all revisions with specified traffic based on the percent of
# traffic they are receiving. (BETA)
# traffic they are receiving.
# Corresponds to the JSON property `minInstanceCount`
# @return [Fixnum]
attr_accessor :min_instance_count
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module RunV2
# Version of the google-apis-run_v2 gem
GEM_VERSION = "0.74.0"
GEM_VERSION = "0.75.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.1"

# Revision of the discovery document this client was generated from
REVISION = "20240916"
REVISION = "20240927"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1232,6 +1232,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :expire_time, as: 'expireTime'
property :generation, :numeric_string => true, as: 'generation'
property :ingress, as: 'ingress'
property :invoker_iam_disabled, as: 'invokerIamDisabled'
hash :labels, as: 'labels'
property :last_modifier, as: 'lastModifier'
property :latest_created_revision, as: 'latestCreatedRevision'
Expand Down

0 comments on commit 5a1d6ba

Please sign in to comment.