google-apis-cloudbuild_v1beta1 0.4.0 → 0.8.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: 8a03c58e7ec20e75f42ce674649100c2405ec410d10a676f628d8df807a14b50
|
4
|
+
data.tar.gz: 602db79dd2227082a31c294142c0de8479d2da122c59cabc589ee813772121fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4dbc3280fe7c9f2e9d6b225422821b6054b9dc3a97f2af60b86f381cef0b0af26862343c835b71e9ad0064226306fe653f339cc2a609465cbb95725dca814ed
|
7
|
+
data.tar.gz: 34cdac9b34f861f090c290e319e00604e1b1a08fdb327ec00f5b3e7649b5e66a601a301d8f4b3b39d5688b1c5ef93995831e75e286faf770e6b76278fac34598
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1beta1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-07-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210715
|
6
|
+
|
7
|
+
### v0.7.0 (2021-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210709
|
10
|
+
|
11
|
+
### v0.6.0 (2021-07-03)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210701
|
14
|
+
* Regenerated using generator version 0.4.0
|
15
|
+
|
16
|
+
### v0.5.0 (2021-06-24)
|
17
|
+
|
18
|
+
* Regenerated using generator version 0.3.0
|
19
|
+
|
3
20
|
### v0.4.0 (2021-05-19)
|
4
21
|
|
5
22
|
* Unspecified changes
|
@@ -151,6 +151,11 @@ module Google
|
|
151
151
|
# @return [String]
|
152
152
|
attr_accessor :create_time
|
153
153
|
|
154
|
+
# A fatal problem encountered during the execution of the build.
|
155
|
+
# Corresponds to the JSON property `failureInfo`
|
156
|
+
# @return [Google::Apis::CloudbuildV1beta1::FailureInfo]
|
157
|
+
attr_accessor :failure_info
|
158
|
+
|
154
159
|
# Output only. Time at which execution of the build was finished. The difference
|
155
160
|
# between finish_time and start_time is the duration of the build's execution.
|
156
161
|
# Corresponds to the JSON property `finishTime`
|
@@ -300,6 +305,7 @@ module Google
|
|
300
305
|
@available_secrets = args[:available_secrets] if args.key?(:available_secrets)
|
301
306
|
@build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
|
302
307
|
@create_time = args[:create_time] if args.key?(:create_time)
|
308
|
+
@failure_info = args[:failure_info] if args.key?(:failure_info)
|
303
309
|
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
304
310
|
@id = args[:id] if args.key?(:id)
|
305
311
|
@images = args[:images] if args.key?(:images)
|
@@ -402,6 +408,13 @@ module Google
|
|
402
408
|
# @return [String]
|
403
409
|
attr_accessor :machine_type
|
404
410
|
|
411
|
+
# Details about how a build should be executed on a `WorkerPool`. See [running
|
412
|
+
# builds in a private pool](https://cloud.google.com/build/docs/private-pools/
|
413
|
+
# run-builds-in-private-pool) for more information.
|
414
|
+
# Corresponds to the JSON property `pool`
|
415
|
+
# @return [Google::Apis::CloudbuildV1beta1::PoolOption]
|
416
|
+
attr_accessor :pool
|
417
|
+
|
405
418
|
# Requested verifiability options.
|
406
419
|
# Corresponds to the JSON property `requestedVerifyOption`
|
407
420
|
# @return [String]
|
@@ -436,9 +449,7 @@ module Google
|
|
436
449
|
# @return [Array<Google::Apis::CloudbuildV1beta1::Volume>]
|
437
450
|
attr_accessor :volumes
|
438
451
|
|
439
|
-
#
|
440
|
-
# locations/`location`/workerPools/`workerPool` This field is in beta and is
|
441
|
-
# available only to restricted users.
|
452
|
+
# This field deprecated; please use `pool.name` instead.
|
442
453
|
# Corresponds to the JSON property `workerPool`
|
443
454
|
# @return [String]
|
444
455
|
attr_accessor :worker_pool
|
@@ -455,6 +466,7 @@ module Google
|
|
455
466
|
@log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
|
456
467
|
@logging = args[:logging] if args.key?(:logging)
|
457
468
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
469
|
+
@pool = args[:pool] if args.key?(:pool)
|
458
470
|
@requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
|
459
471
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
460
472
|
@source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
|
@@ -637,6 +649,70 @@ module Google
|
|
637
649
|
end
|
638
650
|
end
|
639
651
|
|
652
|
+
# Metadata for the `CreateWorkerPool` operation.
|
653
|
+
class CreateWorkerPoolOperationMetadata
|
654
|
+
include Google::Apis::Core::Hashable
|
655
|
+
|
656
|
+
# Time the operation was completed.
|
657
|
+
# Corresponds to the JSON property `completeTime`
|
658
|
+
# @return [String]
|
659
|
+
attr_accessor :complete_time
|
660
|
+
|
661
|
+
# Time the operation was created.
|
662
|
+
# Corresponds to the JSON property `createTime`
|
663
|
+
# @return [String]
|
664
|
+
attr_accessor :create_time
|
665
|
+
|
666
|
+
# The resource name of the `WorkerPool` to create. Format: `projects/`project`/
|
667
|
+
# locations/`location`/workerPools/`worker_pool``.
|
668
|
+
# Corresponds to the JSON property `workerPool`
|
669
|
+
# @return [String]
|
670
|
+
attr_accessor :worker_pool
|
671
|
+
|
672
|
+
def initialize(**args)
|
673
|
+
update!(**args)
|
674
|
+
end
|
675
|
+
|
676
|
+
# Update properties of this object
|
677
|
+
def update!(**args)
|
678
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
679
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
680
|
+
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
681
|
+
end
|
682
|
+
end
|
683
|
+
|
684
|
+
# Metadata for the `DeleteWorkerPool` operation.
|
685
|
+
class DeleteWorkerPoolOperationMetadata
|
686
|
+
include Google::Apis::Core::Hashable
|
687
|
+
|
688
|
+
# Time the operation was completed.
|
689
|
+
# Corresponds to the JSON property `completeTime`
|
690
|
+
# @return [String]
|
691
|
+
attr_accessor :complete_time
|
692
|
+
|
693
|
+
# Time the operation was created.
|
694
|
+
# Corresponds to the JSON property `createTime`
|
695
|
+
# @return [String]
|
696
|
+
attr_accessor :create_time
|
697
|
+
|
698
|
+
# The resource name of the `WorkerPool` being deleted. Format: `projects/`
|
699
|
+
# project`/locations/`location`/workerPools/`worker_pool``.
|
700
|
+
# Corresponds to the JSON property `workerPool`
|
701
|
+
# @return [String]
|
702
|
+
attr_accessor :worker_pool
|
703
|
+
|
704
|
+
def initialize(**args)
|
705
|
+
update!(**args)
|
706
|
+
end
|
707
|
+
|
708
|
+
# Update properties of this object
|
709
|
+
def update!(**args)
|
710
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
711
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
712
|
+
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
713
|
+
end
|
714
|
+
end
|
715
|
+
|
640
716
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
641
717
|
# messages in your APIs. A typical example is to use it as the request or the
|
642
718
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -654,6 +730,31 @@ module Google
|
|
654
730
|
end
|
655
731
|
end
|
656
732
|
|
733
|
+
# A fatal problem encountered during the execution of the build.
|
734
|
+
class FailureInfo
|
735
|
+
include Google::Apis::Core::Hashable
|
736
|
+
|
737
|
+
# Explains the failure issue in more detail using hard-coded text.
|
738
|
+
# Corresponds to the JSON property `detail`
|
739
|
+
# @return [String]
|
740
|
+
attr_accessor :detail
|
741
|
+
|
742
|
+
# The name of the failure.
|
743
|
+
# Corresponds to the JSON property `type`
|
744
|
+
# @return [String]
|
745
|
+
attr_accessor :type
|
746
|
+
|
747
|
+
def initialize(**args)
|
748
|
+
update!(**args)
|
749
|
+
end
|
750
|
+
|
751
|
+
# Update properties of this object
|
752
|
+
def update!(**args)
|
753
|
+
@detail = args[:detail] if args.key?(:detail)
|
754
|
+
@type = args[:type] if args.key?(:type)
|
755
|
+
end
|
756
|
+
end
|
757
|
+
|
657
758
|
# Container message for hashes of byte content of files, used in
|
658
759
|
# SourceProvenance messages to verify integrity of source input to the build.
|
659
760
|
class FileHashes
|
@@ -674,6 +775,65 @@ module Google
|
|
674
775
|
end
|
675
776
|
end
|
676
777
|
|
778
|
+
# Represents the metadata of the long-running operation.
|
779
|
+
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
780
|
+
include Google::Apis::Core::Hashable
|
781
|
+
|
782
|
+
# Output only. API version used to start the operation.
|
783
|
+
# Corresponds to the JSON property `apiVersion`
|
784
|
+
# @return [String]
|
785
|
+
attr_accessor :api_version
|
786
|
+
|
787
|
+
# Output only. The time the operation was created.
|
788
|
+
# Corresponds to the JSON property `createTime`
|
789
|
+
# @return [String]
|
790
|
+
attr_accessor :create_time
|
791
|
+
|
792
|
+
# Output only. The time the operation finished running.
|
793
|
+
# Corresponds to the JSON property `endTime`
|
794
|
+
# @return [String]
|
795
|
+
attr_accessor :end_time
|
796
|
+
|
797
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
798
|
+
# operation. Operations that have successfully been cancelled have Operation.
|
799
|
+
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
800
|
+
# CANCELLED`.
|
801
|
+
# Corresponds to the JSON property `requestedCancellation`
|
802
|
+
# @return [Boolean]
|
803
|
+
attr_accessor :requested_cancellation
|
804
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
805
|
+
|
806
|
+
# Output only. Human-readable status of the operation, if any.
|
807
|
+
# Corresponds to the JSON property `statusMessage`
|
808
|
+
# @return [String]
|
809
|
+
attr_accessor :status_message
|
810
|
+
|
811
|
+
# Output only. Server-defined resource path for the target of the operation.
|
812
|
+
# Corresponds to the JSON property `target`
|
813
|
+
# @return [String]
|
814
|
+
attr_accessor :target
|
815
|
+
|
816
|
+
# Output only. Name of the verb executed by the operation.
|
817
|
+
# Corresponds to the JSON property `verb`
|
818
|
+
# @return [String]
|
819
|
+
attr_accessor :verb
|
820
|
+
|
821
|
+
def initialize(**args)
|
822
|
+
update!(**args)
|
823
|
+
end
|
824
|
+
|
825
|
+
# Update properties of this object
|
826
|
+
def update!(**args)
|
827
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
828
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
829
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
830
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
831
|
+
@status_message = args[:status_message] if args.key?(:status_message)
|
832
|
+
@target = args[:target] if args.key?(:target)
|
833
|
+
@verb = args[:verb] if args.key?(:verb)
|
834
|
+
end
|
835
|
+
end
|
836
|
+
|
677
837
|
# HTTPDelivery is the delivery configuration for an HTTP notification.
|
678
838
|
class HttpDelivery
|
679
839
|
include Google::Apis::Core::Hashable
|
@@ -1048,6 +1208,88 @@ module Google
|
|
1048
1208
|
end
|
1049
1209
|
end
|
1050
1210
|
|
1211
|
+
# Represents the metadata of the long-running operation.
|
1212
|
+
class OperationMetadata
|
1213
|
+
include Google::Apis::Core::Hashable
|
1214
|
+
|
1215
|
+
# Output only. API version used to start the operation.
|
1216
|
+
# Corresponds to the JSON property `apiVersion`
|
1217
|
+
# @return [String]
|
1218
|
+
attr_accessor :api_version
|
1219
|
+
|
1220
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
1221
|
+
# operation. Operations that have successfully been cancelled have Operation.
|
1222
|
+
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
1223
|
+
# CANCELLED`.
|
1224
|
+
# Corresponds to the JSON property `cancelRequested`
|
1225
|
+
# @return [Boolean]
|
1226
|
+
attr_accessor :cancel_requested
|
1227
|
+
alias_method :cancel_requested?, :cancel_requested
|
1228
|
+
|
1229
|
+
# Output only. The time the operation was created.
|
1230
|
+
# Corresponds to the JSON property `createTime`
|
1231
|
+
# @return [String]
|
1232
|
+
attr_accessor :create_time
|
1233
|
+
|
1234
|
+
# Output only. The time the operation finished running.
|
1235
|
+
# Corresponds to the JSON property `endTime`
|
1236
|
+
# @return [String]
|
1237
|
+
attr_accessor :end_time
|
1238
|
+
|
1239
|
+
# Output only. Human-readable status of the operation, if any.
|
1240
|
+
# Corresponds to the JSON property `statusDetail`
|
1241
|
+
# @return [String]
|
1242
|
+
attr_accessor :status_detail
|
1243
|
+
|
1244
|
+
# Output only. Server-defined resource path for the target of the operation.
|
1245
|
+
# Corresponds to the JSON property `target`
|
1246
|
+
# @return [String]
|
1247
|
+
attr_accessor :target
|
1248
|
+
|
1249
|
+
# Output only. Name of the verb executed by the operation.
|
1250
|
+
# Corresponds to the JSON property `verb`
|
1251
|
+
# @return [String]
|
1252
|
+
attr_accessor :verb
|
1253
|
+
|
1254
|
+
def initialize(**args)
|
1255
|
+
update!(**args)
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
# Update properties of this object
|
1259
|
+
def update!(**args)
|
1260
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
1261
|
+
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
1262
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1263
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1264
|
+
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
1265
|
+
@target = args[:target] if args.key?(:target)
|
1266
|
+
@verb = args[:verb] if args.key?(:verb)
|
1267
|
+
end
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
# Details about how a build should be executed on a `WorkerPool`. See [running
|
1271
|
+
# builds in a private pool](https://cloud.google.com/build/docs/private-pools/
|
1272
|
+
# run-builds-in-private-pool) for more information.
|
1273
|
+
class PoolOption
|
1274
|
+
include Google::Apis::Core::Hashable
|
1275
|
+
|
1276
|
+
# The `WorkerPool` resource to execute the build on. You must have `cloudbuild.
|
1277
|
+
# workerpools.use` on the project hosting the WorkerPool. Format projects/`
|
1278
|
+
# project`/locations/`location`/workerPools/`workerPoolId`
|
1279
|
+
# Corresponds to the JSON property `name`
|
1280
|
+
# @return [String]
|
1281
|
+
attr_accessor :name
|
1282
|
+
|
1283
|
+
def initialize(**args)
|
1284
|
+
update!(**args)
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
# Update properties of this object
|
1288
|
+
def update!(**args)
|
1289
|
+
@name = args[:name] if args.key?(:name)
|
1290
|
+
end
|
1291
|
+
end
|
1292
|
+
|
1051
1293
|
# Location of the source in a Google Cloud Source Repository.
|
1052
1294
|
class RepoSource
|
1053
1295
|
include Google::Apis::Core::Hashable
|
@@ -1343,7 +1585,8 @@ module Google
|
|
1343
1585
|
attr_accessor :storage_source
|
1344
1586
|
|
1345
1587
|
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1346
|
-
# Preview.
|
1588
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
1589
|
+
# builders/tree/master/gcs-fetcher).
|
1347
1590
|
# Corresponds to the JSON property `storageSourceManifest`
|
1348
1591
|
# @return [Google::Apis::CloudbuildV1beta1::StorageSourceManifest]
|
1349
1592
|
attr_accessor :storage_source_manifest
|
@@ -1387,7 +1630,8 @@ module Google
|
|
1387
1630
|
attr_accessor :resolved_storage_source
|
1388
1631
|
|
1389
1632
|
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1390
|
-
# Preview.
|
1633
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
1634
|
+
# builders/tree/master/gcs-fetcher).
|
1391
1635
|
# Corresponds to the JSON property `resolvedStorageSourceManifest`
|
1392
1636
|
# @return [Google::Apis::CloudbuildV1beta1::StorageSourceManifest]
|
1393
1637
|
attr_accessor :resolved_storage_source_manifest
|
@@ -1462,7 +1706,7 @@ module Google
|
|
1462
1706
|
attr_accessor :generation
|
1463
1707
|
|
1464
1708
|
# Google Cloud Storage object containing the source. This object must be a
|
1465
|
-
# gzipped archive file (`.tar.gz`) containing source to build.
|
1709
|
+
# zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build.
|
1466
1710
|
# Corresponds to the JSON property `object`
|
1467
1711
|
# @return [String]
|
1468
1712
|
attr_accessor :object
|
@@ -1480,7 +1724,8 @@ module Google
|
|
1480
1724
|
end
|
1481
1725
|
|
1482
1726
|
# Location of the source manifest in Google Cloud Storage. This feature is in
|
1483
|
-
# Preview.
|
1727
|
+
# Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
|
1728
|
+
# builders/tree/master/gcs-fetcher).
|
1484
1729
|
class StorageSourceManifest
|
1485
1730
|
include Google::Apis::Core::Hashable
|
1486
1731
|
|
@@ -1540,6 +1785,38 @@ module Google
|
|
1540
1785
|
end
|
1541
1786
|
end
|
1542
1787
|
|
1788
|
+
# Metadata for the `UpdateWorkerPool` operation.
|
1789
|
+
class UpdateWorkerPoolOperationMetadata
|
1790
|
+
include Google::Apis::Core::Hashable
|
1791
|
+
|
1792
|
+
# Time the operation was completed.
|
1793
|
+
# Corresponds to the JSON property `completeTime`
|
1794
|
+
# @return [String]
|
1795
|
+
attr_accessor :complete_time
|
1796
|
+
|
1797
|
+
# Time the operation was created.
|
1798
|
+
# Corresponds to the JSON property `createTime`
|
1799
|
+
# @return [String]
|
1800
|
+
attr_accessor :create_time
|
1801
|
+
|
1802
|
+
# The resource name of the `WorkerPool` being updated. Format: `projects/`
|
1803
|
+
# project`/locations/`location`/workerPools/`worker_pool``.
|
1804
|
+
# Corresponds to the JSON property `workerPool`
|
1805
|
+
# @return [String]
|
1806
|
+
attr_accessor :worker_pool
|
1807
|
+
|
1808
|
+
def initialize(**args)
|
1809
|
+
update!(**args)
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
# Update properties of this object
|
1813
|
+
def update!(**args)
|
1814
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
1815
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1816
|
+
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
1817
|
+
end
|
1818
|
+
end
|
1819
|
+
|
1543
1820
|
# Volume describes a Docker container volume which is mounted into build steps
|
1544
1821
|
# in order to persist files across build step execution.
|
1545
1822
|
class Volume
|
@@ -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.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 = "20210715"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,18 +76,42 @@ 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
|
|
82
94
|
include Google::Apis::Core::JsonObjectSupport
|
83
95
|
end
|
84
96
|
|
97
|
+
class FailureInfo
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
85
103
|
class FileHashes
|
86
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
105
|
|
88
106
|
include Google::Apis::Core::JsonObjectSupport
|
89
107
|
end
|
90
108
|
|
109
|
+
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
91
115
|
class HttpDelivery
|
92
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
117
|
|
@@ -160,6 +184,18 @@ module Google
|
|
160
184
|
include Google::Apis::Core::JsonObjectSupport
|
161
185
|
end
|
162
186
|
|
187
|
+
class OperationMetadata
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
193
|
+
class PoolOption
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
163
199
|
class RepoSource
|
164
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
201
|
|
@@ -238,6 +274,12 @@ module Google
|
|
238
274
|
include Google::Apis::Core::JsonObjectSupport
|
239
275
|
end
|
240
276
|
|
277
|
+
class UpdateWorkerPoolOperationMetadata
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
241
283
|
class Volume
|
242
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
285
|
|
@@ -299,6 +341,8 @@ module Google
|
|
299
341
|
|
300
342
|
property :build_trigger_id, as: 'buildTriggerId'
|
301
343
|
property :create_time, as: 'createTime'
|
344
|
+
property :failure_info, as: 'failureInfo', class: Google::Apis::CloudbuildV1beta1::FailureInfo, decorator: Google::Apis::CloudbuildV1beta1::FailureInfo::Representation
|
345
|
+
|
302
346
|
property :finish_time, as: 'finishTime'
|
303
347
|
property :id, as: 'id'
|
304
348
|
collection :images, as: 'images'
|
@@ -350,6 +394,8 @@ module Google
|
|
350
394
|
property :log_streaming_option, as: 'logStreamingOption'
|
351
395
|
property :logging, as: 'logging'
|
352
396
|
property :machine_type, as: 'machineType'
|
397
|
+
property :pool, as: 'pool', class: Google::Apis::CloudbuildV1beta1::PoolOption, decorator: Google::Apis::CloudbuildV1beta1::PoolOption::Representation
|
398
|
+
|
353
399
|
property :requested_verify_option, as: 'requestedVerifyOption'
|
354
400
|
collection :secret_env, as: 'secretEnv'
|
355
401
|
collection :source_provenance_hash, as: 'sourceProvenanceHash'
|
@@ -398,12 +444,38 @@ module Google
|
|
398
444
|
end
|
399
445
|
end
|
400
446
|
|
447
|
+
class CreateWorkerPoolOperationMetadata
|
448
|
+
# @private
|
449
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
450
|
+
property :complete_time, as: 'completeTime'
|
451
|
+
property :create_time, as: 'createTime'
|
452
|
+
property :worker_pool, as: 'workerPool'
|
453
|
+
end
|
454
|
+
end
|
455
|
+
|
456
|
+
class DeleteWorkerPoolOperationMetadata
|
457
|
+
# @private
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
459
|
+
property :complete_time, as: 'completeTime'
|
460
|
+
property :create_time, as: 'createTime'
|
461
|
+
property :worker_pool, as: 'workerPool'
|
462
|
+
end
|
463
|
+
end
|
464
|
+
|
401
465
|
class Empty
|
402
466
|
# @private
|
403
467
|
class Representation < Google::Apis::Core::JsonRepresentation
|
404
468
|
end
|
405
469
|
end
|
406
470
|
|
471
|
+
class FailureInfo
|
472
|
+
# @private
|
473
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
474
|
+
property :detail, as: 'detail'
|
475
|
+
property :type, as: 'type'
|
476
|
+
end
|
477
|
+
end
|
478
|
+
|
407
479
|
class FileHashes
|
408
480
|
# @private
|
409
481
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -412,6 +484,19 @@ module Google
|
|
412
484
|
end
|
413
485
|
end
|
414
486
|
|
487
|
+
class GoogleDevtoolsCloudbuildV2OperationMetadata
|
488
|
+
# @private
|
489
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
490
|
+
property :api_version, as: 'apiVersion'
|
491
|
+
property :create_time, as: 'createTime'
|
492
|
+
property :end_time, as: 'endTime'
|
493
|
+
property :requested_cancellation, as: 'requestedCancellation'
|
494
|
+
property :status_message, as: 'statusMessage'
|
495
|
+
property :target, as: 'target'
|
496
|
+
property :verb, as: 'verb'
|
497
|
+
end
|
498
|
+
end
|
499
|
+
|
415
500
|
class HttpDelivery
|
416
501
|
# @private
|
417
502
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -521,6 +606,26 @@ module Google
|
|
521
606
|
end
|
522
607
|
end
|
523
608
|
|
609
|
+
class OperationMetadata
|
610
|
+
# @private
|
611
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
612
|
+
property :api_version, as: 'apiVersion'
|
613
|
+
property :cancel_requested, as: 'cancelRequested'
|
614
|
+
property :create_time, as: 'createTime'
|
615
|
+
property :end_time, as: 'endTime'
|
616
|
+
property :status_detail, as: 'statusDetail'
|
617
|
+
property :target, as: 'target'
|
618
|
+
property :verb, as: 'verb'
|
619
|
+
end
|
620
|
+
end
|
621
|
+
|
622
|
+
class PoolOption
|
623
|
+
# @private
|
624
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
625
|
+
property :name, as: 'name'
|
626
|
+
end
|
627
|
+
end
|
628
|
+
|
524
629
|
class RepoSource
|
525
630
|
# @private
|
526
631
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -657,6 +762,15 @@ module Google
|
|
657
762
|
end
|
658
763
|
end
|
659
764
|
|
765
|
+
class UpdateWorkerPoolOperationMetadata
|
766
|
+
# @private
|
767
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
768
|
+
property :complete_time, as: 'completeTime'
|
769
|
+
property :create_time, as: 'createTime'
|
770
|
+
property :worker_pool, as: 'workerPool'
|
771
|
+
end
|
772
|
+
end
|
773
|
+
|
660
774
|
class Volume
|
661
775
|
# @private
|
662
776
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.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-26 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 V1beta1. 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_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.8.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1beta1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|