google-apis-cloudbuild_v1alpha2 0.5.0 → 0.9.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: 4cb0bf6dd9a4e7a10da5e0a10b9dcb3d2fdbeeead973a7ca7feeee563254fc1c
4
- data.tar.gz: 1a26f110f49d4be8d2a42f6178ff22f61ddd41f73b0c8a066c329b1d1b69d5a3
3
+ metadata.gz: fb1ef3bdc359b4c2ffdb971fbb693a4c4177c05cd66b1463ef61a4a6bd27d278
4
+ data.tar.gz: 18af1e4e96082518d4dcb4a08bf9646e773c7823c9f95092650c720dc401d74e
5
5
  SHA512:
6
- metadata.gz: 4cb756581c174ab3821df32be6df9db72ef6ff97eb87c12e904e50dbb3d8ed2c106b3aae5f0e6fe7755226c860feb0098a430eee79cdc9ab515878f879b18a69
7
- data.tar.gz: '0237910c1c82ee14f2fdbe4001e156d29130997e879c431c1d98012b1ae6dd72105220796368c61fc88f44c15ccc7acf2646cb249de2905a189136de7aa86522'
6
+ metadata.gz: 4a9ba02cbef9378ffa0d557f6c557ba7615f99dc1981a85e0d074ae16993657428f0b5d1ecbf79f5e114d1a1507675aa0b092f9e99ccac2f081ea4a38e820d28
7
+ data.tar.gz: 9b5437592a7b6f35206427f7d0d198b5dfb3689594bbf5ccb77e71e0c9098be313a02ce065f4d7ee3d798672e0b1073c71316e0f19bfefb29aa7f58d6bd86c4d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha2
2
2
 
3
+ ### v0.9.0 (2021-07-13)
4
+
5
+ * Regenerated from discovery document revision 20210709
6
+
7
+ ### v0.8.0 (2021-07-03)
8
+
9
+ * Regenerated from discovery document revision 20210701
10
+ * Regenerated using generator version 0.4.0
11
+
12
+ ### v0.7.0 (2021-06-24)
13
+
14
+ * Regenerated using generator version 0.3.0
15
+
16
+ ### v0.6.0 (2021-05-19)
17
+
18
+ * Unspecified changes
19
+
3
20
  ### v0.5.0 (2021-05-12)
4
21
 
5
22
  * Regenerated from discovery document revision 20210511
