google-apis-cloudbuild_v1 0.61.0 → 0.63.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: 232ded509bc7ba6da2a8283d6708eaceb39a18d6c28eb9a9eb018a6520e9dae1
4
- data.tar.gz: cfd1c337d07fe0d8c9fcef01c3a8e119b3e3df0ab6c2fe6c99d2d7fbdca78f49
3
+ metadata.gz: 2869645a6c84791dbf87e36fee22dc96bb452bbfe11f006acbdd3be8ea65a5e7
4
+ data.tar.gz: 988e973b8d602088fe1e4383f5c0de5b3970d6a1188e42e005bdeb1e224d0f96
5
5
  SHA512:
6
- metadata.gz: db852954a74e5cd29f537b80bf5b2f62ce13569c38efb8994ddb928cb0487618ed09925ad39edc62c0034843703f34d2ca475815afc8c2e6a8b179e4d0305993
7
- data.tar.gz: b73ee3ffc871ee4b162e5dd5d218ed3079f12ed9ab37dcd2fc1ad0b245813f7cb38dde16fdef69958a3af03fb7f32d9e2da1289be9841269ce6881d7bf4876db
6
+ metadata.gz: 85dccb8bb8405b97f6ab7ee702be4928d61fabe1c941fa1bf806255067d618543d301113547846023e29ba2d45709e4f4f8c0756469fee031e9dcba0bdf5b96c
7
+ data.tar.gz: 69fce901ffbced5b04d04cf04bc009b4d95c73052cd597f3dd2d4eeefd81a7d50dec5f8530326d9c8391784184736745373fcf58706b81ced7287e3e48efadb6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudbuild_v1
2
2
 
3
+ ### v0.63.0 (2024-05-26)
4
+
5
+ * Regenerated from discovery document revision 20240519
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.62.0 (2024-05-05)
9
+
10
+ * Regenerated from discovery document revision 20240427
11
+
3
12
  ### v0.61.0 (2024-03-10)
4
13
 
5
14
  * Regenerated from discovery document revision 20240305
@@ -735,6 +735,11 @@ module Google
735
735
  # @return [String]
736
736
  attr_accessor :finish_time
737
737
 
738
+ # GitConfig is a configuration for git operations.
739
+ # Corresponds to the JSON property `gitConfig`
740
+ # @return [Google::Apis::CloudbuildV1::GitConfig]
741
+ attr_accessor :git_config
742
+
738
743
  # Output only. Unique identifier of the build.
739
744
  # Corresponds to the JSON property `id`
740
745
  # @return [String]
@@ -882,6 +887,7 @@ module Google
882
887
  @create_time = args[:create_time] if args.key?(:create_time)
883
888
  @failure_info = args[:failure_info] if args.key?(:failure_info)
884
889
  @finish_time = args[:finish_time] if args.key?(:finish_time)
890
+ @git_config = args[:git_config] if args.key?(:git_config)
885
891
  @id = args[:id] if args.key?(:id)
886
892
  @images = args[:images] if args.key?(:images)
887
893
  @log_url = args[:log_url] if args.key?(:log_url)
@@ -989,7 +995,7 @@ module Google
989
995
  # disk free"; some of the space will be used by the operating system and build
990
996
  # utilities. Also note that this is the minimum disk size that will be allocated
991
997
  # for the build -- the build may run with a larger disk than requested. At
992
- # present, the maximum disk size is 2000GB; builds that request more than the
998
+ # present, the maximum disk size is 4000GB; builds that request more than the
993
999
  # maximum are rejected with an error.
994
1000
  # Corresponds to the JSON property `diskSizeGb`
995
1001
  # @return [Fixnum]
@@ -1568,7 +1574,7 @@ module Google
1568
1574
  class ConnectedRepository
1569
1575
  include Google::Apis::Core::Hashable
1570
1576
 
1571
- # Directory, relative to the source root, in which to run the build.
1577
+ # Optional. Directory, relative to the source root, in which to run the build.
1572
1578
  # Corresponds to the JSON property `dir`
1573
1579
  # @return [String]
1574
1580
  attr_accessor :dir
@@ -1579,8 +1585,8 @@ module Google
1579
1585
  # @return [String]
1580
1586
  attr_accessor :repository
1581
1587
 
1582
- # The revision to fetch from the Git repository such as a branch, a tag, a
1583
- # commit SHA, or any Git ref.
1588
+ # Required. The revision to fetch from the Git repository such as a branch, a
1589
+ # tag, a commit SHA, or any Git ref.
1584
1590
  # Corresponds to the JSON property `revision`
