google-apis-cloudbuild_v1 0.68.0 → 0.69.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 717aa964697a4ccdabbfd5e9a211abe28d6ce44e912dc93bcb5ed72f77812f34
|
4
|
+
data.tar.gz: 2e3fd26b928106a7f86cfb59ef009dd18f77ce114a39077ac9a61cca5303b9f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d27169087b60c8a6b4b89b8e1b5e4a6f66bb9598f32859e4b5fb8c3c321d0ac34a83ac0cb701593f1cfc763e53ee418127a2c9121cf7abe7ce71189c4a8bfa2
|
7
|
+
data.tar.gz: c88b7e7504c14d6799cddfacde67ac580a39d0a16b692a0ad1f60d31ffed27c76fe86af24cc0778280d5f9f47a2762871b48f587c6b38205971bf633ae89df3c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1
|
2
2
|
|
3
|
+
### v0.69.0 (2025-05-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250514
|
6
|
+
* Regenerated using generator version 0.17.0
|
7
|
+
|
3
8
|
### v0.68.0 (2025-02-26)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250211
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/cloud-build/docs/) may prov
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -1349,6 +1349,12 @@ module Google
|
|
1349
1349
|
# @return [String]
|
1350
1350
|
attr_accessor :description
|
1351
1351
|
|
1352
|
+
# The configuration of a trigger that creates a build whenever an event from the
|
1353
|
+
# DeveloperConnect API is received.
|
1354
|
+
# Corresponds to the JSON property `developerConnectEventConfig`
|
1355
|
+
# @return [Google::Apis::CloudbuildV1::DeveloperConnectEventConfig]
|
1356
|
+
attr_accessor :developer_connect_event_config
|
1357
|
+
|
1352
1358
|
# If true, the trigger will never automatically execute a build.
|
1353
1359
|
# Corresponds to the JSON property `disabled`
|
1354
1360
|
# @return [Boolean]
|
@@ -1499,6 +1505,7 @@ module Google
|
|
1499
1505
|
@build = args[:build] if args.key?(:build)
|
1500
1506
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1501
1507
|
@description = args[:description] if args.key?(:description)
|
1508
|
+
@developer_connect_event_config = args[:developer_connect_event_config] if args.key?(:developer_connect_event_config)
|
1502
1509
|
@disabled = args[:disabled] if args.key?(:disabled)
|
1503
1510
|
@event_type = args[:event_type] if args.key?(:event_type)
|
1504
1511
|
@filename = args[:filename] if args.key?(:filename)
|
@@ -2037,6 +2044,45 @@ module Google
|
|
2037
2044
|
end
|
2038
2045
|
end
|
2039
2046
|
|
2047
|
+
# The configuration of a trigger that creates a build whenever an event from the
|
2048
|
+
# DeveloperConnect API is received.
|
2049
|
+
class DeveloperConnectEventConfig
|
2050
|
+
include Google::Apis::Core::Hashable
|
2051
|
+
|
2052
|
+
# Required. The Developer Connect Git repository link, formatted as `projects/*/
|
2053
|
+
# locations/*/connections/*/gitRepositoryLink/*`.
|
2054
|
+
# Corresponds to the JSON property `gitRepositoryLink`
|
2055
|
+
# @return [String]
|
2056
|
+
attr_accessor :git_repository_link
|
2057
|
+
|
2058
|
+
# Output only. The type of DeveloperConnect GitRepositoryLink.
|
2059
|
+
# Corresponds to the JSON property `gitRepositoryLinkType`
|
2060
|
+
# @return [String]
|
2061
|
+
attr_accessor :git_repository_link_type
|
2062
|
+
|
2063
|
+
# PullRequestFilter contains filter properties for matching GitHub Pull Requests.
|
2064
|
+
# Corresponds to the JSON property `pullRequest`
|
2065
|
+
# @return [Google::Apis::CloudbuildV1::PullRequestFilter]
|
2066
|
+
attr_accessor :pull_request
|
2067
|
+
|
2068
|
+
# Push contains filter properties for matching GitHub git pushes.
|
2069
|
+
# Corresponds to the JSON property `push`
|
2070
|
+
# @return [Google::Apis::CloudbuildV1::PushFilter]
|
2071
|
+
attr_accessor :push
|
2072
|
+
|
2073
|
+
def initialize(**args)
|
2074
|
+
update!(**args)
|
2075
|
+
end
|
2076
|
+
|
2077
|
+
# Update properties of this object
|
2078
|
+
def update!(**args)
|
2079
|
+
@git_repository_link = args[:git_repository_link] if args.key?(:git_repository_link)
|
2080
|
+
@git_repository_link_type = args[:git_repository_link_type] if args.key?(:git_repository_link_type)
|
2081
|
+
@pull_request = args[:pull_request] if args.key?(:pull_request)
|
2082
|
+
@push = args[:push] if args.key?(:push)
|
2083
|
+
end
|
2084
|
+
end
|
2085
|
+
|
2040
2086
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
2041
2087
|
# messages in your APIs. A typical example is to use it as the request or the
|
2042
2088
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -3232,10 +3278,10 @@ module Google
|
|
3232
3278
|
# @return [String]
|
3233
3279
|
attr_accessor :group_id
|
3234
3280
|
|
3235
|
-
# Path to an artifact in the build's workspace to be uploaded to
|
3236
|
-
# Registry. This can be either an absolute path, e.g. /workspace/my-app/
|
3237
|
-
# my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/
|
3238
|
-
# my-app-1.0.SNAPSHOT.jar.
|
3281
|
+
# Optional. Path to an artifact in the build's workspace to be uploaded to
|
3282
|
+
# Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/
|
3283
|
+
# target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/
|
3284
|
+
# target/my-app-1.0.SNAPSHOT.jar.
|
3239
3285
|
# Corresponds to the JSON property `path`
|
3240
3286
|
# @return [String]
|
3241
3287
|
attr_accessor :path
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudbuildV1
|
18
18
|
# Version of the google-apis-cloudbuild_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.69.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250514"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -268,6 +268,12 @@ module Google
|
|
268
268
|
include Google::Apis::Core::JsonObjectSupport
|
269
269
|
end
|
270
270
|
|
271
|
+
class DeveloperConnectEventConfig
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
271
277
|
class Empty
|
272
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
279
|
|
@@ -1045,6 +1051,8 @@ module Google
|
|
1045
1051
|
|
1046
1052
|
property :create_time, as: 'createTime'
|
1047
1053
|
property :description, as: 'description'
|
1054
|
+
property :developer_connect_event_config, as: 'developerConnectEventConfig', class: Google::Apis::CloudbuildV1::DeveloperConnectEventConfig, decorator: Google::Apis::CloudbuildV1::DeveloperConnectEventConfig::Representation
|
1055
|
+
|
1048
1056
|
property :disabled, as: 'disabled'
|
1049
1057
|
property :event_type, as: 'eventType'
|
1050
1058
|
property :filename, as: 'filename'
|
@@ -1227,6 +1235,18 @@ module Google
|
|
1227
1235
|
end
|
1228
1236
|
end
|
1229
1237
|
|
1238
|
+
class DeveloperConnectEventConfig
|
1239
|
+
# @private
|
1240
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1241
|
+
property :git_repository_link, as: 'gitRepositoryLink'
|
1242
|
+
property :git_repository_link_type, as: 'gitRepositoryLinkType'
|
1243
|
+
property :pull_request, as: 'pullRequest', class: Google::Apis::CloudbuildV1::PullRequestFilter, decorator: Google::Apis::CloudbuildV1::PullRequestFilter::Representation
|
1244
|
+
|
1245
|
+
property :push, as: 'push', class: Google::Apis::CloudbuildV1::PushFilter, decorator: Google::Apis::CloudbuildV1::PushFilter::Representation
|
1246
|
+
|
1247
|
+
end
|
1248
|
+
end
|
1249
|
+
|
1230
1250
|
class Empty
|
1231
1251
|
# @private
|
1232
1252
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-cloudbuild_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.69.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.8
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Cloud Build API V1
|
79
79
|
test_files: []
|