google-apis-cloudbuild_v1beta1 0.2.0 → 0.3.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db208c9bf1cbac14a14022360ed682d3b970c910c4cd8c4e70b9cde7b0c38f42
|
4
|
+
data.tar.gz: b2ea724e18fe749551d0310e2046ac92c88ae4e7406107bfbfa4b51e287f2d59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c67899e45fb5a5a662439ddc31b354fb04b7d7ace675e561c5422926f1cb7fea76bd7bb177dba3353bbc7552a4c589a979f3db16c091161e9568c37324604747
|
7
|
+
data.tar.gz: 29f122904a1e7eed4678069b19d28e7e0451bc7247d9c33283fc897f0f03b537b1f7dcd25195c7ac531e59c2143798e4ccac37bca968cb36561c30e565872d5f
|
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::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
|
|
@@ -1564,6 +1570,31 @@ module Google
|
|
1564
1570
|
end
|
1565
1571
|
end
|
1566
1572
|
|
1573
|
+
# A non-fatal problem encountered during the execution of the build.
|
1574
|
+
class Warning
|
1575
|
+
include Google::Apis::Core::Hashable
|
1576
|
+
|
1577
|
+
# The priority for this warning.
|
1578
|
+
# Corresponds to the JSON property `priority`
|
1579
|
+
# @return [String]
|
1580
|
+
attr_accessor :priority
|
1581
|
+
|
1582
|
+
# Explanation of the warning generated.
|
1583
|
+
# Corresponds to the JSON property `text`
|
1584
|
+
# @return [String]
|
1585
|
+
attr_accessor :text
|
1586
|
+
|
1587
|
+
def initialize(**args)
|
1588
|
+
update!(**args)
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
# Update properties of this object
|
1592
|
+
def update!(**args)
|
1593
|
+
@priority = args[:priority] if args.key?(:priority)
|
1594
|
+
@text = args[:text] if args.key?(:text)
|
1595
|
+
end
|
1596
|
+
end
|
1597
|
+
|
1567
1598
|
# Defines the configuration to be used for creating workers in the pool.
|
1568
1599
|
class WorkerConfig
|
1569
1600
|
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.
|
19
|
+
GEM_VERSION = "0.3.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::CloudbuildV1beta1::TimeSpan, decorator: Google::Apis::CloudbuildV1beta1::TimeSpan::Representation
|
324
330
|
|
331
|
+
collection :warnings, as: 'warnings', class: Google::Apis::CloudbuildV1beta1::Warning, decorator: Google::Apis::CloudbuildV1beta1::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_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.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_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.3.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1beta1
|
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 V1beta1
|