google-apis-cloudbuild_v1alpha2 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4cb0bf6dd9a4e7a10da5e0a10b9dcb3d2fdbeeead973a7ca7feeee563254fc1c
|
4
|
+
data.tar.gz: 1a26f110f49d4be8d2a42f6178ff22f61ddd41f73b0c8a066c329b1d1b69d5a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cb756581c174ab3821df32be6df9db72ef6ff97eb87c12e904e50dbb3d8ed2c106b3aae5f0e6fe7755226c860feb0098a430eee79cdc9ab515878f879b18a69
|
7
|
+
data.tar.gz: '0237910c1c82ee14f2fdbe4001e156d29130997e879c431c1d98012b1ae6dd72105220796368c61fc88f44c15ccc7acf2646cb249de2905a189136de7aa86522'
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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
|
|
@@ -1561,6 +1567,31 @@ module Google
|
|
1561
1567
|
end
|
1562
1568
|
end
|
1563
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
|
+
|
1564
1595
|
# WorkerConfig defines the configuration to be used for a creating workers in
|
1565
1596
|
# the pool.
|
1566
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.
|
19
|
+
GEM_VERSION = "0.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210511"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -244,6 +244,12 @@ module Google
|
|
244
244
|
include Google::Apis::Core::JsonObjectSupport
|
245
245
|
end
|
246
246
|
|
247
|
+
class Warning
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
247
253
|
class WorkerConfig
|
248
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
255
|
|
@@ -322,6 +328,8 @@ module Google
|
|
322
328
|
property :timeout, as: 'timeout'
|
323
329
|
hash :timing, as: 'timing', class: Google::Apis::CloudbuildV1alpha2::TimeSpan, decorator: Google::Apis::CloudbuildV1alpha2::TimeSpan::Representation
|
324
330
|
|
331
|
+
collection :warnings, as: 'warnings', class: Google::Apis::CloudbuildV1alpha2::Warning, decorator: Google::Apis::CloudbuildV1alpha2::Warning::Representation
|
332
|
+
|
325
333
|
end
|
326
334
|
end
|
327
335
|
|
@@ -657,6 +665,14 @@ module Google
|
|
657
665
|
end
|
658
666
|
end
|
659
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
|
+
|
660
676
|
class WorkerConfig
|
661
677
|
# @private
|
662
678
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1alpha2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
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.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.5.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha2
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud Build API V1alpha2
|