google-apis-cloudbuild_v1 0.53.0 → 0.55.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: 5c960e43a9a40796dacb06faeed7be1bf526afea21a8d679731f54f597f35a5e
|
4
|
+
data.tar.gz: b30957ec56d9a100af27f19bcf7ac7a180176661d9305150e663527ce5efe2c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38002ec4dfd6cf310af6ffb691a2e6a1050767a6946e0f5a273108e88d8958af45e8c9a79cab6f40de38e7deb4b427d3192fce94aa8df633bb811bd7980a5106
|
7
|
+
data.tar.gz: 41e1061a3db46da0ca24e907108bd958113262fa6d72523720c12b4a3f647b56b1a38c6973f785a39ad97d378ced0edc27eb0ec908db9ab6700c788b46205de5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1
|
2
2
|
|
3
|
+
### v0.55.0 (2023-09-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230907
|
6
|
+
|
7
|
+
### v0.54.0 (2023-08-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230811
|
10
|
+
|
3
11
|
### v0.53.0 (2023-08-06)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230801
|
@@ -1552,6 +1552,39 @@ module Google
|
|
1552
1552
|
end
|
1553
1553
|
end
|
1554
1554
|
|
1555
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
1556
|
+
class ConnectedRepository
|
1557
|
+
include Google::Apis::Core::Hashable
|
1558
|
+
|
1559
|
+
# Directory, relative to the source root, in which to run the build.
|
1560
|
+
# Corresponds to the JSON property `dir`
|
1561
|
+
# @return [String]
|
1562
|
+
attr_accessor :dir
|
1563
|
+
|
1564
|
+
# Required. Name of the Google Cloud Build repository, formatted as `projects/*/
|
1565
|
+
# locations/*/connections/*/repositories/*`.
|
1566
|
+
# Corresponds to the JSON property `repository`
|
1567
|
+
# @return [String]
|
1568
|
+
attr_accessor :repository
|
1569
|
+
|
1570
|
+
# The revision to fetch from the Git repository such as a branch, a tag, a
|
1571
|
+
# commit SHA, or any Git ref.
|
1572
|
+
# Corresponds to the JSON property `revision`
|
1573
|
+
# @return [String]
|
1574
|
+
attr_accessor :revision
|
1575
|
+
|
1576
|
+
def initialize(**args)
|
1577
|
+
update!(**args)
|
1578
|
+
end
|
1579
|
+
|
1580
|
+
# Update properties of this object
|
1581
|
+
def update!(**args)
|
1582
|
+
@dir = args[:dir] if args.key?(:dir)
|
1583
|
+
@repository = args[:repository] if args.key?(:repository)
|
1584
|
+
@revision = args[:revision] if args.key?(:revision)
|
1585
|
+
end
|
1586
|
+
end
|
1587
|
+
|
1555
1588
|
# Metadata for `CreateBitbucketServerConfig` operation.
|
1556
1589
|
class CreateBitbucketServerConfigOperationMetadata
|
1557
1590
|
include Google::Apis::Core::Hashable
|
@@ -3523,7 +3556,7 @@ module Google
|
|
3523
3556
|
# List of build step outputs, produced by builder images, in the order
|
3524
3557
|
# corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
|
3525
3558
|
# cloud-build/docs/cloud-builders) can produce this output by writing to `$
|
3526
|
-
# BUILDER_OUTPUT/output`. Only the first
|
3559
|
+
# BUILDER_OUTPUT/output`. Only the first 50KB of data is stored.
|
3527
3560
|
# Corresponds to the JSON property `buildStepOutputs`
|
3528
3561
|
# @return [Array<String>]
|
3529
3562
|
attr_accessor :build_step_outputs
|
@@ -3744,6 +3777,11 @@ module Google
|
|
3744
3777
|
class Source
|
3745
3778
|
include Google::Apis::Core::Hashable
|
3746
3779
|
|
3780
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
3781
|
+
# Corresponds to the JSON property `connectedRepository`
|
3782
|
+
# @return [Google::Apis::CloudbuildV1::ConnectedRepository]
|
3783
|
+
attr_accessor :connected_repository
|
3784
|
+
|
3747
3785
|
# Location of the source in any accessible Git repository.
|
3748
3786
|
# Corresponds to the JSON property `gitSource`
|
3749
3787
|
# @return [Google::Apis::CloudbuildV1::GitSource]
|
@@ -3772,6 +3810,7 @@ module Google
|
|
3772
3810
|
|
3773
3811
|
# Update properties of this object
|
3774
3812
|
def update!(**args)
|
3813
|
+
@connected_repository = args[:connected_repository] if args.key?(:connected_repository)
|
3775
3814
|
@git_source = args[:git_source] if args.key?(:git_source)
|
3776
3815
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
3777
3816
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
@@ -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.55.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230907"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class ConnectedRepository
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class CreateBitbucketServerConfigOperationMetadata
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -1027,6 +1033,15 @@ module Google
|
|
1027
1033
|
end
|
1028
1034
|
end
|
1029
1035
|
|
1036
|
+
class ConnectedRepository
|
1037
|
+
# @private
|
1038
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1039
|
+
property :dir, as: 'dir'
|
1040
|
+
property :repository, as: 'repository'
|
1041
|
+
property :revision, as: 'revision'
|
1042
|
+
end
|
1043
|
+
end
|
1044
|
+
|
1030
1045
|
class CreateBitbucketServerConfigOperationMetadata
|
1031
1046
|
# @private
|
1032
1047
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1632,6 +1647,8 @@ module Google
|
|
1632
1647
|
class Source
|
1633
1648
|
# @private
|
1634
1649
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1650
|
+
property :connected_repository, as: 'connectedRepository', class: Google::Apis::CloudbuildV1::ConnectedRepository, decorator: Google::Apis::CloudbuildV1::ConnectedRepository::Representation
|
1651
|
+
|
1635
1652
|
property :git_source, as: 'gitSource', class: Google::Apis::CloudbuildV1::GitSource, decorator: Google::Apis::CloudbuildV1::GitSource::Representation
|
1636
1653
|
|
1637
1654
|
property :repo_source, as: 'repoSource', class: Google::Apis::CloudbuildV1::RepoSource, decorator: Google::Apis::CloudbuildV1::RepoSource::Representation
|
@@ -1727,7 +1727,7 @@ module Google
|
|
1727
1727
|
execute_or_queue_command(command, &block)
|
1728
1728
|
end
|
1729
1729
|
|
1730
|
-
# Creates a new `BuildTrigger`.
|
1730
|
+
# Creates a new `BuildTrigger`.
|
1731
1731
|
# @param [String] parent
|
1732
1732
|
# The parent resource where this trigger will be created. Format: `projects/`
|
1733
1733
|
# project`/locations/`location``
|
@@ -1764,8 +1764,7 @@ module Google
|
|
1764
1764
|
execute_or_queue_command(command, &block)
|
1765
1765
|
end
|
1766
1766
|
|
1767
|
-
# Deletes a `BuildTrigger` by its project ID and trigger ID.
|
1768
|
-
# experimental.
|
1767
|
+
# Deletes a `BuildTrigger` by its project ID and trigger ID.
|
1769
1768
|
# @param [String] name
|
1770
1769
|
# The name of the `Trigger` to delete. Format: `projects/`project`/locations/`
|
1771
1770
|
# location`/triggers/`trigger``
|
@@ -1802,7 +1801,7 @@ module Google
|
|
1802
1801
|
execute_or_queue_command(command, &block)
|
1803
1802
|
end
|
1804
1803
|
|
1805
|
-
# Returns information about a `BuildTrigger`.
|
1804
|
+
# Returns information about a `BuildTrigger`.
|
1806
1805
|
# @param [String] name
|
1807
1806
|
# The name of the `Trigger` to retrieve. Format: `projects/`project`/locations/`
|
1808
1807
|
# location`/triggers/`trigger``
|
@@ -1839,7 +1838,7 @@ module Google
|
|
1839
1838
|
execute_or_queue_command(command, &block)
|
1840
1839
|
end
|
1841
1840
|
|
1842
|
-
# Lists existing `BuildTrigger`s.
|
1841
|
+
# Lists existing `BuildTrigger`s.
|
1843
1842
|
# @param [String] parent
|
1844
1843
|
# The parent of the collection of `Triggers`. Format: `projects/`project`/
|
1845
1844
|
# locations/`location``
|
@@ -1879,8 +1878,7 @@ module Google
|
|
1879
1878
|
execute_or_queue_command(command, &block)
|
1880
1879
|
end
|
1881
1880
|
|
1882
|
-
# Updates a `BuildTrigger` by its project ID and trigger ID.
|
1883
|
-
# experimental.
|
1881
|
+
# Updates a `BuildTrigger` by its project ID and trigger ID.
|
1884
1882
|
# @param [String] resource_name
|
1885
1883
|
# The `Trigger` name with format: `projects/`project`/locations/`location`/
|
1886
1884
|
# triggers/`trigger``, where `trigger` is a unique identifier generated by the
|
@@ -2207,7 +2205,7 @@ module Google
|
|
2207
2205
|
execute_or_queue_command(command, &block)
|
2208
2206
|
end
|
2209
2207
|
|
2210
|
-
# Creates a new `BuildTrigger`.
|
2208
|
+
# Creates a new `BuildTrigger`.
|
2211
2209
|
# @param [String] project_id
|
2212
2210
|
# Required. ID of the project for which to configure automatic builds.
|
2213
2211
|
# @param [Google::Apis::CloudbuildV1::BuildTrigger] build_trigger_object
|
@@ -2244,8 +2242,7 @@ module Google
|
|
2244
2242
|
execute_or_queue_command(command, &block)
|
2245
2243
|
end
|
2246
2244
|
|
2247
|
-
# Deletes a `BuildTrigger` by its project ID and trigger ID.
|
2248
|
-
# experimental.
|
2245
|
+
# Deletes a `BuildTrigger` by its project ID and trigger ID.
|
2249
2246
|
# @param [String] project_id
|
2250
2247
|
# Required. ID of the project that owns the trigger.
|
2251
2248
|
# @param [String] trigger_id
|
@@ -2282,7 +2279,7 @@ module Google
|
|
2282
2279
|
execute_or_queue_command(command, &block)
|
2283
2280
|
end
|
2284
2281
|
|
2285
|
-
# Returns information about a `BuildTrigger`.
|
2282
|
+
# Returns information about a `BuildTrigger`.
|
2286
2283
|
# @param [String] project_id
|
2287
2284
|
# Required. ID of the project that owns the trigger.
|
2288
2285
|
# @param [String] trigger_id
|
@@ -2319,7 +2316,7 @@ module Google
|
|
2319
2316
|
execute_or_queue_command(command, &block)
|
2320
2317
|
end
|
2321
2318
|
|
2322
|
-
# Lists existing `BuildTrigger`s.
|
2319
|
+
# Lists existing `BuildTrigger`s.
|
2323
2320
|
# @param [String] project_id
|
2324
2321
|
# Required. ID of the project for which to list BuildTriggers.
|
2325
2322
|
# @param [Fixnum] page_size
|
@@ -2359,8 +2356,7 @@ module Google
|
|
2359
2356
|
execute_or_queue_command(command, &block)
|
2360
2357
|
end
|
2361
2358
|
|
2362
|
-
# Updates a `BuildTrigger` by its project ID and trigger ID.
|
2363
|
-
# experimental.
|
2359
|
+
# Updates a `BuildTrigger` by its project ID and trigger ID.
|
2364
2360
|
# @param [String] project_id
|
2365
2361
|
# Required. ID of the project that owns the trigger.
|
2366
2362
|
# @param [String] trigger_id
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.55.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.55.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Build API V1
|