1585
1591
  # @return [String]
1586
1592
  attr_accessor :revision
@@ -1940,6 +1946,39 @@ module Google
1940
1946
  end
1941
1947
  end
1942
1948
 
1949
+ # This config defines the location of a source through Developer Connect.
1950
+ class DeveloperConnectConfig
1951
+ include Google::Apis::Core::Hashable
1952
+
1953
+ # Required. Directory, relative to the source root, in which to run the build.
1954
+ # Corresponds to the JSON property `dir`
1955
+ # @return [String]
1956
+ attr_accessor :dir
1957
+
1958
+ # Required. The Developer Connect Git repository link, formatted as `projects/*/
1959
+ # locations/*/connections/*/gitRepositoryLink/*`.
1960
+ # Corresponds to the JSON property `gitRepositoryLink`
1961
+ # @return [String]
1962
+ attr_accessor :git_repository_link
1963
+
1964
+ # Required. The revision to fetch from the Git repository such as a branch, a
1965
+ # tag, a commit SHA, or any Git ref.
1966
+ # Corresponds to the JSON property `revision`
1967
+ # @return [String]
1968
+ attr_accessor :revision
1969
+
1970
+ def initialize(**args)
1971
+ update!(**args)
1972
+ end
1973
+
1974
+ # Update properties of this object
1975
+ def update!(**args)
1976
+ @dir = args[:dir] if args.key?(:dir)
1977
+ @git_repository_link = args[:git_repository_link] if args.key?(:git_repository_link)
1978
+ @revision = args[:revision] if args.key?(:revision)
1979
+ end
1980
+ end
1981
+
1943
1982
  # A generic empty message that you can re-use to avoid defining duplicated empty
1944
1983
  # messages in your APIs. A typical example is to use it as the request or the
1945
1984
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -2001,6 +2040,59 @@ module Google
2001
2040
  end
2002
2041
  end
2003
2042
 
2043
+ # Represents a storage location in Cloud Storage
2044
+ class GcsLocation
2045
+ include Google::Apis::Core::Hashable
2046
+
2047
+ # Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
2048
+ # requirements
2049
+ # Corresponds to the JSON property `bucket`
2050
+ # @return [String]
2051
+ attr_accessor :bucket
2052
+
2053
+ # Cloud Storage generation for the object. If the generation is omitted, the
2054
+ # latest generation will be used.
2055
+ # Corresponds to the JSON property `generation`
2056
+ # @return [Fixnum]
2057
+ attr_accessor :generation
2058
+
2059
+ # Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
2060
+ # objectnames
2061
+ # Corresponds to the JSON property `object`
2062
+ # @return [String]
2063
+ attr_accessor :object
2064
+
2065
+ def initialize(**args)
2066
+ update!(**args)
2067
+ end
2068
+
2069
+ # Update properties of this object
2070
+ def update!(**args)
2071
+ @bucket = args[:bucket] if args.key?(:bucket)
2072
+ @generation = args[:generation] if args.key?(:generation)
2073
+ @object = args[:object] if args.key?(:object)
2074
+ end
2075
+ end
2076
+
2077
+ # GitConfig is a configuration for git operations.
2078
+ class GitConfig
2079
+ include Google::Apis::Core::Hashable
2080
+
2081
+ # HttpConfig is a configuration for HTTP related git operations.
2082
+ # Corresponds to the JSON property `http`
2083
+ # @return [Google::Apis::CloudbuildV1::HttpConfig]
2084
+ attr_accessor :http
2085
+
2086
+ def initialize(**args)
2087
+ update!(**args)
2088
+ end
2089
+
2090
+ # Update properties of this object
2091
+ def update!(**args)
2092
+ @http = args[:http] if args.key?(:http)
2093
+ end
2094
+ end
2095
+
2004
2096
  # GitFileSource describes a file within a (possibly remote) code repository.
2005
2097
  class GitFileSource
2006
2098
  include Google::Apis::Core::Hashable
@@ -2610,26 +2702,26 @@ module Google
2610
2702
  class GitSource
2611
2703
  include Google::Apis::Core::Hashable
2612
2704
 
2613
- # Directory, relative to the source root, in which to run the build. This must
2614
- # be a relative path. If a step's `dir` is specified and is an absolute path,
2615
- # this value is ignored for that step's execution.
2705
+ # Optional. Directory, relative to the source root, in which to run the build.
2706
+ # This must be a relative path. If a step's `dir` is specified and is an
2707
+ # absolute path, this value is ignored for that step's execution.
2616
2708
  # Corresponds to the JSON property `dir`
