google-apis-cloudbuild_v1alpha1 0.2.0 → 0.7.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: fdfb73782df50989d7558d8359bad1da24e327a2db6847205431213c20e685e4
|
4
|
+
data.tar.gz: 55187628db51fff8a29c82d437396edc34bf963d16608e6da60c5169e5b4f80d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e51eb922f70d808396746f4b02c5bf6e77b8e6d1eb9cb3903b418a55b7149780a7c17de9e91dc1ab35ba17ff7faa1b8afbc949fa20855f03e81b04f88e549346
|
7
|
+
data.tar.gz: 604e2b7d412d4e8d59870e8d41a1bcf9827946e76a8ef13c81f3dd09e675c27186682aed840dd912753466ffc626deee1ac5edd81d653d9f95cf8bb6b2965e26
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1alpha1
|
2
2
|
|
3
|
+
### v0.7.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.3.0
|
6
|
+
|
7
|
+
### v0.6.0 (2021-05-19)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.5.0 (2021-05-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210511
|
14
|
+
|
15
|
+
### v0.4.0 (2021-03-23)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210319
|
18
|
+
* Regenerated using generator version 0.2.0
|
19
|
+
|
20
|
+
### v0.3.0 (2021-03-04)
|
21
|
+
|
22
|
+
* Unspecified changes
|
23
|
+
|
3
24
|
### v0.2.0 (2021-02-02)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210128
|
@@ -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
|
@@ -223,7 +223,7 @@ module Google
|
|
223
223
|
|
224
224
|
# IAM service account whose credentials will be used at build runtime. Must be
|
225
225
|
# of the format `projects/`PROJECT_ID`/serviceAccounts/`ACCOUNT``. ACCOUNT can
|
226
|
-
# be email address or uniqueId of the service account.
|
226
|
+
# be email address or uniqueId of the service account.
|
227
227
|
# Corresponds to the JSON property `serviceAccount`
|
228
228
|
# @return [String]
|
229
229
|
attr_accessor :service_account
|
@@ -285,6 +285,11 @@ module Google
|
|
285
285
|
# @return [Hash<String,Google::Apis::CloudbuildV1alpha1::TimeSpan>]
|
286
286
|
attr_accessor :timing
|
287
287
|
|
288
|
+
# Output only. Non-fatal problems encountered during the execution of the build.
|
289
|
+
# Corresponds to the JSON property `warnings`
|
290
|
+
# @return [Array<Google::Apis::CloudbuildV1alpha1::Warning>]
|
291
|
+
attr_accessor :warnings
|
292
|
+
|
288
293
|
def initialize(**args)
|
289
294
|
update!(**args)
|
290
295
|
end
|
@@ -317,6 +322,7 @@ module Google
|
|
317
322
|
@tags = args[:tags] if args.key?(:tags)
|
318
323
|
@timeout = args[:timeout] if args.key?(:timeout)
|
319
324
|
@timing = args[:timing] if args.key?(:timing)
|
325
|
+
@warnings = args[:warnings] if args.key?(:warnings)
|
320
326
|
end
|
321
327
|
end
|
322
328
|
|
@@ -1346,6 +1352,12 @@ module Google
|
|
1346
1352
|
# @return [Google::Apis::CloudbuildV1alpha1::StorageSource]
|
1347
1353
|
attr_accessor :storage_source
|
1348
1354
|
|
1355
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1356
|
+
# Preview.
|
1357
|
+
# Corresponds to the JSON property `storageSourceManifest`
|
1358
|
+
# @return [Google::Apis::CloudbuildV1alpha1::StorageSourceManifest]
|
1359
|
+
attr_accessor :storage_source_manifest
|
1360
|
+
|
1349
1361
|
def initialize(**args)
|
1350
1362
|
update!(**args)
|
1351
1363
|
end
|
@@ -1354,6 +1366,7 @@ module Google
|
|
1354
1366
|
def update!(**args)
|
1355
1367
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
1356
1368
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
1369
|
+
@storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
|
1357
1370
|
end
|
1358
1371
|
end
|
1359
1372
|
|
@@ -1383,6 +1396,12 @@ module Google
|
|
1383
1396
|
# @return [Google::Apis::CloudbuildV1alpha1::StorageSource]
|
1384
1397
|
attr_accessor :resolved_storage_source
|
1385
1398
|
|
1399
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1400
|
+
# Preview.
|
1401
|
+
# Corresponds to the JSON property `resolvedStorageSourceManifest`
|
1402
|
+
# @return [Google::Apis::CloudbuildV1alpha1::StorageSourceManifest]
|
1403
|
+
attr_accessor :resolved_storage_source_manifest
|
1404
|
+
|
1386
1405
|
def initialize(**args)
|
1387
1406
|
update!(**args)
|
1388
1407
|
end
|
@@ -1392,6 +1411,7 @@ module Google
|
|
1392
1411
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
1393
1412
|
@resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
|
1394
1413
|
@resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
|
1414
|
+
@resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
|
1395
1415
|
end
|
1396
1416
|
end
|
1397
1417
|
|
@@ -1469,6 +1489,42 @@ module Google
|
|
1469
1489
|
end
|
1470
1490
|
end
|
1471
1491
|
|
1492
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1493
|
+
# Preview.
|
1494
|
+
class StorageSourceManifest
|
1495
|
+
include Google::Apis::Core::Hashable
|
1496
|
+
|
1497
|
+
# Google Cloud Storage bucket containing the source manifest (see [Bucket Name
|
1498
|
+
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
|
1499
|
+
# ).
|
1500
|
+
# Corresponds to the JSON property `bucket`
|
1501
|
+
# @return [String]
|
1502
|
+
attr_accessor :bucket
|
1503
|
+
|
1504
|
+
# Google Cloud Storage generation for the object. If the generation is omitted,
|
1505
|
+
# the latest generation will be used.
|
1506
|
+
# Corresponds to the JSON property `generation`
|
1507
|
+
# @return [Fixnum]
|
1508
|
+
attr_accessor :generation
|
1509
|
+
|
1510
|
+
# Google Cloud Storage object containing the source manifest. This object must
|
1511
|
+
# be a JSON file.
|
1512
|
+
# Corresponds to the JSON property `object`
|
1513
|
+
# @return [String]
|
1514
|
+
attr_accessor :object
|
1515
|
+
|
1516
|
+
def initialize(**args)
|
1517
|
+
update!(**args)
|
1518
|
+
end
|
1519
|
+
|
1520
|
+
# Update properties of this object
|
1521
|
+
def update!(**args)
|
1522
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
1523
|
+
@generation = args[:generation] if args.key?(:generation)
|
1524
|
+
@object = args[:object] if args.key?(:object)
|
1525
|
+
end
|
1526
|
+
end
|
1527
|
+
|
1472
1528
|
# Start and end times for a build execution phase.
|
1473
1529
|
class TimeSpan
|
1474
1530
|
include Google::Apis::Core::Hashable
|
@@ -1524,6 +1580,31 @@ module Google
|
|
1524
1580
|
end
|
1525
1581
|
end
|
1526
1582
|
|
1583
|
+
# A non-fatal problem encountered during the execution of the build.
|
1584
|
+
class Warning
|
1585
|
+
include Google::Apis::Core::Hashable
|
1586
|
+
|
1587
|
+
# The priority for this warning.
|
1588
|
+
# Corresponds to the JSON property `priority`
|
1589
|
+
# @return [String]
|
1590
|
+
attr_accessor :priority
|
1591
|
+
|
1592
|
+
# Explanation of the warning generated.
|
1593
|
+
# Corresponds to the JSON property `text`
|
1594
|
+
# @return [String]
|
1595
|
+
attr_accessor :text
|
1596
|
+
|
1597
|
+
def initialize(**args)
|
1598
|
+
update!(**args)
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
# Update properties of this object
|
1602
|
+
def update!(**args)
|
1603
|
+
@priority = args[:priority] if args.key?(:priority)
|
1604
|
+
@text = args[:text] if args.key?(:text)
|
1605
|
+
end
|
1606
|
+
end
|
1607
|
+
|
1527
1608
|
# WorkerConfig defines the configuration to be used for a creating workers in
|
1528
1609
|
# the pool.
|
1529
1610
|
class WorkerConfig
|
@@ -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.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210511"
|
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
|
|
@@ -238,6 +244,12 @@ module Google
|
|
238
244
|
include Google::Apis::Core::JsonObjectSupport
|
239
245
|
end
|
240
246
|
|
247
|
+
class Warning
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
241
253
|
class WorkerConfig
|
242
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
255
|
|
@@ -316,6 +328,8 @@ module Google
|
|
316
328
|
property :timeout, as: 'timeout'
|
317
329
|
hash :timing, as: 'timing', class: Google::Apis::CloudbuildV1alpha1::TimeSpan, decorator: Google::Apis::CloudbuildV1alpha1::TimeSpan::Representation
|
318
330
|
|
331
|
+
collection :warnings, as: 'warnings', class: Google::Apis::CloudbuildV1alpha1::Warning, decorator: Google::Apis::CloudbuildV1alpha1::Warning::Representation
|
332
|
+
|
319
333
|
end
|
320
334
|
end
|
321
335
|
|
@@ -591,6 +605,8 @@ module Google
|
|
591
605
|
|
592
606
|
property :storage_source, as: 'storageSource', class: Google::Apis::CloudbuildV1alpha1::StorageSource, decorator: Google::Apis::CloudbuildV1alpha1::StorageSource::Representation
|
593
607
|
|
608
|
+
property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest::Representation
|
609
|
+
|
594
610
|
end
|
595
611
|
end
|
596
612
|
|
@@ -603,6 +619,8 @@ module Google
|
|
603
619
|
|
604
620
|
property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudbuildV1alpha1::StorageSource, decorator: Google::Apis::CloudbuildV1alpha1::StorageSource::Representation
|
605
621
|
|
622
|
+
property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest::Representation
|
623
|
+
|
606
624
|
end
|
607
625
|
end
|
608
626
|
|
@@ -624,6 +642,15 @@ module Google
|
|
624
642
|
end
|
625
643
|
end
|
626
644
|
|
645
|
+
class StorageSourceManifest
|
646
|
+
# @private
|
647
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
648
|
+
property :bucket, as: 'bucket'
|
649
|
+
property :generation, :numeric_string => true, as: 'generation'
|
650
|
+
property :object, as: 'object'
|
651
|
+
end
|
652
|
+
end
|
653
|
+
|
627
654
|
class TimeSpan
|
628
655
|
# @private
|
629
656
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -640,6 +667,14 @@ module Google
|
|
640
667
|
end
|
641
668
|
end
|
642
669
|
|
670
|
+
class Warning
|
671
|
+
# @private
|
672
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
673
|
+
property :priority, as: 'priority'
|
674
|
+
property :text, as: 'text'
|
675
|
+
end
|
676
|
+
end
|
677
|
+
|
643
678
|
class WorkerConfig
|
644
679
|
# @private
|
645
680
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.7.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-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Build API V1alpha1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.7.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
68
|
requirements:
|
63
69
|
- - ">="
|
64
70
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
71
|
+
version: '2.5'
|
66
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
73
|
requirements:
|
68
74
|
- - ">="
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud Build API V1alpha1
|