google-apis-cloudbuild_v1 0.62.0 → 0.63.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: 162bef0f03d5f29d5a1dba51e53c713e44ee48f66ae60815d8b6330514f81cc6
4
- data.tar.gz: 6c17814149b0406c2e2bce7f76c160793723c8e5cf17eb2c8c8797223245b2c1
3
+ metadata.gz: 2869645a6c84791dbf87e36fee22dc96bb452bbfe11f006acbdd3be8ea65a5e7
4
+ data.tar.gz: 988e973b8d602088fe1e4383f5c0de5b3970d6a1188e42e005bdeb1e224d0f96
5
5
  SHA512:
6
- metadata.gz: 560f528f3982b0f7b313878d77cf0d59d68b344465639e330ba45ed36f3824b83fcceb57927f9bf425d25629b4042b6ec01b98c3f0d82274db665fb0b58f73bf
7
- data.tar.gz: ee14031915d408165aedff3e402c4c74bb9d0a042dc6c5f382500ad90cc9fed4343bbdab6fcd13855731c6934e03b55c825aa47e307f680ef9dd927a4ff355d4
6
+ metadata.gz: 85dccb8bb8405b97f6ab7ee702be4928d61fabe1c941fa1bf806255067d618543d301113547846023e29ba2d45709e4f4f8c0756469fee031e9dcba0bdf5b96c
7
+ data.tar.gz: 69fce901ffbced5b04d04cf04bc009b4d95c73052cd597f3dd2d4eeefd81a7d50dec5f8530326d9c8391784184736745373fcf58706b81ced7287e3e48efadb6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.62.0 (2024-05-05)
4
9
 
5
10
  * Regenerated from discovery document revision 20240427
@@ -995,7 +995,7 @@ module Google
995
995
  # disk free"; some of the space will be used by the operating system and build
996
996
  # utilities. Also note that this is the minimum disk size that will be allocated
997
997
  # for the build -- the build may run with a larger disk than requested. At
998
- # 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
999
999
  # maximum are rejected with an error.
1000
1000
  # Corresponds to the JSON property `diskSizeGb`
1001
1001
  # @return [Fixnum]
@@ -1574,7 +1574,7 @@ module Google
1574
1574
  class ConnectedRepository
1575
1575
  include Google::Apis::Core::Hashable
1576
1576
 
1577
- # 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.
1578
1578
  # Corresponds to the JSON property `dir`
1579
1579
  # @return [String]
1580
1580
  attr_accessor :dir
@@ -1585,8 +1585,8 @@ module Google
1585
1585
  # @return [String]
1586
1586
  attr_accessor :repository
1587
1587
 
1588
- # The revision to fetch from the Git repository such as a branch, a tag, a
1589
- # 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.
1590
1590
  # Corresponds to the JSON property `revision`
1591
1591
  # @return [String]
1592
1592
  attr_accessor :revision
@@ -2040,6 +2040,40 @@ module Google
2040
2040
  end
2041
2041
  end
2042
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
+
2043
2077
  # GitConfig is a configuration for git operations.
2044
2078
  class GitConfig
2045
2079
  include Google::Apis::Core::Hashable
@@ -2668,26 +2702,26 @@ module Google
2668
2702
  class GitSource
2669
2703
  include Google::Apis::Core::Hashable
2670
2704
 
2671
- # Directory, relative to the source root, in which to run the build. This must
2672
- # be a relative path. If a step's `dir` is specified and is an absolute path,
2673
- # 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.
2674
2708
  # Corresponds to the JSON property `dir`
2675
2709
  # @return [String]
2676
2710
  attr_accessor :dir
2677
2711
 
2678
- # The revision to fetch from the Git repository such as a branch, a tag, a
2679
- # commit SHA, or any Git ref. Cloud Build uses `git fetch` to fetch the revision
2680
- # from the Git repository; therefore make sure that the string you provide for `
2681
- # revision` is parsable by the command. For information on string values
2682
- # 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#
2683
2717
  # _specifying_revisions. For information on `git fetch`, see https://git-scm.com/
2684
2718
  # docs/git-fetch.
2685
2719
  # Corresponds to the JSON property `revision`
2686
2720
  # @return [String]
2687
2721
  attr_accessor :revision
2688
2722
 
2689
- # Location of the Git repo to build. This will be used as a `git remote`, see
2690
- # 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.
2691
2725
  # Corresponds to the JSON property `url`
2692
2726
  # @return [String]
2693
2727
  attr_accessor :url
@@ -2788,6 +2822,11 @@ module Google
2788
2822
  # @return [String]
2789
2823
  attr_accessor :proxy_secret_version_name
2790
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
+
2791
2830
  def initialize(**args)
