google-apis-cloudbuild_v1 0.55.0 → 0.57.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c960e43a9a40796dacb06faeed7be1bf526afea21a8d679731f54f597f35a5e
4
- data.tar.gz: b30957ec56d9a100af27f19bcf7ac7a180176661d9305150e663527ce5efe2c8
3
+ metadata.gz: 15279287168ce877d3303f0a9a99456ab0e5045da159811ec10faf508af39162
4
+ data.tar.gz: d09011dd49b71b4dc80b4a568d898c468a88ceace33e29c3f016a8e062235282
5
5
  SHA512:
6
- metadata.gz: 38002ec4dfd6cf310af6ffb691a2e6a1050767a6946e0f5a273108e88d8958af45e8c9a79cab6f40de38e7deb4b427d3192fce94aa8df633bb811bd7980a5106
7
- data.tar.gz: 41e1061a3db46da0ca24e907108bd958113262fa6d72523720c12b4a3f647b56b1a38c6973f785a39ad97d378ced0edc27eb0ec908db9ab6700c788b46205de5
6
+ metadata.gz: 04fd0c6376bb365f4d18c6c53f27e13b83b6efef1ad3510d8f68c5ddbd8c76124b05406f76d7210029ab3b1dc2667727f44e2a7aba635946db78a7c83ae0315f
7
+ data.tar.gz: 3834ba6108d831f6015cede9fdc50339879aa77479095d9ef1bbb1802583cd7921b78c0875d50c71a898cce1a859302169cddfb3bc381ef48eb661d8c88577ff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudbuild_v1
2
2
 
3
+ ### v0.57.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231011
6
+
7
+ ### v0.56.0 (2023-10-01)
8
+
9
+ * Regenerated from discovery document revision 20230920
10
+
3
11
  ### v0.55.0 (2023-09-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20230907
@@ -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)
@@ -3925,6 +3949,11 @@ module Google
3925
3949
  # @return [String]
3926
3950
  attr_accessor :object
3927
3951
 
3952
+ # Optional. Option to specify the tool to fetch the source file for the build.
3953
+ # Corresponds to the JSON property `sourceFetcher`
3954
+ # @return [String]
3955
+ attr_accessor :source_fetcher
3956
+
3928
3957
  def initialize(**args)
3929
3958
  update!(**args)
3930
3959
  end
@@ -3934,6 +3963,7 @@ module Google
3934
3963
  @bucket = args[:bucket] if args.key?(:bucket)
3935
3964
  @generation = args[:generation] if args.key?(:generation)
3936
3965
  @object = args[:object] if args.key?(:object)
3966
+ @source_fetcher = args[:source_fetcher] if args.key?(:source_fetcher)
3937
3967
  end
3938
3968
  end
3939
3969
 
@@ -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.55.0"
19
+ GEM_VERSION = "0.57.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 = "20230907"
25
+ REVISION = "20231011"
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
@@ -1689,6 +1694,7 @@ module Google
1689
1694
  property :bucket, as: 'bucket'
1690
1695
  property :generation, :numeric_string => true, as: 'generation'
1691
1696
  property :object, as: 'object'
1697
+ property :source_fetcher, as: 'sourceFetcher'
1692
1698
  end
1693
1699
  end
1694
1700
 
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.55.0
4
+ version: 0.57.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-09-17 00:00:00.000000000 Z
11
+ date: 2023-10-15 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.55.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.57.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: []