@@ -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 private pool](https://cloud.google.com/build/docs/private-pools/
407
+ # run-builds-in-private-pool) for more information.
408
+ # Corresponds to the JSON property `pool`
409
+ # @return [Google::Apis::CloudbuildV1alpha2::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::CloudbuildV1alpha2::Volume>]
437
444
  attr_accessor :volumes
438
445
 
439
- # Option to specify a `WorkerPool` for the build. Format: projects/`project`/
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.
@@ -1045,6 +1115,29 @@ module Google
1045
1115
  end
1046
1116
  end
1047
1117
 
1118
+ # Details about how a build should be executed on a `WorkerPool`. See [running
1119
+ # builds in a private pool](https://cloud.google.com/build/docs/private-pools/
1120
+ # run-builds-in-private-pool) for more information.
1121
+ class PoolOption
1122
+ include Google::Apis::Core::Hashable
1123
+
1124
+ # The `WorkerPool` resource to execute the build on. You must have `cloudbuild.
1125
+ # workerpools.use` on the project hosting the WorkerPool. Format projects/`
1126
+ # project`/locations/`location`/workerPools/`workerPoolId`
1127
+ # Corresponds to the JSON property `name`
1128
+ # @return [String]
1129
+ attr_accessor :name
1130
+
1131
+ def initialize(**args)
1132
+ update!(**args)
1133
+ end
1134
+
1135
+ # Update properties of this object
1136
+ def update!(**args)
1137
+ @name = args[:name] if args.key?(:name)
1138
+ end
1139
+ end
1140
+
1048
1141
  # Location of the source in a Google Cloud Source Repository.
1049
1142
  class RepoSource
1050
1143
  include Google::Apis::Core::Hashable
@@ -1340,7 +1433,8 @@ module Google
1340
1433
  attr_accessor :storage_source
1341
1434
 
1342
1435
  # Location of the source manifest in Google Cloud Storage. This feature is in
1343
- # Preview.
1436
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1437
+ # builders/tree/master/gcs-fetcher).
1344
1438
  # Corresponds to the JSON property `storageSourceManifest`
1345
1439
  # @return [Google::Apis::CloudbuildV1alpha2::StorageSourceManifest]
1346
1440
  attr_accessor :storage_source_manifest
@@ -1384,7 +1478,8 @@ module Google
1384
1478
  attr_accessor :resolved_storage_source
1385
1479
 
1386
1480
  # Location of the source manifest in Google Cloud Storage. This feature is in
1387
- # Preview.
1481
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1482
+ # builders/tree/master/gcs-fetcher).
1388
1483
  # Corresponds to the JSON property `resolvedStorageSourceManifest`
1389
1484
  # @return [Google::Apis::CloudbuildV1alpha2::StorageSourceManifest]
1390
1485
  attr_accessor :resolved_storage_source_manifest
@@ -1459,7 +1554,7 @@ module Google
1459
1554
  attr_accessor :generation
1460
1555
 
1461
1556
  # Google Cloud Storage object containing the source. This object must be a
1462
- # gzipped archive file (`.tar.gz`) containing source to build.
1557
+ # zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build.
1463
1558
  # Corresponds to the JSON property `object`
1464
1559
  # @return [String]
1465
1560
  attr_accessor :object
@@ -1477,7 +1572,8 @@ module Google
1477
1572
  end
1478
1573
 
1479
1574
  # Location of the source manifest in Google Cloud Storage. This feature is in
1480
- # Preview.
1575
+ # Preview; see description [here](https://github.com/GoogleCloudPlatform/cloud-
1576
+ # builders/tree/master/gcs-fetcher).
1481
1577
  class StorageSourceManifest
1482
1578
  include Google::Apis::Core::Hashable
1483
1579
 
@@ -1537,6 +1633,38 @@ module Google
1537
1633
  end
1538
1634
  end
1539
1635
 
1636
+ # Metadata for the `UpdateWorkerPool` operation.
1637
+ class UpdateWorkerPoolOperationMetadata
1638
+ include Google::Apis::Core::Hashable
1639
+
1640
+ # Time the operation was completed.
1641
+ # Corresponds to the JSON property `completeTime`
1642
+ # @return [String]
1643
+ attr_accessor :complete_time
1644
+
1645
+ # Time the operation was created.
1646
+ # Corresponds to the JSON property `createTime`
1647
+ # @return [String]
1648
+ attr_accessor :create_time
1649
+
1650
+ # The resource name of the `WorkerPool` being updated. Format: `projects/`
1651
+ # project`/locations/`location`/workerPools/`worker_pool``.
1652
+ # Corresponds to the JSON property `workerPool`
1653
+ # @return [String]
1654
+ attr_accessor :worker_pool
1655
+
1656
+ def initialize(**args)
1657
+ update!(**args)
1658
+ end
1659
+
1660
+ # Update properties of this object
1661
+ def update!(**args)
1662
+ @complete_time = args[:complete_time] if args.key?(:complete_time)
1663
+ @create_time = args[:create_time] if args.key?(:create_time)
1664
+ @worker_pool = args[:worker_pool] if args.key?(:worker_pool)
1665
+ end
1666
+ end
1667
+
1540
1668
  # Volume describes a Docker container volume which is mounted into build steps
1541
1669
  # in order to persist files across build step execution.
1542
1670
  class Volume
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1alpha2
18
18
  # Version of the google-apis-cloudbuild_v1alpha2 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.9.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 = "20210511"
25
+ REVISION = "20210709"
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::CloudbuildV1alpha2::PoolOption, decorator: Google::Apis::CloudbuildV1alpha2::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
@@ -521,6 +565,13 @@ module Google
521
565
  end
522
566
  end
523
567
 
568
+ class PoolOption
569
+ # @private
570
+ class Representation < Google::Apis::Core::JsonRepresentation
571
+ property :name, as: 'name'
572
+ end
573
+ end
574
+
524
575
  class RepoSource
525
576
  # @private
526
577
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -657,6 +708,15 @@ module Google
657
708
  end
658
709
  end
659
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
+
660
720
  class Volume
661
721
  # @private
662
722
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1alpha2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.9.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-05-18 00:00:00.000000000 Z
11
+ date: 2021-07-19 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 V1alpha2. Simple REST
28
34
  clients are Ruby client libraries that provide access to Google services via their
29
35
  HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.9.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha2
57
63
  post_install_message:
58
64
  rdoc_options: []