google-apis-cloudbuild_v1 0.4.0 → 0.5.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: 239516c00fb600c058808b06532f69b587e22b0863c504e347200f56ffb3913a
4
- data.tar.gz: 3c3cb7f8ddcf1f2075175f2c072e5515ddeef2d13841b701d624345253d33ff4
3
+ metadata.gz: 39aac7ae09c9d2440d5bc63fa5afd818a2e90cc9c768c58037489150ed196b44
4
+ data.tar.gz: 774b11a8d06f065714792c5b195a7237ffd23ff08f71b7a607b8465f9519183b
5
5
  SHA512:
6
- metadata.gz: abccf069efdf527e64753cf532149af00c1ee9fcfa509ff27399142ce44db4880516990c588a5b370bc196e6b4638c8fe948d99d215b949a767b439e4b5c5d58
7
- data.tar.gz: 4411887cee54cba6cb7b72a65d8171eef062fa53d20af5bb1eaae7d4d283954060db811e3fe2f2444819d8dab95ac8cfdd7ab3be351cccffc62a80c59fe93de4
6
+ metadata.gz: 18033746b46870b4c55e230b3d8dc9450947f24456dbfdf3b2fde1cbe972d35c79ab9285cef8f82a0e15235efee1a16cf8c2dc6b35bcb233ac368a64b5729533
7
+ data.tar.gz: 7e2b0ac055ddd939ad65b7928658bf4a7f5f64d7ec183a1f5062a24c5e1c65d3a312ab912588f086153dc93e0cfdb37926bf7af65635dc9097b0ec0b9ca9ba4d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudbuild_v1
2
2
 
3
+ ### v0.5.0 (2021-03-23)
4
+
5
+ * Regenerated from discovery document revision 20210319
6
+ * Regenerated using generator version 0.2.0
7
+
3
8
  ### v0.4.0 (2021-03-04)
4
9
 
5
10
  * Unspecified changes
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
32
+ # See, edit, configure, and delete your Google Cloud Platform data
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  end
@@ -1704,6 +1704,12 @@ module Google
1704
1704
  # @return [Google::Apis::CloudbuildV1::StorageSource]
1705
1705
  attr_accessor :storage_source
1706
1706
 
1707
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1708
+ # Preview.
1709
+ # Corresponds to the JSON property `storageSourceManifest`
1710
+ # @return [Google::Apis::CloudbuildV1::StorageSourceManifest]
1711
+ attr_accessor :storage_source_manifest
1712
+
1707
1713
  def initialize(**args)
1708
1714
  update!(**args)
1709
1715
  end
@@ -1712,6 +1718,7 @@ module Google
1712
1718
  def update!(**args)
1713
1719
  @repo_source = args[:repo_source] if args.key?(:repo_source)
1714
1720
  @storage_source = args[:storage_source] if args.key?(:storage_source)
1721
+ @storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
1715
1722
  end
1716
1723
  end
1717
1724
 
@@ -1741,6 +1748,12 @@ module Google
1741
1748
  # @return [Google::Apis::CloudbuildV1::StorageSource]
1742
1749
  attr_accessor :resolved_storage_source
1743
1750
 
1751
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1752
+ # Preview.
1753
+ # Corresponds to the JSON property `resolvedStorageSourceManifest`
1754
+ # @return [Google::Apis::CloudbuildV1::StorageSourceManifest]
1755
+ attr_accessor :resolved_storage_source_manifest
1756
+
1744
1757
  def initialize(**args)
1745
1758
  update!(**args)
1746
1759
  end
@@ -1750,6 +1763,7 @@ module Google
1750
1763
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
1751
1764
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
1752
1765
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
1766
+ @resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
1753
1767
  end
1754
1768
  end
1755
1769
 
@@ -1827,6 +1841,42 @@ module Google
1827
1841
  end
1828
1842
  end
1829
1843
 
1844
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1845
+ # Preview.
1846
+ class StorageSourceManifest
1847
+ include Google::Apis::Core::Hashable
1848
+
1849
+ # Google Cloud Storage bucket containing the source manifest (see [Bucket Name
1850
+ # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
1851
+ # ).
1852
+ # Corresponds to the JSON property `bucket`
1853
+ # @return [String]
1854
+ attr_accessor :bucket
1855
+
1856
+ # Google Cloud Storage generation for the object. If the generation is omitted,
1857
+ # the latest generation will be used.
1858
+ # Corresponds to the JSON property `generation`
1859
+ # @return [Fixnum]
1860
+ attr_accessor :generation
1861
+
1862
+ # Google Cloud Storage object containing the source manifest. This object must
1863
+ # be a JSON file.
1864
+ # Corresponds to the JSON property `object`
1865
+ # @return [String]
1866
+ attr_accessor :object
1867
+
1868
+ def initialize(**args)
1869
+ update!(**args)
1870
+ end
1871
+
1872
+ # Update properties of this object
1873
+ def update!(**args)
1874
+ @bucket = args[:bucket] if args.key?(:bucket)
1875
+ @generation = args[:generation] if args.key?(:generation)
1876
+ @object = args[:object] if args.key?(:object)
1877
+ end
1878
+ end
1879
+
1830
1880
  # Start and end times for a build execution phase.
1831
1881
  class TimeSpan
1832
1882
  include Google::Apis::Core::Hashable
@@ -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.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210218"
25
+ REVISION = "20210319"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,12 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class StorageSourceManifest
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
277
283
  class TimeSpan
278
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
285
 
@@ -714,6 +720,8 @@ module Google
714
720
 
715
721
  property :storage_source, as: 'storageSource', class: Google::Apis::CloudbuildV1::StorageSource, decorator: Google::Apis::CloudbuildV1::StorageSource::Representation
716
722
 
723
+ property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1::StorageSourceManifest::Representation
724
+
717
725
  end
718
726
  end
719
727
 
@@ -726,6 +734,8 @@ module Google
726
734
 
727
735
  property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudbuildV1::StorageSource, decorator: Google::Apis::CloudbuildV1::StorageSource::Representation
728
736
 
737
+ property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1::StorageSourceManifest::Representation
738
+
729
739
  end
730
740
  end
731
741
 
@@ -747,6 +757,15 @@ module Google
747
757
  end
748
758
  end
749
759
 
760
+ class StorageSourceManifest
761
+ # @private
762
+ class Representation < Google::Apis::Core::JsonRepresentation
763
+ property :bucket, as: 'bucket'
764
+ property :generation, :numeric_string => true, as: 'generation'
765
+ property :object, as: 'object'
766
+ end
767
+ end
768
+
750
769
  class TimeSpan
751
770
  # @private
752
771
  class Representation < Google::Apis::Core::JsonRepresentation
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.0
4
+ version: 0.5.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: 2021-03-08 00:00:00.000000000 Z
11
+ date: 2021-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.4.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.5.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1
57
57
  post_install_message:
58
58
  rdoc_options: []