google-apis-cloudbuild_v1alpha2 0.2.0 → 0.7.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: bb91a4ed361c0004b0e66137af4cc585de3e5eec2b9651adc15d271a41444b07
4
- data.tar.gz: 5ff5db50e8708b3b10230b827eef55ea030ad38267eef79698fbf411abc096a8
3
+ metadata.gz: 175649066a354a13f8aacb053b110e0cfe37c262b29bc541466752b0ec50e04d
4
+ data.tar.gz: b747e41511f689d1a518e3b3a018b1521e6a61ae118f7fbce8dac30f29bc5aa3
5
5
  SHA512:
6
- metadata.gz: 316720da48be6024b4a82307d615f9a46961164bc5c08ec2cee711949d89d824dda9a5b85f00dafd2c5342705a91630de0c75270ccff5268276175df89253d3d
7
- data.tar.gz: f11e6d90bc73bdf4767a2da540d4a1d6d7b171b3b96351b9344f0bca625b12375df356cccd6e5302109a4d99ef43ff24d3b01d0975b5f80f3b915b291b727145
6
+ metadata.gz: 56d7d355485e604209b823c3d620c88d60f65e06045df25bd30c97c3aada5938e905c561c439a7272ba857d9c780f3169e664f6438d36bd539c780aba4dfa0d4
7
+ data.tar.gz: 3b9cfe8688fb45c59ce091aa70c238dba1e14e4f27bdbc77276dd5b02c532ddbedbd68e2c024c15aca771786f2f6d12cc1ce5681a81907fa77992d8a298fa56c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha2
2
2
 
3
+ ### v0.7.0 (2021-06-24)
4
+
5
+ * Regenerated using generator version 0.3.0
6
+
7
+ ### v0.6.0 (2021-05-19)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.5.0 (2021-05-12)
12
+
13
+ * Regenerated from discovery document revision 20210511
14
+
15
+ ### v0.4.0 (2021-03-23)
16
+
17
+ * Regenerated from discovery document revision 20210319
18
+ * Regenerated using generator version 0.2.0
19
+
20
+ ### v0.3.0 (2021-03-04)
21
+
22
+ * Unspecified changes
23
+
3
24
  ### v0.2.0 (2021-02-02)
4
25
 
5
26
  * Regenerated from discovery document revision 20210128
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1alpha2'
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::CloudbuildV1alpha2::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::CloudbuildV1alpha2::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
 
@@ -1333,6 +1339,12 @@ module Google
1333
1339
  # @return [Google::Apis::CloudbuildV1alpha2::StorageSource]
1334
1340
  attr_accessor :storage_source
1335
1341
 
1342
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1343
+ # Preview.
1344
+ # Corresponds to the JSON property `storageSourceManifest`
1345
+ # @return [Google::Apis::CloudbuildV1alpha2::StorageSourceManifest]
1346
+ attr_accessor :storage_source_manifest
1347
+
1336
1348
  def initialize(**args)
1337
1349
  update!(**args)
1338
1350
  end
@@ -1341,6 +1353,7 @@ module Google
1341
1353
  def update!(**args)
1342
1354
  @repo_source = args[:repo_source] if args.key?(:repo_source)
1343
1355
  @storage_source = args[:storage_source] if args.key?(:storage_source)
1356
+ @storage_source_manifest = args[:storage_source_manifest] if args.key?(:storage_source_manifest)
1344
1357
  end
1345
1358
  end
1346
1359
 
@@ -1370,6 +1383,12 @@ module Google
1370
1383
  # @return [Google::Apis::CloudbuildV1alpha2::StorageSource]
1371
1384
  attr_accessor :resolved_storage_source
1372
1385
 
1386
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1387
+ # Preview.
1388
+ # Corresponds to the JSON property `resolvedStorageSourceManifest`
1389
+ # @return [Google::Apis::CloudbuildV1alpha2::StorageSourceManifest]
1390
+ attr_accessor :resolved_storage_source_manifest
1391
+
1373
1392
  def initialize(**args)
1374
1393
  update!(**args)
1375
1394
  end
@@ -1379,6 +1398,7 @@ module Google
1379
1398
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
1380
1399
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
1381
1400
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
1401
+ @resolved_storage_source_manifest = args[:resolved_storage_source_manifest] if args.key?(:resolved_storage_source_manifest)
1382
1402
  end
1383
1403
  end
1384
1404
 
@@ -1456,6 +1476,42 @@ module Google
1456
1476
  end
1457
1477
  end
1458
1478
 
1479
+ # Location of the source manifest in Google Cloud Storage. This feature is in
1480
+ # Preview.
1481
+ class StorageSourceManifest
1482
+ include Google::Apis::Core::Hashable
1483
+
1484
+ # Google Cloud Storage bucket containing the source manifest (see [Bucket Name
1485
+ # Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)
1486
+ # ).
1487
+ # Corresponds to the JSON property `bucket`
1488
+ # @return [String]
1489
+ attr_accessor :bucket
1490
+
1491
+ # Google Cloud Storage generation for the object. If the generation is omitted,
1492
+ # the latest generation will be used.
1493
+ # Corresponds to the JSON property `generation`
1494
+ # @return [Fixnum]
1495
+ attr_accessor :generation
1496
+
1497
+ # Google Cloud Storage object containing the source manifest. This object must
1498
+ # be a JSON file.
1499
+ # Corresponds to the JSON property `object`
1500
+ # @return [String]
1501
+ attr_accessor :object
1502
+
1503
+ def initialize(**args)
1504
+ update!(**args)
1505
+ end
1506
+
1507
+ # Update properties of this object
1508
+ def update!(**args)
1509
+ @bucket = args[:bucket] if args.key?(:bucket)
1510
+ @generation = args[:generation] if args.key?(:generation)
1511
+ @object = args[:object] if args.key?(:object)
1512
+ end
1513
+ end
1514
+
1459
1515
  # Start and end times for a build execution phase.
