google-apis-cloudbuild_v1 0.55.0 → 0.56.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: 81639fcc4447ab9d31acd7f24ac293b822d3b3c051eb19827525a452d5513fbb
|
4
|
+
data.tar.gz: b516cd99b00199399e0cba4e8adbdac1969852ee54692755bb0bb7280530167c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81ad3cf887cd651e804fa1a8434135feeae346aa0fa8a878bccf411ba8ff91a49802fe9fbb176f38391d7495fa015d61b35d7f725e4bedfbcb1a2711fa33e812
|
7
|
+
data.tar.gz: dc5138824f86bcec7bd64b30dbd6df1930ca5f1035f6124fe4ff2cad7a67f022d1c2db82c6cb03a3b5cc07090060ba0f754abd315316654e6d30717585c2de3b
|
data/CHANGELOG.md
CHANGED
@@ -422,6 +422,17 @@ module Google
|
|
422
422
|
# @return [String]
|
423
423
|
attr_accessor :peered_network
|
424
424
|
|
425
|
+
# Immutable. IP range within the peered network. This is specified in CIDR
|
426
|
+
# notation with a slash and the subnet prefix size. You can optionally specify
|
427
|
+
# an IP address before the subnet prefix value. e.g. `192.168.0.0/29` would
|
428
|
+
# specify an IP range starting at 192.168.0.0 with a 29 bit prefix size. `/16`
|
429
|
+
# would specify a prefix size of 16 bits, with an automatically determined IP
|
430
|
+
# within the peered VPC. If unspecified, a value of `/24` will be used. The
|
431
|
+
# field only has an effect if peered_network is set.
|
432
|
+
# Corresponds to the JSON property `peeredNetworkIpRange`
|
433
|
+
# @return [String]
|
434
|
+
attr_accessor :peered_network_ip_range
|
435
|
+
|
425
436
|
# BitbucketServerSecrets represents the secrets in Secret Manager for a
|
426
437
|
# Bitbucket Server.
|
427
438
|
# Corresponds to the JSON property `secrets`
|
@@ -457,6 +468,7 @@ module Google
|
|
457
468
|
@host_uri = args[:host_uri] if args.key?(:host_uri)
|
458
469
|
@name = args[:name] if args.key?(:name)
|
459
470
|
@peered_network = args[:peered_network] if args.key?(:peered_network)
|
471
|
+
@peered_network_ip_range = args[:peered_network_ip_range] if args.key?(:peered_network_ip_range)
|
460
472
|
@secrets = args[:secrets] if args.key?(:secrets)
|
461
473
|
@ssl_ca = args[:ssl_ca] if args.key?(:ssl_ca)
|
462
474
|
@username = args[:username] if args.key?(:username)
|
@@ -3834,6 +3846,16 @@ module Google
|
|
3834
3846
|
# @return [Hash<String,Google::Apis::CloudbuildV1::FileHashes>]
|
3835
3847
|
attr_accessor :file_hashes
|
3836
3848
|
|
3849
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
3850
|
+
# Corresponds to the JSON property `resolvedConnectedRepository`
|
3851
|
+
# @return [Google::Apis::CloudbuildV1::ConnectedRepository]
|
3852
|
+
attr_accessor :resolved_connected_repository
|
3853
|
+
|
3854
|
+
# Location of the source in any accessible Git repository.
|
3855
|
+
# Corresponds to the JSON property `resolvedGitSource`
|
3856
|
+
# @return [Google::Apis::CloudbuildV1::GitSource]
|
3857
|
+
attr_accessor :resolved_git_source
|
3858
|
+
|
3837
3859
|
# Location of the source in a Google Cloud Source Repository.
|
3838
3860
|
# Corresponds to the JSON property `resolvedRepoSource`
|
3839
3861
|
# @return [Google::Apis::CloudbuildV1::RepoSource]
|
@@ -3858,6 +3880,8 @@ module Google
|
|
3858
3880
|
# Update properties of this object
|
3859
3881
|
def update!(**args)
|
3860
3882
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
3883
|
+
@resolved_connected_repository = args[:resolved_connected_repository] if args.key?(:resolved_connected_repository)
|
3884
|
+
@resolved_git_source = args[:resolved_git_source] if args.key?(:resolved_git_source)
|
3861
3885
|
@resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
|
3862
3886
|
@resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
|
3863
3887
|
@resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
|
@@ -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.56.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 = "20230920"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -784,6 +784,7 @@ module Google
|
|
784
784
|
property :host_uri, as: 'hostUri'
|
785
785
|
property :name, as: 'name'
|
786
786
|
property :peered_network, as: 'peeredNetwork'
|
787
|
+
property :peered_network_ip_range, as: 'peeredNetworkIpRange'
|
787
788
|
property :secrets, as: 'secrets', class: Google::Apis::CloudbuildV1::BitbucketServerSecrets, decorator: Google::Apis::CloudbuildV1::BitbucketServerSecrets::Representation
|
788
789
|
|
789
790
|
property :ssl_ca, as: 'sslCa'
|
@@ -1665,6 +1666,10 @@ module Google
|
|
1665
1666
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1666
1667
|
hash :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
1667
1668
|
|
1669
|
+
property :resolved_connected_repository, as: 'resolvedConnectedRepository', class: Google::Apis::CloudbuildV1::ConnectedRepository, decorator: Google::Apis::CloudbuildV1::ConnectedRepository::Representation
|
1670
|
+
|
1671
|
+
property :resolved_git_source, as: 'resolvedGitSource', class: Google::Apis::CloudbuildV1::GitSource, decorator: Google::Apis::CloudbuildV1::GitSource::Representation
|
1672
|
+
|
1668
1673
|
property :resolved_repo_source, as: 'resolvedRepoSource', class: Google::Apis::CloudbuildV1::RepoSource, decorator: Google::Apis::CloudbuildV1::RepoSource::Representation
|
1669
1674
|
|
1670
1675
|
property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudbuildV1::StorageSource, decorator: Google::Apis::CloudbuildV1::StorageSource::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.56.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-10-01 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.56.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: []
|