google-apis-cloudbuild_v1alpha1 0.3.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: 48bbd5d064980e000c754a03449b4cfee107aec7957cb6d56a81f26fefd72cfc
4
- data.tar.gz: e772cf7303317611461700857751a11d7eb1103b2cb7d77102a8772859b4b616
3
+ metadata.gz: 22ad8d78205684fef1fc60416d3e79a1c9a4c8a94bcc51df3f125dbdf30b567d
4
+ data.tar.gz: 1c6067fc72631d9fee3f34cd8fb133a36906c680b504c99bae03cd0d702746ff
5
5
  SHA512:
6
- metadata.gz: bcd4357adc893d97e1370da219f7c0e834795233a036f14f41aae31948051a290adbb095bf2011c7c4f20bfe2e64d5c6fe494be29ae1b9b57565c9bd250585c1
7
- data.tar.gz: 401db10fd292476c56534eb8e52782898d9e1d82cb0d9adfbc2dfc153ec2de902cd80927868c7c7fb9381c340bb1a84c8aec3585540331803de651bd8a15efc2
6
+ metadata.gz: 14e5aabfe35b5476912f8b78d325e3eac9efa704332c08e767f44a2f8d392adb04ba3d14ebf1eda924a55690e95b18083d35b1faf031573e1b6e2425c7b6aa22
7
+ data.tar.gz: 1f2ab479dce5f4f54bf175dde971d73bad5d69146dd50782236f188e0380be531d3136e080e05d98d37a430719e777442070028d1ff0ec662f72d3ebeaec0d9f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
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
+
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 = 'V1alpha1'
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::CloudbuildV1alpha1::TimeSpan>]
286
286
  attr_accessor :timing
287
287
 
288
+ # Output only. Non-fatal problems encountered during the execution of the build.
289
+ # Corresponds to the JSON property `warnings`
290
+ # @return [Array<Google::Apis::CloudbuildV1alpha1::Warning>]
291
+ attr_accessor :warnings
292
+
288
293
  def initialize(**args)
289
294
  update!(**args)
290
295
  end
@@ -317,6 +322,7 @@ module Google
317
322
  @tags = args[:tags] if args.key?(:tags)
318
323
  @timeout = args[:timeout] if args.key?(:timeout)
319
324
  @timing = args[:timing] if args.key?(:timing)
325
+ @warnings = args[:warnings] if args.key?(:warnings)
320
326
  end
321
327
  end
322
328
 
@@ -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::CloudbuildV1alpha1::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::CloudbuildV1alpha1::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.
@@ -1052,6 +1128,29 @@ module Google
1052
1128
  end
1053
1129
  end
1054
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
+
1055
1154
  # Location of the source in a Google Cloud Source Repository.
1056
1155
  class RepoSource
1057
1156
  include Google::Apis::Core::Hashable
@@ -1346,6 +1445,13 @@ module Google
1346
1445
  # @return [Google::Apis::CloudbuildV1alpha1::StorageSource]
1347
1446
  attr_accessor :storage_source
1348
1447
 
1448
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1449
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1450
+ # builders/tree/master/gcs-fetcher).
1451
+ # Corresponds to the JSON property `storageSourceManifest`
1452
+ # @return [Google::Apis::CloudbuildV1alpha1::StorageSourceManifest]
1453
+ attr_accessor :storage_source_manifest
1454
+
1349
1455
  def initialize(**args)
1350
1456
  update!(**args)
1351
1457
  end
@@ -1354,6 +1460,7 @@ module Google
1354
1460
  def update!(**args)
1355
1461
  @repo_source = args[:repo_source] if args.key?(:repo_source)
1356
1462
  @storage_source = args[:storage_source] if args.key?(:storage_source)
1463
+ @storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
1357
1464
  end
1358
1465
  end
1359
1466
 
@@ -1383,6 +1490,13 @@ module Google
1383
1490
  # @return [Google::Apis::CloudbuildV1alpha1::StorageSource]
1384
1491
  attr_accessor :resolved_storage_source
1385
1492
 
1493
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1494
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1495
+ # builders/tree/master/gcs-fetcher).
1496
+ # Corresponds to the JSON property `resolvedStorageSourceManifest`
1497
+ # @return [Google::Apis::CloudbuildV1alpha1::StorageSourceManifest]
1498
+ attr_accessor :resolved_storage_source_manifest
1499
+
1386
1500
  def initialize(**args)
1387
1501
  update!(**args)
1388
1502
  end
@@ -1392,6 +1506,7 @@ module Google
1392
1506
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
1393
1507
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
1394
1508
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
1509
+ @resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
1395
1510
  end
1396
1511
  end
1397
1512
 
@@ -1469,6 +1584,43 @@ module Google
1469
1584
  end
1470
1585
  end
1471
1586
 