2792
2831
  update!(**args)
2793
2832
  end
@@ -2795,6 +2834,7 @@ module Google
2795
2834
  # Update properties of this object
2796
2835
  def update!(**args)
2797
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)
2798
2838
  end
2799
2839
  end
2800
2840
 
@@ -3567,31 +3607,32 @@ module Google
3567
3607
  # @return [String]
3568
3608
  attr_accessor :commit_sha
3569
3609
 
3570
- # Directory, relative to the source root, in which to run the build. This must
3571
- # be a relative path. If a step's `dir` is specified and is an absolute path,
3572
- # 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.
3573
3613
  # Corresponds to the JSON property `dir`
3574
3614
  # @return [String]
3575
3615
  attr_accessor :dir
3576
3616
 
3577
- # 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.
3578
3619
  # Corresponds to the JSON property `invertRegex`
3579
3620
  # @return [Boolean]
3580
3621
  attr_accessor :invert_regex
3581
3622
  alias_method :invert_regex?, :invert_regex
3582
3623
 
3583
- # ID of the project that owns the Cloud Source Repository. If omitted, the
3584
- # 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.
3585
3626
  # Corresponds to the JSON property `projectId`
3586
3627
  # @return [String]
3587
3628
  attr_accessor :project_id
3588
3629
 
3589
- # Name of the Cloud Source Repository.
3630
+ # Required. Name of the Cloud Source Repository.
3590
3631
  # Corresponds to the JSON property `repoName`
3591
3632
  # @return [String]
3592
3633
  attr_accessor :repo_name
3593
3634
 
3594
- # 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
3595
3636
  # RunBuildTrigger
3596
3637
  # Corresponds to the JSON property `substitutions`
3597
3638
  # @return [Hash<String,String>]
@@ -3682,7 +3723,8 @@ module Google
3682
3723
  # List of build step outputs, produced by builder images, in the order
3683
3724
  # corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
3684
3725
  # cloud-build/docs/cloud-builders) can produce this output by writing to `$
3685
- # 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.
3686
3728
  # Corresponds to the JSON property `buildStepOutputs`
3687
3729
  # @return [Array<String>]
3688
3730
  attr_accessor :build_step_outputs
@@ -4057,14 +4099,14 @@ module Google
4057
4099
  # @return [String]
4058
4100
  attr_accessor :bucket
4059
4101
 
4060
- # Cloud Storage generation for the object. If the generation is omitted, the
4061
- # 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.
4062
4104
  # Corresponds to the JSON property `generation`
4063
4105
  # @return [Fixnum]
4064
4106
  attr_accessor :generation
4065
4107
 
4066
- # Cloud Storage object containing the source. This object must be a zipped (`.
4067
- # 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.
4068
4110
  # Corresponds to the JSON property `object`
4069
4111
  # @return [String]
4070
4112
  attr_accessor :object
@@ -4093,9 +4135,9 @@ module Google
4093
4135
  class StorageSourceManifest
4094
4136
  include Google::Apis::Core::Hashable
4095
4137
 
4096
- # Cloud Storage bucket containing the source manifest (see [Bucket Name
4097
- # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
4098
- # ).
4138
+ # Required. Cloud Storage bucket containing the source manifest (see [Bucket
4139
+ # Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#
4140
+ # requirements)).
4099
4141
  # Corresponds to the JSON property `bucket`
4100
4142
  # @return [String]
4101
4143
  attr_accessor :bucket
@@ -4106,8 +4148,8 @@ module Google
4106
4148
  # @return [Fixnum]
4107
4149
  attr_accessor :generation
4108
4150
 
4109
- # Cloud Storage object containing the source manifest. This object must be a
4110
- # JSON file.
4151
+ # Required. Cloud Storage object containing the source manifest. This object
4152
+ # must be a JSON file.
4111
4153
  # Corresponds to the JSON property `object`
4112
4154
  # @return [String]
4113
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.62.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 = "20240427"
25
+ REVISION = "20240519"
26
26
  end
27
27
  end
28
28
  end
@@ -280,6 +280,12 @@ module Google
280
280
  include Google::Apis::Core::JsonObjectSupport
281
281
  end
282
282
 
283
+ class GcsLocation
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
283
289
  class GitConfig
284
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
291
 
@@ -1198,6 +1204,15 @@ module Google
1198
1204
  end
1199
1205
  end
1200
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
+
1201
1216
  class GitConfig
1202
1217
  # @private
1203
1218
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1386,6 +1401,8 @@ module Google
1386
1401
  # @private
1387
1402
  class Representation < Google::Apis::Core::JsonRepresentation
1388
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
+
1389
1406
  end
1390
1407
  end
1391
1408
 
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.62.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-05-05 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.62.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: []