google-apis-cloudbuild_v1 0.53.0 → 0.54.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: 44ed685ad2bc85a2b94113f105eeca9d8b23c684e16594f08b18334739f23ab5
|
4
|
+
data.tar.gz: a1eceaa5836043e44e306d4cacdc59afbf2ce212a5a7151f07a9ce9d85348a68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: daf05bef0e26011c519dea4e517502e3e4de10ca76f958765dd81509cbe8e165dc1bbb5bf0bb7c380810ae662982904dde4249df5d8a92895a9434b9c2dfaf84
|
7
|
+
data.tar.gz: 7865e5fa16e45bc522ba3e8bbfeb084226c39f985ef6552c2c8a45969f7f70f991b6a67ec1bb75646f8cc8cdf779b64c4d3e963e6ef42e7b3928e47979f939fb
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -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.54.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 = "20230811"
|
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
|
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.54.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-08-
|
11
|
+
date: 2023-08-27 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.54.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
|