google-cloud-deploy-v1 2.4.1 → 2.6.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/deploy/v1/automation_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/automationrun_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/cloud_deploy/client.rb +2 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy/operations.rb +2 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/client.rb +2 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/operations.rb +2 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy_pb.rb +2 -28
- data/lib/google/cloud/deploy/v1/customtargettype_notification_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/deliverypipeline_notification_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/deploypolicy_evaluation_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/deploypolicy_notification_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/jobrun_notification_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/log_enums_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/release_notification_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/release_render_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/rollout_notification_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/rollout_update_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/target_notification_payload_pb.rb +2 -23
- data/lib/google/cloud/deploy/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +149 -29
- data/proto_docs/google/type/date.rb +10 -7
- data/proto_docs/google/type/timeofday.rb +10 -6
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5b6e6cb7c49c24eeef2f3225e981495a70409c4cadf5e9f00a8cae20742a2596
|
|
4
|
+
data.tar.gz: 7c0a561b02e9c8b7099416ce74c5dc890f02249ad0fefdfa76087ad3c5b81d69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95f80e380af9b206593d2500c4525823f65138b815b9d65829b69161dfb7056421a098834deb7e617e2be42aa7cb0df3b79269851d5fe61330df71d5a9c1a0ac
|
|
7
|
+
data.tar.gz: 83c7864fa9d6789e9d34378baefa9cf70f6d722d72ebb955a59d7ead7b54635c47a0eea364943e026bc30baa27ba9be72f1fa1efbf5c909feeb1322dcd037c4f
|
data/README.md
CHANGED
|
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
|
86
86
|
|
|
87
87
|
## Supported Ruby Versions
|
|
88
88
|
|
|
89
|
-
This library is supported on Ruby 3.
|
|
89
|
+
This library is supported on Ruby 3.2+.
|
|
90
90
|
|
|
91
91
|
Google provides official support for Ruby versions that are actively supported
|
|
92
92
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n/google/cloud/deploy/v1/automation_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"x\n\x0f\x41utomationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x12\n\nautomation\x18\x02 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x03 \x01(\t\x12*\n\x04type\x18\x04 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeBj\n\x1a\x63om.google.cloud.deploy.v1B\x16\x41utomationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n2google/cloud/deploy/v1/automationrun_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"\xc6\x01\n\x12\x41utomationRunEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x16\n\x0e\x61utomation_run\x18\x02 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x03 \x01(\t\x12\x15\n\rautomation_id\x18\x04 \x01(\t\x12\x0f\n\x07rule_id\x18\x05 \x01(\t\x12\x1d\n\x15\x64\x65stination_target_id\x18\x06 \x01(\t\x12*\n\x04type\x18\x07 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeBm\n\x1a\x63om.google.cloud.deploy.v1B\x19\x41utomationRunPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -5159,6 +5159,7 @@ module Google
|
|
|
5159
5159
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
5160
5160
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
5161
5161
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
5162
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
5162
5163
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
5163
5164
|
# trigger a retry.
|
|
5164
5165
|
# @return [::Hash]
|
|
@@ -5242,6 +5243,7 @@ module Google
|
|
|
5242
5243
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
5243
5244
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
5244
5245
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
5246
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
5245
5247
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
5246
5248
|
# trigger a retry.
|
|
5247
5249
|
#
|
|
@@ -703,6 +703,7 @@ module Google
|
|
|
703
703
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
704
704
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
705
705
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
706
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
706
707
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
707
708
|
# trigger a retry.
|
|
708
709
|
# @return [::Hash]
|
|
@@ -786,6 +787,7 @@ module Google
|
|
|
786
787
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
787
788
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
788
789
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
790
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
789
791
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
790
792
|
# trigger a retry.
|
|
791
793
|
#
|
|
@@ -4813,6 +4813,7 @@ module Google
|
|
|
4813
4813
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
4814
4814
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
4815
4815
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
4816
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
4816
4817
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
4817
4818
|
# trigger a retry.
|
|
4818
4819
|
# @return [::Hash]
|
|
@@ -4892,6 +4893,7 @@ module Google
|
|
|
4892
4893
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
4893
4894
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
4894
4895
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
4896
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
4895
4897
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
4896
4898
|
# trigger a retry.
|
|
4897
4899
|
#
|
|
@@ -541,6 +541,7 @@ module Google
|
|
|
541
541
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
542
542
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
543
543
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
544
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
544
545
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
545
546
|
# trigger a retry.
|
|
546
547
|
# @return [::Hash]
|
|
@@ -613,6 +614,7 @@ module Google
|
|
|
613
614
|
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
614
615
|
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
615
616
|
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
617
|
+
# * `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
|
|
616
618
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
|
617
619
|
# trigger a retry.
|
|
618
620
|
#
|
|
@@ -20,34 +20,8 @@ require 'google/type/timeofday_pb'
|
|
|
20
20
|
|
|
21
21
|
descriptor_data = "\n)google/cloud/deploy/v1/cloud_deploy.proto\x12\x16google.cloud.deploy.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a#google/longrunning/operations.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x16google/type/date.proto\x1a\x1bgoogle/type/dayofweek.proto\x1a\x1bgoogle/type/timeofday.proto\"\xf9\x05\n\x10\x44\x65liveryPipeline\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12S\n\x0b\x61nnotations\x18\x04 \x03(\x0b\x32\x39.google.cloud.deploy.v1.DeliveryPipeline.AnnotationsEntryB\x03\xe0\x41\x01\x12\x44\n\x06labels\x18\x05 \x03(\x0b\x32\x34.google.cloud.deploy.v1.DeliveryPipeline.LabelsEntry\x12\x34\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x46\n\x0fserial_pipeline\x18\x08 \x01(\x0b\x32&.google.cloud.deploy.v1.SerialPipelineB\x03\xe0\x41\x01H\x00\x12\x41\n\tcondition\x18\x0b \x01(\x0b\x32).google.cloud.deploy.v1.PipelineConditionB\x03\xe0\x41\x03\x12\x0c\n\x04\x65tag\x18\n \x01(\t\x12\x16\n\tsuspended\x18\x0c \x01(\x08\x42\x03\xe0\x41\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x7f\xea\x41|\n+clouddeploy.googleapis.com/DeliveryPipeline\x12Mprojects/{project}/locations/{location}/deliveryPipelines/{delivery_pipeline}B\n\n\x08pipeline\"D\n\x0eSerialPipeline\x12\x32\n\x06stages\x18\x01 \x03(\x0b\x32\x1d.google.cloud.deploy.v1.StageB\x03\xe0\x41\x01\"\xb9\x01\n\x05Stage\x12\x16\n\ttarget_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08profiles\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12\x37\n\x08strategy\x18\x05 \x01(\x0b\x32 .google.cloud.deploy.v1.StrategyB\x03\xe0\x41\x01\x12H\n\x11\x64\x65ploy_parameters\x18\x06 \x03(\x0b\x32(.google.cloud.deploy.v1.DeployParametersB\x03\xe0\x41\x01\"\xa9\x02\n\x10\x44\x65ployParameters\x12I\n\x06values\x18\x01 \x03(\x0b\x32\x34.google.cloud.deploy.v1.DeployParameters.ValuesEntryB\x03\xe0\x41\x02\x12\x61\n\x13match_target_labels\x18\x02 \x03(\x0b\x32?.google.cloud.deploy.v1.DeployParameters.MatchTargetLabelsEntryB\x03\xe0\x41\x01\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x38\n\x16MatchTargetLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x93\x01\n\x08Strategy\x12\x39\n\x08standard\x18\x01 \x01(\x0b\x32 .google.cloud.deploy.v1.StandardB\x03\xe0\x41\x01H\x00\x12\x35\n\x06\x63\x61nary\x18\x02 \x01(\x0b\x32\x1e.google.cloud.deploy.v1.CanaryB\x03\xe0\x41\x01H\x00\x42\x15\n\x13\x64\x65ployment_strategy\"!\n\tPredeploy\x12\x14\n\x07\x61\x63tions\x18\x01 \x03(\tB\x03\xe0\x41\x01\"\"\n\nPostdeploy\x12\x14\n\x07\x61\x63tions\x18\x01 \x03(\tB\x03\xe0\x41\x01\"\x97\x01\n\x08Standard\x12\x13\n\x06verify\x18\x01 \x01(\x08\x42\x03\xe0\x41\x01\x12\x39\n\tpredeploy\x18\x02 \x01(\x0b\x32!.google.cloud.deploy.v1.PredeployB\x03\xe0\x41\x01\x12;\n\npostdeploy\x18\x03 \x01(\x0b\x32\".google.cloud.deploy.v1.PostdeployB\x03\xe0\x41\x01\"\xf9\x01\n\x06\x43\x61nary\x12\x42\n\x0eruntime_config\x18\x01 \x01(\x0b\x32%.google.cloud.deploy.v1.RuntimeConfigB\x03\xe0\x41\x01\x12J\n\x11\x63\x61nary_deployment\x18\x02 \x01(\x0b\x32(.google.cloud.deploy.v1.CanaryDeploymentB\x03\xe0\x41\x01H\x00\x12W\n\x18\x63ustom_canary_deployment\x18\x03 \x01(\x0b\x32..google.cloud.deploy.v1.CustomCanaryDeploymentB\x03\xe0\x41\x01H\x00\x42\x06\n\x04mode\"\xb9\x01\n\x10\x43\x61naryDeployment\x12\x18\n\x0bpercentages\x18\x01 \x03(\x05\x42\x03\xe0\x41\x02\x12\x13\n\x06verify\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\x12\x39\n\tpredeploy\x18\x03 \x01(\x0b\x32!.google.cloud.deploy.v1.PredeployB\x03\xe0\x41\x01\x12;\n\npostdeploy\x18\x04 \x01(\x0b\x32\".google.cloud.deploy.v1.PostdeployB\x03\xe0\x41\x01\"\xd4\x02\n\x16\x43ustomCanaryDeployment\x12V\n\rphase_configs\x18\x01 \x03(\x0b\x32:.google.cloud.deploy.v1.CustomCanaryDeployment.PhaseConfigB\x03\xe0\x41\x02\x1a\xe1\x01\n\x0bPhaseConfig\x12\x15\n\x08phase_id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\npercentage\x18\x02 \x01(\x05\x42\x03\xe0\x41\x02\x12\x15\n\x08profiles\x18\x03 \x03(\tB\x03\xe0\x41\x01\x12\x13\n\x06verify\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x39\n\tpredeploy\x18\x05 \x01(\x0b\x32!.google.cloud.deploy.v1.PredeployB\x03\xe0\x41\x01\x12;\n\npostdeploy\x18\x06 \x01(\x0b\x32\".google.cloud.deploy.v1.PostdeployB\x03\xe0\x41\x01\"\xbe\x06\n\x10KubernetesConfig\x12`\n\x14gateway_service_mesh\x18\x01 \x01(\x0b\x32;.google.cloud.deploy.v1.KubernetesConfig.GatewayServiceMeshB\x03\xe0\x41\x01H\x00\x12]\n\x12service_networking\x18\x02 \x01(\x0b\x32:.google.cloud.deploy.v1.KubernetesConfig.ServiceNetworkingB\x03\xe0\x41\x01H\x00\x1a\xc1\x03\n\x12GatewayServiceMesh\x12\x17\n\nhttp_route\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07service\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\ndeployment\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12>\n\x16route_update_wait_time\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x01\x12?\n\x17stable_cutback_duration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x01\x12\x1f\n\x12pod_selector_label\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12n\n\x12route_destinations\x18\x08 \x01(\x0b\x32M.google.cloud.deploy.v1.KubernetesConfig.GatewayServiceMesh.RouteDestinationsB\x03\xe0\x41\x01\x1aQ\n\x11RouteDestinations\x12\x1c\n\x0f\x64\x65stination_ids\x18\x01 \x03(\tB\x03\xe0\x41\x02\x12\x1e\n\x11propagate_service\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\x1a\x8e\x01\n\x11ServiceNetworking\x12\x14\n\x07service\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\ndeployment\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12)\n\x1c\x64isable_pod_overprovisioning\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1f\n\x12pod_selector_label\x18\x04 \x01(\tB\x03\xe0\x41\x01\x42\x14\n\x12service_definition\"\xa0\x01\n\x0e\x43loudRunConfig\x12&\n\x19\x61utomatic_traffic_control\x18\x01 \x01(\x08\x42\x03\xe0\x41\x01\x12!\n\x14\x63\x61nary_revision_tags\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12 \n\x13prior_revision_tags\x18\x03 \x03(\tB\x03\xe0\x41\x01\x12!\n\x14stable_revision_tags\x18\x04 \x03(\tB\x03\xe0\x41\x01\"\xa8\x01\n\rRuntimeConfig\x12\x43\n\nkubernetes\x18\x01 \x01(\x0b\x32(.google.cloud.deploy.v1.KubernetesConfigB\x03\xe0\x41\x01H\x00\x12@\n\tcloud_run\x18\x02 \x01(\x0b\x32&.google.cloud.deploy.v1.CloudRunConfigB\x03\xe0\x41\x01H\x00\x42\x10\n\x0eruntime_config\"Y\n\x16PipelineReadyCondition\x12\x0e\n\x06status\x18\x03 \x01(\x08\x12/\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x9b\x01\n\x17TargetsPresentCondition\x12\x0e\n\x06status\x18\x01 \x01(\x08\x12?\n\x0fmissing_targets\x18\x02 \x03(\tB&\xfa\x41#\n!clouddeploy.googleapis.com/Target\x12/\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"=\n\x14TargetsTypeCondition\x12\x0e\n\x06status\x18\x01 \x01(\x08\x12\x15\n\rerror_details\x18\x02 \x01(\t\"\x87\x02\n\x11PipelineCondition\x12P\n\x18pipeline_ready_condition\x18\x01 \x01(\x0b\x32..google.cloud.deploy.v1.PipelineReadyCondition\x12R\n\x19targets_present_condition\x18\x03 \x01(\x0b\x32/.google.cloud.deploy.v1.TargetsPresentCondition\x12L\n\x16targets_type_condition\x18\x04 \x01(\x0b\x32,.google.cloud.deploy.v1.TargetsTypeCondition\"\xac\x01\n\x1cListDeliveryPipelinesRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+clouddeploy.googleapis.com/DeliveryPipeline\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x93\x01\n\x1dListDeliveryPipelinesResponse\x12\x44\n\x12\x64\x65livery_pipelines\x18\x01 \x03(\x0b\x32(.google.cloud.deploy.v1.DeliveryPipeline\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"_\n\x1aGetDeliveryPipelineRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+clouddeploy.googleapis.com/DeliveryPipeline\"\x86\x02\n\x1d\x43reateDeliveryPipelineRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+clouddeploy.googleapis.com/DeliveryPipeline\x12!\n\x14\x64\x65livery_pipeline_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12H\n\x11\x64\x65livery_pipeline\x18\x03 \x01(\x0b\x32(.google.cloud.deploy.v1.DeliveryPipelineB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xf0\x01\n\x1dUpdateDeliveryPipelineRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12H\n\x11\x64\x65livery_pipeline\x18\x02 \x01(\x0b\x32(.google.cloud.deploy.v1.DeliveryPipelineB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xda\x01\n\x1d\x44\x65leteDeliveryPipelineRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+clouddeploy.googleapis.com/DeliveryPipeline\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x06 \x01(\x08\x42\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x05 \x01(\tB\x03\xe0\x41\x01\"m\n\x14RollbackTargetConfig\x12\x35\n\x07rollout\x18\x01 \x01(\x0b\x32\x1f.google.cloud.deploy.v1.RolloutB\x03\xe0\x41\x01\x12\x1e\n\x11starting_phase_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x80\x03\n\x15RollbackTargetRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+clouddeploy.googleapis.com/DeliveryPipeline\x12\x16\n\ttarget_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrollout_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrelease_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12!\n\x14rollout_to_roll_back\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12J\n\x0frollback_config\x18\x06 \x01(\x0b\x32,.google.cloud.deploy.v1.RollbackTargetConfigB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x07 \x01(\x08\x42\x03\xe0\x41\x01\x12O\n\x16override_deploy_policy\x18\t \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"_\n\x16RollbackTargetResponse\x12\x45\n\x0frollback_config\x18\x01 \x01(\x0b\x32,.google.cloud.deploy.v1.RollbackTargetConfig\"\xbe\n\n\x06Target\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x16\n\ttarget_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12I\n\x0b\x61nnotations\x18\x05 \x03(\x0b\x32/.google.cloud.deploy.v1.Target.AnnotationsEntryB\x03\xe0\x41\x01\x12?\n\x06labels\x18\x06 \x03(\x0b\x32*.google.cloud.deploy.v1.Target.LabelsEntryB\x03\xe0\x41\x01\x12\x1d\n\x10require_approval\x18\r \x01(\x08\x42\x03\xe0\x41\x01\x12\x34\n\x0b\x63reate_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x36\n\x03gke\x18\x0f \x01(\x0b\x32\".google.cloud.deploy.v1.GkeClusterB\x03\xe0\x41\x01H\x00\x12\x44\n\x0e\x61nthos_cluster\x18\x11 \x01(\x0b\x32%.google.cloud.deploy.v1.AnthosClusterB\x03\xe0\x41\x01H\x00\x12<\n\x03run\x18\x12 \x01(\x0b\x32(.google.cloud.deploy.v1.CloudRunLocationB\x03\xe0\x41\x01H\x00\x12@\n\x0cmulti_target\x18\x13 \x01(\x0b\x32#.google.cloud.deploy.v1.MultiTargetB\x03\xe0\x41\x01H\x00\x12\x42\n\rcustom_target\x18\x15 \x01(\x0b\x32$.google.cloud.deploy.v1.CustomTargetB\x03\xe0\x41\x01H\x00\x12X\n\x13\x61ssociated_entities\x18\x17 \x03(\x0b\x32\x36.google.cloud.deploy.v1.Target.AssociatedEntitiesEntryB\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x0c \x01(\tB\x03\xe0\x41\x01\x12G\n\x11\x65xecution_configs\x18\x10 \x03(\x0b\x32\'.google.cloud.deploy.v1.ExecutionConfigB\x03\xe0\x41\x01\x12T\n\x11\x64\x65ploy_parameters\x18\x14 \x03(\x0b\x32\x34.google.cloud.deploy.v1.Target.DeployParametersEntryB\x03\xe0\x41\x01\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x65\n\x17\x41ssociatedEntitiesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.google.cloud.deploy.v1.AssociatedEntities:\x02\x38\x01\x1a\x37\n\x15\x44\x65ployParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:`\xea\x41]\n!clouddeploy.googleapis.com/Target\x12\x38projects/{project}/locations/{location}/targets/{target}B\x13\n\x11\x64\x65ployment_target\"\xe5\x04\n\x0f\x45xecutionConfig\x12V\n\x06usages\x18\x01 \x03(\x0e\x32\x41.google.cloud.deploy.v1.ExecutionConfig.ExecutionEnvironmentUsageB\x03\xe0\x41\x02\x12@\n\x0c\x64\x65\x66\x61ult_pool\x18\x02 \x01(\x0b\x32#.google.cloud.deploy.v1.DefaultPoolB\x03\xe0\x41\x01H\x00\x12@\n\x0cprivate_pool\x18\x03 \x01(\x0b\x32#.google.cloud.deploy.v1.PrivatePoolB\x03\xe0\x41\x01H\x00\x12\x41\n\x0bworker_pool\x18\x04 \x01(\tB,\xe0\x41\x01\xfa\x41&\n$cloudbuild.googleapis.com/WorkerPool\x12\x1c\n\x0fservice_account\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10\x61rtifact_storage\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12\x39\n\x11\x65xecution_timeout\x18\x07 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x01\x12\x14\n\x07verbose\x18\x08 \x01(\x08\x42\x03\xe0\x41\x01\"\x8b\x01\n\x19\x45xecutionEnvironmentUsage\x12+\n\'EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED\x10\x00\x12\n\n\x06RENDER\x10\x01\x12\n\n\x06\x44\x45PLOY\x10\x02\x12\n\n\x06VERIFY\x10\x03\x12\r\n\tPREDEPLOY\x10\x04\x12\x0e\n\nPOSTDEPLOY\x10\x05\x42\x17\n\x15\x65xecution_environment\"J\n\x0b\x44\x65\x66\x61ultPool\x12\x1c\n\x0fservice_account\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10\x61rtifact_storage\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x8d\x01\n\x0bPrivatePool\x12\x41\n\x0bworker_pool\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudbuild.googleapis.com/WorkerPool\x12\x1c\n\x0fservice_account\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1d\n\x10\x61rtifact_storage\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x94\x01\n\nGkeCluster\x12\x39\n\x07\x63luster\x18\x01 \x01(\tB(\xe0\x41\x01\xfa\x41\"\n container.googleapis.com/Cluster\x12\x18\n\x0binternal_ip\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\x12\x16\n\tproxy_url\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0c\x64ns_endpoint\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\"M\n\rAnthosCluster\x12<\n\nmembership\x18\x01 \x01(\tB(\xe0\x41\x01\xfa\x41\"\n gkehub.googleapis.com/Membership\"O\n\x10\x43loudRunLocation\x12;\n\x08location\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\"&\n\x0bMultiTarget\x12\x17\n\ntarget_ids\x18\x01 \x03(\tB\x03\xe0\x41\x02\"_\n\x0c\x43ustomTarget\x12O\n\x12\x63ustom_target_type\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+clouddeploy.googleapis.com/CustomTargetType\"\x98\x01\n\x12\x41ssociatedEntities\x12=\n\x0cgke_clusters\x18\x02 \x03(\x0b\x32\".google.cloud.deploy.v1.GkeClusterB\x03\xe0\x41\x01\x12\x43\n\x0f\x61nthos_clusters\x18\x03 \x03(\x0b\x32%.google.cloud.deploy.v1.AnthosClusterB\x03\xe0\x41\x01\"\xac\x01\n\x12ListTargetsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\x12!clouddeploy.googleapis.com/Target\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"t\n\x13ListTargetsResponse\x12/\n\x07targets\x18\x01 \x03(\x0b\x32\x1e.google.cloud.deploy.v1.Target\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"K\n\x10GetTargetRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!clouddeploy.googleapis.com/Target\"\xd2\x01\n\x13\x43reateTargetRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\x12!clouddeploy.googleapis.com/Target\x12\x16\n\ttarget_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x33\n\x06target\x18\x03 \x01(\x0b\x32\x1e.google.cloud.deploy.v1.TargetB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xd1\x01\n\x13UpdateTargetRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x33\n\x06target\x18\x02 \x01(\x0b\x32\x1e.google.cloud.deploy.v1.TargetB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xb2\x01\n\x13\x44\x65leteTargetRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!clouddeploy.googleapis.com/Target\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xdc\x05\n\x10\x43ustomTargetType\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\"\n\x15\x63ustom_target_type_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12S\n\x0b\x61nnotations\x18\x05 \x03(\x0b\x32\x39.google.cloud.deploy.v1.CustomTargetType.AnnotationsEntryB\x03\xe0\x41\x01\x12I\n\x06labels\x18\x06 \x03(\x0b\x32\x34.google.cloud.deploy.v1.CustomTargetType.LabelsEntryB\x03\xe0\x41\x01\x12\x34\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x11\n\x04\x65tag\x18\t \x01(\tB\x03\xe0\x41\x01\x12R\n\x0e\x63ustom_actions\x18\n \x01(\x0b\x32\x33.google.cloud.deploy.v1.CustomTargetSkaffoldActionsB\x03\xe0\x41\x01H\x00\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x80\x01\xea\x41}\n+clouddeploy.googleapis.com/CustomTargetType\x12Nprojects/{project}/locations/{location}/customTargetTypes/{custom_target_type}B\x0c\n\ndefinition\"\xa5\x01\n\x1b\x43ustomTargetSkaffoldActions\x12\x1a\n\rrender_action\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rdeploy_action\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12N\n\x18include_skaffold_modules\x18\x03 \x03(\x0b\x32\'.google.cloud.deploy.v1.SkaffoldModulesB\x03\xe0\x41\x01\"\xd1\x04\n\x0fSkaffoldModules\x12\x14\n\x07\x63onfigs\x18\x01 \x03(\tB\x03\xe0\x41\x01\x12M\n\x03git\x18\x02 \x01(\x0b\x32\x39.google.cloud.deploy.v1.SkaffoldModules.SkaffoldGitSourceB\x03\xe0\x41\x01H\x00\x12^\n\x14google_cloud_storage\x18\x03 \x01(\x0b\x32\x39.google.cloud.deploy.v1.SkaffoldModules.SkaffoldGCSSourceB\x03\xe0\x41\x01H\x00\x12\x65\n\x17google_cloud_build_repo\x18\x04 \x01(\x0b\x32=.google.cloud.deploy.v1.SkaffoldModules.SkaffoldGCBRepoSourceB\x03\xe0\x41\x01H\x00\x1aK\n\x11SkaffoldGitSource\x12\x11\n\x04repo\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x10\n\x03ref\x18\x03 \x01(\tB\x03\xe0\x41\x01\x1a;\n\x11SkaffoldGCSSource\x12\x13\n\x06source\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x01\x1a~\n\x15SkaffoldGCBRepoSource\x12@\n\nrepository\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudbuild.googleapis.com/Repository\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x10\n\x03ref\x18\x03 \x01(\tB\x03\xe0\x41\x01\x42\x08\n\x06source\"\xc0\x01\n\x1cListCustomTargetTypesRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+clouddeploy.googleapis.com/CustomTargetType\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x94\x01\n\x1dListCustomTargetTypesResponse\x12\x45\n\x13\x63ustom_target_types\x18\x01 \x03(\x0b\x32(.google.cloud.deploy.v1.CustomTargetType\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"_\n\x1aGetCustomTargetTypeRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+clouddeploy.googleapis.com/CustomTargetType\"\x88\x02\n\x1d\x43reateCustomTargetTypeRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+clouddeploy.googleapis.com/CustomTargetType\x12\"\n\x15\x63ustom_target_type_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12I\n\x12\x63ustom_target_type\x18\x03 \x01(\x0b\x32(.google.cloud.deploy.v1.CustomTargetTypeB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xf1\x01\n\x1dUpdateCustomTargetTypeRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12I\n\x12\x63ustom_target_type\x18\x02 \x01(\x0b\x32(.google.cloud.deploy.v1.CustomTargetTypeB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xc6\x01\n\x1d\x44\x65leteCustomTargetTypeRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+clouddeploy.googleapis.com/CustomTargetType\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x99\x06\n\x0c\x44\x65ployPolicy\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12O\n\x0b\x61nnotations\x18\x04 \x03(\x0b\x32\x35.google.cloud.deploy.v1.DeployPolicy.AnnotationsEntryB\x03\xe0\x41\x01\x12@\n\x06labels\x18\x05 \x03(\x0b\x32\x30.google.cloud.deploy.v1.DeployPolicy.LabelsEntry\x12\x34\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x16\n\tsuspended\x18\x08 \x01(\x08\x42\x03\xe0\x41\x01\x12L\n\tselectors\x18\x0c \x03(\x0b\x32\x34.google.cloud.deploy.v1.DeployPolicyResourceSelectorB\x03\xe0\x41\x02\x12\x36\n\x05rules\x18\n \x03(\x0b\x32\".google.cloud.deploy.v1.PolicyRuleB\x03\xe0\x41\x02\x12\x0c\n\x04\x65tag\x18\x0b \x01(\t\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"C\n\x07Invoker\x12\x17\n\x13INVOKER_UNSPECIFIED\x10\x00\x12\x08\n\x04USER\x10\x01\x12\x15\n\x11\x44\x45PLOY_AUTOMATION\x10\x02:w\xea\x41t\n\'clouddeploy.googleapis.com/DeployPolicy\x12\x46projects/{project}/locations/{location}/deployPolicies/{deploy_policy}R\x01\x01\"\xaf\x01\n\x1c\x44\x65ployPolicyResourceSelector\x12Q\n\x11\x64\x65livery_pipeline\x18\x01 \x01(\x0b\x32\x31.google.cloud.deploy.v1.DeliveryPipelineAttributeB\x03\xe0\x41\x01\x12<\n\x06target\x18\x02 \x01(\x0b\x32\'.google.cloud.deploy.v1.TargetAttributeB\x03\xe0\x41\x01\"\xaa\x01\n\x19\x44\x65liveryPipelineAttribute\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12M\n\x06labels\x18\x02 \x03(\x0b\x32=.google.cloud.deploy.v1.DeliveryPipelineAttribute.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x96\x01\n\x0fTargetAttribute\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x43\n\x06labels\x18\x02 \x03(\x0b\x32\x33.google.cloud.deploy.v1.TargetAttribute.LabelsEntry\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"d\n\nPolicyRule\x12N\n\x13rollout_restriction\x18\x02 \x01(\x0b\x32*.google.cloud.deploy.v1.RolloutRestrictionB\x03\xe0\x41\x01H\x00\x42\x06\n\x04rule\"\xa4\x03\n\x12RolloutRestriction\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x43\n\x08invokers\x18\x02 \x03(\x0e\x32,.google.cloud.deploy.v1.DeployPolicy.InvokerB\x03\xe0\x41\x01\x12O\n\x07\x61\x63tions\x18\x03 \x03(\x0e\x32\x39.google.cloud.deploy.v1.RolloutRestriction.RolloutActionsB\x03\xe0\x41\x01\x12>\n\x0ctime_windows\x18\x04 \x01(\x0b\x32#.google.cloud.deploy.v1.TimeWindowsB\x03\xe0\x41\x02\"\xa6\x01\n\x0eRolloutActions\x12\x1f\n\x1bROLLOUT_ACTIONS_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x41\x44VANCE\x10\x01\x12\x0b\n\x07\x41PPROVE\x10\x02\x12\n\n\x06\x43\x41NCEL\x10\x03\x12\n\n\x06\x43REATE\x10\x04\x12\x0e\n\nIGNORE_JOB\x10\x05\x12\r\n\tRETRY_JOB\x10\x06\x12\x0c\n\x08ROLLBACK\x10\x07\x12\x14\n\x10TERMINATE_JOBRUN\x10\x08\"\xae\x01\n\x0bTimeWindows\x12\x16\n\ttime_zone\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x44\n\x10one_time_windows\x18\x02 \x03(\x0b\x32%.google.cloud.deploy.v1.OneTimeWindowB\x03\xe0\x41\x01\x12\x41\n\x0eweekly_windows\x18\x03 \x03(\x0b\x32$.google.cloud.deploy.v1.WeeklyWindowB\x03\xe0\x41\x01\"\xc5\x01\n\rOneTimeWindow\x12*\n\nstart_date\x18\x01 \x01(\x0b\x32\x11.google.type.DateB\x03\xe0\x41\x02\x12/\n\nstart_time\x18\x02 \x01(\x0b\x32\x16.google.type.TimeOfDayB\x03\xe0\x41\x02\x12(\n\x08\x65nd_date\x18\x03 \x01(\x0b\x32\x11.google.type.DateB\x03\xe0\x41\x02\x12-\n\x08\x65nd_time\x18\x04 \x01(\x0b\x32\x16.google.type.TimeOfDayB\x03\xe0\x41\x02\"\xa1\x01\n\x0cWeeklyWindow\x12\x31\n\x0c\x64\x61ys_of_week\x18\x01 \x03(\x0e\x32\x16.google.type.DayOfWeekB\x03\xe0\x41\x01\x12/\n\nstart_time\x18\x02 \x01(\x0b\x32\x16.google.type.TimeOfDayB\x03\xe0\x41\x01\x12-\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x16.google.type.TimeOfDayB\x03\xe0\x41\x01\"c\n\x0fPolicyViolation\x12P\n\x18policy_violation_details\x18\x01 \x03(\x0b\x32..google.cloud.deploy.v1.PolicyViolationDetails\"R\n\x16PolicyViolationDetails\x12\x0e\n\x06policy\x18\x01 \x01(\t\x12\x0f\n\x07rule_id\x18\x02 \x01(\t\x12\x17\n\x0f\x66\x61ilure_message\x18\x03 \x01(\t\"\xcc\x17\n\x07Release\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12J\n\x0b\x61nnotations\x18\x04 \x03(\x0b\x32\x30.google.cloud.deploy.v1.Release.AnnotationsEntryB\x03\xe0\x41\x01\x12;\n\x06labels\x18\x05 \x03(\x0b\x32+.google.cloud.deploy.v1.Release.LabelsEntry\x12\x16\n\tabandoned\x18\x17 \x01(\x08\x42\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12:\n\x11render_start_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x38\n\x0frender_end_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12 \n\x13skaffold_config_uri\x18\x11 \x01(\tB\x03\xe0\x41\x01\x12!\n\x14skaffold_config_path\x18\t \x01(\tB\x03\xe0\x41\x01\x12\x43\n\x0f\x62uild_artifacts\x18\n \x03(\x0b\x32%.google.cloud.deploy.v1.BuildArtifactB\x03\xe0\x41\x01\x12Q\n\x1a\x64\x65livery_pipeline_snapshot\x18\x0b \x01(\x0b\x32(.google.cloud.deploy.v1.DeliveryPipelineB\x03\xe0\x41\x03\x12=\n\x10target_snapshots\x18\x0c \x03(\x0b\x32\x1e.google.cloud.deploy.v1.TargetB\x03\xe0\x41\x03\x12S\n\x1c\x63ustom_target_type_snapshots\x18\x1b \x03(\x0b\x32(.google.cloud.deploy.v1.CustomTargetTypeB\x03\xe0\x41\x03\x12\x46\n\x0crender_state\x18\r \x01(\x0e\x32+.google.cloud.deploy.v1.Release.RenderStateB\x03\xe0\x41\x03\x12\x0c\n\x04\x65tag\x18\x10 \x01(\t\x12\x1d\n\x10skaffold_version\x18\x13 \x01(\tB\x03\xe0\x41\x01\x12S\n\x10target_artifacts\x18\x14 \x03(\x0b\x32\x34.google.cloud.deploy.v1.Release.TargetArtifactsEntryB\x03\xe0\x41\x03\x12O\n\x0etarget_renders\x18\x16 \x03(\x0b\x32\x32.google.cloud.deploy.v1.Release.TargetRendersEntryB\x03\xe0\x41\x03\x12H\n\tcondition\x18\x18 \x01(\x0b\x32\x30.google.cloud.deploy.v1.Release.ReleaseConditionB\x03\xe0\x41\x03\x12U\n\x11\x64\x65ploy_parameters\x18\x19 \x03(\x0b\x32\x35.google.cloud.deploy.v1.Release.DeployParametersEntryB\x03\xe0\x41\x01\x1a\xd4\x05\n\x0cTargetRender\x12@\n\x0frendering_build\x18\x01 \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1f\x63loudbuild.googleapis.com/Build\x12\\\n\x0frendering_state\x18\x02 \x01(\x0e\x32>.google.cloud.deploy.v1.Release.TargetRender.TargetRenderStateB\x03\xe0\x41\x03\x12=\n\x08metadata\x18\x06 \x01(\x0b\x32&.google.cloud.deploy.v1.RenderMetadataB\x03\xe0\x41\x03\x12U\n\rfailure_cause\x18\x04 \x01(\x0e\x32\x39.google.cloud.deploy.v1.Release.TargetRender.FailureCauseB\x03\xe0\x41\x03\x12\x1c\n\x0f\x66\x61ilure_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\"d\n\x11TargetRenderState\x12#\n\x1fTARGET_RENDER_STATE_UNSPECIFIED\x10\x00\x12\r\n\tSUCCEEDED\x10\x01\x12\n\n\x06\x46\x41ILED\x10\x02\x12\x0f\n\x0bIN_PROGRESS\x10\x03\"\x89\x02\n\x0c\x46\x61ilureCause\x12\x1d\n\x19\x46\x41ILURE_CAUSE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43LOUD_BUILD_UNAVAILABLE\x10\x01\x12\x14\n\x10\x45XECUTION_FAILED\x10\x02\x12\x1e\n\x1a\x43LOUD_BUILD_REQUEST_FAILED\x10\x03\x12!\n\x1dVERIFICATION_CONFIG_NOT_FOUND\x10\x04\x12\x1b\n\x17\x43USTOM_ACTION_NOT_FOUND\x10\x05\x12%\n!DEPLOYMENT_STRATEGY_NOT_SUPPORTED\x10\x06\x12 \n\x1cRENDER_FEATURE_NOT_SUPPORTED\x10\x07\x1a\'\n\x15ReleaseReadyCondition\x12\x0e\n\x06status\x18\x01 \x01(\x08\x1a\xf2\x01\n\x1aSkaffoldSupportedCondition\x12\x0e\n\x06status\x18\x01 \x01(\x08\x12L\n\x16skaffold_support_state\x18\x02 \x01(\x0e\x32,.google.cloud.deploy.v1.SkaffoldSupportState\x12\x39\n\x15maintenance_mode_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12;\n\x17support_expiration_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x1a\xcc\x01\n\x10ReleaseCondition\x12V\n\x17release_ready_condition\x18\x01 \x01(\x0b\x32\x35.google.cloud.deploy.v1.Release.ReleaseReadyCondition\x12`\n\x1cskaffold_supported_condition\x18\x02 \x01(\x0b\x32:.google.cloud.deploy.v1.Release.SkaffoldSupportedCondition\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a^\n\x14TargetArtifactsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.google.cloud.deploy.v1.TargetArtifact:\x02\x38\x01\x1a\x62\n\x12TargetRendersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12;\n\x05value\x18\x02 \x01(\x0b\x32,.google.cloud.deploy.v1.Release.TargetRender:\x02\x38\x01\x1a\x37\n\x15\x44\x65ployParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"W\n\x0bRenderState\x12\x1c\n\x18RENDER_STATE_UNSPECIFIED\x10\x00\x12\r\n\tSUCCEEDED\x10\x01\x12\n\n\x06\x46\x41ILED\x10\x02\x12\x0f\n\x0bIN_PROGRESS\x10\x03:\x8a\x01\xea\x41\x86\x01\n\"clouddeploy.googleapis.com/Release\x12`projects/{project}/locations/{location}/deliveryPipelines/{delivery_pipeline}/releases/{release}\"\xf2\x01\n\x19\x43reateDeployPolicyRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\x12\'clouddeploy.googleapis.com/DeployPolicy\x12\x1d\n\x10\x64\x65ploy_policy_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12@\n\rdeploy_policy\x18\x03 \x01(\x0b\x32$.google.cloud.deploy.v1.DeployPolicyB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xe4\x01\n\x19UpdateDeployPolicyRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12@\n\rdeploy_policy\x18\x02 \x01(\x0b\x32$.google.cloud.deploy.v1.DeployPolicyB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xbe\x01\n\x19\x44\x65leteDeployPolicyRequest\x12=\n\x04name\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xa5\x01\n\x19ListDeployPoliciesRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\x12\'clouddeploy.googleapis.com/DeployPolicy\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x89\x01\n\x1aListDeployPoliciesResponse\x12=\n\x0f\x64\x65ploy_policies\x18\x01 \x03(\x0b\x32$.google.cloud.deploy.v1.DeployPolicy\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"W\n\x16GetDeployPolicyRequest\x12=\n\x04name\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"5\n\rBuildArtifact\x12\x12\n\x05image\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x10\n\x03tag\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xab\x03\n\x0eTargetArtifact\x12\x1b\n\x0c\x61rtifact_uri\x18\x04 \x01(\tB\x03\xe0\x41\x03H\x00\x12!\n\x14skaffold_config_path\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rmanifest_path\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12X\n\x0fphase_artifacts\x18\x05 \x03(\x0b\x32:.google.cloud.deploy.v1.TargetArtifact.PhaseArtifactsEntryB\x03\xe0\x41\x03\x1ao\n\rPhaseArtifact\x12!\n\x14skaffold_config_path\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rmanifest_path\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x1f\n\x12job_manifests_path\x18\x04 \x01(\tB\x03\xe0\x41\x03\x1ak\n\x13PhaseArtifactsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x43\n\x05value\x18\x02 \x01(\x0b\x32\x34.google.cloud.deploy.v1.TargetArtifact.PhaseArtifact:\x02\x38\x01\x42\x05\n\x03uri\"H\n\x0e\x44\x65ployArtifact\x12\x19\n\x0c\x61rtifact_uri\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0emanifest_paths\x18\x02 \x03(\tB\x03\xe0\x41\x03\"M\n\x16\x43loudRunRenderMetadata\x12\x33\n\x07service\x18\x01 \x01(\tB\"\xe0\x41\x03\xfa\x41\x1c\n\x1arun.googleapis.com/Service\"\x95\x01\n\x0eRenderMetadata\x12\x46\n\tcloud_run\x18\x01 \x01(\x0b\x32..google.cloud.deploy.v1.CloudRunRenderMetadataB\x03\xe0\x41\x03\x12;\n\x06\x63ustom\x18\x02 \x01(\x0b\x32&.google.cloud.deploy.v1.CustomMetadataB\x03\xe0\x41\x03\"\xb7\x01\n\x13ListReleasesRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+clouddeploy.googleapis.com/DeliveryPipeline\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"w\n\x14ListReleasesResponse\x12\x31\n\x08releases\x18\x01 \x03(\x0b\x32\x1f.google.cloud.deploy.v1.Release\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"M\n\x11GetReleaseRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Release\"\xb1\x02\n\x14\x43reateReleaseRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+clouddeploy.googleapis.com/DeliveryPipeline\x12\x17\n\nrelease_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x35\n\x07release\x18\x03 \x01(\x0b\x32\x1f.google.cloud.deploy.v1.ReleaseB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\x12O\n\x16override_deploy_policy\x18\x06 \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"\x9d\x0f\n\x07Rollout\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12J\n\x0b\x61nnotations\x18\x04 \x03(\x0b\x32\x30.google.cloud.deploy.v1.Rollout.AnnotationsEntryB\x03\xe0\x41\x01\x12;\n\x06labels\x18\x05 \x03(\x0b\x32+.google.cloud.deploy.v1.Rollout.LabelsEntry\x12\x34\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0c\x61pprove_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x35\n\x0c\x65nqueue_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12:\n\x11\x64\x65ploy_start_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x38\n\x0f\x64\x65ploy_end_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x16\n\ttarget_id\x18\x12 \x01(\tB\x03\xe0\x41\x02\x12J\n\x0e\x61pproval_state\x18\x0c \x01(\x0e\x32-.google.cloud.deploy.v1.Rollout.ApprovalStateB\x03\xe0\x41\x03\x12\x39\n\x05state\x18\r \x01(\x0e\x32%.google.cloud.deploy.v1.Rollout.StateB\x03\xe0\x41\x03\x12\x1b\n\x0e\x66\x61ilure_reason\x18\x0e \x01(\tB\x03\xe0\x41\x03\x12@\n\x0f\x64\x65ploying_build\x18\x11 \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1f\x63loudbuild.googleapis.com/Build\x12\x0c\n\x04\x65tag\x18\x10 \x01(\t\x12O\n\x14\x64\x65ploy_failure_cause\x18\x13 \x01(\x0e\x32,.google.cloud.deploy.v1.Rollout.FailureCauseB\x03\xe0\x41\x03\x12\x32\n\x06phases\x18\x17 \x03(\x0b\x32\x1d.google.cloud.deploy.v1.PhaseB\x03\xe0\x41\x03\x12\x37\n\x08metadata\x18\x18 \x01(\x0b\x32 .google.cloud.deploy.v1.MetadataB\x03\xe0\x41\x03\x12\x1f\n\x12\x63ontroller_rollout\x18\x19 \x01(\tB\x03\xe0\x41\x03\x12 \n\x13rollback_of_rollout\x18\x1a \x01(\tB\x03\xe0\x41\x03\x12$\n\x17rolled_back_by_rollouts\x18\x1b \x03(\tB\x03\xe0\x41\x03\x12)\n\x1c\x61\x63tive_repair_automation_run\x18\x1c \x01(\tB\x03\xe0\x41\x03\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"{\n\rApprovalState\x12\x1e\n\x1a\x41PPROVAL_STATE_UNSPECIFIED\x10\x00\x12\x12\n\x0eNEEDS_APPROVAL\x10\x01\x12\x1a\n\x16\x44OES_NOT_NEED_APPROVAL\x10\x02\x12\x0c\n\x08\x41PPROVED\x10\x03\x12\x0c\n\x08REJECTED\x10\x04\"\xc4\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\r\n\tSUCCEEDED\x10\x01\x12\n\n\x06\x46\x41ILED\x10\x02\x12\x0f\n\x0bIN_PROGRESS\x10\x03\x12\x14\n\x10PENDING_APPROVAL\x10\x04\x12\x15\n\x11\x41PPROVAL_REJECTED\x10\x05\x12\x0b\n\x07PENDING\x10\x06\x12\x13\n\x0fPENDING_RELEASE\x10\x07\x12\x0e\n\nCANCELLING\x10\x08\x12\r\n\tCANCELLED\x10\t\x12\n\n\x06HALTED\x10\n\"\x8a\x02\n\x0c\x46\x61ilureCause\x12\x1d\n\x19\x46\x41ILURE_CAUSE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43LOUD_BUILD_UNAVAILABLE\x10\x01\x12\x14\n\x10\x45XECUTION_FAILED\x10\x02\x12\x15\n\x11\x44\x45\x41\x44LINE_EXCEEDED\x10\x03\x12\x12\n\x0eRELEASE_FAILED\x10\x04\x12\x15\n\x11RELEASE_ABANDONED\x10\x05\x12!\n\x1dVERIFICATION_CONFIG_NOT_FOUND\x10\x06\x12\x1e\n\x1a\x43LOUD_BUILD_REQUEST_FAILED\x10\x07\x12#\n\x1fOPERATION_FEATURE_NOT_SUPPORTED\x10\x08:\x9d\x01\xea\x41\x99\x01\n\"clouddeploy.googleapis.com/Rollout\x12sprojects/{project}/locations/{location}/deliveryPipelines/{delivery_pipeline}/releases/{release}/rollouts/{rollout}\"\xd5\x01\n\x08Metadata\x12@\n\tcloud_run\x18\x01 \x01(\x0b\x32(.google.cloud.deploy.v1.CloudRunMetadataB\x03\xe0\x41\x03\x12J\n\nautomation\x18\x02 \x01(\x0b\x32\x31.google.cloud.deploy.v1.AutomationRolloutMetadataB\x03\xe0\x41\x03\x12;\n\x06\x63ustom\x18\x03 \x01(\x0b\x32&.google.cloud.deploy.v1.CustomMetadataB\x03\xe0\x41\x03\"\xe5\x01\n\x14\x44\x65ployJobRunMetadata\x12@\n\tcloud_run\x18\x01 \x01(\x0b\x32(.google.cloud.deploy.v1.CloudRunMetadataB\x03\xe0\x41\x03\x12N\n\rcustom_target\x18\x02 \x01(\x0b\x32\x32.google.cloud.deploy.v1.CustomTargetDeployMetadataB\x03\xe0\x41\x03\x12;\n\x06\x63ustom\x18\x03 \x01(\x0b\x32&.google.cloud.deploy.v1.CustomMetadataB\x03\xe0\x41\x03\"\xa6\x01\n\x10\x43loudRunMetadata\x12\x33\n\x07service\x18\x01 \x01(\tB\"\xe0\x41\x03\xfa\x41\x1c\n\x1arun.googleapis.com/Service\x12\x19\n\x0cservice_urls\x18\x02 \x03(\tB\x03\xe0\x41\x03\x12\x15\n\x08revision\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12+\n\x03job\x18\x04 \x01(\tB\x1e\xe0\x41\x03\xfa\x41\x18\n\x16run.googleapis.com/Job\"7\n\x1a\x43ustomTargetDeployMetadata\x12\x19\n\x0cskip_message\x18\x01 \x01(\tB\x03\xe0\x41\x03\"\x8b\x01\n\x19\x41utomationRolloutMetadata\x12#\n\x16promote_automation_run\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12$\n\x17\x61\x64vance_automation_runs\x18\x02 \x03(\tB\x03\xe0\x41\x03\x12#\n\x16repair_automation_runs\x18\x03 \x03(\tB\x03\xe0\x41\x03\"\x88\x01\n\x0e\x43ustomMetadata\x12G\n\x06values\x18\x01 \x03(\x0b\x32\x32.google.cloud.deploy.v1.CustomMetadata.ValuesEntryB\x03\xe0\x41\x03\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xfc\x02\n\x05Phase\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x37\n\x05state\x18\x03 \x01(\x0e\x32#.google.cloud.deploy.v1.Phase.StateB\x03\xe0\x41\x03\x12\x19\n\x0cskip_message\x18\x06 \x01(\tB\x03\xe0\x41\x03\x12\x46\n\x0f\x64\x65ployment_jobs\x18\x04 \x01(\x0b\x32&.google.cloud.deploy.v1.DeploymentJobsB\x03\xe0\x41\x03H\x00\x12K\n\x12\x63hild_rollout_jobs\x18\x05 \x01(\x0b\x32(.google.cloud.deploy.v1.ChildRolloutJobsB\x03\xe0\x41\x03H\x00\"q\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07PENDING\x10\x01\x12\x0f\n\x0bIN_PROGRESS\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\n\n\x06\x46\x41ILED\x10\x04\x12\x0b\n\x07\x41\x42ORTED\x10\x05\x12\x0b\n\x07SKIPPED\x10\x06\x42\x06\n\x04jobs\"\xef\x01\n\x0e\x44\x65ploymentJobs\x12\x37\n\rpredeploy_job\x18\x03 \x01(\x0b\x32\x1b.google.cloud.deploy.v1.JobB\x03\xe0\x41\x03\x12\x34\n\ndeploy_job\x18\x01 \x01(\x0b\x32\x1b.google.cloud.deploy.v1.JobB\x03\xe0\x41\x03\x12\x34\n\nverify_job\x18\x02 \x01(\x0b\x32\x1b.google.cloud.deploy.v1.JobB\x03\xe0\x41\x03\x12\x38\n\x0epostdeploy_job\x18\x04 \x01(\x0b\x32\x1b.google.cloud.deploy.v1.JobB\x03\xe0\x41\x03\"\x91\x01\n\x10\x43hildRolloutJobs\x12=\n\x13\x63reate_rollout_jobs\x18\x01 \x03(\x0b\x32\x1b.google.cloud.deploy.v1.JobB\x03\xe0\x41\x03\x12>\n\x14\x61\x64vance_rollout_jobs\x18\x02 \x03(\x0b\x32\x1b.google.cloud.deploy.v1.JobB\x03\xe0\x41\x03\"\xf7\x05\n\x03Job\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x35\n\x05state\x18\x02 \x01(\x0e\x32!.google.cloud.deploy.v1.Job.StateB\x03\xe0\x41\x03\x12\x19\n\x0cskip_message\x18\x08 \x01(\tB\x03\xe0\x41\x03\x12:\n\x07job_run\x18\x03 \x01(\tB)\xe0\x41\x03\xfa\x41#\n!clouddeploy.googleapis.com/JobRun\x12<\n\ndeploy_job\x18\x04 \x01(\x0b\x32!.google.cloud.deploy.v1.DeployJobB\x03\xe0\x41\x03H\x00\x12<\n\nverify_job\x18\x05 \x01(\x0b\x32!.google.cloud.deploy.v1.VerifyJobB\x03\xe0\x41\x03H\x00\x12\x42\n\rpredeploy_job\x18\t \x01(\x0b\x32$.google.cloud.deploy.v1.PredeployJobB\x03\xe0\x41\x03H\x00\x12\x44\n\x0epostdeploy_job\x18\n \x01(\x0b\x32%.google.cloud.deploy.v1.PostdeployJobB\x03\xe0\x41\x03H\x00\x12V\n\x18\x63reate_child_rollout_job\x18\x06 \x01(\x0b\x32-.google.cloud.deploy.v1.CreateChildRolloutJobB\x03\xe0\x41\x03H\x00\x12X\n\x19\x61\x64vance_child_rollout_job\x18\x07 \x01(\x0b\x32..google.cloud.deploy.v1.AdvanceChildRolloutJobB\x03\xe0\x41\x03H\x00\"\x8c\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07PENDING\x10\x01\x12\x0c\n\x08\x44ISABLED\x10\x02\x12\x0f\n\x0bIN_PROGRESS\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x0b\n\x07\x41\x42ORTED\x10\x06\x12\x0b\n\x07SKIPPED\x10\x07\x12\x0b\n\x07IGNORED\x10\x08\x42\n\n\x08job_type\"\x0b\n\tDeployJob\"\x0b\n\tVerifyJob\"$\n\x0cPredeployJob\x12\x14\n\x07\x61\x63tions\x18\x01 \x03(\tB\x03\xe0\x41\x03\"%\n\rPostdeployJob\x12\x14\n\x07\x61\x63tions\x18\x01 \x03(\tB\x03\xe0\x41\x03\"\x17\n\x15\x43reateChildRolloutJob\"\x18\n\x16\x41\x64vanceChildRolloutJob\"\xae\x01\n\x13ListRolloutsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Release\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"w\n\x14ListRolloutsResponse\x12\x31\n\x08rollouts\x18\x01 \x03(\x0b\x32\x1f.google.cloud.deploy.v1.Rollout\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"M\n\x11GetRolloutRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Rollout\"\xc8\x02\n\x14\x43reateRolloutRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Release\x12\x17\n\nrollout_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x35\n\x07rollout\x18\x03 \x01(\x0b\x32\x1f.google.cloud.deploy.v1.RolloutB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\x12O\n\x16override_deploy_policy\x18\x06 \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\x12\x1e\n\x11starting_phase_id\x18\x07 \x01(\tB\x03\xe0\x41\x01\"\x80\x02\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0estatus_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16requested_cancellation\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\"\xb9\x01\n\x15\x41pproveRolloutRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Rollout\x12\x15\n\x08\x61pproved\x18\x02 \x01(\x08\x42\x03\xe0\x41\x02\x12O\n\x16override_deploy_policy\x18\x03 \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"\x18\n\x16\x41pproveRolloutResponse\"\xb9\x01\n\x15\x41\x64vanceRolloutRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Rollout\x12\x15\n\x08phase_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12O\n\x16override_deploy_policy\x18\x03 \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"\x18\n\x16\x41\x64vanceRolloutResponse\"\xa1\x01\n\x14\x43\x61ncelRolloutRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Rollout\x12O\n\x16override_deploy_policy\x18\x02 \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"\x17\n\x15\x43\x61ncelRolloutResponse\"\xcc\x01\n\x10IgnoreJobRequest\x12;\n\x07rollout\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Rollout\x12\x15\n\x08phase_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06job_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12O\n\x16override_deploy_policy\x18\x04 \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"\x13\n\x11IgnoreJobResponse\"\xcb\x01\n\x0fRetryJobRequest\x12;\n\x07rollout\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Rollout\x12\x15\n\x08phase_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06job_id\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12O\n\x16override_deploy_policy\x18\x04 \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"\x12\n\x10RetryJobResponse\"Q\n\x15\x41\x62\x61ndonReleaseRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Release\"\x18\n\x16\x41\x62\x61ndonReleaseResponse\"\xd0\x08\n\x06JobRun\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x15\n\x08phase_id\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x06job_id\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x38\n\x05state\x18\x08 \x01(\x0e\x32$.google.cloud.deploy.v1.JobRun.StateB\x03\xe0\x41\x03\x12\x43\n\x0e\x64\x65ploy_job_run\x18\t \x01(\x0b\x32$.google.cloud.deploy.v1.DeployJobRunB\x03\xe0\x41\x03H\x00\x12\x43\n\x0everify_job_run\x18\n \x01(\x0b\x32$.google.cloud.deploy.v1.VerifyJobRunB\x03\xe0\x41\x03H\x00\x12I\n\x11predeploy_job_run\x18\x0e \x01(\x0b\x32\'.google.cloud.deploy.v1.PredeployJobRunB\x03\xe0\x41\x03H\x00\x12K\n\x12postdeploy_job_run\x18\x0f \x01(\x0b\x32(.google.cloud.deploy.v1.PostdeployJobRunB\x03\xe0\x41\x03H\x00\x12]\n\x1c\x63reate_child_rollout_job_run\x18\x0c \x01(\x0b\x32\x30.google.cloud.deploy.v1.CreateChildRolloutJobRunB\x03\xe0\x41\x03H\x00\x12_\n\x1d\x61\x64vance_child_rollout_job_run\x18\r \x01(\x0b\x32\x31.google.cloud.deploy.v1.AdvanceChildRolloutJobRunB\x03\xe0\x41\x03H\x00\x12\x11\n\x04\x65tag\x18\x0b \x01(\tB\x03\xe0\x41\x03\"k\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bIN_PROGRESS\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03\x12\x0f\n\x0bTERMINATING\x10\x04\x12\x0e\n\nTERMINATED\x10\x05:\xaf\x01\xea\x41\xab\x01\n!clouddeploy.googleapis.com/JobRun\x12\x85\x01projects/{project}/locations/{location}/deliveryPipelines/{delivery_pipeline}/releases/{release}/rollouts/{rollout}/jobRuns/{job_run}B\t\n\x07job_run\"\x95\x04\n\x0c\x44\x65ployJobRun\x12\x36\n\x05\x62uild\x18\x01 \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1f\x63loudbuild.googleapis.com/Build\x12M\n\rfailure_cause\x18\x02 \x01(\x0e\x32\x31.google.cloud.deploy.v1.DeployJobRun.FailureCauseB\x03\xe0\x41\x03\x12\x1c\n\x0f\x66\x61ilure_message\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x43\n\x08metadata\x18\x04 \x01(\x0b\x32,.google.cloud.deploy.v1.DeployJobRunMetadataB\x03\xe0\x41\x03\x12=\n\x08\x61rtifact\x18\x05 \x01(\x0b\x32&.google.cloud.deploy.v1.DeployArtifactB\x03\xe0\x41\x03\"\xdb\x01\n\x0c\x46\x61ilureCause\x12\x1d\n\x19\x46\x41ILURE_CAUSE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43LOUD_BUILD_UNAVAILABLE\x10\x01\x12\x14\n\x10\x45XECUTION_FAILED\x10\x02\x12\x15\n\x11\x44\x45\x41\x44LINE_EXCEEDED\x10\x03\x12 \n\x1cMISSING_RESOURCES_FOR_CANARY\x10\x04\x12\x1e\n\x1a\x43LOUD_BUILD_REQUEST_FAILED\x10\x05\x12 \n\x1c\x44\x45PLOY_FEATURE_NOT_SUPPORTED\x10\x06\"\xa8\x03\n\x0cVerifyJobRun\x12\x36\n\x05\x62uild\x18\x01 \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1f\x63loudbuild.googleapis.com/Build\x12\x19\n\x0c\x61rtifact_uri\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0e\x65vent_log_path\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12M\n\rfailure_cause\x18\x04 \x01(\x0e\x32\x31.google.cloud.deploy.v1.VerifyJobRun.FailureCauseB\x03\xe0\x41\x03\x12\x1c\n\x0f\x66\x61ilure_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\"\xba\x01\n\x0c\x46\x61ilureCause\x12\x1d\n\x19\x46\x41ILURE_CAUSE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43LOUD_BUILD_UNAVAILABLE\x10\x01\x12\x14\n\x10\x45XECUTION_FAILED\x10\x02\x12\x15\n\x11\x44\x45\x41\x44LINE_EXCEEDED\x10\x03\x12!\n\x1dVERIFICATION_CONFIG_NOT_FOUND\x10\x04\x12\x1e\n\x1a\x43LOUD_BUILD_REQUEST_FAILED\x10\x05\"\xd3\x02\n\x0fPredeployJobRun\x12\x36\n\x05\x62uild\x18\x01 \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1f\x63loudbuild.googleapis.com/Build\x12P\n\rfailure_cause\x18\x02 \x01(\x0e\x32\x34.google.cloud.deploy.v1.PredeployJobRun.FailureCauseB\x03\xe0\x41\x03\x12\x1c\n\x0f\x66\x61ilure_message\x18\x03 \x01(\tB\x03\xe0\x41\x03\"\x97\x01\n\x0c\x46\x61ilureCause\x12\x1d\n\x19\x46\x41ILURE_CAUSE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43LOUD_BUILD_UNAVAILABLE\x10\x01\x12\x14\n\x10\x45XECUTION_FAILED\x10\x02\x12\x15\n\x11\x44\x45\x41\x44LINE_EXCEEDED\x10\x03\x12\x1e\n\x1a\x43LOUD_BUILD_REQUEST_FAILED\x10\x04\"\xd5\x02\n\x10PostdeployJobRun\x12\x36\n\x05\x62uild\x18\x01 \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1f\x63loudbuild.googleapis.com/Build\x12Q\n\rfailure_cause\x18\x02 \x01(\x0e\x32\x35.google.cloud.deploy.v1.PostdeployJobRun.FailureCauseB\x03\xe0\x41\x03\x12\x1c\n\x0f\x66\x61ilure_message\x18\x03 \x01(\tB\x03\xe0\x41\x03\"\x97\x01\n\x0c\x46\x61ilureCause\x12\x1d\n\x19\x46\x41ILURE_CAUSE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43LOUD_BUILD_UNAVAILABLE\x10\x01\x12\x14\n\x10\x45XECUTION_FAILED\x10\x02\x12\x15\n\x11\x44\x45\x41\x44LINE_EXCEEDED\x10\x03\x12\x1e\n\x1a\x43LOUD_BUILD_REQUEST_FAILED\x10\x04\"O\n\x18\x43reateChildRolloutJobRun\x12\x14\n\x07rollout\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x1d\n\x10rollout_phase_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\"P\n\x19\x41\x64vanceChildRolloutJobRun\x12\x14\n\x07rollout\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x1d\n\x10rollout_phase_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\"\xad\x01\n\x12ListJobRunsRequest\x12:\n\x06parent\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"clouddeploy.googleapis.com/Rollout\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"u\n\x13ListJobRunsResponse\x12\x30\n\x08job_runs\x18\x01 \x03(\x0b\x32\x1e.google.cloud.deploy.v1.JobRun\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"K\n\x10GetJobRunRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!clouddeploy.googleapis.com/JobRun\"\xa2\x01\n\x16TerminateJobRunRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!clouddeploy.googleapis.com/JobRun\x12O\n\x16override_deploy_policy\x18\x02 \x03(\tB/\xe0\x41\x01\xfa\x41)\n\'clouddeploy.googleapis.com/DeployPolicy\"\x19\n\x17TerminateJobRunResponse\"\xd5\x01\n\x06\x43onfig\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x43\n\x12supported_versions\x18\x02 \x03(\x0b\x32\'.google.cloud.deploy.v1.SkaffoldVersion\x12 \n\x18\x64\x65\x66\x61ult_skaffold_version\x18\x03 \x01(\t:V\xea\x41S\n!clouddeploy.googleapis.com/Config\x12.projects/{project}/locations/{location}/config\"\xc7\x01\n\x0fSkaffoldVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x39\n\x15maintenance_mode_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12;\n\x17support_expiration_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x10support_end_date\x18\x02 \x01(\x0b\x32\x11.google.type.Date\"K\n\x10GetConfigRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!clouddeploy.googleapis.com/Config\"\x97\x06\n\nAutomation\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x34\n\x0b\x63reate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12M\n\x0b\x61nnotations\x18\x06 \x03(\x0b\x32\x33.google.cloud.deploy.v1.Automation.AnnotationsEntryB\x03\xe0\x41\x01\x12\x43\n\x06labels\x18\x07 \x03(\x0b\x32..google.cloud.deploy.v1.Automation.LabelsEntryB\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x08 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tsuspended\x18\t \x01(\x08\x42\x03\xe0\x41\x01\x12\x1c\n\x0fservice_account\x18\n \x01(\tB\x03\xe0\x41\x02\x12I\n\x08selector\x18\x0b \x01(\x0b\x32\x32.google.cloud.deploy.v1.AutomationResourceSelectorB\x03\xe0\x41\x02\x12:\n\x05rules\x18\x0e \x03(\x0b\x32&.google.cloud.deploy.v1.AutomationRuleB\x03\xe0\x41\x02\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x96\x01\xea\x41\x92\x01\n%clouddeploy.googleapis.com/Automation\x12\x66projects/{project}/locations/{location}/deliveryPipelines/{delivery_pipeline}/automations/{automation}R\x01\x01\"[\n\x1a\x41utomationResourceSelector\x12=\n\x07targets\x18\x01 \x03(\x0b\x32\'.google.cloud.deploy.v1.TargetAttributeB\x03\xe0\x41\x01\"\xe5\x02\n\x0e\x41utomationRule\x12O\n\x14promote_release_rule\x18\x01 \x01(\x0b\x32*.google.cloud.deploy.v1.PromoteReleaseRuleB\x03\xe0\x41\x01H\x00\x12O\n\x14\x61\x64vance_rollout_rule\x18\x02 \x01(\x0b\x32*.google.cloud.deploy.v1.AdvanceRolloutRuleB\x03\xe0\x41\x01H\x00\x12M\n\x13repair_rollout_rule\x18\x03 \x01(\x0b\x32).google.cloud.deploy.v1.RepairRolloutRuleB\x03\xe0\x41\x01H\x00\x12Z\n\x1atimed_promote_release_rule\x18\x04 \x01(\x0b\x32/.google.cloud.deploy.v1.TimedPromoteReleaseRuleB\x03\xe0\x41\x01H\x00\x42\x06\n\x04rule\"\xe6\x01\n\x17TimedPromoteReleaseRule\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\"\n\x15\x64\x65stination_target_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08schedule\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\ttime_zone\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12G\n\tcondition\x18\x05 \x01(\x0b\x32/.google.cloud.deploy.v1.AutomationRuleConditionB\x03\xe0\x41\x03\x12\x1e\n\x11\x64\x65stination_phase\x18\x06 \x01(\tB\x03\xe0\x41\x01\"\xe0\x01\n\x12PromoteReleaseRule\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12,\n\x04wait\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x01\x12\"\n\x15\x64\x65stination_target_id\x18\x07 \x01(\tB\x03\xe0\x41\x01\x12G\n\tcondition\x18\x05 \x01(\x0b\x32/.google.cloud.deploy.v1.AutomationRuleConditionB\x03\xe0\x41\x03\x12\x1e\n\x11\x64\x65stination_phase\x18\x08 \x01(\tB\x03\xe0\x41\x01\"\xb8\x01\n\x12\x41\x64vanceRolloutRule\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rsource_phases\x18\x06 \x03(\tB\x03\xe0\x41\x01\x12,\n\x04wait\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x01\x12G\n\tcondition\x18\x05 \x01(\x0b\x32/.google.cloud.deploy.v1.AutomationRuleConditionB\x03\xe0\x41\x03\"\xdc\x01\n\x11RepairRolloutRule\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06phases\x18\x07 \x03(\tB\x03\xe0\x41\x01\x12\x11\n\x04jobs\x18\x03 \x03(\tB\x03\xe0\x41\x01\x12G\n\tcondition\x18\x06 \x01(\x0b\x32/.google.cloud.deploy.v1.AutomationRuleConditionB\x03\xe0\x41\x03\x12\x45\n\rrepair_phases\x18\x08 \x03(\x0b\x32).google.cloud.deploy.v1.RepairPhaseConfigB\x03\xe0\x41\x02\"\x93\x01\n\x11RepairPhaseConfig\x12\x33\n\x05retry\x18\x01 \x01(\x0b\x32\x1d.google.cloud.deploy.v1.RetryB\x03\xe0\x41\x01H\x00\x12\x39\n\x08rollback\x18\x02 \x01(\x0b\x32 .google.cloud.deploy.v1.RollbackB\x03\xe0\x41\x01H\x00\x42\x0e\n\x0crepair_phase\"\x8c\x01\n\x05Retry\x12\x15\n\x08\x61ttempts\x18\x01 \x01(\x03\x42\x03\xe0\x41\x02\x12,\n\x04wait\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x01\x12>\n\x0c\x62\x61\x63koff_mode\x18\x03 \x01(\x0e\x32#.google.cloud.deploy.v1.BackoffModeB\x03\xe0\x41\x01\"\\\n\x08Rollback\x12\x1e\n\x11\x64\x65stination_phase\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x30\n#disable_rollback_if_rollout_pending\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xef\x01\n\x17\x41utomationRuleCondition\x12W\n\x19targets_present_condition\x18\x01 \x01(\x0b\x32/.google.cloud.deploy.v1.TargetsPresentConditionB\x03\xe0\x41\x01\x12\x64\n\x1ftimed_promote_release_condition\x18\x02 \x01(\x0b\x32\x34.google.cloud.deploy.v1.TimedPromoteReleaseConditionB\x03\xe0\x41\x01H\x00\x42\x15\n\x13rule_type_condition\"\x83\x02\n\x1cTimedPromoteReleaseCondition\x12<\n\x13next_promotion_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12W\n\x0ctargets_list\x18\x02 \x03(\x0b\x32<.google.cloud.deploy.v1.TimedPromoteReleaseCondition.TargetsB\x03\xe0\x41\x03\x1aL\n\x07Targets\x12\x1d\n\x10source_target_id\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\"\n\x15\x64\x65stination_target_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xe6\x01\n\x17\x43reateAutomationRequest\x12=\n\x06parent\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\x12%clouddeploy.googleapis.com/Automation\x12\x1a\n\rautomation_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12;\n\nautomation\x18\x03 \x01(\x0b\x32\".google.cloud.deploy.v1.AutomationB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xdd\x01\n\x17UpdateAutomationRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12;\n\nautomation\x18\x02 \x01(\x0b\x32\".google.cloud.deploy.v1.AutomationB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"\xba\x01\n\x17\x44\x65leteAutomationRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%clouddeploy.googleapis.com/Automation\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rallow_missing\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x11\n\x04\x65tag\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xa0\x01\n\x16ListAutomationsRequest\x12=\n\x06parent\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\x12%clouddeploy.googleapis.com/Automation\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x80\x01\n\x17ListAutomationsResponse\x12\x37\n\x0b\x61utomations\x18\x01 \x03(\x0b\x32\".google.cloud.deploy.v1.Automation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"S\n\x14GetAutomationRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%clouddeploy.googleapis.com/Automation\"\xff\t\n\rAutomationRun\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x11\n\x04\x65tag\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1c\n\x0fservice_account\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12\x44\n\x13\x61utomation_snapshot\x18\x06 \x01(\x0b\x32\".google.cloud.deploy.v1.AutomationB\x03\xe0\x41\x03\x12\x16\n\ttarget_id\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12?\n\x05state\x18\x08 \x01(\x0e\x32+.google.cloud.deploy.v1.AutomationRun.StateB\x03\xe0\x41\x03\x12\x1e\n\x11state_description\x18\t \x01(\tB\x03\xe0\x41\x03\x12\x46\n\x10policy_violation\x18\n \x01(\x0b\x32\'.google.cloud.deploy.v1.PolicyViolationB\x03\xe0\x41\x03\x12\x34\n\x0b\x65xpire_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x14\n\x07rule_id\x18\x0c \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rautomation_id\x18\x0f \x01(\tB\x03\xe0\x41\x03\x12Y\n\x19promote_release_operation\x18\r \x01(\x0b\x32/.google.cloud.deploy.v1.PromoteReleaseOperationB\x03\xe0\x41\x03H\x00\x12Y\n\x19\x61\x64vance_rollout_operation\x18\x0e \x01(\x0b\x32/.google.cloud.deploy.v1.AdvanceRolloutOperationB\x03\xe0\x41\x03H\x00\x12W\n\x18repair_rollout_operation\x18\x11 \x01(\x0b\x32..google.cloud.deploy.v1.RepairRolloutOperationB\x03\xe0\x41\x03H\x00\x12\x64\n\x1ftimed_promote_release_operation\x18\x13 \x01(\x0b\x32\x34.google.cloud.deploy.v1.TimedPromoteReleaseOperationB\x03\xe0\x41\x03H\x00\x12\x38\n\x0fwait_until_time\x18\x10 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"s\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\r\n\tSUCCEEDED\x10\x01\x12\r\n\tCANCELLED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03\x12\x0f\n\x0bIN_PROGRESS\x10\x04\x12\x0b\n\x07PENDING\x10\x05\x12\x0b\n\x07\x41\x42ORTED\x10\x06:\x9d\x01\xea\x41\x99\x01\n(clouddeploy.googleapis.com/AutomationRun\x12mprojects/{project}/locations/{location}/deliveryPipelines/{delivery_pipeline}/automationRuns/{automation_run}B\x0b\n\toperation\"\x89\x01\n\x17PromoteReleaseOperation\x12\x16\n\ttarget_id\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12,\n\x04wait\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x03\x12\x14\n\x07rollout\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x12\n\x05phase\x18\x04 \x01(\tB\x03\xe0\x41\x03\"\x98\x01\n\x17\x41\x64vanceRolloutOperation\x12\x19\n\x0csource_phase\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12,\n\x04wait\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x03\x12\x14\n\x07rollout\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x1e\n\x11\x64\x65stination_phase\x18\x04 \x01(\tB\x03\xe0\x41\x03\"\xc4\x01\n\x16RepairRolloutOperation\x12\x14\n\x07rollout\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\'\n\x1a\x63urrent_repair_phase_index\x18\x06 \x01(\x03\x42\x03\xe0\x41\x03\x12?\n\rrepair_phases\x18\x03 \x03(\x0b\x32#.google.cloud.deploy.v1.RepairPhaseB\x03\xe0\x41\x03\x12\x15\n\x08phase_id\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x13\n\x06job_id\x18\x05 \x01(\tB\x03\xe0\x41\x03\"`\n\x1cTimedPromoteReleaseOperation\x12\x16\n\ttarget_id\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x14\n\x07release\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x12\n\x05phase\x18\x03 \x01(\tB\x03\xe0\x41\x03\"\x99\x01\n\x0bRepairPhase\x12\x38\n\x05retry\x18\x01 \x01(\x0b\x32\".google.cloud.deploy.v1.RetryPhaseB\x03\xe0\x41\x03H\x00\x12@\n\x08rollback\x18\x02 \x01(\x0b\x32\'.google.cloud.deploy.v1.RollbackAttemptB\x03\xe0\x41\x03H\x00\x42\x0e\n\x0crepair_phase\"\xa6\x01\n\nRetryPhase\x12\x1b\n\x0etotal_attempts\x18\x01 \x01(\x03\x42\x03\xe0\x41\x03\x12>\n\x0c\x62\x61\x63koff_mode\x18\x02 \x01(\x0e\x32#.google.cloud.deploy.v1.BackoffModeB\x03\xe0\x41\x03\x12;\n\x08\x61ttempts\x18\x05 \x03(\x0b\x32$.google.cloud.deploy.v1.RetryAttemptB\x03\xe0\x41\x03\"\xa4\x01\n\x0cRetryAttempt\x12\x14\n\x07\x61ttempt\x18\x01 \x01(\x03\x42\x03\xe0\x41\x03\x12,\n\x04wait\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x03\x12\x37\n\x05state\x18\x05 \x01(\x0e\x32#.google.cloud.deploy.v1.RepairStateB\x03\xe0\x41\x03\x12\x17\n\nstate_desc\x18\x06 \x01(\tB\x03\xe0\x41\x03\"\xce\x01\n\x0fRollbackAttempt\x12\x1e\n\x11\x64\x65stination_phase\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nrollout_id\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x37\n\x05state\x18\x03 \x01(\x0e\x32#.google.cloud.deploy.v1.RepairStateB\x03\xe0\x41\x03\x12\x17\n\nstate_desc\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x30\n#disable_rollback_if_rollout_pending\x18\x05 \x01(\x08\x42\x03\xe0\x41\x03\"\xa6\x01\n\x19ListAutomationRunsRequest\x12@\n\x06parent\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\x12(clouddeploy.googleapis.com/AutomationRun\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x8a\x01\n\x1aListAutomationRunsResponse\x12>\n\x0f\x61utomation_runs\x18\x01 \x03(\x0b\x32%.google.cloud.deploy.v1.AutomationRun\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"Y\n\x17GetAutomationRunRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(clouddeploy.googleapis.com/AutomationRun\"\\\n\x1a\x43\x61ncelAutomationRunRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(clouddeploy.googleapis.com/AutomationRun\"\x1d\n\x1b\x43\x61ncelAutomationRunResponse*\xb9\x01\n\x14SkaffoldSupportState\x12&\n\"SKAFFOLD_SUPPORT_STATE_UNSPECIFIED\x10\x00\x12$\n SKAFFOLD_SUPPORT_STATE_SUPPORTED\x10\x01\x12+\n\'SKAFFOLD_SUPPORT_STATE_MAINTENANCE_MODE\x10\x02\x12&\n\"SKAFFOLD_SUPPORT_STATE_UNSUPPORTED\x10\x03*b\n\x0b\x42\x61\x63koffMode\x12\x1c\n\x18\x42\x41\x43KOFF_MODE_UNSPECIFIED\x10\x00\x12\x17\n\x13\x42\x41\x43KOFF_MODE_LINEAR\x10\x01\x12\x1c\n\x18\x42\x41\x43KOFF_MODE_EXPONENTIAL\x10\x02*\xce\x01\n\x0bRepairState\x12\x1c\n\x18REPAIR_STATE_UNSPECIFIED\x10\x00\x12\x1a\n\x16REPAIR_STATE_SUCCEEDED\x10\x01\x12\x1a\n\x16REPAIR_STATE_CANCELLED\x10\x02\x12\x17\n\x13REPAIR_STATE_FAILED\x10\x03\x12\x1c\n\x18REPAIR_STATE_IN_PROGRESS\x10\x04\x12\x18\n\x14REPAIR_STATE_PENDING\x10\x05\x12\x18\n\x14REPAIR_STATE_ABORTED\x10\x07\x32\xefL\n\x0b\x43loudDeploy\x12\xcc\x01\n\x15ListDeliveryPipelines\x12\x34.google.cloud.deploy.v1.ListDeliveryPipelinesRequest\x1a\x35.google.cloud.deploy.v1.ListDeliveryPipelinesResponse\"F\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x37\x12\x35/v1/{parent=projects/*/locations/*}/deliveryPipelines\x12\xb9\x01\n\x13GetDeliveryPipeline\x12\x32.google.cloud.deploy.v1.GetDeliveryPipelineRequest\x1a(.google.cloud.deploy.v1.DeliveryPipeline\"D\xda\x41\x04name\x82\xd3\xe4\x93\x02\x37\x12\x35/v1/{name=projects/*/locations/*/deliveryPipelines/*}\x12\x99\x02\n\x16\x43reateDeliveryPipeline\x12\x35.google.cloud.deploy.v1.CreateDeliveryPipelineRequest\x1a\x1d.google.longrunning.Operation\"\xa8\x01\xca\x41%\n\x10\x44\x65liveryPipeline\x12\x11OperationMetadata\xda\x41-parent,delivery_pipeline,delivery_pipeline_id\x82\xd3\xe4\x93\x02J\"5/v1/{parent=projects/*/locations/*}/deliveryPipelines:\x11\x64\x65livery_pipeline\x12\x9b\x02\n\x16UpdateDeliveryPipeline\x12\x35.google.cloud.deploy.v1.UpdateDeliveryPipelineRequest\x1a\x1d.google.longrunning.Operation\"\xaa\x01\xca\x41%\n\x10\x44\x65liveryPipeline\x12\x11OperationMetadata\xda\x41\x1d\x64\x65livery_pipeline,update_mask\x82\xd3\xe4\x93\x02\\2G/v1/{delivery_pipeline.name=projects/*/locations/*/deliveryPipelines/*}:\x11\x64\x65livery_pipeline\x12\xe1\x01\n\x16\x44\x65leteDeliveryPipeline\x12\x35.google.cloud.deploy.v1.DeleteDeliveryPipelineRequest\x1a\x1d.google.longrunning.Operation\"q\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x37*5/v1/{name=projects/*/locations/*/deliveryPipelines/*}\x12\xa4\x01\n\x0bListTargets\x12*.google.cloud.deploy.v1.ListTargetsRequest\x1a+.google.cloud.deploy.v1.ListTargetsResponse\"<\xda\x41\x06parent\x82\xd3\xe4\x93\x02-\x12+/v1/{parent=projects/*/locations/*}/targets\x12\xdc\x01\n\x0eRollbackTarget\x12-.google.cloud.deploy.v1.RollbackTargetRequest\x1a..google.cloud.deploy.v1.RollbackTargetResponse\"k\xda\x41\x19name,target_id,rollout_id\x82\xd3\xe4\x93\x02I\"D/v1/{name=projects/*/locations/*/deliveryPipelines/*}:rollbackTarget:\x01*\x12\x91\x01\n\tGetTarget\x12(.google.cloud.deploy.v1.GetTargetRequest\x1a\x1e.google.cloud.deploy.v1.Target\":\xda\x41\x04name\x82\xd3\xe4\x93\x02-\x12+/v1/{name=projects/*/locations/*/targets/*}\x12\xcf\x01\n\x0c\x43reateTarget\x12+.google.cloud.deploy.v1.CreateTargetRequest\x1a\x1d.google.longrunning.Operation\"s\xca\x41\x1b\n\x06Target\x12\x11OperationMetadata\xda\x41\x17parent,target,target_id\x82\xd3\xe4\x93\x02\x35\"+/v1/{parent=projects/*/locations/*}/targets:\x06target\x12\xd1\x01\n\x0cUpdateTarget\x12+.google.cloud.deploy.v1.UpdateTargetRequest\x1a\x1d.google.longrunning.Operation\"u\xca\x41\x1b\n\x06Target\x12\x11OperationMetadata\xda\x41\x12target,update_mask\x82\xd3\xe4\x93\x02<22/v1/{target.name=projects/*/locations/*/targets/*}:\x06target\x12\xc3\x01\n\x0c\x44\x65leteTarget\x12+.google.cloud.deploy.v1.DeleteTargetRequest\x1a\x1d.google.longrunning.Operation\"g\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02-*+/v1/{name=projects/*/locations/*/targets/*}\x12\xcc\x01\n\x15ListCustomTargetTypes\x12\x34.google.cloud.deploy.v1.ListCustomTargetTypesRequest\x1a\x35.google.cloud.deploy.v1.ListCustomTargetTypesResponse\"F\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x37\x12\x35/v1/{parent=projects/*/locations/*}/customTargetTypes\x12\xb9\x01\n\x13GetCustomTargetType\x12\x32.google.cloud.deploy.v1.GetCustomTargetTypeRequest\x1a(.google.cloud.deploy.v1.CustomTargetType\"D\xda\x41\x04name\x82\xd3\xe4\x93\x02\x37\x12\x35/v1/{name=projects/*/locations/*/customTargetTypes/*}\x12\x9c\x02\n\x16\x43reateCustomTargetType\x12\x35.google.cloud.deploy.v1.CreateCustomTargetTypeRequest\x1a\x1d.google.longrunning.Operation\"\xab\x01\xca\x41%\n\x10\x43ustomTargetType\x12\x11OperationMetadata\xda\x41/parent,custom_target_type,custom_target_type_id\x82\xd3\xe4\x93\x02K\"5/v1/{parent=projects/*/locations/*}/customTargetTypes:\x12\x63ustom_target_type\x12\x9e\x02\n\x16UpdateCustomTargetType\x12\x35.google.cloud.deploy.v1.UpdateCustomTargetTypeRequest\x1a\x1d.google.longrunning.Operation\"\xad\x01\xca\x41%\n\x10\x43ustomTargetType\x12\x11OperationMetadata\xda\x41\x1e\x63ustom_target_type,update_mask\x82\xd3\xe4\x93\x02^2H/v1/{custom_target_type.name=projects/*/locations/*/customTargetTypes/*}:\x12\x63ustom_target_type\x12\xe1\x01\n\x16\x44\x65leteCustomTargetType\x12\x35.google.cloud.deploy.v1.DeleteCustomTargetTypeRequest\x1a\x1d.google.longrunning.Operation\"q\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x37*5/v1/{name=projects/*/locations/*/customTargetTypes/*}\x12\xbc\x01\n\x0cListReleases\x12+.google.cloud.deploy.v1.ListReleasesRequest\x1a,.google.cloud.deploy.v1.ListReleasesResponse\"Q\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x42\x12@/v1/{parent=projects/*/locations/*/deliveryPipelines/*}/releases\x12\xa9\x01\n\nGetRelease\x12).google.cloud.deploy.v1.GetReleaseRequest\x1a\x1f.google.cloud.deploy.v1.Release\"O\xda\x41\x04name\x82\xd3\xe4\x93\x02\x42\x12@/v1/{name=projects/*/locations/*/deliveryPipelines/*/releases/*}\x12\xeb\x01\n\rCreateRelease\x12,.google.cloud.deploy.v1.CreateReleaseRequest\x1a\x1d.google.longrunning.Operation\"\x8c\x01\xca\x41\x1c\n\x07Release\x12\x11OperationMetadata\xda\x41\x19parent,release,release_id\x82\xd3\xe4\x93\x02K\"@/v1/{parent=projects/*/locations/*/deliveryPipelines/*}/releases:\x07release\x12\xcb\x01\n\x0e\x41\x62\x61ndonRelease\x12-.google.cloud.deploy.v1.AbandonReleaseRequest\x1a..google.cloud.deploy.v1.AbandonReleaseResponse\"Z\xda\x41\x04name\x82\xd3\xe4\x93\x02M\"H/v1/{name=projects/*/locations/*/deliveryPipelines/*/releases/*}:abandon:\x01*\x12\xfe\x01\n\x12\x43reateDeployPolicy\x12\x31.google.cloud.deploy.v1.CreateDeployPolicyRequest\x1a\x1d.google.longrunning.Operation\"\x95\x01\xca\x41!\n\x0c\x44\x65ployPolicy\x12\x11OperationMetadata\xda\x41%parent,deploy_policy,deploy_policy_id\x82\xd3\xe4\x93\x02\x43\"2/v1/{parent=projects/*/locations/*}/deployPolicies:\rdeploy_policy\x12\x80\x02\n\x12UpdateDeployPolicy\x12\x31.google.cloud.deploy.v1.UpdateDeployPolicyRequest\x1a\x1d.google.longrunning.Operation\"\x97\x01\xca\x41!\n\x0c\x44\x65ployPolicy\x12\x11OperationMetadata\xda\x41\x19\x64\x65ploy_policy,update_mask\x82\xd3\xe4\x93\x02Q2@/v1/{deploy_policy.name=projects/*/locations/*/deployPolicies/*}:\rdeploy_policy\x12\xd6\x01\n\x12\x44\x65leteDeployPolicy\x12\x31.google.cloud.deploy.v1.DeleteDeployPolicyRequest\x1a\x1d.google.longrunning.Operation\"n\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34*2/v1/{name=projects/*/locations/*/deployPolicies/*}\x12\xc0\x01\n\x12ListDeployPolicies\x12\x31.google.cloud.deploy.v1.ListDeployPoliciesRequest\x1a\x32.google.cloud.deploy.v1.ListDeployPoliciesResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/deployPolicies\x12\xaa\x01\n\x0fGetDeployPolicy\x12..google.cloud.deploy.v1.GetDeployPolicyRequest\x1a$.google.cloud.deploy.v1.DeployPolicy\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/deployPolicies/*}\x12\xd6\x01\n\x0e\x41pproveRollout\x12-.google.cloud.deploy.v1.ApproveRolloutRequest\x1a..google.cloud.deploy.v1.ApproveRolloutResponse\"e\xda\x41\x04name\x82\xd3\xe4\x93\x02X\"S/v1/{name=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*}:approve:\x01*\x12\xdf\x01\n\x0e\x41\x64vanceRollout\x12-.google.cloud.deploy.v1.AdvanceRolloutRequest\x1a..google.cloud.deploy.v1.AdvanceRolloutResponse\"n\xda\x41\rname,phase_id\x82\xd3\xe4\x93\x02X\"S/v1/{name=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*}:advance:\x01*\x12\xd2\x01\n\rCancelRollout\x12,.google.cloud.deploy.v1.CancelRolloutRequest\x1a-.google.cloud.deploy.v1.CancelRolloutResponse\"d\xda\x41\x04name\x82\xd3\xe4\x93\x02W\"R/v1/{name=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*}:cancel:\x01*\x12\xc7\x01\n\x0cListRollouts\x12+.google.cloud.deploy.v1.ListRolloutsRequest\x1a,.google.cloud.deploy.v1.ListRolloutsResponse\"\\\xda\x41\x06parent\x82\xd3\xe4\x93\x02M\x12K/v1/{parent=projects/*/locations/*/deliveryPipelines/*/releases/*}/rollouts\x12\xb4\x01\n\nGetRollout\x12).google.cloud.deploy.v1.GetRolloutRequest\x1a\x1f.google.cloud.deploy.v1.Rollout\"Z\xda\x41\x04name\x82\xd3\xe4\x93\x02M\x12K/v1/{name=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*}\x12\xf6\x01\n\rCreateRollout\x12,.google.cloud.deploy.v1.CreateRolloutRequest\x1a\x1d.google.longrunning.Operation\"\x97\x01\xca\x41\x1c\n\x07Rollout\x12\x11OperationMetadata\xda\x41\x19parent,rollout,rollout_id\x82\xd3\xe4\x93\x02V\"K/v1/{parent=projects/*/locations/*/deliveryPipelines/*/releases/*}/rollouts:\x07rollout\x12\xdf\x01\n\tIgnoreJob\x12(.google.cloud.deploy.v1.IgnoreJobRequest\x1a).google.cloud.deploy.v1.IgnoreJobResponse\"}\xda\x41\x17rollout,phase_id,job_id\x82\xd3\xe4\x93\x02]\"X/v1/{rollout=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*}:ignoreJob:\x01*\x12\xdb\x01\n\x08RetryJob\x12\'.google.cloud.deploy.v1.RetryJobRequest\x1a(.google.cloud.deploy.v1.RetryJobResponse\"|\xda\x41\x17rollout,phase_id,job_id\x82\xd3\xe4\x93\x02\\\"W/v1/{rollout=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*}:retryJob:\x01*\x12\xce\x01\n\x0bListJobRuns\x12*.google.cloud.deploy.v1.ListJobRunsRequest\x1a+.google.cloud.deploy.v1.ListJobRunsResponse\"f\xda\x41\x06parent\x82\xd3\xe4\x93\x02W\x12U/v1/{parent=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*}/jobRuns\x12\xbb\x01\n\tGetJobRun\x12(.google.cloud.deploy.v1.GetJobRunRequest\x1a\x1e.google.cloud.deploy.v1.JobRun\"d\xda\x41\x04name\x82\xd3\xe4\x93\x02W\x12U/v1/{name=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*/jobRuns/*}\x12\xe5\x01\n\x0fTerminateJobRun\x12..google.cloud.deploy.v1.TerminateJobRunRequest\x1a/.google.cloud.deploy.v1.TerminateJobRunResponse\"q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x64\"_/v1/{name=projects/*/locations/*/deliveryPipelines/*/releases/*/rollouts/*/jobRuns/*}:terminate:\x01*\x12\x8e\x01\n\tGetConfig\x12(.google.cloud.deploy.v1.GetConfigRequest\x1a\x1e.google.cloud.deploy.v1.Config\"7\xda\x41\x04name\x82\xd3\xe4\x93\x02*\x12(/v1/{name=projects/*/locations/*/config}\x12\x80\x02\n\x10\x43reateAutomation\x12/.google.cloud.deploy.v1.CreateAutomationRequest\x1a\x1d.google.longrunning.Operation\"\x9b\x01\xca\x41\x1f\n\nAutomation\x12\x11OperationMetadata\xda\x41\x1fparent,automation,automation_id\x82\xd3\xe4\x93\x02Q\"C/v1/{parent=projects/*/locations/*/deliveryPipelines/*}/automations:\nautomation\x12\x82\x02\n\x10UpdateAutomation\x12/.google.cloud.deploy.v1.UpdateAutomationRequest\x1a\x1d.google.longrunning.Operation\"\x9d\x01\xca\x41\x1f\n\nAutomation\x12\x11OperationMetadata\xda\x41\x16\x61utomation,update_mask\x82\xd3\xe4\x93\x02\\2N/v1/{automation.name=projects/*/locations/*/deliveryPipelines/*/automations/*}:\nautomation\x12\xe3\x01\n\x10\x44\x65leteAutomation\x12/.google.cloud.deploy.v1.DeleteAutomationRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x45*C/v1/{name=projects/*/locations/*/deliveryPipelines/*/automations/*}\x12\xb5\x01\n\rGetAutomation\x12,.google.cloud.deploy.v1.GetAutomationRequest\x1a\".google.cloud.deploy.v1.Automation\"R\xda\x41\x04name\x82\xd3\xe4\x93\x02\x45\x12\x43/v1/{name=projects/*/locations/*/deliveryPipelines/*/automations/*}\x12\xc8\x01\n\x0fListAutomations\x12..google.cloud.deploy.v1.ListAutomationsRequest\x1a/.google.cloud.deploy.v1.ListAutomationsResponse\"T\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x45\x12\x43/v1/{parent=projects/*/locations/*/deliveryPipelines/*}/automations\x12\xc1\x01\n\x10GetAutomationRun\x12/.google.cloud.deploy.v1.GetAutomationRunRequest\x1a%.google.cloud.deploy.v1.AutomationRun\"U\xda\x41\x04name\x82\xd3\xe4\x93\x02H\x12\x46/v1/{name=projects/*/locations/*/deliveryPipelines/*/automationRuns/*}\x12\xd4\x01\n\x12ListAutomationRuns\x12\x31.google.cloud.deploy.v1.ListAutomationRunsRequest\x1a\x32.google.cloud.deploy.v1.ListAutomationRunsResponse\"W\xda\x41\x06parent\x82\xd3\xe4\x93\x02H\x12\x46/v1/{parent=projects/*/locations/*/deliveryPipelines/*}/automationRuns\x12\xdf\x01\n\x13\x43\x61ncelAutomationRun\x12\x32.google.cloud.deploy.v1.CancelAutomationRunRequest\x1a\x33.google.cloud.deploy.v1.CancelAutomationRunResponse\"_\xda\x41\x04name\x82\xd3\xe4\x93\x02R\"M/v1/{name=projects/*/locations/*/deliveryPipelines/*/automationRuns/*}:cancel:\x01*\x1aN\xca\x41\x1a\x63louddeploy.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xfe\x07\n\x1a\x63om.google.cloud.deploy.v1B\x10\x43loudDeployProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypb\xea\x41Y\n\x1f\x63loudbuild.googleapis.com/Build\x12\x36projects/{project}/locations/{location}/builds/{build}\xea\x41\x82\x01\n$cloudbuild.googleapis.com/Repository\x12Zprojects/{project}/locations/{location}/connections/{connection}/repositories/{repository}\xea\x41^\n container.googleapis.com/Cluster\x12:projects/{project}/locations/{location}/clusters/{cluster}\xea\x41\x66\n$clouddeploy.googleapis.com/Operation\x12>projects/{project}/locations/{location}/operations/{operation}\xea\x41i\n$cloudbuild.googleapis.com/WorkerPool\x12\x41projects/{project}/locations/{location}/workerPools/{worker_pool}\xea\x41\x64\n gkehub.googleapis.com/Membership\x12@projects/{project}/locations/{location}/memberships/{membership}\xea\x41X\n\x1arun.googleapis.com/Service\x12:projects/{project}/locations/{location}/services/{service}\xea\x41L\n\x16run.googleapis.com/Job\x12\x32projects/{project}/locations/{location}/jobs/{job}\xea\x41n\n\x1brun.googleapis.com/Revision\x12Oprojects/{project}/locations/{location}/services/{service}/revisions/{revision}b\x06proto3"
|
|
22
22
|
|
|
23
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
24
|
-
|
|
25
|
-
begin
|
|
26
|
-
pool.add_serialized_file(descriptor_data)
|
|
27
|
-
rescue TypeError
|
|
28
|
-
# Compatibility code: will be removed in the next major version.
|
|
29
|
-
require 'google/protobuf/descriptor_pb'
|
|
30
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
31
|
-
parsed.clear_dependency
|
|
32
|
-
serialized = parsed.class.encode(parsed)
|
|
33
|
-
file = pool.add_serialized_file(serialized)
|
|
34
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
35
|
-
imports = [
|
|
36
|
-
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
|
37
|
-
["google.protobuf.Duration", "google/protobuf/duration.proto"],
|
|
38
|
-
["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
|
|
39
|
-
["google.type.Date", "google/type/date.proto"],
|
|
40
|
-
["google.type.TimeOfDay", "google/type/timeofday.proto"],
|
|
41
|
-
]
|
|
42
|
-
imports.each do |type_name, expected_filename|
|
|
43
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
44
|
-
if import_file.name != expected_filename
|
|
45
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
46
|
-
end
|
|
47
|
-
end
|
|
48
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
49
|
-
warn "This will become an error in the next major version."
|
|
50
|
-
end
|
|
23
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
24
|
+
pool.add_serialized_file(descriptor_data)
|
|
51
25
|
|
|
52
26
|
module Google
|
|
53
27
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\nBgoogle/cloud/deploy/v1/customtargettype_notification_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"\x9c\x01\n!CustomTargetTypeNotificationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x1e\n\x16\x63ustom_target_type_uid\x18\x04 \x01(\t\x12\x1a\n\x12\x63ustom_target_type\x18\x02 \x01(\t\x12*\n\x04type\x18\x03 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeB|\n\x1a\x63om.google.cloud.deploy.v1B(CustomTargetTypeNotificationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\nBgoogle/cloud/deploy/v1/deliverypipeline_notification_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"\x91\x01\n!DeliveryPipelineNotificationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x04 \x01(\t\x12\x19\n\x11\x64\x65livery_pipeline\x18\x02 \x01(\t\x12*\n\x04type\x18\x03 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeB|\n\x1a\x63om.google.cloud.deploy.v1B(DeliveryPipelineNotificationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/cloud_deploy_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n<google/cloud/deploy/v1/deploypolicy_evaluation_payload.proto\x12\x16google.cloud.deploy.v1\x1a)google/cloud/deploy/v1/cloud_deploy.proto\"\xa5\x05\n\x1b\x44\x65ployPolicyEvaluationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x11\n\trule_type\x18\x02 \x01(\t\x12\x0c\n\x04rule\x18\x03 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x04 \x01(\t\x12\x19\n\x11\x64\x65livery_pipeline\x18\x05 \x01(\t\x12\x12\n\ntarget_uid\x18\x06 \x01(\t\x12\x0e\n\x06target\x18\x07 \x01(\t\x12=\n\x07invoker\x18\x08 \x01(\x0e\x32,.google.cloud.deploy.v1.DeployPolicy.Invoker\x12\x15\n\rdeploy_policy\x18\t \x01(\t\x12\x19\n\x11\x64\x65ploy_policy_uid\x18\n \x01(\t\x12\x0f\n\x07\x61llowed\x18\x0b \x01(\x08\x12R\n\x07verdict\x18\x0c \x01(\x0e\x32\x41.google.cloud.deploy.v1.DeployPolicyEvaluationEvent.PolicyVerdict\x12\\\n\toverrides\x18\r \x03(\x0e\x32I.google.cloud.deploy.v1.DeployPolicyEvaluationEvent.PolicyVerdictOverride\"\\\n\rPolicyVerdict\x12\x1e\n\x1aPOLICY_VERDICT_UNSPECIFIED\x10\x00\x12\x15\n\x11\x41LLOWED_BY_POLICY\x10\x01\x12\x14\n\x10\x44\x45NIED_BY_POLICY\x10\x02\"m\n\x15PolicyVerdictOverride\x12\'\n#POLICY_VERDICT_OVERRIDE_UNSPECIFIED\x10\x00\x12\x15\n\x11POLICY_OVERRIDDEN\x10\x01\x12\x14\n\x10POLICY_SUSPENDED\x10\x02\x42v\n\x1a\x63om.google.cloud.deploy.v1B\"DeployPolicyEvaluationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n>google/cloud/deploy/v1/deploypolicy_notification_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"\x8e\x01\n\x1d\x44\x65ployPolicyNotificationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x15\n\rdeploy_policy\x18\x02 \x01(\t\x12\x19\n\x11\x64\x65ploy_policy_uid\x18\x03 \x01(\t\x12*\n\x04type\x18\x04 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeBx\n\x1a\x63om.google.cloud.deploy.v1B$DeployPolicyNotificationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n8google/cloud/deploy/v1/jobrun_notification_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"\xdc\x01\n\x17JobRunNotificationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x0f\n\x07job_run\x18\x02 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x03 \x01(\t\x12\x13\n\x0brelease_uid\x18\x04 \x01(\t\x12\x0f\n\x07release\x18\x08 \x01(\t\x12\x13\n\x0brollout_uid\x18\x05 \x01(\t\x12\x0f\n\x07rollout\x18\t \x01(\t\x12\x11\n\ttarget_id\x18\x06 \x01(\t\x12*\n\x04type\x18\x07 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeBr\n\x1a\x63om.google.cloud.deploy.v1B\x1eJobRunNotificationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -7,29 +7,8 @@ require 'google/protobuf'
|
|
|
7
7
|
|
|
8
8
|
descriptor_data = "\n&google/cloud/deploy/v1/log_enums.proto\x12\x16google.cloud.deploy.v1*\x96\x02\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12$\n TYPE_PUBSUB_NOTIFICATION_FAILURE\x10\x01\x12\x1e\n\x1aTYPE_RESOURCE_STATE_CHANGE\x10\x03\x12\x18\n\x14TYPE_PROCESS_ABORTED\x10\x04\x12\x1d\n\x19TYPE_RESTRICTION_VIOLATED\x10\x05\x12\x19\n\x15TYPE_RESOURCE_DELETED\x10\x06\x12\x17\n\x13TYPE_ROLLOUT_UPDATE\x10\x07\x12!\n\x1dTYPE_DEPLOY_POLICY_EVALUATION\x10\x08\x12\"\n\x1aTYPE_RENDER_STATUES_CHANGE\x10\x02\x1a\x02\x08\x01\x42\x61\n\x1a\x63om.google.cloud.deploy.v1B\rLogEnumsProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
9
9
|
|
|
10
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
11
|
-
|
|
12
|
-
begin
|
|
13
|
-
pool.add_serialized_file(descriptor_data)
|
|
14
|
-
rescue TypeError
|
|
15
|
-
# Compatibility code: will be removed in the next major version.
|
|
16
|
-
require 'google/protobuf/descriptor_pb'
|
|
17
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
18
|
-
parsed.clear_dependency
|
|
19
|
-
serialized = parsed.class.encode(parsed)
|
|
20
|
-
file = pool.add_serialized_file(serialized)
|
|
21
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
22
|
-
imports = [
|
|
23
|
-
]
|
|
24
|
-
imports.each do |type_name, expected_filename|
|
|
25
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
26
|
-
if import_file.name != expected_filename
|
|
27
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
31
|
-
warn "This will become an error in the next major version."
|
|
32
|
-
end
|
|
10
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
11
|
+
pool.add_serialized_file(descriptor_data)
|
|
33
12
|
|
|
34
13
|
module Google
|
|
35
14
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n9google/cloud/deploy/v1/release_notification_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"\x93\x01\n\x18ReleaseNotificationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x04 \x01(\t\x12\x13\n\x0brelease_uid\x18\x05 \x01(\t\x12\x0f\n\x07release\x18\x02 \x01(\t\x12*\n\x04type\x18\x03 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeBs\n\x1a\x63om.google.cloud.deploy.v1B\x1fReleaseNotificationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -10,29 +10,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
10
10
|
|
|
11
11
|
descriptor_data = "\n3google/cloud/deploy/v1/release_render_payload.proto\x12\x16google.cloud.deploy.v1\x1a)google/cloud/deploy/v1/cloud_deploy.proto\x1a&google/cloud/deploy/v1/log_enums.proto\"\xc3\x01\n\x12ReleaseRenderEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x04 \x01(\t\x12\x0f\n\x07release\x18\x02 \x01(\t\x12*\n\x04type\x18\x05 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.Type\x12I\n\x14release_render_state\x18\x03 \x01(\x0e\x32+.google.cloud.deploy.v1.Release.RenderStateBm\n\x1a\x63om.google.cloud.deploy.v1B\x19ReleaseRenderPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
12
12
|
|
|
13
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
14
|
-
|
|
15
|
-
begin
|
|
16
|
-
pool.add_serialized_file(descriptor_data)
|
|
17
|
-
rescue TypeError
|
|
18
|
-
# Compatibility code: will be removed in the next major version.
|
|
19
|
-
require 'google/protobuf/descriptor_pb'
|
|
20
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
21
|
-
parsed.clear_dependency
|
|
22
|
-
serialized = parsed.class.encode(parsed)
|
|
23
|
-
file = pool.add_serialized_file(serialized)
|
|
24
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
25
|
-
imports = [
|
|
26
|
-
]
|
|
27
|
-
imports.each do |type_name, expected_filename|
|
|
28
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
29
|
-
if import_file.name != expected_filename
|
|
30
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
31
|
-
end
|
|
32
|
-
end
|
|
33
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
34
|
-
warn "This will become an error in the next major version."
|
|
35
|
-
end
|
|
13
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
14
|
+
pool.add_serialized_file(descriptor_data)
|
|
36
15
|
|
|
37
16
|
module Google
|
|
38
17
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n9google/cloud/deploy/v1/rollout_notification_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"\xcc\x01\n\x18RolloutNotificationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x02 \x01(\t\x12\x13\n\x0brelease_uid\x18\x03 \x01(\t\x12\x0f\n\x07release\x18\x07 \x01(\t\x12\x13\n\x0brollout_uid\x18\x08 \x01(\t\x12\x0f\n\x07rollout\x18\x04 \x01(\t\x12\x11\n\ttarget_id\x18\x06 \x01(\t\x12*\n\x04type\x18\x05 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeBs\n\x1a\x63om.google.cloud.deploy.v1B\x1fRolloutNotificationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n3google/cloud/deploy/v1/rollout_update_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"\x97\x04\n\x12RolloutUpdateEvent\x12\x0f\n\x07message\x18\x06 \x01(\t\x12\x14\n\x0cpipeline_uid\x18\x01 \x01(\t\x12\x13\n\x0brelease_uid\x18\x02 \x01(\t\x12\x0f\n\x07release\x18\x08 \x01(\t\x12\x0f\n\x07rollout\x18\x03 \x01(\t\x12\x11\n\ttarget_id\x18\x04 \x01(\t\x12*\n\x04type\x18\x07 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.Type\x12Y\n\x13rollout_update_type\x18\x05 \x01(\x0e\x32<.google.cloud.deploy.v1.RolloutUpdateEvent.RolloutUpdateType\"\x88\x02\n\x11RolloutUpdateType\x12#\n\x1fROLLOUT_UPDATE_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07PENDING\x10\x01\x12\x13\n\x0fPENDING_RELEASE\x10\x02\x12\x0f\n\x0bIN_PROGRESS\x10\x03\x12\x0e\n\nCANCELLING\x10\x04\x12\r\n\tCANCELLED\x10\x05\x12\n\n\x06HALTED\x10\x06\x12\r\n\tSUCCEEDED\x10\x07\x12\n\n\x06\x46\x41ILED\x10\x08\x12\x15\n\x11\x41PPROVAL_REQUIRED\x10\t\x12\x0c\n\x08\x41PPROVED\x10\n\x12\x0c\n\x08REJECTED\x10\x0b\x12\x14\n\x10\x41\x44VANCE_REQUIRED\x10\x0c\x12\x0c\n\x08\x41\x44VANCED\x10\rBm\n\x1a\x63om.google.cloud.deploy.v1B\x19RolloutUpdatePayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -9,29 +9,8 @@ require 'google/cloud/deploy/v1/log_enums_pb'
|
|
|
9
9
|
|
|
10
10
|
descriptor_data = "\n8google/cloud/deploy/v1/target_notification_payload.proto\x12\x16google.cloud.deploy.v1\x1a&google/cloud/deploy/v1/log_enums.proto\"f\n\x17TargetNotificationEvent\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x0e\n\x06target\x18\x02 \x01(\t\x12*\n\x04type\x18\x03 \x01(\x0e\x32\x1c.google.cloud.deploy.v1.TypeBr\n\x1a\x63om.google.cloud.deploy.v1B\x1eTargetNotificationPayloadProtoP\x01Z2cloud.google.com/go/deploy/apiv1/deploypb;deploypbb\x06proto3"
|
|
11
11
|
|
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
-
|
|
14
|
-
begin
|
|
15
|
-
pool.add_serialized_file(descriptor_data)
|
|
16
|
-
rescue TypeError
|
|
17
|
-
# Compatibility code: will be removed in the next major version.
|
|
18
|
-
require 'google/protobuf/descriptor_pb'
|
|
19
|
-
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
20
|
-
parsed.clear_dependency
|
|
21
|
-
serialized = parsed.class.encode(parsed)
|
|
22
|
-
file = pool.add_serialized_file(serialized)
|
|
23
|
-
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
24
|
-
imports = [
|
|
25
|
-
]
|
|
26
|
-
imports.each do |type_name, expected_filename|
|
|
27
|
-
import_file = pool.lookup(type_name).file_descriptor
|
|
28
|
-
if import_file.name != expected_filename
|
|
29
|
-
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
warn "Each proto file must use a consistent fully-qualified name."
|
|
33
|
-
warn "This will become an error in the next major version."
|
|
34
|
-
end
|
|
12
|
+
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
|
35
14
|
|
|
36
15
|
module Google
|
|
37
16
|
module Cloud
|
|
@@ -31,6 +31,8 @@ module Google
|
|
|
31
31
|
# @!attribute [rw] selective_gapic_generation
|
|
32
32
|
# @return [::Google::Api::SelectiveGapicGeneration]
|
|
33
33
|
# Configuration for which RPCs should be generated in the GAPIC client.
|
|
34
|
+
#
|
|
35
|
+
# Note: This field should not be used in most cases.
|
|
34
36
|
class CommonLanguageSettings
|
|
35
37
|
include ::Google::Protobuf::MessageExts
|
|
36
38
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -141,9 +143,10 @@ module Google
|
|
|
141
143
|
#
|
|
142
144
|
# Example of a YAML configuration::
|
|
143
145
|
#
|
|
144
|
-
#
|
|
145
|
-
#
|
|
146
|
-
#
|
|
146
|
+
# publishing:
|
|
147
|
+
# library_settings:
|
|
148
|
+
# java_settings:
|
|
149
|
+
# library_package: com.google.cloud.pubsub.v1
|
|
147
150
|
# @!attribute [rw] service_class_names
|
|
148
151
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
149
152
|
# Configure the Java class name to use instead of the service's for its
|
|
@@ -155,11 +158,11 @@ module Google
|
|
|
155
158
|
#
|
|
156
159
|
# Example of a YAML configuration::
|
|
157
160
|
#
|
|
158
|
-
#
|
|
159
|
-
#
|
|
160
|
-
#
|
|
161
|
-
#
|
|
162
|
-
#
|
|
161
|
+
# publishing:
|
|
162
|
+
# java_settings:
|
|
163
|
+
# service_class_names:
|
|
164
|
+
# - google.pubsub.v1.Publisher: TopicAdmin
|
|
165
|
+
# - google.pubsub.v1.Subscriber: SubscriptionAdmin
|
|
163
166
|
# @!attribute [rw] common
|
|
164
167
|
# @return [::Google::Api::CommonLanguageSettings]
|
|
165
168
|
# Some settings.
|
|
@@ -190,6 +193,20 @@ module Google
|
|
|
190
193
|
# @!attribute [rw] common
|
|
191
194
|
# @return [::Google::Api::CommonLanguageSettings]
|
|
192
195
|
# Some settings.
|
|
196
|
+
# @!attribute [rw] library_package
|
|
197
|
+
# @return [::String]
|
|
198
|
+
# The package name to use in Php. Clobbers the php_namespace option
|
|
199
|
+
# set in the protobuf. This should be used **only** by APIs
|
|
200
|
+
# who have already set the language_settings.php.package_name" field
|
|
201
|
+
# in gapic.yaml. API teams should use the protobuf php_namespace option
|
|
202
|
+
# where possible.
|
|
203
|
+
#
|
|
204
|
+
# Example of a YAML configuration::
|
|
205
|
+
#
|
|
206
|
+
# publishing:
|
|
207
|
+
# library_settings:
|
|
208
|
+
# php_settings:
|
|
209
|
+
# library_package: Google\Cloud\PubSub\V1
|
|
193
210
|
class PhpSettings
|
|
194
211
|
include ::Google::Protobuf::MessageExts
|
|
195
212
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -318,10 +335,12 @@ module Google
|
|
|
318
335
|
# service names and values are the name to be used for the service client
|
|
319
336
|
# and call options.
|
|
320
337
|
#
|
|
321
|
-
#
|
|
322
|
-
#
|
|
323
|
-
#
|
|
324
|
-
#
|
|
338
|
+
# Example:
|
|
339
|
+
#
|
|
340
|
+
# publishing:
|
|
341
|
+
# go_settings:
|
|
342
|
+
# renamed_services:
|
|
343
|
+
# Publisher: TopicAdmin
|
|
325
344
|
class GoSettings
|
|
326
345
|
include ::Google::Protobuf::MessageExts
|
|
327
346
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -344,10 +363,10 @@ module Google
|
|
|
344
363
|
#
|
|
345
364
|
# Example:
|
|
346
365
|
#
|
|
347
|
-
#
|
|
348
|
-
#
|
|
349
|
-
#
|
|
350
|
-
#
|
|
366
|
+
# publishing:
|
|
367
|
+
# method_settings:
|
|
368
|
+
# - selector: google.storage.control.v2.StorageControl.CreateFolder
|
|
369
|
+
# # method settings for CreateFolder...
|
|
351
370
|
# @!attribute [rw] long_running
|
|
352
371
|
# @return [::Google::Api::MethodSettings::LongRunning]
|
|
353
372
|
# Describes settings to use for long-running operations when generating
|
|
@@ -356,14 +375,14 @@ module Google
|
|
|
356
375
|
#
|
|
357
376
|
# Example of a YAML configuration::
|
|
358
377
|
#
|
|
359
|
-
#
|
|
360
|
-
#
|
|
361
|
-
#
|
|
362
|
-
#
|
|
363
|
-
#
|
|
364
|
-
#
|
|
365
|
-
#
|
|
366
|
-
#
|
|
378
|
+
# publishing:
|
|
379
|
+
# method_settings:
|
|
380
|
+
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
|
381
|
+
# long_running:
|
|
382
|
+
# initial_poll_delay: 60s # 1 minute
|
|
383
|
+
# poll_delay_multiplier: 1.5
|
|
384
|
+
# max_poll_delay: 360s # 6 minutes
|
|
385
|
+
# total_poll_timeout: 54000s # 90 minutes
|
|
367
386
|
# @!attribute [rw] auto_populated_fields
|
|
368
387
|
# @return [::Array<::String>]
|
|
369
388
|
# List of top-level fields of the request message, that should be
|
|
@@ -372,11 +391,24 @@ module Google
|
|
|
372
391
|
#
|
|
373
392
|
# Example of a YAML configuration:
|
|
374
393
|
#
|
|
375
|
-
#
|
|
376
|
-
#
|
|
377
|
-
#
|
|
378
|
-
#
|
|
379
|
-
#
|
|
394
|
+
# publishing:
|
|
395
|
+
# method_settings:
|
|
396
|
+
# - selector: google.example.v1.ExampleService.CreateExample
|
|
397
|
+
# auto_populated_fields:
|
|
398
|
+
# - request_id
|
|
399
|
+
# @!attribute [rw] batching
|
|
400
|
+
# @return [::Google::Api::BatchingConfigProto]
|
|
401
|
+
# Batching configuration for an API method in client libraries.
|
|
402
|
+
#
|
|
403
|
+
# Example of a YAML configuration:
|
|
404
|
+
#
|
|
405
|
+
# publishing:
|
|
406
|
+
# method_settings:
|
|
407
|
+
# - selector: google.example.v1.ExampleService.BatchCreateExample
|
|
408
|
+
# batching:
|
|
409
|
+
# element_count_threshold: 1000
|
|
410
|
+
# request_byte_threshold: 100000000
|
|
411
|
+
# delay_threshold_millis: 10
|
|
380
412
|
class MethodSettings
|
|
381
413
|
include ::Google::Protobuf::MessageExts
|
|
382
414
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -411,6 +443,8 @@ module Google
|
|
|
411
443
|
|
|
412
444
|
# This message is used to configure the generation of a subset of the RPCs in
|
|
413
445
|
# a service for client libraries.
|
|
446
|
+
#
|
|
447
|
+
# Note: This feature should not be used in most cases.
|
|
414
448
|
# @!attribute [rw] methods
|
|
415
449
|
# @return [::Array<::String>]
|
|
416
450
|
# An allowlist of the fully qualified names of RPCs that should be included
|
|
@@ -428,6 +462,77 @@ module Google
|
|
|
428
462
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
429
463
|
end
|
|
430
464
|
|
|
465
|
+
# `BatchingConfigProto` defines the batching configuration for an API method.
|
|
466
|
+
# @!attribute [rw] thresholds
|
|
467
|
+
# @return [::Google::Api::BatchingSettingsProto]
|
|
468
|
+
# The thresholds which trigger a batched request to be sent.
|
|
469
|
+
# @!attribute [rw] batch_descriptor
|
|
470
|
+
# @return [::Google::Api::BatchingDescriptorProto]
|
|
471
|
+
# The request and response fields used in batching.
|
|
472
|
+
class BatchingConfigProto
|
|
473
|
+
include ::Google::Protobuf::MessageExts
|
|
474
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
475
|
+
end
|
|
476
|
+
|
|
477
|
+
# `BatchingSettingsProto` specifies a set of batching thresholds, each of
|
|
478
|
+
# which acts as a trigger to send a batch of messages as a request. At least
|
|
479
|
+
# one threshold must be positive nonzero.
|
|
480
|
+
# @!attribute [rw] element_count_threshold
|
|
481
|
+
# @return [::Integer]
|
|
482
|
+
# The number of elements of a field collected into a batch which, if
|
|
483
|
+
# exceeded, causes the batch to be sent.
|
|
484
|
+
# @!attribute [rw] request_byte_threshold
|
|
485
|
+
# @return [::Integer]
|
|
486
|
+
# The aggregated size of the batched field which, if exceeded, causes the
|
|
487
|
+
# batch to be sent. This size is computed by aggregating the sizes of the
|
|
488
|
+
# request field to be batched, not of the entire request message.
|
|
489
|
+
# @!attribute [rw] delay_threshold
|
|
490
|
+
# @return [::Google::Protobuf::Duration]
|
|
491
|
+
# The duration after which a batch should be sent, starting from the addition
|
|
492
|
+
# of the first message to that batch.
|
|
493
|
+
# @!attribute [rw] element_count_limit
|
|
494
|
+
# @return [::Integer]
|
|
495
|
+
# The maximum number of elements collected in a batch that could be accepted
|
|
496
|
+
# by server.
|
|
497
|
+
# @!attribute [rw] request_byte_limit
|
|
498
|
+
# @return [::Integer]
|
|
499
|
+
# The maximum size of the request that could be accepted by server.
|
|
500
|
+
# @!attribute [rw] flow_control_element_limit
|
|
501
|
+
# @return [::Integer]
|
|
502
|
+
# The maximum number of elements allowed by flow control.
|
|
503
|
+
# @!attribute [rw] flow_control_byte_limit
|
|
504
|
+
# @return [::Integer]
|
|
505
|
+
# The maximum size of data allowed by flow control.
|
|
506
|
+
# @!attribute [rw] flow_control_limit_exceeded_behavior
|
|
507
|
+
# @return [::Google::Api::FlowControlLimitExceededBehaviorProto]
|
|
508
|
+
# The behavior to take when the flow control limit is exceeded.
|
|
509
|
+
class BatchingSettingsProto
|
|
510
|
+
include ::Google::Protobuf::MessageExts
|
|
511
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
512
|
+
end
|
|
513
|
+
|
|
514
|
+
# `BatchingDescriptorProto` specifies the fields of the request message to be
|
|
515
|
+
# used for batching, and, optionally, the fields of the response message to be
|
|
516
|
+
# used for demultiplexing.
|
|
517
|
+
# @!attribute [rw] batched_field
|
|
518
|
+
# @return [::String]
|
|
519
|
+
# The repeated field in the request message to be aggregated by batching.
|
|
520
|
+
# @!attribute [rw] discriminator_fields
|
|
521
|
+
# @return [::Array<::String>]
|
|
522
|
+
# A list of the fields in the request message. Two requests will be batched
|
|
523
|
+
# together only if the values of every field specified in
|
|
524
|
+
# `request_discriminator_fields` is equal between the two requests.
|
|
525
|
+
# @!attribute [rw] subresponse_field
|
|
526
|
+
# @return [::String]
|
|
527
|
+
# Optional. When present, indicates the field in the response message to be
|
|
528
|
+
# used to demultiplex the response into multiple response messages, in
|
|
529
|
+
# correspondence with the multiple request messages originally batched
|
|
530
|
+
# together.
|
|
531
|
+
class BatchingDescriptorProto
|
|
532
|
+
include ::Google::Protobuf::MessageExts
|
|
533
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
534
|
+
end
|
|
535
|
+
|
|
431
536
|
# The organization for which the client libraries are being published.
|
|
432
537
|
# Affects the url where generated docs are published, etc.
|
|
433
538
|
module ClientLibraryOrganization
|
|
@@ -469,5 +574,20 @@ module Google
|
|
|
469
574
|
# Publish the library to package managers like nuget.org and npmjs.com.
|
|
470
575
|
PACKAGE_MANAGER = 20
|
|
471
576
|
end
|
|
577
|
+
|
|
578
|
+
# The behavior to take when the flow control limit is exceeded.
|
|
579
|
+
module FlowControlLimitExceededBehaviorProto
|
|
580
|
+
# Default behavior, system-defined.
|
|
581
|
+
UNSET_BEHAVIOR = 0
|
|
582
|
+
|
|
583
|
+
# Stop operation, raise error.
|
|
584
|
+
THROW_EXCEPTION = 1
|
|
585
|
+
|
|
586
|
+
# Pause operation until limit clears.
|
|
587
|
+
BLOCK = 2
|
|
588
|
+
|
|
589
|
+
# Continue operation, disregard limit.
|
|
590
|
+
IGNORE = 3
|
|
591
|
+
end
|
|
472
592
|
end
|
|
473
593
|
end
|
|
@@ -24,14 +24,17 @@ module Google
|
|
|
24
24
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
25
25
|
# following:
|
|
26
26
|
#
|
|
27
|
-
# * A full date, with non-zero year, month, and day values
|
|
28
|
-
# * A month and day
|
|
29
|
-
# * A year on its own, with zero month and day
|
|
30
|
-
# * A year and month
|
|
31
|
-
#
|
|
27
|
+
# * A full date, with non-zero year, month, and day values.
|
|
28
|
+
# * A month and day, with a zero year (for example, an anniversary).
|
|
29
|
+
# * A year on its own, with a zero month and a zero day.
|
|
30
|
+
# * A year and month, with a zero day (for example, a credit card expiration
|
|
31
|
+
# date).
|
|
32
32
|
#
|
|
33
|
-
# Related types
|
|
34
|
-
#
|
|
33
|
+
# Related types:
|
|
34
|
+
#
|
|
35
|
+
# * {::Google::Type::TimeOfDay google.type.TimeOfDay}
|
|
36
|
+
# * [google.type.DateTime][google.type.DateTime]
|
|
37
|
+
# * {::Google::Protobuf::Timestamp google.protobuf.Timestamp}
|
|
35
38
|
# @!attribute [rw] year
|
|
36
39
|
# @return [::Integer]
|
|
37
40
|
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without
|
|
@@ -25,18 +25,22 @@ module Google
|
|
|
25
25
|
# `google.protobuf.Timestamp`.
|
|
26
26
|
# @!attribute [rw] hours
|
|
27
27
|
# @return [::Integer]
|
|
28
|
-
# Hours of day in 24 hour format.
|
|
29
|
-
#
|
|
28
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
|
29
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
|
30
|
+
# value "24:00:00" for scenarios like business closing time.
|
|
30
31
|
# @!attribute [rw] minutes
|
|
31
32
|
# @return [::Integer]
|
|
32
|
-
# Minutes of hour
|
|
33
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or
|
|
34
|
+
# equal to 59.
|
|
33
35
|
# @!attribute [rw] seconds
|
|
34
36
|
# @return [::Integer]
|
|
35
|
-
# Seconds of
|
|
36
|
-
# allow the value 60 if it allows
|
|
37
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must
|
|
38
|
+
# be less than or equal to 59. An API may allow the value 60 if it allows
|
|
39
|
+
# leap-seconds.
|
|
37
40
|
# @!attribute [rw] nanos
|
|
38
41
|
# @return [::Integer]
|
|
39
|
-
# Fractions of seconds in nanoseconds. Must be
|
|
42
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0
|
|
43
|
+
# and less than or equal to 999,999,999.
|
|
40
44
|
class TimeOfDay
|
|
41
45
|
include ::Google::Protobuf::MessageExts
|
|
42
46
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-deploy-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '1.
|
|
18
|
+
version: '1.3'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '1.
|
|
25
|
+
version: '1.3'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: google-cloud-errors
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -149,7 +149,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
149
149
|
requirements:
|
|
150
150
|
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: '3.
|
|
152
|
+
version: '3.2'
|
|
153
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
154
|
requirements:
|
|
155
155
|
- - ">="
|