2617
2709
  # @return [String]
2618
2710
  attr_accessor :dir
2619
2711
 
2620
- # The revision to fetch from the Git repository such as a branch, a tag, a
2621
- # commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the revision
2622
- # from the Git repository; therefore make sure that the string you provide for `
2623
- # revision` is parsable by the command. For information on string values
2624
- # accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
2712
+ # Optional. The revision to fetch from the Git repository such as a branch, a
2713
+ # tag, a commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the
2714
+ # revision from the Git repository; therefore make sure that the string you
2715
+ # provide for `revision` is parsable by the command. For information on string
2716
+ # values accepted by `git fetch`, see https://git-scm.com/docs/gitrevisions#
2625
2717
  # _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
2626
2718
  # docs/git-fetch.
2627
2719
  # Corresponds to the JSON property `revision`
2628
2720
  # @return [String]
2629
2721
  attr_accessor :revision
2630
2722
 
2631
- # Location of the Git repo to build. This will be used as a `git remote`, see
2632
- # https://git-scm.com/docs/git-remote.
2723
+ # Required. Location of the Git repo to build. This will be used as a `git
2724
+ # remote`, see https://git-scm.com/docs/git-remote.
2633
2725
  # Corresponds to the JSON property `url`
2634
2726
  # @return [String]
2635
2727
  attr_accessor :url
@@ -2720,6 +2812,32 @@ module Google
2720
2812
  end
2721
2813
  end
2722
2814
 
2815
+ # HttpConfig is a configuration for HTTP related git operations.
2816
+ class HttpConfig
2817
+ include Google::Apis::Core::Hashable
2818
+
2819
+ # SecretVersion resource of the HTTP proxy URL. The proxy URL should be in
2820
+ # format protocol://@]proxyhost[:port].
2821
+ # Corresponds to the JSON property `proxySecretVersionName`
2822
+ # @return [String]
2823
+ attr_accessor :proxy_secret_version_name
2824
+
2825
+ # Represents a storage location in Cloud Storage
2826
+ # Corresponds to the JSON property `proxySslCaInfo`
2827
+ # @return [Google::Apis::CloudbuildV1::GcsLocation]
2828
+ attr_accessor :proxy_ssl_ca_info
2829
+
2830
+ def initialize(**args)
2831
+ update!(**args)
2832
+ end
2833
+
2834
+ # Update properties of this object
2835
+ def update!(**args)
2836
+ @proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
2837
+ @proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
2838
+ end
2839
+ end
2840
+
2723
2841
  # Pairs a set of secret environment variables mapped to encrypted values with
2724
2842
  # the Cloud KMS key to use to decrypt the value.
2725
2843
  class InlineSecret
@@ -3489,31 +3607,32 @@ module Google
3489
3607
  # @return [String]
3490
3608
  attr_accessor :commit_sha
3491
3609
 
3492
- # Directory, relative to the source root, in which to run the build. This must
3493
- # be a relative path. If a step's `dir` is specified and is an absolute path,
3494
- # this value is ignored for that step's execution.
3610
+ # Optional. Directory, relative to the source root, in which to run the build.
3611
+ # This must be a relative path. If a step's `dir` is specified and is an
3612
+ # absolute path, this value is ignored for that step's execution.
3495
3613
  # Corresponds to the JSON property `dir`
3496
3614
  # @return [String]
3497
3615
  attr_accessor :dir
3498
3616
 
3499
- # Only trigger a build if the revision regex does NOT match the revision regex.
3617
+ # Optional. Only trigger a build if the revision regex does NOT match the
3618
+ # revision regex.
3500
3619
  # Corresponds to the JSON property `invertRegex`
3501
3620
  # @return [Boolean]
3502
3621
  attr_accessor :invert_regex
3503
3622
  alias_method :invert_regex?, :invert_regex
3504
3623
 
3505
- # ID of the project that owns the Cloud Source Repository. If omitted, the
3506
- # project ID requesting the build is assumed.
3624
+ # Optional. ID of the project that owns the Cloud Source Repository. If omitted,
3625
+ # the project ID requesting the build is assumed.
3507
3626
  # Corresponds to the JSON property `projectId`
3508
3627
  # @return [String]
3509
3628
  attr_accessor :project_id
3510
3629
 
3511
- # Name of the Cloud Source Repository.
3630
+ # Required. Name of the Cloud Source Repository.
3512
3631
  # Corresponds to the JSON property `repoName`
