google-apis-cloudbuild_v1alpha1 0.3.0 → 0.4.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f76630053e207a5e606621a5a13c988fa04e5a1f7c3ff1fbc891a9adf26007f7
|
4
|
+
data.tar.gz: 805a1999338a7ebbdaac685167c19fde1a5a4fd9702e6b2cf94ad87fc31d54df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0df246d88faf2085c7fc2172299faab994aeb1cd1950919d3a5c031dae8e79efbec1a0848db2742c7696a794c5d5bfa9a7c02230ac805b34e7b9f2cbaa4fdcc7
|
7
|
+
data.tar.gz: a836dc482468b5260391e27471e1c5589fa1a9dac838fe4014d3edfcad616f1920310d312653306f9af46b0cc7b9c52669b55bc701cd39435fe404d3afa27368
|
data/CHANGELOG.md
CHANGED
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1alpha1'
|
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
|
@@ -1346,6 +1346,12 @@ module Google
|
|
1346
1346
|
# @return [Google::Apis::CloudbuildV1alpha1::StorageSource]
|
1347
1347
|
attr_accessor :storage_source
|
1348
1348
|
|
1349
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1350
|
+
# Preview.
|
1351
|
+
# Corresponds to the JSON property `storageSourceManifest`
|
1352
|
+
# @return [Google::Apis::CloudbuildV1alpha1::StorageSourceManifest]
|
1353
|
+
attr_accessor :storage_source_manifest
|
1354
|
+
|
1349
1355
|
def initialize(**args)
|
1350
1356
|
update!(**args)
|
1351
1357
|
end
|
@@ -1354,6 +1360,7 @@ module Google
|
|
1354
1360
|
def update!(**args)
|
1355
1361
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
1356
1362
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
1363
|
+
@storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
|
1357
1364
|
end
|
1358
1365
|
end
|
1359
1366
|
|
@@ -1383,6 +1390,12 @@ module Google
|
|
1383
1390
|
# @return [Google::Apis::CloudbuildV1alpha1::StorageSource]
|
1384
1391
|
attr_accessor :resolved_storage_source
|
1385
1392
|
|
1393
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1394
|
+
# Preview.
|
1395
|
+
# Corresponds to the JSON property `resolvedStorageSourceManifest`
|
1396
|
+
# @return [Google::Apis::CloudbuildV1alpha1::StorageSourceManifest]
|
1397
|
+
attr_accessor :resolved_storage_source_manifest
|
1398
|
+
|
1386
1399
|
def initialize(**args)
|
1387
1400
|
update!(**args)
|
1388
1401
|
end
|
@@ -1392,6 +1405,7 @@ module Google
|
|
1392
1405
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
1393
1406
|
@resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
|
1394
1407
|
@resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
|
1408
|
+
@resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
|
1395
1409
|
end
|
1396
1410
|
end
|
1397
1411
|
|
@@ -1469,6 +1483,42 @@ module Google
|
|
1469
1483
|
end
|
1470
1484
|
end
|
1471
1485
|
|
1486
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1487
|
+
# Preview.
|
1488
|
+
class StorageSourceManifest
|
1489
|
+
include Google::Apis::Core::Hashable
|
1490
|
+
|
1491
|
+
# Google Cloud Storage bucket containing the source manifest (see [Bucket Name
|
1492
|
+
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
|
1493
|
+
# ).
|
1494
|
+
# Corresponds to the JSON property `bucket`
|
1495
|
+
# @return [String]
|
1496
|
+
attr_accessor :bucket
|
1497
|
+
|
1498
|
+
# Google Cloud Storage generation for the object. If the generation is omitted,
|
1499
|
+
# the latest generation will be used.
|
1500
|
+
# Corresponds to the JSON property `generation`
|
1501
|
+
# @return [Fixnum]
|
1502
|
+
attr_accessor :generation
|
1503
|
+
|
1504
|
+
# Google Cloud Storage object containing the source manifest. This object must
|
1505
|
+
# be a JSON file.
|
1506
|
+
# Corresponds to the JSON property `object`
|
1507
|
+
# @return [String]
|
1508
|
+
attr_accessor :object
|
1509
|
+
|
1510
|
+
def initialize(**args)
|
1511
|
+
update!(**args)
|
1512
|
+
end
|
1513
|
+
|
1514
|
+
# Update properties of this object
|
1515
|
+
def update!(**args)
|
1516
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
1517
|
+
@generation = args[:generation] if args.key?(:generation)
|
1518
|
+
@object = args[:object] if args.key?(:object)
|
1519
|
+
end
|
1520
|
+
end
|
1521
|
+
|
1472
1522
|
# Start and end times for a build execution phase.
|
1473
1523
|
class TimeSpan
|
1474
1524
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudbuildV1alpha1
|
18
18
|
# Version of the google-apis-cloudbuild_v1alpha1 gem
|
19
|
-
GEM_VERSION = "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.
|
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
|
|
@@ -591,6 +597,8 @@ module Google
|
|
591
597
|
|
592
598
|
property :storage_source, as: 'storageSource', class: Google::Apis::CloudbuildV1alpha1::StorageSource, decorator: Google::Apis::CloudbuildV1alpha1::StorageSource::Representation
|
593
599
|
|
600
|
+
property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest::Representation
|
601
|
+
|
594
602
|
end
|
595
603
|
end
|
596
604
|
|
@@ -603,6 +611,8 @@ module Google
|
|
603
611
|
|
604
612
|
property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudbuildV1alpha1::StorageSource, decorator: Google::Apis::CloudbuildV1alpha1::StorageSource::Representation
|
605
613
|
|
614
|
+
property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest::Representation
|
615
|
+
|
606
616
|
end
|
607
617
|
end
|
608
618
|
|
@@ -624,6 +634,15 @@ module Google
|
|
624
634
|
end
|
625
635
|
end
|
626
636
|
|
637
|
+
class StorageSourceManifest
|
638
|
+
# @private
|
639
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
640
|
+
property :bucket, as: 'bucket'
|
641
|
+
property :generation, :numeric_string => true, as: 'generation'
|
642
|
+
property :object, as: 'object'
|
643
|
+
end
|
644
|
+
end
|
645
|
+
|
627
646
|
class TimeSpan
|
628
647
|
# @private
|
629
648
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-
|
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_v1alpha1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.4.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|