google-apis-cloudbuild_v1alpha1 0.4.0 → 0.5.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: 3db60f9c4f43bc8abba3974057789e410b37eb8a3c5738aa507008c7ac46a120
|
4
|
+
data.tar.gz: e145a79cad289f0864fd4d900954ccc992643e1568a90d2abb76512d9ea1bb07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3da9b5bd4abbb745b723abc8f07df16492383c9ddf6d0f4adaeaa4765ecd4b86d3817835bb3b7b85ba66a27fc7a6f994428bf595a78b4b90c5e42b843e35b771
|
7
|
+
data.tar.gz: 194090206ef31cf43194721e71568dc572b6c9bd61dac11b98c4b099e85d7ac8cc134f414b1011fef2a398183093cc9c3560e5ff5202cb989bc7630798263ef8
|
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::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
|
|
@@ -1574,6 +1580,31 @@ module Google
|
|
1574
1580
|
end
|
1575
1581
|
end
|
1576
1582
|
|
1583
|
+
# A non-fatal problem encountered during the execution of the build.
|
1584
|
+
class Warning
|
1585
|
+
include Google::Apis::Core::Hashable
|
1586
|
+
|
1587
|
+
# The priority for this warning.
|
1588
|
+
# Corresponds to the JSON property `priority`
|
1589
|
+
# @return [String]
|
1590
|
+
attr_accessor :priority
|
1591
|
+
|
1592
|
+
# Explanation of the warning generated.
|
1593
|
+
# Corresponds to the JSON property `text`
|
1594
|
+
# @return [String]
|
1595
|
+
attr_accessor :text
|
1596
|
+
|
1597
|
+
def initialize(**args)
|
1598
|
+
update!(**args)
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
# Update properties of this object
|
1602
|
+
def update!(**args)
|
1603
|
+
@priority = args[:priority] if args.key?(:priority)
|
1604
|
+
@text = args[:text] if args.key?(:text)
|
1605
|
+
end
|
1606
|
+
end
|
1607
|
+
|
1577
1608
|
# WorkerConfig defines the configuration to be used for a creating workers in
|
1578
1609
|
# the pool.
|
1579
1610
|
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.
|
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::CloudbuildV1alpha1::TimeSpan, decorator: Google::Apis::CloudbuildV1alpha1::TimeSpan::Representation
|
324
330
|
|
331
|
+
collection :warnings, as: 'warnings', class: Google::Apis::CloudbuildV1alpha1::Warning, decorator: Google::Apis::CloudbuildV1alpha1::Warning::Representation
|
332
|
+
|
325
333
|
end
|
326
334
|
end
|
327
335
|
|
@@ -659,6 +667,14 @@ module Google
|
|
659
667
|
end
|
660
668
|
end
|
661
669
|
|
670
|
+
class Warning
|
671
|
+
# @private
|
672
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
673
|
+
property :priority, as: 'priority'
|
674
|
+
property :text, as: 'text'
|
675
|
+
end
|
676
|
+
end
|
677
|
+
|
662
678
|
class WorkerConfig
|
663
679
|
# @private
|
664
680
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1alpha1
|
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_v1alpha1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.5.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudbuild_v1alpha1
|
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 V1alpha1
|