google-apis-cloudbuild_v1 0.76.0 → 0.77.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: 981e8e7452a41e88f3eeb978f02c880fa1cc576fa4298cf86ba0d22a8693c557
|
|
4
|
+
data.tar.gz: c8b826b08b172962bf636497643c1d01383e72e5dca6e748c5065e477e5b8392
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c33818ae1dfede8a545e0e897469feadd19ac983a6e162a3e95db6b587755f8c650e87bcba3f3711a25db2b960951a8d678cc6b8a6b5d4f99771a418c3049b3
|
|
7
|
+
data.tar.gz: a8ae8f8c183ce0e70404b61914d016fce85b79e6ac1db3ff518b0ca98cc50b0243f383aa5f3226cc98813360169c7c07f2795758160e6f680bc683be7a5753e9
|
data/CHANGELOG.md
CHANGED
|
@@ -3278,6 +3278,14 @@ module Google
|
|
|
3278
3278
|
# @return [String]
|
|
3279
3279
|
attr_accessor :artifact_id
|
|
3280
3280
|
|
|
3281
|
+
# Optional. Path to a folder containing the files to upload to Artifact Registry.
|
|
3282
|
+
# This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a
|
|
3283
|
+
# relative path from /workspace, e.g. `my-app/target/`. This field is mutually
|
|
3284
|
+
# exclusive with the `path` field.
|
|
3285
|
+
# Corresponds to the JSON property `deployFolder`
|
|
3286
|
+
# @return [String]
|
|
3287
|
+
attr_accessor :deploy_folder
|
|
3288
|
+
|
|
3281
3289
|
# Maven `groupId` value used when uploading the artifact to Artifact Registry.
|
|
3282
3290
|
# Corresponds to the JSON property `groupId`
|
|
3283
3291
|
# @return [String]
|
|
@@ -3310,6 +3318,7 @@ module Google
|
|
|
3310
3318
|
# Update properties of this object
|
|
3311
3319
|
def update!(**args)
|
|
3312
3320
|
@artifact_id = args[:artifact_id] if args.key?(:artifact_id)
|
|
3321
|
+
@deploy_folder = args[:deploy_folder] if args.key?(:deploy_folder)
|
|
3313
3322
|
@group_id = args[:group_id] if args.key?(:group_id)
|
|
3314
3323
|
@path = args[:path] if args.key?(:path)
|
|
3315
3324
|
@repository = args[:repository] if args.key?(:repository)
|
|
@@ -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.77.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251125"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1576,6 +1576,7 @@ module Google
|
|
|
1576
1576
|
# @private
|
|
1577
1577
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1578
1578
|
property :artifact_id, as: 'artifactId'
|
|
1579
|
+
property :deploy_folder, as: 'deployFolder'
|
|
1579
1580
|
property :group_id, as: 'groupId'
|
|
1580
1581
|
property :path, as: 'path'
|
|
1581
1582
|
property :repository, as: 'repository'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.77.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.77.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:
|