google-apis-cloudbuild_v1alpha2 0.3.0 → 0.4.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: 38c15bbed24e3e7da0f3506f75cebda20401f64c2f847597b7d373800f5ae64e
4
- data.tar.gz: b2992d13a14ae2d23348224dc1b7051ce720c33d568a3d9495d064c283269cbc
3
+ metadata.gz: ef71535d20446a40c61ced0973cc0a43bca2000d3478f06f9cc564538f3b970d
4
+ data.tar.gz: 0ac4a54ed6a6b3193f2a115758c5137e40969bcf60b0e0bc5f16e646c08a2439
5
5
  SHA512:
6
- metadata.gz: ccbd8ac9911f78389914aa97ab8c33eca000a340f8615bb819c90a4462bd1c6d7c51dfd14d67b9df61b28ce390625679baf1d71693853c2a5334238073d3b2e2
7
- data.tar.gz: 14a0c4e19b75442e7f7dc7993034cd32b0de307a61114e0c7323f0c9c35f9f05516ff26271a314a988dbc6b8971f7edd7be016dc56bc77b27c7ec631705c11f9
6
+ metadata.gz: 59c81128510896a3e8ed3fd561b45ccb59183aaf44400ee78ac73b43b74344f1669ce54cc31ecc818280147005ba532f089252fb7388c4f37d4a27a68bc35898
7
+ data.tar.gz: 479051f080c0d20d80e98cb5c5828d7e1402e0a346047156ef0987a342c233284496300888349f8cad1d480f1bfc27138c47d97da81e21387ed0522bbd2d4b8d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha2
2
2
 
3
+ ### v0.4.0 (2021-03-23)
4
+
5
+ * Regenerated from discovery document revision 20210319
6
+ * Regenerated using generator version 0.2.0
7
+
3
8
  ### v0.3.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 = 'V1alpha2'
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
@@ -1333,6 +1333,12 @@ module Google
1333
1333
  # @return [Google::Apis::CloudbuildV1alpha2::StorageSource]
1334
1334
  attr_accessor :storage_source
1335
1335
 
1336
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1337
+ # Preview.
1338
+ # Corresponds to the JSON property `storageSourceManifest`
1339
+ # @return [Google::Apis::CloudbuildV1alpha2::StorageSourceManifest]
1340
+ attr_accessor :storage_source_manifest
1341
+
1336
1342
  def initialize(**args)
1337
1343
  update!(**args)
1338
1344
  end
@@ -1341,6 +1347,7 @@ module Google
1341
1347
  def update!(**args)
1342
1348
  @repo_source = args[:repo_source] if args.key?(:repo_source)
1343
1349
  @storage_source = args[:storage_source] if args.key?(:storage_source)
1350
+ @storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
1344
1351
  end
1345
1352
  end
1346
1353
 
@@ -1370,6 +1377,12 @@ module Google
1370
1377
  # @return [Google::Apis::CloudbuildV1alpha2::StorageSource]
1371
1378
  attr_accessor :resolved_storage_source
1372
1379
 
1380
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1381
+ # Preview.
1382
+ # Corresponds to the JSON property `resolvedStorageSourceManifest`
1383
+ # @return [Google::Apis::CloudbuildV1alpha2::StorageSourceManifest]
1384
+ attr_accessor :resolved_storage_source_manifest
1385
+
1373
1386
  def initialize(**args)
1374
1387
  update!(**args)
1375
1388
  end
@@ -1379,6 +1392,7 @@ module Google
1379
1392
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
1380
1393
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
1381
1394
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
1395
+ @resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
1382
1396
  end
1383
1397
  end
1384
1398
 
@@ -1456,6 +1470,42 @@ module Google
1456
1470
  end
1457
1471
  end
1458
1472
 
1473
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1474
+ # Preview.
1475
+ class StorageSourceManifest
1476
+ include Google::Apis::Core::Hashable
1477
+
1478
+ # Google Cloud Storage bucket containing the source manifest (see [Bucket Name
1479
+ # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
1480
+ # ).
1481
+ # Corresponds to the JSON property `bucket`
1482
+ # @return [String]
1483
+ attr_accessor :bucket
1484
+
1485
+ # Google Cloud Storage generation for the object. If the generation is omitted,
1486
+ # the latest generation will be used.
1487
+ # Corresponds to the JSON property `generation`
1488
+ # @return [Fixnum]
1489
+ attr_accessor :generation
1490
+
1491
+ # Google Cloud Storage object containing the source manifest. This object must
1492
+ # be a JSON file.
1493
+ # Corresponds to the JSON property `object`
1494
+ # @return [String]
1495
+ attr_accessor :object
1496
+
1497
+ def initialize(**args)
1498
+ update!(**args)
1499
+ end
1500
+
1501
+ # Update properties of this object
1502
+ def update!(**args)
1503
+ @bucket = args[:bucket] if args.key?(:bucket)
1504
+ @generation = args[:generation] if args.key?(:generation)
1505
+ @object = args[:object] if args.key?(:object)
1506
+ end
1507
+ end
1508
+
1459
1509
  # Start and end times for a build execution phase.
1460
1510
  class TimeSpan
1461
1511
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1alpha2
18
18
  # Version of the google-apis-cloudbuild_v1alpha2 gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.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 = "20210128"
25
+ REVISION = "20210319"
26
26
  end
27
27
  end
28
28
  end
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class StorageSourceManifest
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class TimeSpan
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -589,6 +595,8 @@ module Google
589
595
 
590
596
  property :storage_source, as: 'storageSource', class: Google::Apis::CloudbuildV1alpha2::StorageSource, decorator: Google::Apis::CloudbuildV1alpha2::StorageSource::Representation
591
597
 
598
+ property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest::Representation
599
+
592
600
  end
593
601
  end
594
602
 
@@ -601,6 +609,8 @@ module Google
601
609
 
602
610
  property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudbuildV1alpha2::StorageSource, decorator: Google::Apis::CloudbuildV1alpha2::StorageSource::Representation
603
611
 
612
+ property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest::Representation
613
+
604
614
  end
605
615
  end
606
616
 
@@ -622,6 +632,15 @@ module Google
622
632
  end
623
633
  end
624
634
 
635
+ class StorageSourceManifest
636
+ # @private
637
+ class Representation < Google::Apis::Core::JsonRepresentation
638
+ property :bucket, as: 'bucket'
639
+ property :generation, :numeric_string => true, as: 'generation'
640
+ property :object, as: 'object'
641
+ end
642
+ end
643
+
625
644
  class TimeSpan
626
645
  # @private
627
646
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1alpha2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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_v1alpha2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.4.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha2
57
57
  post_install_message:
58
58
  rdoc_options: []