3513
3632
  # @return [String]
3514
3633
  attr_accessor :repo_name
3515
3634
 
3516
- # Substitutions to use in a triggered build. Should only be used with
3635
+ # Optional. Substitutions to use in a triggered build. Should only be used with
3517
3636
  # RunBuildTrigger
3518
3637
  # Corresponds to the JSON property `substitutions`
3519
3638
  # @return [Hash<String,String>]
@@ -3604,7 +3723,8 @@ module Google
3604
3723
  # List of build step outputs, produced by builder images, in the order
3605
3724
  # corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
3606
3725
  # cloud-build/docs/cloud-builders) can produce this output by writing to `$
3607
- # BUILDER_OUTPUT/output`. Only the first 50KB of data is stored.
3726
+ # BUILDER_OUTPUT/output`. Only the first 50KB of data is stored. Note that the `$
3727
+ # BUILDER_OUTPUT` variable is read-only and can't be substituted.
3608
3728
  # Corresponds to the JSON property `buildStepOutputs`
3609
3729
  # @return [Array<String>]
3610
3730
  attr_accessor :build_step_outputs
@@ -3830,6 +3950,11 @@ module Google
3830
3950
  # @return [Google::Apis::CloudbuildV1::ConnectedRepository]
3831
3951
  attr_accessor :connected_repository
3832
3952
 
3953
+ # This config defines the location of a source through Developer Connect.
3954
+ # Corresponds to the JSON property `developerConnectConfig`
3955
+ # @return [Google::Apis::CloudbuildV1::DeveloperConnectConfig]
3956
+ attr_accessor :developer_connect_config
3957
+
3833
3958
  # Location of the source in any accessible Git repository.
3834
3959
  # Corresponds to the JSON property `gitSource`
3835
3960
  # @return [Google::Apis::CloudbuildV1::GitSource]
@@ -3859,6 +3984,7 @@ module Google
3859
3984
  # Update properties of this object
3860
3985
  def update!(**args)
3861
3986
  @connected_repository = args[:connected_repository] if args.key?(:connected_repository)
3987
+ @developer_connect_config = args[:developer_connect_config] if args.key?(:developer_connect_config)
3862
3988
  @git_source = args[:git_source] if args.key?(:git_source)
3863
3989
  @repo_source = args[:repo_source] if args.key?(:repo_source)
3864
3990
  @storage_source = args[:storage_source] if args.key?(:storage_source)
@@ -3973,14 +4099,14 @@ module Google
3973
4099
  # @return [String]
3974
4100
  attr_accessor :bucket
3975
4101
 
3976
- # Cloud Storage generation for the object. If the generation is omitted, the
3977
- # latest generation will be used.
4102
+ # Optional. Cloud Storage generation for the object. If the generation is
4103
+ # omitted, the latest generation will be used.
3978
4104
  # Corresponds to the JSON property `generation`
3979
4105
  # @return [Fixnum]
3980
4106
  attr_accessor :generation
3981
4107
 
3982
- # Cloud Storage object containing the source. This object must be a zipped (`.
3983
- # zip`) or gzipped archive file (`.tar.gz`) containing source to build.
4108
+ # Required. Cloud Storage object containing the source. This object must be a
4109
+ # zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build.
3984
4110
  # Corresponds to the JSON property `object`
3985
4111
  # @return [String]
3986
4112
  attr_accessor :object
@@ -4009,9 +4135,9 @@ module Google
4009
4135
  class StorageSourceManifest
4010
4136
  include Google::Apis::Core::Hashable
4011
4137
 
4012
- # Cloud Storage bucket containing the source manifest (see [Bucket Name
4013
- # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
4014
- # ).
4138
+ # Required. Cloud Storage bucket containing the source manifest (see [Bucket
4139
+ # Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#
4140
+ # requirements)).
4015
4141
  # Corresponds to the JSON property `bucket`
4016
4142
  # @return [String]
4017
4143
  attr_accessor :bucket
@@ -4022,8 +4148,8 @@ module Google
4022
4148
  # @return [Fixnum]
4023
4149
  attr_accessor :generation
4024
4150
 
4025
- # Cloud Storage object containing the source manifest. This object must be a
4026
- # JSON file.
4151
+ # Required. Cloud Storage object containing the source manifest. This object
4152
+ # must be a JSON file.
4027
4153
  # Corresponds to the JSON property `object`
4028
4154
  # @return [String]
4029
4155
  attr_accessor :object