1460
1516
  class TimeSpan
1461
1517
  include Google::Apis::Core::Hashable
@@ -1511,6 +1567,31 @@ module Google
1511
1567
  end
1512
1568
  end
1513
1569
 
1570
+ # A non-fatal problem encountered during the execution of the build.
1571
+ class Warning
1572
+ include Google::Apis::Core::Hashable
1573
+
1574
+ # The priority for this warning.
1575
+ # Corresponds to the JSON property `priority`
1576
+ # @return [String]
1577
+ attr_accessor :priority
1578
+
1579
+ # Explanation of the warning generated.
1580
+ # Corresponds to the JSON property `text`
1581
+ # @return [String]
1582
+ attr_accessor :text
1583
+
1584
+ def initialize(**args)
1585
+ update!(**args)
1586
+ end
1587
+
1588
+ # Update properties of this object
1589
+ def update!(**args)
1590
+ @priority = args[:priority] if args.key?(:priority)
1591
+ @text = args[:text] if args.key?(:text)
1592
+ end
1593
+ end
1594
+
1514
1595
  # WorkerConfig defines the configuration to be used for a creating workers in
1515
1596
  # the pool.
1516
1597
  class WorkerConfig
@@ -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.2.0"
19
+ GEM_VERSION = "0.7.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.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210128"
25
+ REVISION = "20210511"
26
26
  end
27
27
  end
28
28
  end
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class StorageSourceManifest
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class TimeSpan
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -238,6 +244,12 @@ module Google
238
244
  include Google::Apis::Core::JsonObjectSupport
239
245
  end
240
246
 
247
+ class Warning
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
241
253
  class WorkerConfig
242
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
255
 
@@ -316,6 +328,8 @@ module Google
316
328
  property :timeout, as: 'timeout'
317
329
  hash :timing, as: 'timing', class: Google::Apis::CloudbuildV1alpha2::TimeSpan, decorator: Google::Apis::CloudbuildV1alpha2::TimeSpan::Representation
318
330
 
331
+ collection :warnings, as: 'warnings', class: Google::Apis::CloudbuildV1alpha2::Warning, decorator: Google::Apis::CloudbuildV1alpha2::Warning::Representation
332
+
319
333
  end
320
334
  end
321
335
 
@@ -589,6 +603,8 @@ module Google
589
603
 
590
604
  property :storage_source, as: 'storageSource', class: Google::Apis::CloudbuildV1alpha2::StorageSource, decorator: Google::Apis::CloudbuildV1alpha2::StorageSource::Representation
591
605
 
606
+ property :storage_source_manifest, as: 'storageSourceManifest', class: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest::Representation
607
+
592
608
  end
593
609
  end
594
610
 
@@ -601,6 +617,8 @@ module Google
601
617
 
602
618
  property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudbuildV1alpha2::StorageSource, decorator: Google::Apis::CloudbuildV1alpha2::StorageSource::Representation
603
619
 
620
+ property :resolved_storage_source_manifest, as: 'resolvedStorageSourceManifest', class: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest, decorator: Google::Apis::CloudbuildV1alpha2::StorageSourceManifest::Representation
621
+
604
622
  end
605
623
  end
606
624
 
@@ -622,6 +640,15 @@ module Google
622
640
  end
623
641
  end
624
642
 
643
+ class StorageSourceManifest
644
+ # @private
645
+ class Representation < Google::Apis::Core::JsonRepresentation
646
+ property :bucket, as: 'bucket'
647
+ property :generation, :numeric_string => true, as: 'generation'
648
+ property :object, as: 'object'
649
+ end
650
+ end
651
+
625
652
  class TimeSpan
626
653
  # @private
627
654
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -638,6 +665,14 @@ module Google
638
665
  end
639
666
  end
640
667
 
668
+ class Warning
669
+ # @private
670
+ class Representation < Google::Apis::Core::JsonRepresentation
671
+ property :priority, as: 'priority'
672
+ property :text, as: 'text'
673
+ end
674
+ end
675
+
641
676
  class WorkerConfig
642
677
  # @private
643
678
  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.2.0
4
+ version: 0.7.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-02-08 00:00:00.000000000 Z
11
+ date: 2021-06-28 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.3'
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.3'
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.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.7.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: []
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
68
  requirements:
63
69
  - - ">="
64
70
  - !ruby/object:Gem::Version
65
- version: '2.4'
71
+ version: '2.5'
66
72
  required_rubygems_version: !ruby/object:Gem::Requirement
67
73
  requirements:
68
74
  - - ">="
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.2.6
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 V1alpha2