google-apis-cloudbuild_v1alpha2 0.3.0 → 0.8.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/cloudbuild_v1alpha2.rb +1 -1
- data/lib/google/apis/cloudbuild_v1alpha2/classes.rb +213 -4
- data/lib/google/apis/cloudbuild_v1alpha2/gem_version.rb +3 -3
- data/lib/google/apis/cloudbuild_v1alpha2/representations.rb +95 -0
- metadata +14 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ba7b1d237aac21342d3599553338010ab6f015c758ee210e516bfb06bc98b990
|
|
4
|
+
data.tar.gz: 3ce504b5dc3e77a159859e64ac5f3c2d882e4246a1ab443897e6812831a628bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c8a2aa2584e6799c96142fcd75c1c31acba13ac0c85609e12c68bc6c03cbcdd8d7c89daf0404e3a86f9566a05aecb5c1c460d69f1968635c89cbc8f54a380c6
|
|
7
|
+
data.tar.gz: 04f4664f166977ed3ff406f4f359dd356f6a01d2ae7e9977528f7616b4f7e314c16e7d05a8bc874d911e728a158be9a7f8ad20fd70405bd7ce6a684215ba1e02
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1alpha2
|
|
2
2
|
|
|
3
|
+
### v0.8.0 (2021-07-03)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20210701
|
|
6
|
+
* Regenerated using generator version 0.4.0
|
|
7
|
+
|
|
8
|
+
### v0.7.0 (2021-06-24)
|
|
9
|
+
|
|
10
|
+
* Regenerated using generator version 0.3.0
|
|
11
|
+
|
|
12
|
+
### v0.6.0 (2021-05-19)
|
|
13
|
+
|
|
14
|
+
* Unspecified changes
|
|
15
|
+
|
|
16
|
+
### v0.5.0 (2021-05-12)
|
|
17
|
+
|
|
18
|
+
* Regenerated from discovery document revision 20210511
|
|
19
|
+
|
|
20
|
+
### v0.4.0 (2021-03-23)
|
|
21
|
+
|
|
22
|
+
* Regenerated from discovery document revision 20210319
|
|
23
|
+
* Regenerated using generator version 0.2.0
|
|
24
|
+
|
|
3
25
|
### v0.3.0 (2021-03-04)
|
|
4
26
|
|
|
5
27
|
* Unspecified changes
|
|
@@ -29,7 +29,7 @@ module Google
|
|
|
29
29
|
# This is NOT the gem version.
|
|
30
30
|
VERSION = 'V1alpha2'
|
|
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::CloudbuildV1alpha2::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::CloudbuildV1alpha2::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
|
|
|
@@ -396,6 +402,13 @@ module Google
|
|
|
396
402
|
# @return [String]
|
|
397
403
|
attr_accessor :machine_type
|
|
398
404
|
|
|
405
|
+
# Details about how a build should be executed on a `WorkerPool`. See [running
|
|
406
|
+
# builds in a custom worker pool](https://cloud.google.com/build/docs/custom-
|
|
407
|
+
# workers/run-builds-in-custom-worker-pool) for more information.
|
|
408
|
+
# Corresponds to the JSON property `pool`
|
|
409
|
+
# @return [Google::Apis::CloudbuildV1alpha2::PoolOption]
|
|
410
|
+
attr_accessor :pool
|
|
411
|
+
|
|
399
412
|
# Requested verifiability options.
|
|
400
413
|
# Corresponds to the JSON property `requestedVerifyOption`
|
|
401
414
|
# @return [String]
|
|
@@ -430,9 +443,7 @@ module Google
|
|
|
430
443
|
# @return [Array<Google::Apis::CloudbuildV1alpha2::Volume>]
|
|
431
444
|
attr_accessor :volumes
|
|
432
445
|
|
|
433
|
-
#
|
|
434
|
-
# locations/`location`/workerPools/`workerPool` This field is in beta and is
|
|
435
|
-
# available only to restricted users.
|
|
446
|
+
# This field deprecated; please use `pool.name` instead.
|
|
436
447
|
# Corresponds to the JSON property `workerPool`
|
|
437
448
|
# @return [String]
|
|
438
449
|
attr_accessor :worker_pool
|
|
@@ -449,6 +460,7 @@ module Google
|
|
|
449
460
|
@log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
|
|
450
461
|
@logging = args[:logging] if args.key?(:logging)
|
|
451
462
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
463
|
+
@pool = args[:pool] if args.key?(:pool)
|
|
452
464
|
@requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
|
|
453
465
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
|
454
466
|
@source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
|
|
@@ -631,6 +643,70 @@ module Google
|
|
|
631
643
|
end
|
|
632
644
|
end
|
|
633
645
|
|
|
646
|
+
# Metadata for the `CreateWorkerPool` operation.
|
|
647
|
+
class CreateWorkerPoolOperationMetadata
|
|
648
|
+
include Google::Apis::Core::Hashable
|
|
649
|
+
|
|
650
|
+
# Time the operation was completed.
|
|
651
|
+
# Corresponds to the JSON property `completeTime`
|
|
652
|
+
# @return [String]
|
|
653
|
+
attr_accessor :complete_time
|
|
654
|
+
|
|
655
|
+
# Time the operation was created.
|
|
656
|
+
# Corresponds to the JSON property `createTime`
|
|
657
|
+
# @return [String]
|
|
658
|
+
attr_accessor :create_time
|
|
659
|
+
|
|
660
|
+
# The resource name of the `WorkerPool` to create. Format: `projects/`project`/
|
|
661
|
+
# locations/`location`/workerPools/`worker_pool``.
|
|
662
|
+
# Corresponds to the JSON property `workerPool`
|
|
663
|
+
# @return [String]
|
|
664
|
+
attr_accessor :worker_pool
|
|
665
|
+
|
|
666
|
+
def initialize(**args)
|
|
667
|
+
update!(**args)
|
|
668
|
+
end
|
|
669
|
+
|
|
670
|
+
# Update properties of this object
|
|
671
|
+
def update!(**args)
|
|
672
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
|
673
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
674
|
+
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
|
675
|
+
end
|
|
676
|
+
end
|
|
677
|
+
|
|
678
|
+
# Metadata for the `DeleteWorkerPool` operation.
|
|
679
|
+
class DeleteWorkerPoolOperationMetadata
|
|
680
|
+
include Google::Apis::Core::Hashable
|
|
681
|
+
|
|
682
|
+
# Time the operation was completed.
|
|
683
|
+
# Corresponds to the JSON property `completeTime`
|
|
684
|
+
# @return [String]
|
|
685
|
+
attr_accessor :complete_time
|
|
686
|
+
|
|
687
|
+
# Time the operation was created.
|
|
688
|
+
# Corresponds to the JSON property `createTime`
|
|
689
|
+
# @return [String]
|
|
690
|
+
attr_accessor :create_time
|
|
691
|
+
|
|
692
|
+
# The resource name of the `WorkerPool` being deleted. Format: `projects/`
|
|
693
|
+
# project`/locations/`location`/workerPools/`worker_pool``.
|
|
694
|
+
# Corresponds to the JSON property `workerPool`
|
|
695
|
+
# @return [String]
|
|
696
|
+
attr_accessor :worker_pool
|
|
697
|
+
|
|
698
|
+
def initialize(**args)
|
|
699
|
+
update!(**args)
|
|
700
|
+
end
|
|
701
|
+
|
|
702
|
+
# Update properties of this object
|
|
703
|
+
def update!(**args)
|
|
704
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
|
705
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
706
|
+
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
|
707
|
+
end
|
|
708
|
+
end
|
|
709
|
+
|
|
634
710
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
635
711
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
636
712
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
@@ -1039,6 +1115,29 @@ module Google
|
|
|
1039
1115
|
end
|
|
1040
1116
|
end
|
|
1041
1117
|
|
|
1118
|
+
# Details about how a build should be executed on a `WorkerPool`. See [running
|
|
1119
|
+
# builds in a custom worker pool](https://cloud.google.com/build/docs/custom-
|
|
1120
|
+
# workers/run-builds-in-custom-worker-pool) for more information.
|
|
1121
|
+
class PoolOption
|
|
1122
|
+
include Google::Apis::Core::Hashable
|
|
1123
|
+
|
|
1124
|
+
# The `WorkerPool` resource to execute the build on. You must have `cloudbuild.
|
|
1125
|
+
# workerpools.use` on the project hosting the WorkerPool. Format projects/`
|
|
1126
|
+
# project`/locations/`location`/workerPools/`workerPoolId`
|
|
1127
|
+
# Corresponds to the JSON property `name`
|
|
1128
|
+
# @return [String]
|
|
1129
|
+
attr_accessor :name
|
|
1130
|
+
|
|
1131
|
+
def initialize(**args)
|
|
1132
|
+
update!(**args)
|
|
1133
|
+
end
|
|
1134
|
+
|
|
1135
|
+
# Update properties of this object
|
|
1136
|
+
def update!(**args)
|
|
1137
|
+
@name = args[:name] if args.key?(:name)
|
|
1138
|
+
end
|
|
1139
|
+
end
|
|
1140
|
+
|
|
1042
1141
|
# Location of the source in a Google Cloud Source Repository.
|
|
1043
1142
|
class RepoSource
|
|
1044
1143
|
include Google::Apis::Core::Hashable
|
|
@@ -1333,6 +1432,13 @@ module Google
|
|
|
1333
1432
|
# @return [Google::Apis::CloudbuildV1alpha2::StorageSource]
|
|
1334
1433
|
attr_accessor :storage_source
|
|
1335
1434
|
|
|
1435
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
|
1436
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
|
1437
|
+
# builders/tree/master/gcs-fetcher).
|
|
1438
|
+
# Corresponds to the JSON property `storageSourceManifest`
|
|
1439
|
+
# @return [Google::Apis::CloudbuildV1alpha2::StorageSourceManifest]
|
|
1440
|
+
attr_accessor :storage_source_manifest
|
|
1441
|
+
|
|
1336
1442
|
def initialize(**args)
|
|
1337
1443
|
update!(**args)
|
|
1338
1444
|
end
|
|
@@ -1341,6 +1447,7 @@ module Google
|
|
|
1341
1447
|
def update!(**args)
|
|
1342
1448
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
|
1343
1449
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
|
1450
|
+
@storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
|
|
1344
1451
|
end
|
|
1345
1452
|
end
|
|
1346
1453
|
|
|
@@ -1370,6 +1477,13 @@ module Google
|
|
|
1370
1477
|
# @return [Google::Apis::CloudbuildV1alpha2::StorageSource]
|
|
1371
1478
|
attr_accessor :resolved_storage_source
|
|
1372
1479
|
|
|
1480
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
|
1481
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
|
1482
|
+
# builders/tree/master/gcs-fetcher).
|
|
1483
|
+
# Corresponds to the JSON property `resolvedStorageSourceManifest`
|
|
1484
|
+
# @return [Google::Apis::CloudbuildV1alpha2::StorageSourceManifest]
|
|
1485
|
+
attr_accessor :resolved_storage_source_manifest
|
|
1486
|
+
|
|
1373
1487
|
def initialize(**args)
|
|
1374
1488
|
update!(**args)
|
|
1375
1489
|
end
|
|
@@ -1379,6 +1493,7 @@ module Google
|
|
|
1379
1493
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
1380
1494
|
@resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
|
|
1381
1495
|
@resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
|
|
1496
|
+
@resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
|
|
1382
1497
|
end
|
|
1383
1498
|
end
|
|
1384
1499
|
|
|
@@ -1456,6 +1571,43 @@ module Google
|
|
|
1456
1571
|
end
|
|
1457
1572
|
end
|
|
1458
1573
|
|
|
1574
|
+
# Location of the source manifest in Google Cloud Storage. This feature is in
|
|
1575
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
|
1576
|
+
# builders/tree/master/gcs-fetcher).
|
|
1577
|
+
class StorageSourceManifest
|
|
1578
|
+
include Google::Apis::Core::Hashable
|
|
1579
|
+
|
|
1580
|
+
# Google Cloud Storage bucket containing the source manifest (see [Bucket Name
|
|
1581
|
+
# Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
|
|
1582
|
+
# ).
|
|
1583
|
+
# Corresponds to the JSON property `bucket`
|
|
1584
|
+
# @return [String]
|
|
1585
|
+
attr_accessor :bucket
|
|
1586
|
+
|
|
1587
|
+
# Google Cloud Storage generation for the object. If the generation is omitted,
|
|
1588
|
+
# the latest generation will be used.
|
|
1589
|
+
# Corresponds to the JSON property `generation`
|
|
1590
|
+
# @return [Fixnum]
|
|
1591
|
+
attr_accessor :generation
|
|
1592
|
+
|
|
1593
|
+
# Google Cloud Storage object containing the source manifest. This object must
|
|
1594
|
+
# be a JSON file.
|
|
1595
|
+
# Corresponds to the JSON property `object`
|
|
1596
|
+
# @return [String]
|
|
1597
|
+
attr_accessor :object
|
|
1598
|
+
|
|
1599
|
+
def initialize(**args)
|
|
1600
|
+
update!(**args)
|
|
1601
|
+
end
|
|
1602
|
+
|
|
1603
|
+
# Update properties of this object
|
|
1604
|
+
def update!(**args)
|
|
1605
|
+
@bucket = args[:bucket] if args.key?(:bucket)
|
|
1606
|
+
@generation = args[:generation] if args.key?(:generation)
|
|
1607
|
+
@object = args[:object] if args.key?(:object)
|
|
1608
|
+
end
|
|
1609
|
+
end
|
|
1610
|
+
|
|
1459
1611
|
# Start and end times for a build execution phase.
|
|
1460
1612
|
class TimeSpan
|
|
1461
1613
|
include Google::Apis::Core::Hashable
|
|
@@ -1481,6 +1633,38 @@ module Google
|
|
|
1481
1633
|
end
|
|
1482
1634
|
end
|
|
1483
1635
|
|
|
1636
|
+
# Metadata for the `UpdateWorkerPool` operation.
|
|
1637
|
+
class UpdateWorkerPoolOperationMetadata
|
|
1638
|
+
include Google::Apis::Core::Hashable
|
|
1639
|
+
|
|
1640
|
+
# Time the operation was completed.
|
|
1641
|
+
# Corresponds to the JSON property `completeTime`
|
|
1642
|
+
# @return [String]
|
|
1643
|
+
attr_accessor :complete_time
|
|
1644
|
+
|
|
1645
|
+
# Time the operation was created.
|
|
1646
|
+
# Corresponds to the JSON property `createTime`
|
|
1647
|
+
# @return [String]
|
|
1648
|
+
attr_accessor :create_time
|
|
1649
|
+
|
|
1650
|
+
# The resource name of the `WorkerPool` being updated. Format: `projects/`
|
|
1651
|
+
# project`/locations/`location`/workerPools/`worker_pool``.
|
|
1652
|
+
# Corresponds to the JSON property `workerPool`
|
|
1653
|
+
# @return [String]
|
|
1654
|
+
attr_accessor :worker_pool
|
|
1655
|
+
|
|
1656
|
+
def initialize(**args)
|
|
1657
|
+
update!(**args)
|
|
1658
|
+
end
|
|
1659
|
+
|
|
1660
|
+
# Update properties of this object
|
|
1661
|
+
def update!(**args)
|
|
1662
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
|
1663
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1664
|
+
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
|
1665
|
+
end
|
|
1666
|
+
end
|
|
1667
|
+
|
|
1484
1668
|
# Volume describes a Docker container volume which is mounted into build steps
|
|
1485
1669
|
# in order to persist files across build step execution.
|
|
1486
1670
|
class Volume
|
|
@@ -1511,6 +1695,31 @@ module Google
|
|
|
1511
1695
|
end
|
|
1512
1696
|
end
|
|
1513
1697
|
|
|
1698
|
+
# A non-fatal problem encountered during the execution of the build.
|
|
1699
|
+
class Warning
|
|
1700
|
+
include Google::Apis::Core::Hashable
|
|
1701
|
+
|
|
1702
|
+
# The priority for this warning.
|
|
1703
|
+
# Corresponds to the JSON property `priority`
|
|
1704
|
+
# @return [String]
|
|
1705
|
+
attr_accessor :priority
|
|
1706
|
+
|
|
1707
|
+
# Explanation of the warning generated.
|
|
1708
|
+
# Corresponds to the JSON property `text`
|
|
1709
|
+
# @return [String]
|
|
1710
|
+
attr_accessor :text
|
|
1711
|
+
|
|
1712
|
+
def initialize(**args)
|
|
1713
|
+
update!(**args)
|
|
1714
|
+
end
|
|
1715
|
+
|
|
1716
|
+
# Update properties of this object
|
|
1717
|
+
def update!(**args)
|
|
1718
|
+
@priority = args[:priority] if args.key?(:priority)
|
|
1719
|
+
@text = args[:text] if args.key?(:text)
|
|
1720
|
+
end
|
|
1721
|
+
end
|
|
1722
|
+
|
|
1514
1723
|
# WorkerConfig defines the configuration to be used for a creating workers in
|
|
1515
1724
|
# the pool.
|
|
1516
1725
|
class WorkerConfig
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.8.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210701"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -76,6 +76,18 @@ module Google
|
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
|
77
77
|
end
|
|
78
78
|
|
|
79
|
+
class CreateWorkerPoolOperationMetadata
|
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
|
+
|
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
class DeleteWorkerPoolOperationMetadata
|
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
|
+
|
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
89
|
+
end
|
|
90
|
+
|
|
79
91
|
class Empty
|
|
80
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
93
|
|
|
@@ -160,6 +172,12 @@ module Google
|
|
|
160
172
|
include Google::Apis::Core::JsonObjectSupport
|
|
161
173
|
end
|
|
162
174
|
|
|
175
|
+
class PoolOption
|
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
|
+
|
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
179
|
+
end
|
|
180
|
+
|
|
163
181
|
class RepoSource
|
|
164
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
165
183
|
|
|
@@ -226,18 +244,36 @@ module Google
|
|
|
226
244
|
include Google::Apis::Core::JsonObjectSupport
|
|
227
245
|
end
|
|
228
246
|
|
|
247
|
+
class StorageSourceManifest
|
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
249
|
+
|
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
251
|
+
end
|
|
252
|
+
|
|
229
253
|
class TimeSpan
|
|
230
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
255
|
|
|
232
256
|
include Google::Apis::Core::JsonObjectSupport
|
|
233
257
|
end
|
|
234
258
|
|
|
259
|
+
class UpdateWorkerPoolOperationMetadata
|
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
|
+
|
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
263
|
+
end
|
|
264
|
+
|
|
235
265
|
class Volume
|
|
236
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
237
267
|
|
|
238
268
|
include Google::Apis::Core::JsonObjectSupport
|
|
239
269
|
end
|
|
240
270
|
|
|
271
|
+
class Warning
|
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
273
|
+
|
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
275
|
+
end
|
|
276
|
+
|
|
241
277
|
class WorkerConfig
|
|
242
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
279
|
|
|
@@ -316,6 +352,8 @@ module Google
|
|
|
316
352
|
property :timeout, as: 'timeout'
|
|
317
353
|
hash :timing, as: 'timing', class: Google::Apis::CloudbuildV1alpha2::TimeSpan, decorator: Google::Apis::CloudbuildV1alpha2::TimeSpan::Representation
|
|
318
354
|
|
|
355
|
+
collection :warnings, as: 'warnings', class: Google::Apis::CloudbuildV1alpha2::Warning, decorator: Google::Apis::CloudbuildV1alpha2::Warning::Representation
|
|
356
|
+
|
|
319
357
|
end
|
|
320
358
|
end
|
|
321
359
|
|
|
@@ -336,6 +374,8 @@ module Google
|
|
|
336
374
|
property :log_streaming_option, as: 'logStreamingOption'
|
|
337
375
|
property :logging, as: 'logging'
|
|
338
376
|
property :machine_type, as: 'machineType'
|
|
377
|
+
property :pool, as: 'pool', class: Google::Apis::CloudbuildV1alpha2::PoolOption, decorator: Google::Apis::CloudbuildV1alpha2::PoolOption::Representation
|
|
378
|
+
|
|
339
379
|
property :requested_verify_option, as: 'requestedVerifyOption'
|
|
340
380
|
collection :secret_env, as: 'secretEnv'
|
|
341
381
|
collection :source_provenance_hash, as: 'sourceProvenanceHash'
|
|
@@ -384,6 +424,24 @@ module Google
|
|
|
384
424
|
end
|
|
385
425
|
end
|
|
386
426
|
|
|
427
|
+
class CreateWorkerPoolOperationMetadata
|
|
428
|
+
# @private
|
|
429
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
430
|
+
property :complete_time, as: 'completeTime'
|
|
431
|
+
property :create_time, as: 'createTime'
|
|
432
|
+
property :worker_pool, as: 'workerPool'
|
|
433
|
+
end
|
|
434
|
+
end
|
|
435
|
+
|
|
436
|
+
class DeleteWorkerPoolOperationMetadata
|
|
437
|
+
# @private
|
|
438
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
439
|
+
property :complete_time, as: 'completeTime'
|
|
440
|
+
property :create_time, as: 'createTime'
|
|
441
|
+
property :worker_pool, as: 'workerPool'
|
|
442
|
+
end
|
|
443
|
+
end
|
|
444
|
+
|
|
387
445
|
class Empty
|
|
388
446
|
# @private
|
|
389
447
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -507,6 +565,13 @@ module Google
|
|
|
507
565
|
end
|
|
508
566
|
end
|
|
509
567
|
|
|
568
|
+
class PoolOption
|
|
569
|
+
# @private
|
|
570
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
571
|
+
property :name, as: 'name'
|
|
572
|
+
end
|
|
573
|
+
end
|
|
574
|
+
|
|
510
575
|
class RepoSource
|
|
511
576
|
# @private
|
|
512
577
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -589,6 +654,8 @@ module Google
|
|
|
589
654
|
|
|
590
655
|
property :storage_source, as: 'storageSource', class: Google::Apis::CloudbuildV1alpha2::StorageSource, decorator: Google::Apis::CloudbuildV1alpha2::StorageSource::Representation
|
|
591
656
|
|
|
657
|
+
property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest::Representation
|
|
658
|
+
|
|
592
659
|
end
|
|
593
660
|
end
|
|
594
661
|
|
|
@@ -601,6 +668,8 @@ module Google
|
|
|
601
668
|
|
|
602
669
|
property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudbuildV1alpha2::StorageSource, decorator: Google::Apis::CloudbuildV1alpha2::StorageSource::Representation
|
|
603
670
|
|
|
671
|
+
property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest::Representation
|
|
672
|
+
|
|
604
673
|
end
|
|
605
674
|
end
|
|
606
675
|
|
|
@@ -622,6 +691,15 @@ module Google
|
|
|
622
691
|
end
|
|
623
692
|
end
|
|
624
693
|
|
|
694
|
+
class StorageSourceManifest
|
|
695
|
+
# @private
|
|
696
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
697
|
+
property :bucket, as: 'bucket'
|
|
698
|
+
property :generation, :numeric_string => true, as: 'generation'
|
|
699
|
+
property :object, as: 'object'
|
|
700
|
+
end
|
|
701
|
+
end
|
|
702
|
+
|
|
625
703
|
class TimeSpan
|
|
626
704
|
# @private
|
|
627
705
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -630,6 +708,15 @@ module Google
|
|
|
630
708
|
end
|
|
631
709
|
end
|
|
632
710
|
|
|
711
|
+
class UpdateWorkerPoolOperationMetadata
|
|
712
|
+
# @private
|
|
713
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
714
|
+
property :complete_time, as: 'completeTime'
|
|
715
|
+
property :create_time, as: 'createTime'
|
|
716
|
+
property :worker_pool, as: 'workerPool'
|
|
717
|
+
end
|
|
718
|
+
end
|
|
719
|
+
|
|
633
720
|
class Volume
|
|
634
721
|
# @private
|
|
635
722
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -638,6 +725,14 @@ module Google
|
|
|
638
725
|
end
|
|
639
726
|
end
|
|
640
727
|
|
|
728
|
+
class Warning
|
|
729
|
+
# @private
|
|
730
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
731
|
+
property :priority, as: 'priority'
|
|
732
|
+
property :text, as: 'text'
|
|
733
|
+
end
|
|
734
|
+
end
|
|
735
|
+
|
|
641
736
|
class WorkerConfig
|
|
642
737
|
# @private
|
|
643
738
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudbuild_v1alpha2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.8.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-07-05 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.4'
|
|
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.4'
|
|
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 V1alpha2. 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_v1alpha2/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.8.0
|
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha2
|
|
57
63
|
post_install_message:
|
|
58
64
|
rdoc_options: []
|
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
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 V1alpha2
|