@@ -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.61.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240305"
25
+ REVISION = "20240519"
26
26
  end
27
27
  end
28
28
  end
@@ -256,6 +256,12 @@ module Google
256
256
  include Google::Apis::Core::JsonObjectSupport
257
257
  end
258
258
 
259
+ class DeveloperConnectConfig
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
259
265
  class Empty
260
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
267
 
@@ -274,6 +280,18 @@ module Google
274
280
  include Google::Apis::Core::JsonObjectSupport
275
281
  end
276
282
 
283
+ class GcsLocation
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class GitConfig
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
277
295
  class GitFileSource
278
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
297
 
@@ -364,6 +382,12 @@ module Google
364
382
  include Google::Apis::Core::JsonObjectSupport
365
383
  end
366
384
 
385
+ class HttpConfig
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
367
391
  class InlineSecret
368
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
393
 
@@ -869,6 +893,8 @@ module Google
869
893
  property :failure_info, as: 'failureInfo', class: Google::Apis::CloudbuildV1::FailureInfo, decorator: Google::Apis::CloudbuildV1::FailureInfo::Representation
870
894
 
871
895
  property :finish_time, as: 'finishTime'
896
+ property :git_config, as: 'gitConfig', class: Google::Apis::CloudbuildV1::GitConfig, decorator: Google::Apis::CloudbuildV1::GitConfig::Representation
897
+
872
898
  property :id, as: 'id'
873
899
  collection :images, as: 'images'
874
900
  property :log_url, as: 'logUrl'
@@ -1147,6 +1173,15 @@ module Google
1147
1173
  end
1148
1174
  end
1149
1175
 
1176
+ class DeveloperConnectConfig
1177
+ # @private
1178
+ class Representation < Google::Apis::Core::JsonRepresentation
1179
+ property :dir, as: 'dir'
1180
+ property :git_repository_link, as: 'gitRepositoryLink'
1181
+ property :revision, as: 'revision'
1182
+ end
1183
+ end
1184
+
1150
1185
  class Empty
1151
1186
  # @private
1152
1187
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1169,6 +1204,23 @@ module Google
1169
1204
  end
1170
1205
  end
1171
1206
 
1207
+ class GcsLocation
1208
+ # @private
1209
+ class Representation < Google::Apis::Core::JsonRepresentation
1210
+ property :bucket, as: 'bucket'
1211
+ property :generation, :numeric_string => true, as: 'generation'
1212
+ property :object, as: 'object'
1213
+ end
1214
+ end
1215
+
1216
+ class GitConfig
1217
+ # @private
1218
+ class Representation < Google::Apis::Core::JsonRepresentation
1219
+ property :http, as: 'http', class: Google::Apis::CloudbuildV1::HttpConfig, decorator: Google::Apis::CloudbuildV1::HttpConfig::Representation
1220
+
1221
+ end
1222
+ end
1223
+
1172
1224
  class GitFileSource
1173
1225
  # @private
1174
1226
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1345,6 +1397,15 @@ module Google
1345
1397
  end
1346
1398
  end
1347
1399
 
1400
+ class HttpConfig
1401
+ # @private
1402
+ class Representation < Google::Apis::Core::JsonRepresentation
1403
+ property :proxy_secret_version_name, as: 'proxySecretVersionName'
1404
+ property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::CloudbuildV1::GcsLocation, decorator: Google::Apis::CloudbuildV1::GcsLocation::Representation
1405
+
1406
+ end
1407
+ end
1408
+
1348
1409
  class InlineSecret
1349
1410
  # @private
1350
1411
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1664,6 +1725,8 @@ module Google
1664
1725
  class Representation < Google::Apis::Core::JsonRepresentation
1665
1726
  property :connected_repository, as: 'connectedRepository', class: Google::Apis::CloudbuildV1::ConnectedRepository, decorator: Google::Apis::CloudbuildV1::ConnectedRepository::Representation
1666
1727
 
1728
+ property :developer_connect_config, as: 'developerConnectConfig', class: Google::Apis::CloudbuildV1::DeveloperConnectConfig, decorator: Google::Apis::CloudbuildV1::DeveloperConnectConfig::Representation
1729
+
1667
1730
  property :git_source, as: 'gitSource', class: Google::Apis::CloudbuildV1::GitSource, decorator: Google::Apis::CloudbuildV1::GitSource::Representation
1668
1731
 
1669
1732
  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.61.0
4
+ version: 0.63.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: 2024-03-10 00:00:00.000000000 Z
11
+ date: 2024-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.63.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: []