google-apis-cloudbuild_v1alpha1 0.7.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22ad8d78205684fef1fc60416d3e79a1c9a4c8a94bcc51df3f125dbdf30b567d
|
4
|
+
data.tar.gz: 1c6067fc72631d9fee3f34cd8fb133a36906c680b504c99bae03cd0d702746ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14e5aabfe35b5476912f8b78d325e3eac9efa704332c08e767f44a2f8d392adb04ba3d14ebf1eda924a55690e95b18083d35b1faf031573e1b6e2425c7b6aa22
|
7
|
+
data.tar.gz: 1f2ab479dce5f4f54bf175dde971d73bad5d69146dd50782236f188e0380be531d3136e080e05d98d37a430719e777442070028d1ff0ec662f72d3ebeaec0d9f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1alpha1
|
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
|
+
|
3
8
|
### v0.7.0 (2021-06-24)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.3.0
|
@@ -402,6 +402,13 @@ module Google
|
|
402
402
|
# @return [String]
|
403
403
|
attr_accessor :machine_type
|
404
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::CloudbuildV1alpha1::PoolOption]
|
410
|
+
attr_accessor :pool
|
411
|
+
|
405
412
|
# Requested verifiability options.
|
406
413
|
# Corresponds to the JSON property `requestedVerifyOption`
|
407
414
|
# @return [String]
|
@@ -436,9 +443,7 @@ module Google
|
|
436
443
|
# @return [Array<Google::Apis::CloudbuildV1alpha1::Volume>]
|
437
444
|
attr_accessor :volumes
|
438
445
|
|
439
|
-
#
|
440
|
-
# locations/`location`/workerPools/`workerPool` This field is in beta and is
|
441
|
-
# available only to restricted users.
|
446
|
+
# This field deprecated; please use `pool.name` instead.
|
442
447
|
# Corresponds to the JSON property `workerPool`
|
443
448
|
# @return [String]
|
444
449
|
attr_accessor :worker_pool
|
@@ -455,6 +460,7 @@ module Google
|
|
455
460
|
@log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
|
456
461
|
@logging = args[:logging] if args.key?(:logging)
|
457
462
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
463
|
+
@pool = args[:pool] if args.key?(:pool)
|
458
464
|
@requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
|
459
465
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
460
466
|
@source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
|
@@ -637,6 +643,70 @@ module Google
|
|
637
643
|
end
|
638
644
|
end
|
639
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
|
+
|
640
710
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
641
711
|
# messages in your APIs. A typical example is to use it as the request or the
|
642
712
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1058,6 +1128,29 @@ module Google
|
|
1058
1128
|
end
|
1059
1129
|
end
|
1060
1130
|
|
1131
|
+
# Details about how a build should be executed on a `WorkerPool`. See [running
|
1132
|
+
# builds in a custom worker pool](https://cloud.google.com/build/docs/custom-
|
1133
|
+
# workers/run-builds-in-custom-worker-pool) for more information.
|
1134
|
+
class PoolOption
|
1135
|
+
include Google::Apis::Core::Hashable
|
1136
|
+
|
1137
|
+
# The `WorkerPool` resource to execute the build on. You must have `cloudbuild.
|
1138
|
+
# workerpools.use` on the project hosting the WorkerPool. Format projects/`
|
1139
|
+
# project`/locations/`location`/workerPools/`workerPoolId`
|
1140
|
+
# Corresponds to the JSON property `name`
|
1141
|
+
# @return [String]
|
1142
|
+
attr_accessor :name
|
1143
|
+
|
1144
|
+
def initialize(**args)
|
1145
|
+
update!(**args)
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
# Update properties of this object
|
1149
|
+
def update!(**args)
|
1150
|
+
@name = args[:name] if args.key?(:name)
|
1151
|
+
end
|
1152
|
+
end
|
1153
|
+
|
1061
1154
|
# Location of the source in a Google Cloud Source Repository.
|
1062
1155
|
class RepoSource
|
1063
1156
|
include Google::Apis::Core::Hashable
|
@@ -1353,7 +1446,8 @@ module Google
|
|
1353
1446
|
attr_accessor :storage_source
|
1354
1447
|
|
1355
1448
|
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1356
|
-
# Preview.
|
1449
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
1450
|
+
# builders/tree/master/gcs-fetcher).
|
1357
1451
|
# Corresponds to the JSON property `storageSourceManifest`
|
1358
1452
|
# @return [Google::Apis::CloudbuildV1alpha1::StorageSourceManifest]
|
1359
1453
|
attr_accessor :storage_source_manifest
|
@@ -1397,7 +1491,8 @@ module Google
|
|
1397
1491
|
attr_accessor :resolved_storage_source
|
1398
1492
|
|
1399
1493
|
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1400
|
-
# Preview.
|
1494
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
1495
|
+
# builders/tree/master/gcs-fetcher).
|
1401
1496
|
# Corresponds to the JSON property `resolvedStorageSourceManifest`
|
1402
1497
|
# @return [Google::Apis::CloudbuildV1alpha1::StorageSourceManifest]
|
1403
1498
|
attr_accessor :resolved_storage_source_manifest
|
@@ -1490,7 +1585,8 @@ module Google
|
|
1490
1585
|
end
|
1491
1586
|
|
1492
1587
|
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1493
|
-
# Preview.
|
1588
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
1589
|
+
# builders/tree/master/gcs-fetcher).
|
1494
1590
|
class StorageSourceManifest
|
1495
1591
|
include Google::Apis::Core::Hashable
|
1496
1592
|
|
@@ -1550,6 +1646,38 @@ module Google
|
|
1550
1646
|
end
|
1551
1647
|
end
|
1552
1648
|
|
1649
|
+
# Metadata for the `UpdateWorkerPool` operation.
|
1650
|
+
class UpdateWorkerPoolOperationMetadata
|
1651
|
+
include Google::Apis::Core::Hashable
|
1652
|
+
|
1653
|
+
# Time the operation was completed.
|
1654
|
+
# Corresponds to the JSON property `completeTime`
|
1655
|
+
# @return [String]
|
1656
|
+
attr_accessor :complete_time
|
1657
|
+
|
1658
|
+
# Time the operation was created.
|
1659
|
+
# Corresponds to the JSON property `createTime`
|
1660
|
+
# @return [String]
|
1661
|
+
attr_accessor :create_time
|
1662
|
+
|
1663
|
+
# The resource name of the `WorkerPool` being updated. Format: `projects/`
|
1664
|
+
# project`/locations/`location`/workerPools/`worker_pool``.
|
1665
|
+
# Corresponds to the JSON property `workerPool`
|
1666
|
+
# @return [String]
|
1667
|
+
attr_accessor :worker_pool
|
1668
|
+
|
1669
|
+
def initialize(**args)
|
1670
|
+
update!(**args)
|
1671
|
+
end
|
1672
|
+
|
1673
|
+
# Update properties of this object
|
1674
|
+
def update!(**args)
|
1675
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1676
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1677
|
+
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
1678
|
+
end
|
1679
|
+
end
|
1680
|
+
|
1553
1681
|
# Volume describes a Docker container volume which is mounted into build steps
|
1554
1682
|
# in order to persist files across build step execution.
|
1555
1683
|
class Volume
|
@@ -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.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
|
|
@@ -238,6 +256,12 @@ module Google
|
|
238
256
|
include Google::Apis::Core::JsonObjectSupport
|
239
257
|
end
|
240
258
|
|
259
|
+
class UpdateWorkerPoolOperationMetadata
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
241
265
|
class Volume
|
242
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
267
|
|
@@ -350,6 +374,8 @@ module Google
|
|
350
374
|
property :log_streaming_option, as: 'logStreamingOption'
|
351
375
|
property :logging, as: 'logging'
|
352
376
|
property :machine_type, as: 'machineType'
|
377
|
+
property :pool, as: 'pool', class: Google::Apis::CloudbuildV1alpha1::PoolOption, decorator: Google::Apis::CloudbuildV1alpha1::PoolOption::Representation
|
378
|
+
|
353
379
|
property :requested_verify_option, as: 'requestedVerifyOption'
|
354
380
|
collection :secret_env, as: 'secretEnv'
|
355
381
|
collection :source_provenance_hash, as: 'sourceProvenanceHash'
|
@@ -398,6 +424,24 @@ module Google
|
|
398
424
|
end
|
399
425
|
end
|
400
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
|
+
|
401
445
|
class Empty
|
402
446
|
# @private
|
403
447
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -523,6 +567,13 @@ module Google
|
|
523
567
|
end
|
524
568
|
end
|
525
569
|
|
570
|
+
class PoolOption
|
571
|
+
# @private
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
573
|
+
property :name, as: 'name'
|
574
|
+
end
|
575
|
+
end
|
576
|
+
|
526
577
|
class RepoSource
|
527
578
|
# @private
|
528
579
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -659,6 +710,15 @@ module Google
|
|
659
710
|
end
|
660
711
|
end
|
661
712
|
|
713
|
+
class UpdateWorkerPoolOperationMetadata
|
714
|
+
# @private
|
715
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
716
|
+
property :complete_time, as: 'completeTime'
|
717
|
+
property :create_time, as: 'createTime'
|
718
|
+
property :worker_pool, as: 'workerPool'
|
719
|
+
end
|
720
|
+
end
|
721
|
+
|
662
722
|
class Volume
|
663
723
|
# @private
|
664
724
|
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.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
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.4'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.8.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|