google-cloud-deploy-v1 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/deploy/v1/automation_payload_pb.rb +44 -0
- data/lib/google/cloud/deploy/v1/automationrun_payload_pb.rb +44 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy/client.rb +1155 -136
- data/lib/google/cloud/deploy/v1/cloud_deploy/paths.rb +61 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/client.rb +1088 -134
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/service_stub.rb +535 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy_pb.rb +38 -1
- data/lib/google/cloud/deploy/v1/cloud_deploy_services_pb.rb +21 -0
- data/lib/google/cloud/deploy/v1/release_render_payload_pb.rb +3 -1
- data/lib/google/cloud/deploy/v1/rollout_update_payload_pb.rb +45 -0
- data/lib/google/cloud/deploy/v1/version.rb +1 -1
- data/proto_docs/google/cloud/deploy/v1/automation_payload.rb +46 -0
- data/proto_docs/google/cloud/deploy/v1/automationrun_payload.rb +55 -0
- data/proto_docs/google/cloud/deploy/v1/cloud_deploy.rb +940 -70
- data/proto_docs/google/cloud/deploy/v1/release_render_payload.rb +4 -1
- data/proto_docs/google/cloud/deploy/v1/rollout_update_payload.rb +99 -0
- metadata +8 -2
@@ -29,7 +29,10 @@ module Google
|
|
29
29
|
# details as rendering progresses through render states.
|
30
30
|
# @!attribute [rw] release
|
31
31
|
# @return [::String]
|
32
|
-
# The name of the
|
32
|
+
# The name of the release.
|
33
|
+
# @!attribute [rw] release_render_state
|
34
|
+
# @return [::Google::Cloud::Deploy::V1::Release::RenderState]
|
35
|
+
# The state of the release render.
|
33
36
|
class ReleaseRenderEvent
|
34
37
|
include ::Google::Protobuf::MessageExts
|
35
38
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Deploy
|
23
|
+
module V1
|
24
|
+
# Payload proto for "clouddeploy.googleapis.com/rollout_update"
|
25
|
+
# Platform Log event that describes the rollout update event.
|
26
|
+
# @!attribute [rw] pipeline_uid
|
27
|
+
# @return [::String]
|
28
|
+
# Unique identifier of the pipeline.
|
29
|
+
# @!attribute [rw] release_uid
|
30
|
+
# @return [::String]
|
31
|
+
# Unique identifier of the release.
|
32
|
+
# @!attribute [rw] rollout
|
33
|
+
# @return [::String]
|
34
|
+
# The name of the rollout.
|
35
|
+
# @!attribute [rw] target_id
|
36
|
+
# @return [::String]
|
37
|
+
# ID of the target.
|
38
|
+
# @!attribute [rw] rollout_update_type
|
39
|
+
# @return [::Google::Cloud::Deploy::V1::RolloutUpdateEvent::RolloutUpdateType]
|
40
|
+
# The type of the rollout update.
|
41
|
+
# @!attribute [rw] message
|
42
|
+
# @return [::String]
|
43
|
+
# Debug message for when a rollout update event occurs.
|
44
|
+
# @!attribute [rw] type
|
45
|
+
# @return [::Google::Cloud::Deploy::V1::Type]
|
46
|
+
# Type of this notification, e.g. for a rollout update event.
|
47
|
+
class RolloutUpdateEvent
|
48
|
+
include ::Google::Protobuf::MessageExts
|
49
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
50
|
+
|
51
|
+
# RolloutUpdateType indicates the type of the rollout update.
|
52
|
+
module RolloutUpdateType
|
53
|
+
# Rollout update type unspecified.
|
54
|
+
ROLLOUT_UPDATE_TYPE_UNSPECIFIED = 0
|
55
|
+
|
56
|
+
# rollout state updated to pending.
|
57
|
+
PENDING = 1
|
58
|
+
|
59
|
+
# Rollout state updated to pending release.
|
60
|
+
PENDING_RELEASE = 2
|
61
|
+
|
62
|
+
# Rollout state updated to in progress.
|
63
|
+
IN_PROGRESS = 3
|
64
|
+
|
65
|
+
# Rollout state updated to cancelling.
|
66
|
+
CANCELLING = 4
|
67
|
+
|
68
|
+
# Rollout state updated to cancelled.
|
69
|
+
CANCELLED = 5
|
70
|
+
|
71
|
+
# Rollout state updated to halted.
|
72
|
+
HALTED = 6
|
73
|
+
|
74
|
+
# Rollout state updated to succeeded.
|
75
|
+
SUCCEEDED = 7
|
76
|
+
|
77
|
+
# Rollout state updated to failed.
|
78
|
+
FAILED = 8
|
79
|
+
|
80
|
+
# Rollout requires approval.
|
81
|
+
APPROVAL_REQUIRED = 9
|
82
|
+
|
83
|
+
# Rollout has been approved.
|
84
|
+
APPROVED = 10
|
85
|
+
|
86
|
+
# Rollout has been rejected.
|
87
|
+
REJECTED = 11
|
88
|
+
|
89
|
+
# Rollout requires advance to the next phase.
|
90
|
+
ADVANCE_REQUIRED = 12
|
91
|
+
|
92
|
+
# Rollout has been advanced.
|
93
|
+
ADVANCED = 13
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-deploy-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.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: 2023-
|
11
|
+
date: 2023-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -212,6 +212,8 @@ files:
|
|
212
212
|
- README.md
|
213
213
|
- lib/google-cloud-deploy-v1.rb
|
214
214
|
- lib/google/cloud/deploy/v1.rb
|
215
|
+
- lib/google/cloud/deploy/v1/automation_payload_pb.rb
|
216
|
+
- lib/google/cloud/deploy/v1/automationrun_payload_pb.rb
|
215
217
|
- lib/google/cloud/deploy/v1/bindings_override.rb
|
216
218
|
- lib/google/cloud/deploy/v1/cloud_deploy.rb
|
217
219
|
- lib/google/cloud/deploy/v1/cloud_deploy/client.rb
|
@@ -231,6 +233,7 @@ files:
|
|
231
233
|
- lib/google/cloud/deploy/v1/release_render_payload_pb.rb
|
232
234
|
- lib/google/cloud/deploy/v1/rest.rb
|
233
235
|
- lib/google/cloud/deploy/v1/rollout_notification_payload_pb.rb
|
236
|
+
- lib/google/cloud/deploy/v1/rollout_update_payload_pb.rb
|
234
237
|
- lib/google/cloud/deploy/v1/target_notification_payload_pb.rb
|
235
238
|
- lib/google/cloud/deploy/v1/version.rb
|
236
239
|
- proto_docs/README.md
|
@@ -238,6 +241,8 @@ files:
|
|
238
241
|
- proto_docs/google/api/field_behavior.rb
|
239
242
|
- proto_docs/google/api/launch_stage.rb
|
240
243
|
- proto_docs/google/api/resource.rb
|
244
|
+
- proto_docs/google/cloud/deploy/v1/automation_payload.rb
|
245
|
+
- proto_docs/google/cloud/deploy/v1/automationrun_payload.rb
|
241
246
|
- proto_docs/google/cloud/deploy/v1/cloud_deploy.rb
|
242
247
|
- proto_docs/google/cloud/deploy/v1/deliverypipeline_notification_payload.rb
|
243
248
|
- proto_docs/google/cloud/deploy/v1/jobrun_notification_payload.rb
|
@@ -245,6 +250,7 @@ files:
|
|
245
250
|
- proto_docs/google/cloud/deploy/v1/release_notification_payload.rb
|
246
251
|
- proto_docs/google/cloud/deploy/v1/release_render_payload.rb
|
247
252
|
- proto_docs/google/cloud/deploy/v1/rollout_notification_payload.rb
|
253
|
+
- proto_docs/google/cloud/deploy/v1/rollout_update_payload.rb
|
248
254
|
- proto_docs/google/cloud/deploy/v1/target_notification_payload.rb
|
249
255
|
- proto_docs/google/longrunning/operations.rb
|
250
256
|
- proto_docs/google/protobuf/any.rb
|