1587
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1588
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1589
+ # builders/tree/master/gcs-fetcher).
1590
+ class StorageSourceManifest
1591
+ include Google::Apis::Core::Hashable
1592
+
1593
+ # Google Cloud Storage bucket containing the source manifest (see [Bucket Name
1594
+ # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
1595
+ # ).
1596
+ # Corresponds to the JSON property `bucket`
1597
+ # @return [String]
1598
+ attr_accessor :bucket
1599
+
1600
+ # Google Cloud Storage generation for the object. If the generation is omitted,
1601
+ # the latest generation will be used.
1602
+ # Corresponds to the JSON property `generation`
1603
+ # @return [Fixnum]
1604
+ attr_accessor :generation
1605
+
1606
+ # Google Cloud Storage object containing the source manifest. This object must
1607
+ # be a JSON file.
1608
+ # Corresponds to the JSON property `object`
1609
+ # @return [String]
1610
+ attr_accessor :object
1611
+
1612
+ def initialize(**args)
1613
+ update!(**args)
1614
+ end
1615
+
1616
+ # Update properties of this object
1617
+ def update!(**args)
1618
+ @bucket = args[:bucket] if args.key?(:bucket)
1619
+ @generation = args[:generation] if args.key?(:generation)
1620
+ @object = args[:object] if args.key?(:object)
1621
+ end
1622
+ end
1623
+
1472
1624
  # Start and end times for a build execution phase.
1473
1625
  class TimeSpan
1474
1626
  include Google::Apis::Core::Hashable
@@ -1494,6 +1646,38 @@ module Google
1494
1646
  end
1495
1647
  end
1496
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
+
1497
1681
  # Volume describes a Docker container volume which is mounted into build steps
1498
1682
  # in order to persist files across build step execution.
1499
1683
  class Volume
@@ -1524,6 +1708,31 @@ module Google
1524
1708
  end
1525
1709
  end
1526
1710
 
1711
+ # A non-fatal problem encountered during the execution of the build.
1712
+ class Warning
1713
+ include Google::Apis::Core::Hashable
1714
+
1715
+ # The priority for this warning.
1716
+ # Corresponds to the JSON property `priority`
1717
+ # @return [String]
1718
+ attr_accessor :priority
1719
+
1720
+ # Explanation of the warning generated.
1721
+ # Corresponds to the JSON property `text`
1722
+ # @return [String]
1723
+ attr_accessor :text
1724
+
1725
+ def initialize(**args)
1726
+ update!(**args)
1727
+ end
1728
+
1729
+ # Update properties of this object
1730
+ def update!(**args)
1731
+ @priority = args[:priority] if args.key?(:priority)
1732
+ @text = args[:text] if args.key?(:text)
1733
+ end
1734
+ end
1735
+
1527
1736
  # WorkerConfig defines the configuration to be used for a creating workers in
1528
1737
  # the pool.
1529
1738
  class WorkerConfig
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1alpha1
18
18
  # Version of the google-apis-cloudbuild_v1alpha1 gem
19
- GEM_VERSION = "0.3.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.1.2"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210128"
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::CloudbuildV1alpha1::TimeSpan, decorator: Google::Apis::CloudbuildV1alpha1::TimeSpan::Representation
318
354
 
355
+ collection :warnings, as: 'warnings', class: Google::Apis::CloudbuildV1alpha1::Warning, decorator: Google::Apis::CloudbuildV1alpha1::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::CloudbuildV1alpha1::PoolOption, decorator: Google::Apis::CloudbuildV1alpha1::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
@@ -509,6 +567,13 @@ module Google
509
567
  end
510
568
  end
511
569
 
570
+ class PoolOption
571
+ # @private
572
+ class Representation < Google::Apis::Core::JsonRepresentation
573
+ property :name, as: 'name'
574
+ end
575
+ end
576
+
512
577
  class RepoSource
513
578
  # @private
514
579
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -591,6 +656,8 @@ module Google
591
656
 
592
657
  property :storage_source, as: 'storageSource', class: Google::Apis::CloudbuildV1alpha1::StorageSource, decorator: Google::Apis::CloudbuildV1alpha1::StorageSource::Representation
593
658
 
659
+ property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest::Representation
660
+
594
661
  end
595
662
  end
596
663
 
@@ -603,6 +670,8 @@ module Google
603
670
 
604
671
  property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudbuildV1alpha1::StorageSource, decorator: Google::Apis::CloudbuildV1alpha1::StorageSource::Representation
605
672
 
673
+ property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha1::StorageSourceManifest::Representation
674
+
606
675
  end
607
676
  end
608
677
 
@@ -624,6 +693,15 @@ module Google
624
693
  end
625
694
  end
626
695
 
696
+ class StorageSourceManifest
697
+ # @private
698
+ class Representation < Google::Apis::Core::JsonRepresentation
699
+ property :bucket, as: 'bucket'
700
+ property :generation, :numeric_string => true, as: 'generation'
701
+ property :object, as: 'object'
702
+ end
703
+ end
704
+
627
705
  class TimeSpan
628
706
  # @private
629
707
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -632,6 +710,15 @@ module Google
632
710
  end
633
711
  end
634
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
+
635
722
  class Volume
636
723
  # @private
637
724
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -640,6 +727,14 @@ module Google
640
727
  end
641
728
  end
642
729
 
730
+ class Warning
731
+ # @private
732
+ class Representation < Google::Apis::Core::JsonRepresentation
733
+ property :priority, as: 'priority'
734
+ property :text, as: 'text'
735
+ end
736
+ end
737
+
643
738
  class WorkerConfig
644
739
  # @private
645
740
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.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-03-08 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 V1alpha1. Simple REST
28
34
  clients are Ruby client libraries that provide access to Google services via their
29
35
  HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.8.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha1
57
63
  post_install_message:
58
64
  rdoc_options: []
@@ -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 V1alpha1