google-apis-cloudbuild_v1beta1 0.1.0 → 0.6.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: c2670909c52159c677ba381b0e0aa7e8101a1034229ed07088498381e3d19c19
4
- data.tar.gz: d5e118c7a7b256f268edce41944b7f900d2417fa6bf6539e625ab87e5abe46f0
3
+ metadata.gz: 73f705ddf16a426375ce867ebe449c04bb59aa9ed0d929f38830b0d360751799
4
+ data.tar.gz: 6f58b8f31f355ccf33603c5dcc2f3af32fefc765ed3cc52fafc64d9685acbae9
5
5
  SHA512:
6
- metadata.gz: b847b1f2d3a4af811c318698167e43cc35a0c4fe291b5e133ca443b19572b49d15c3897c01494c0a0fc740e9ff5f0241af951c46ff563568db72daf65092e8bb
7
- data.tar.gz: 95aba373fc3c7fe655b430cdb514dcf062c953b20042d9e09502732e70610a07624534d513d9ff4ae495fb0ff38b8f05653cbe3231fff9319276eb979d961d2c
6
+ metadata.gz: 8b6858ce6a0a949f2f4f38921b175e280c49ca82b8b6f58f2cda9852ef4be26377b69bc116f2e4958415e33ae0acaff1e1e0178ef2bb3b061ea34a7dff32f640
7
+ data.tar.gz: d48848b17d5756d93cc4d46eb1f35352f0e6f09d0cb67722770d2b3ef88d815fbbfa06cc010b02e9ea6f9a8be2c19cf61ae529fe5f1d811b31b0ad5bd512c8e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-cloudbuild_v1beta1
2
2
 
3
+ ### v0.6.0 (2021-07-03)
4
+
5
+ * Regenerated from discovery document revision 20210701
6
+ * Regenerated using generator version 0.4.0
7
+
8
+ ### v0.5.0 (2021-06-24)
9
+
10
+ * Regenerated using generator version 0.3.0
11
+
12
+ ### v0.4.0 (2021-05-19)
13
+
14
+ * Unspecified changes
15
+
16
+ ### v0.3.0 (2021-05-12)
17
+
18
+ * Regenerated from discovery document revision 20210511
19
+
20
+ ### v0.2.0 (2021-03-23)
21
+
22
+ * Regenerated from discovery document revision 20210319
23
+
3
24
  ### v0.1.0 (2021-03-12)
4
25
 
5
26
  * Regenerated from discovery document revision 20210308
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta1'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
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. This field is in beta.
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::CloudbuildV1beta1::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::CloudbuildV1beta1::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::CloudbuildV1beta1::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::CloudbuildV1beta1::Volume>]
431
444
  attr_accessor :volumes
432
445
 
433
- # Option to specify a `WorkerPool` for the build. Format: projects/`project`/
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.
@@ -1042,6 +1118,29 @@ module Google
1042
1118
  end
1043
1119
  end
1044
1120
 
1121
+ # Details about how a build should be executed on a `WorkerPool`. See [running
1122
+ # builds in a custom worker pool](https://cloud.google.com/build/docs/custom-
1123
+ # workers/run-builds-in-custom-worker-pool) for more information.
1124
+ class PoolOption
1125
+ include Google::Apis::Core::Hashable
1126
+
1127
+ # The `WorkerPool` resource to execute the build on. You must have `cloudbuild.
1128
+ # workerpools.use` on the project hosting the WorkerPool. Format projects/`
1129
+ # project`/locations/`location`/workerPools/`workerPoolId`
1130
+ # Corresponds to the JSON property `name`
1131
+ # @return [String]
1132
+ attr_accessor :name
1133
+
1134
+ def initialize(**args)
1135
+ update!(**args)
1136
+ end
1137
+
1138
+ # Update properties of this object
1139
+ def update!(**args)
1140
+ @name = args[:name] if args.key?(:name)
1141
+ end
1142
+ end
1143
+
1045
1144
  # Location of the source in a Google Cloud Source Repository.
1046
1145
  class RepoSource
1047
1146
  include Google::Apis::Core::Hashable
@@ -1336,6 +1435,13 @@ module Google
1336
1435
  # @return [Google::Apis::CloudbuildV1beta1::StorageSource]
1337
1436
  attr_accessor :storage_source
1338
1437
 
1438
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1439
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1440
+ # builders/tree/master/gcs-fetcher).
1441
+ # Corresponds to the JSON property `storageSourceManifest`
1442
+ # @return [Google::Apis::CloudbuildV1beta1::StorageSourceManifest]
1443
+ attr_accessor :storage_source_manifest
1444
+
1339
1445
  def initialize(**args)
1340
1446
  update!(**args)
1341
1447
  end
@@ -1344,6 +1450,7 @@ module Google
1344
1450
  def update!(**args)
1345
1451
  @repo_source = args[:repo_source] if args.key?(:repo_source)
1346
1452
  @storage_source = args[:storage_source] if args.key?(:storage_source)
1453
+ @storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
1347
1454
  end
1348
1455
  end
1349
1456
 
@@ -1373,6 +1480,13 @@ module Google
1373
1480
  # @return [Google::Apis::CloudbuildV1beta1::StorageSource]
1374
1481
  attr_accessor :resolved_storage_source
1375
1482
 
1483
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1484
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1485
+ # builders/tree/master/gcs-fetcher).
1486
+ # Corresponds to the JSON property `resolvedStorageSourceManifest`
1487
+ # @return [Google::Apis::CloudbuildV1beta1::StorageSourceManifest]
1488
+ attr_accessor :resolved_storage_source_manifest
1489
+
1376
1490
  def initialize(**args)
