Skip to content

feat: Automated regeneration of eventarc v1 client #23585

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236499,6 +236499,7 @@
"/eventarc:v1/Pipeline/mediations/mediation": mediation
"/eventarc:v1/Pipeline/name": name
"/eventarc:v1/Pipeline/retryPolicy": retry_policy
"/eventarc:v1/Pipeline/satisfiesPzs": satisfies_pzs
"/eventarc:v1/Pipeline/uid": uid
"/eventarc:v1/Pipeline/updateTime": update_time
"/eventarc:v1/Policy": policy
Expand Down
5 changes: 5 additions & 0 deletions generated/google-apis-eventarc_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-eventarc_v1

### v0.65.0 (2025-06-29)

* Regenerated from discovery document revision 20250624
* Regenerated using generator version 0.18.0

### v0.64.0 (2025-05-04)

* Regenerated using generator version 0.17.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2197,6 +2197,13 @@ class Pipeline
# @return [Google::Apis::EventarcV1::GoogleCloudEventarcV1PipelineRetryPolicy]
attr_accessor :retry_policy

# Output only. Whether or not this Pipeline satisfies the requirements of
# physical zone separation
# Corresponds to the JSON property `satisfiesPzs`
# @return [Boolean]
attr_accessor :satisfies_pzs
alias_method :satisfies_pzs?, :satisfies_pzs

# Output only. Server-assigned unique identifier for the Pipeline. The value is
# a UUID4 string and guaranteed to remain unchanged until the resource is
# deleted.
Expand Down Expand Up @@ -2229,6 +2236,7 @@ def update!(**args)
@mediations = args[:mediations] if args.key?(:mediations)
@name = args[:name] if args.key?(:name)
@retry_policy = args[:retry_policy] if args.key?(:retry_policy)
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
@uid = args[:uid] if args.key?(:uid)
@update_time = args[:update_time] if args.key?(:update_time)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module EventarcV1
# Version of the google-apis-eventarc_v1 gem
GEM_VERSION = "0.64.0"
GEM_VERSION = "0.65.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20250411"
REVISION = "20250624"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :name, as: 'name'
property :retry_policy, as: 'retryPolicy', class: Google::Apis::EventarcV1::GoogleCloudEventarcV1PipelineRetryPolicy, decorator: Google::Apis::EventarcV1::GoogleCloudEventarcV1PipelineRetryPolicy::Representation

property :satisfies_pzs, as: 'satisfiesPzs'
property :uid, as: 'uid'
property :update_time, as: 'updateTime'
end
Expand Down