google-apis-clouddeploy_v1 0.1.0 → 0.2.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: 2d335dc68e73df55a78b77247e18dc878210c260d409ceb20f098d7223224dc3
|
4
|
+
data.tar.gz: ba3c766640f94e1398e12529b8fc4a382a6b20435510bf7f7267b32caaa83af0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44fe0f5426ff75f359130a796766dbea7fce86444dcd155fcffdec17cb9757ad96210e469867eadddf1e378389abc6ff273512b2acb1dc0b518103d2490ca406
|
7
|
+
data.tar.gz: 4f6fb3bd818703b1d7f50b7b22cb9092d36b4a7433214b1121a1de5d658b50bb880714d44d73e3c9a45c1d228f3f523c496f2fa56be1fef0b87ac0cce5c8ccd1
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/clouddeploy_v1"
|
|
51
51
|
client = Google::Apis::ClouddeployV1::CloudDeployService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -1252,6 +1252,12 @@ module Google
|
|
1252
1252
|
# @return [String]
|
1253
1253
|
attr_accessor :deploy_end_time
|
1254
1254
|
|
1255
|
+
# Output only. The reason this deploy failed. This will always be unspecified
|
1256
|
+
# while the deploy in progress.
|
1257
|
+
# Corresponds to the JSON property `deployFailureCause`
|
1258
|
+
# @return [String]
|
1259
|
+
attr_accessor :deploy_failure_cause
|
1260
|
+
|
1255
1261
|
# Output only. Time at which the `Rollout` started deploying.
|
1256
1262
|
# Corresponds to the JSON property `deployStartTime`
|
1257
1263
|
# @return [String]
|
@@ -1330,6 +1336,7 @@ module Google
|
|
1330
1336
|
@approve_time = args[:approve_time] if args.key?(:approve_time)
|
1331
1337
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1332
1338
|
@deploy_end_time = args[:deploy_end_time] if args.key?(:deploy_end_time)
|
1339
|
+
@deploy_failure_cause = args[:deploy_failure_cause] if args.key?(:deploy_failure_cause)
|
1333
1340
|
@deploy_start_time = args[:deploy_start_time] if args.key?(:deploy_start_time)
|
1334
1341
|
@deploying_build = args[:deploying_build] if args.key?(:deploying_build)
|
1335
1342
|
@description = args[:description] if args.key?(:description)
|
@@ -1658,6 +1665,12 @@ module Google
|
|
1658
1665
|
class TargetRender
|
1659
1666
|
include Google::Apis::Core::Hashable
|
1660
1667
|
|
1668
|
+
# Output only. Reason this render failed. This will always be unspecified while
|
1669
|
+
# the render in progress.
|
1670
|
+
# Corresponds to the JSON property `failureCause`
|
1671
|
+
# @return [String]
|
1672
|
+
attr_accessor :failure_cause
|
1673
|
+
|
1661
1674
|
# Output only. The resource name of the Cloud Build `Build` object that is used
|
1662
1675
|
# to render the manifest for this target. Format is `projects/`project`/
|
1663
1676
|
# locations/`location`/builds/`build``.
|
@@ -1676,6 +1689,7 @@ module Google
|
|
1676
1689
|
|
1677
1690
|
# Update properties of this object
|
1678
1691
|
def update!(**args)
|
1692
|
+
@failure_cause = args[:failure_cause] if args.key?(:failure_cause)
|
1679
1693
|
@rendering_build = args[:rendering_build] if args.key?(:rendering_build)
|
1680
1694
|
@rendering_state = args[:rendering_state] if args.key?(:rendering_state)
|
1681
1695
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ClouddeployV1
|
18
18
|
# Version of the google-apis-clouddeploy_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211212"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -571,6 +571,7 @@ module Google
|
|
571
571
|
property :approve_time, as: 'approveTime'
|
572
572
|
property :create_time, as: 'createTime'
|
573
573
|
property :deploy_end_time, as: 'deployEndTime'
|
574
|
+
property :deploy_failure_cause, as: 'deployFailureCause'
|
574
575
|
property :deploy_start_time, as: 'deployStartTime'
|
575
576
|
property :deploying_build, as: 'deployingBuild'
|
576
577
|
property :description, as: 'description'
|
@@ -660,6 +661,7 @@ module Google
|
|
660
661
|
class TargetRender
|
661
662
|
# @private
|
662
663
|
class Representation < Google::Apis::Core::JsonRepresentation
|
664
|
+
property :failure_cause, as: 'failureCause'
|
663
665
|
property :rendering_build, as: 'renderingBuild'
|
664
666
|
property :rendering_state, as: 'renderingState'
|
665
667
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-clouddeploy_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.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:
|
11
|
+
date: 2022-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.2.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Cloud Deploy API V1
|