1377
1491
  update!(**args)
1378
1492
  end
@@ -1382,6 +1496,7 @@ module Google
1382
1496
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
1383
1497
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
1384
1498
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
1499
+ @resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
1385
1500
  end
1386
1501
  end
1387
1502
 
@@ -1459,6 +1574,43 @@ module Google
1459
1574
  end
1460
1575
  end
1461
1576
 
1577
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1578
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1579
+ # builders/tree/master/gcs-fetcher).
1580
+ class StorageSourceManifest
1581
+ include Google::Apis::Core::Hashable
1582
+
1583
+ # Google Cloud Storage bucket containing the source manifest (see [Bucket Name
1584
+ # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
1585
+ # ).
1586
+ # Corresponds to the JSON property `bucket`
1587
+ # @return [String]
1588
+ attr_accessor :bucket
1589
+
1590
+ # Google Cloud Storage generation for the object. If the generation is omitted,
1591
+ # the latest generation will be used.
1592
+ # Corresponds to the JSON property `generation`
1593
+ # @return [Fixnum]
1594
+ attr_accessor :generation
1595
+
1596
+ # Google Cloud Storage object containing the source manifest. This object must
1597
+ # be a JSON file.
1598
+ # Corresponds to the JSON property `object`
1599
+ # @return [String]
1600
+ attr_accessor :object
1601
+
1602
+ def initialize(**args)
1603
+ update!(**args)
1604
+ end
1605
+
1606
+ # Update properties of this object
1607
+ def update!(**args)
1608
+ @bucket = args[:bucket] if args.key?(:bucket)
1609
+ @generation = args[:generation] if args.key?(:generation)
1610
+ @object = args[:object] if args.key?(:object)
1611
+ end
1612
+ end
1613
+
1462
1614
  # Start and end times for a build execution phase.
1463
1615
  class TimeSpan
1464
1616
  include Google::Apis::Core::Hashable
@@ -1484,6 +1636,38 @@ module Google
1484
1636
  end
1485
1637
  end
1486
1638
 
1639
+ # Metadata for the `UpdateWorkerPool` operation.
1640
+ class UpdateWorkerPoolOperationMetadata
1641
+ include Google::Apis::Core::Hashable
1642
+
1643
+ # Time the operation was completed.
1644
+ # Corresponds to the JSON property `completeTime`
1645
+ # @return [String]
1646
+ attr_accessor :complete_time
1647
+
1648
+ # Time the operation was created.
1649
+ # Corresponds to the JSON property `createTime`
1650
+ # @return [String]
1651
+ attr_accessor :create_time
1652
+
1653
+ # The resource name of the `WorkerPool` being updated. Format: `projects/`
1654
+ # project`/locations/`location`/workerPools/`worker_pool``.
1655
+ # Corresponds to the JSON property `workerPool`
1656
+ # @return [String]
1657
+ attr_accessor :worker_pool
1658
+
1659
+ def initialize(**args)
1660
+ update!(**args)
1661
+ end
1662
+
1663
+ # Update properties of this object
1664
+ def update!(**args)
1665
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
1666
+ @create_time = args[:create_time] if args.key?(:create_time)
1667
+ @worker_pool = args[:worker_pool] if args.key?(:worker_pool)
1668
+ end
1669
+ end
1670
+
1487
1671
  # Volume describes a Docker container volume which is mounted into build steps
1488
1672
  # in order to persist files across build step execution.
1489
1673
  class Volume
@@ -1514,6 +1698,31 @@ module Google
1514
1698
  end
1515
1699
  end
1516
1700
 
1701
+ # A non-fatal problem encountered during the execution of the build.
1702
+ class Warning
1703
+ include Google::Apis::Core::Hashable
1704
+
1705
+ # The priority for this warning.
1706
+ # Corresponds to the JSON property `priority`
1707
+ # @return [String]
1708
+ attr_accessor :priority
1709
+
1710
+ # Explanation of the warning generated.
1711
+ # Corresponds to the JSON property `text`
1712
+ # @return [String]
1713
+ attr_accessor :text
1714
+
1715
+ def initialize(**args)
1716
+ update!(**args)
1717
+ end
1718
+
1719
+ # Update properties of this object
1720
+ def update!(**args)
1721
+ @priority = args[:priority] if args.key?(:priority)
1722
+ @text = args[:text] if args.key?(:text)
1723
+ end
1724
+ end
1725
+
1517
1726
  # Defines the configuration to be used for creating workers in the pool.
1518
1727
  class WorkerConfig
1519
1728
  include Google::Apis::Core::Hashable
@@ -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.1.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210308"
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::CloudbuildV1beta1::TimeSpan, decorator: Google::Apis::CloudbuildV1beta1::TimeSpan::Representation
318
354
 
355
+ collection :warnings, as: 'warnings', class: Google::Apis::CloudbuildV1beta1::Warning, decorator: Google::Apis::CloudbuildV1beta1::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::CloudbuildV1beta1::PoolOption, decorator: Google::Apis::CloudbuildV1beta1::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::CloudbuildV1beta1::StorageSource, decorator: Google::Apis::CloudbuildV1beta1::StorageSource::Representation
591
656
 
657
+ property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1beta1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1beta1::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::CloudbuildV1beta1::StorageSource, decorator: Google::Apis::CloudbuildV1beta1::StorageSource::Representation
603
670
 
671
+ property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1beta1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1beta1::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_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.6.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-15 00:00:00.000000000 Z
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.1'
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: '0.1'
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.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.6.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: []
@@ -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.13
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 V1beta1