google-apis-cloudbuild_v1beta1 0.1.0 → 0.2.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85b82aacdc15f8e811c0b59086338b752440906aee1ab19c75c52b6ab0e18337
|
4
|
+
data.tar.gz: 4ea9c30c9398b967f585aeb6560001a235d8e4962385f4e85e041d203e5c6c74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b098b72fecc822e9774060de0f03b2cfdffa5b9821c7c5ec4e6d3b5bb7969a4a660c0fe4da7f04d91df5a25ee3682668dc08fea9f9270f290d77a3cf0e8559ac
|
7
|
+
data.tar.gz: 7e0b4d38bd1403a1f2c0e4d5ad5000e96c1ae8c16de75ad22d43a7e9558859e1e2d86f0502302a12df21282ec542a9cd9632b634e977aa096d373288e1a50afe
|
data/CHANGELOG.md
CHANGED
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1beta1'
|
31
31
|
|
32
|
-
#
|
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
|
@@ -1336,6 +1336,12 @@ module Google
|
|
1336
1336
|
# @return [Google::Apis::CloudbuildV1beta1::StorageSource]
|
1337
1337
|
attr_accessor :storage_source
|
1338
1338
|
|
1339
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1340
|
+
# Preview.
|
1341
|
+
# Corresponds to the JSON property `storageSourceManifest`
|
1342
|
+
# @return [Google::Apis::CloudbuildV1beta1::StorageSourceManifest]
|
1343
|
+
attr_accessor :storage_source_manifest
|
1344
|
+
|
1339
1345
|
def initialize(**args)
|
1340
1346
|
update!(**args)
|
1341
1347
|
end
|
@@ -1344,6 +1350,7 @@ module Google
|
|
1344
1350
|
def update!(**args)
|
1345
1351
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
1346
1352
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
1353
|
+
@storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
|
1347
1354
|
end
|
1348
1355
|
end
|
1349
1356
|
|
@@ -1373,6 +1380,12 @@ module Google
|
|
1373
1380
|
# @return [Google::Apis::CloudbuildV1beta1::StorageSource]
|
1374
1381
|
attr_accessor :resolved_storage_source
|
1375
1382
|
|
1383
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1384
|
+
# Preview.
|
1385
|
+
# Corresponds to the JSON property `resolvedStorageSourceManifest`
|
1386
|
+
# @return [Google::Apis::CloudbuildV1beta1::StorageSourceManifest]
|
1387
|
+
attr_accessor :resolved_storage_source_manifest
|
1388
|
+
|
1376
1389
|
def initialize(**args)
|
1377
1390
|
update!(**args)
|
1378
1391
|
end
|
@@ -1382,6 +1395,7 @@ module Google
|
|
1382
1395
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
1383
1396
|
@resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
|
1384
1397
|
@resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
|
1398
|
+
@resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
|
1385
1399
|
end
|
1386
1400
|
end
|
1387
1401
|
|
@@ -1459,6 +1473,42 @@ module Google
|
|
1459
1473
|
end
|
1460
1474
|
end
|
1461
1475
|
|
1476
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1477
|
+
# Preview.
|
1478
|
+
class StorageSourceManifest
|
1479
|
+
include Google::Apis::Core::Hashable
|
1480
|
+
|
1481
|
+
# Google Cloud Storage bucket containing the source manifest (see [Bucket Name
|
1482
|
+
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
|
1483
|
+
# ).
|
1484
|
+
# Corresponds to the JSON property `bucket`
|
1485
|
+
# @return [String]
|
1486
|
+
attr_accessor :bucket
|
1487
|
+
|
1488
|
+
# Google Cloud Storage generation for the object. If the generation is omitted,
|
1489
|
+
# the latest generation will be used.
|
1490
|
+
# Corresponds to the JSON property `generation`
|
1491
|
+
# @return [Fixnum]
|
1492
|
+
attr_accessor :generation
|
1493
|
+
|
1494
|
+
# Google Cloud Storage object containing the source manifest. This object must
|
1495
|
+
# be a JSON file.
|
1496
|
+
# Corresponds to the JSON property `object`
|
1497
|
+
# @return [String]
|
1498
|
+
attr_accessor :object
|
1499
|
+
|
1500
|
+
def initialize(**args)
|
1501
|
+
update!(**args)
|
1502
|
+
end
|
1503
|
+
|
1504
|
+
# Update properties of this object
|
1505
|
+
def update!(**args)
|
1506
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
1507
|
+
@generation = args[:generation] if args.key?(:generation)
|
1508
|
+
@object = args[:object] if args.key?(:object)
|
1509
|
+
end
|
1510
|
+
end
|
1511
|
+
|
1462
1512
|
# Start and end times for a build execution phase.
|
1463
1513
|
class TimeSpan
|
1464
1514
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudbuildV1beta1
|
18
18
|
# Version of the google-apis-cloudbuild_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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::CloudbuildV1beta1::StorageSource, decorator: Google::Apis::CloudbuildV1beta1::StorageSource::Representation
|
591
597
|
|
598
|
+
property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1beta1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1beta1::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::CloudbuildV1beta1::StorageSource, decorator: Google::Apis::CloudbuildV1beta1::StorageSource::Representation
|
603
611
|
|
612
|
+
property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1beta1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1beta1::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_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.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-
|
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_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.2.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|