google-cloud-deploy-v1 1.3.0 → 1.5.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 +30 -20
- data/lib/google/cloud/deploy/v1/cloud_deploy/client.rb +55 -46
- data/lib/google/cloud/deploy/v1/cloud_deploy/operations.rb +12 -15
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/client.rb +46 -46
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/operations.rb +43 -38
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/service_stub.rb +374 -272
- data/lib/google/cloud/deploy/v1/cloud_deploy_pb.rb +10 -1
- data/lib/google/cloud/deploy/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +39 -0
- data/proto_docs/google/cloud/deploy/v1/cloud_deploy.rb +226 -9
- data/proto_docs/google/longrunning/operations.rb +19 -14
- metadata +5 -5
@@ -340,9 +340,35 @@ module Google
|
|
340
340
|
# @return [::String]
|
341
341
|
# Optional. The label to use when selecting Pods for the Deployment and
|
342
342
|
# Service resources. This label must already be present in both resources.
|
343
|
+
# @!attribute [rw] route_destinations
|
344
|
+
# @return [::Google::Cloud::Deploy::V1::KubernetesConfig::GatewayServiceMesh::RouteDestinations]
|
345
|
+
# Optional. Route destinations allow configuring the Gateway API HTTPRoute
|
346
|
+
# to be deployed to additional clusters. This option is available for
|
347
|
+
# multi-cluster service mesh set ups that require the route to exist in the
|
348
|
+
# clusters that call the service. If unspecified, the HTTPRoute will only
|
349
|
+
# be deployed to the Target cluster.
|
343
350
|
class GatewayServiceMesh
|
344
351
|
include ::Google::Protobuf::MessageExts
|
345
352
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
353
|
+
|
354
|
+
# Information about route destinations for the Gateway API service mesh.
|
355
|
+
# @!attribute [rw] destination_ids
|
356
|
+
# @return [::Array<::String>]
|
357
|
+
# Required. The clusters where the Gateway API HTTPRoute resource will be
|
358
|
+
# deployed to. Valid entries include the associated entities IDs
|
359
|
+
# configured in the Target resource and "@self" to include the Target
|
360
|
+
# cluster.
|
361
|
+
# @!attribute [rw] propagate_service
|
362
|
+
# @return [::Boolean]
|
363
|
+
# Optional. Whether to propagate the Kubernetes Service to the route
|
364
|
+
# destination clusters. The Service will always be deployed to the Target
|
365
|
+
# cluster even if the HTTPRoute is not. This option may be used to
|
366
|
+
# facilitiate successful DNS lookup in the route destination clusters.
|
367
|
+
# Can only be set to true if destinations are specified.
|
368
|
+
class RouteDestinations
|
369
|
+
include ::Google::Protobuf::MessageExts
|
370
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
371
|
+
end
|
346
372
|
end
|
347
373
|
|
348
374
|
# Information about the Kubernetes Service networking configuration.
|
@@ -763,6 +789,16 @@ module Google
|
|
763
789
|
# @!attribute [rw] custom_target
|
764
790
|
# @return [::Google::Cloud::Deploy::V1::CustomTarget]
|
765
791
|
# Optional. Information specifying a Custom Target.
|
792
|
+
# @!attribute [rw] associated_entities
|
793
|
+
# @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Deploy::V1::AssociatedEntities}]
|
794
|
+
# Optional. Map of entity IDs to their associated entities. Associated
|
795
|
+
# entities allows specifying places other than the deployment target for
|
796
|
+
# specific features. For example, the Gateway API canary can be configured to
|
797
|
+
# deploy the HTTPRoute to a different cluster(s) than the deployment cluster
|
798
|
+
# using associated entities. An entity ID must consist of lower-case letters,
|
799
|
+
# numbers, and hyphens, start with a letter and end with a letter or a
|
800
|
+
# number, and have a max length of 63 characters. In other words, it must
|
801
|
+
# match the following regex: `^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$`.
|
766
802
|
# @!attribute [rw] etag
|
767
803
|
# @return [::String]
|
768
804
|
# Optional. This checksum is computed by the server based on the value of
|
@@ -802,6 +838,15 @@ module Google
|
|
802
838
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
803
839
|
end
|
804
840
|
|
841
|
+
# @!attribute [rw] key
|
842
|
+
# @return [::String]
|
843
|
+
# @!attribute [rw] value
|
844
|
+
# @return [::Google::Cloud::Deploy::V1::AssociatedEntities]
|
845
|
+
class AssociatedEntitiesEntry
|
846
|
+
include ::Google::Protobuf::MessageExts
|
847
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
848
|
+
end
|
849
|
+
|
805
850
|
# @!attribute [rw] key
|
806
851
|
# @return [::String]
|
807
852
|
# @!attribute [rw] value
|
@@ -927,11 +972,16 @@ module Google
|
|
927
972
|
#
|
928
973
|
# Only specify this option when `cluster` is a [private GKE
|
929
974
|
# cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).
|
975
|
+
# Note that `internal_ip` and `dns_endpoint` cannot both be set to true.
|
930
976
|
# @!attribute [rw] proxy_url
|
931
977
|
# @return [::String]
|
932
978
|
# Optional. If set, used to configure a
|
933
979
|
# [proxy](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#proxy)
|
934
980
|
# to the Kubernetes server.
|
981
|
+
# @!attribute [rw] dns_endpoint
|
982
|
+
# @return [::Boolean]
|
983
|
+
# Optional. If set, the cluster will be accessed using the DNS endpoint. Note
|
984
|
+
# that `dns_endpoint` and `internal_ip` cannot both be set to true.
|
935
985
|
class GkeCluster
|
936
986
|
include ::Google::Protobuf::MessageExts
|
937
987
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -977,6 +1027,18 @@ module Google
|
|
977
1027
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
978
1028
|
end
|
979
1029
|
|
1030
|
+
# Information about entities associated with a `Target`.
|
1031
|
+
# @!attribute [rw] gke_clusters
|
1032
|
+
# @return [::Array<::Google::Cloud::Deploy::V1::GkeCluster>]
|
1033
|
+
# Optional. Information specifying GKE clusters as associated entities.
|
1034
|
+
# @!attribute [rw] anthos_clusters
|
1035
|
+
# @return [::Array<::Google::Cloud::Deploy::V1::AnthosCluster>]
|
1036
|
+
# Optional. Information specifying Anthos clusters as associated entities.
|
1037
|
+
class AssociatedEntities
|
1038
|
+
include ::Google::Protobuf::MessageExts
|
1039
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1040
|
+
end
|
1041
|
+
|
980
1042
|
# The request object for `ListTargets`.
|
981
1043
|
# @!attribute [rw] parent
|
982
1044
|
# @return [::String]
|
@@ -1876,9 +1938,9 @@ module Google
|
|
1876
1938
|
# client has an up-to-date value before proceeding.
|
1877
1939
|
# @!attribute [rw] skaffold_version
|
1878
1940
|
# @return [::String]
|
1879
|
-
# The Skaffold version to use when operating on this release, such
|
1880
|
-
# "1.20.0". Not all versions are valid; Cloud Deploy supports a specific
|
1881
|
-
# of versions.
|
1941
|
+
# Optional. The Skaffold version to use when operating on this release, such
|
1942
|
+
# as "1.20.0". Not all versions are valid; Cloud Deploy supports a specific
|
1943
|
+
# set of versions.
|
1882
1944
|
#
|
1883
1945
|
# If unset, the most recent supported Skaffold version will be used.
|
1884
1946
|
# @!attribute [r] target_artifacts
|
@@ -2539,6 +2601,9 @@ module Google
|
|
2539
2601
|
# @!attribute [r] rolled_back_by_rollouts
|
2540
2602
|
# @return [::Array<::String>]
|
2541
2603
|
# Output only. Names of `Rollouts` that rolled back this `Rollout`.
|
2604
|
+
# @!attribute [r] active_repair_automation_run
|
2605
|
+
# @return [::String]
|
2606
|
+
# Output only. The AutomationRun actively repairing the rollout.
|
2542
2607
|
class Rollout
|
2543
2608
|
include ::Google::Protobuf::MessageExts
|
2544
2609
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -3063,9 +3128,10 @@ module Google
|
|
3063
3128
|
# @return [::Boolean]
|
3064
3129
|
# Output only. Identifies whether the user has requested cancellation
|
3065
3130
|
# of the operation. Operations that have successfully been cancelled
|
3066
|
-
# have
|
3067
|
-
# {::Google::
|
3068
|
-
#
|
3131
|
+
# have
|
3132
|
+
# {::Google::Longrunning::Operation#error google.longrunning.Operation.error}
|
3133
|
+
# value with a {::Google::Rpc::Status#code google.rpc.Status.code} of 1,
|
3134
|
+
# corresponding to `Code.CANCELLED`.
|
3069
3135
|
# @!attribute [r] api_version
|
3070
3136
|
# @return [::String]
|
3071
3137
|
# Output only. API version used to start the operation.
|
@@ -3741,11 +3807,51 @@ module Google
|
|
3741
3807
|
# @return [::Google::Cloud::Deploy::V1::RepairRolloutRule]
|
3742
3808
|
# Optional. The `RepairRolloutRule` will automatically repair a failed
|
3743
3809
|
# rollout.
|
3810
|
+
# @!attribute [rw] timed_promote_release_rule
|
3811
|
+
# @return [::Google::Cloud::Deploy::V1::TimedPromoteReleaseRule]
|
3812
|
+
# Optional. The `TimedPromoteReleaseRule` will automatically promote a
|
3813
|
+
# release from the current target(s) to the specified target(s) on a
|
3814
|
+
# configured schedule.
|
3744
3815
|
class AutomationRule
|
3745
3816
|
include ::Google::Protobuf::MessageExts
|
3746
3817
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3747
3818
|
end
|
3748
3819
|
|
3820
|
+
# The `TimedPromoteReleaseRule` will automatically promote a release from the
|
3821
|
+
# current target(s) to the specified target(s) on a configured schedule.
|
3822
|
+
# @!attribute [rw] id
|
3823
|
+
# @return [::String]
|
3824
|
+
# Required. ID of the rule. This ID must be unique in the `Automation`
|
3825
|
+
# resource to which this rule belongs. The format is
|
3826
|
+
# `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.
|
3827
|
+
# @!attribute [rw] destination_target_id
|
3828
|
+
# @return [::String]
|
3829
|
+
# Optional. The ID of the stage in the pipeline to which this `Release` is
|
3830
|
+
# deploying. If unspecified, default it to the next stage in the promotion
|
3831
|
+
# flow. The value of this field could be one of the following:
|
3832
|
+
#
|
3833
|
+
# * The last segment of a target name
|
3834
|
+
# * "@next", the next target in the promotion sequence
|
3835
|
+
# @!attribute [rw] schedule
|
3836
|
+
# @return [::String]
|
3837
|
+
# Required. Schedule in crontab format. e.g. "0 9 * * 1" for every Monday at
|
3838
|
+
# 9am.
|
3839
|
+
# @!attribute [rw] time_zone
|
3840
|
+
# @return [::String]
|
3841
|
+
# Required. The time zone in IANA format [IANA Time Zone
|
3842
|
+
# Database](https://www.iana.org/time-zones) (e.g. America/New_York).
|
3843
|
+
# @!attribute [r] condition
|
3844
|
+
# @return [::Google::Cloud::Deploy::V1::AutomationRuleCondition]
|
3845
|
+
# Output only. Information around the state of the Automation rule.
|
3846
|
+
# @!attribute [rw] destination_phase
|
3847
|
+
# @return [::String]
|
3848
|
+
# Optional. The starting phase of the rollout created by this rule. Default
|
3849
|
+
# to the first phase.
|
3850
|
+
class TimedPromoteReleaseRule
|
3851
|
+
include ::Google::Protobuf::MessageExts
|
3852
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3853
|
+
end
|
3854
|
+
|
3749
3855
|
# The `PromoteRelease` rule will automatically promote a release from the
|
3750
3856
|
# current target to a specified target.
|
3751
3857
|
# @!attribute [rw] id
|
@@ -3809,6 +3915,14 @@ module Google
|
|
3809
3915
|
# Required. ID of the rule. This id must be unique in the `Automation`
|
3810
3916
|
# resource to which this rule belongs. The format is
|
3811
3917
|
# `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.
|
3918
|
+
# @!attribute [rw] phases
|
3919
|
+
# @return [::Array<::String>]
|
3920
|
+
# Optional. Phases within which jobs are subject to automatic repair actions
|
3921
|
+
# on failure. Proceeds only after phase name matched any one in the list, or
|
3922
|
+
# for all phases if unspecified. This value must consist of lower-case
|
3923
|
+
# letters, numbers, and hyphens, start with a letter and end with a letter or
|
3924
|
+
# a number, and have a max length of 63 characters. In other words, it must
|
3925
|
+
# match the following regex: `^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$`.
|
3812
3926
|
# @!attribute [rw] jobs
|
3813
3927
|
# @return [::Array<::String>]
|
3814
3928
|
# Optional. Jobs to repair. Proceeds only after job name matched any one in
|
@@ -3821,21 +3935,97 @@ module Google
|
|
3821
3935
|
# @!attribute [r] condition
|
3822
3936
|
# @return [::Google::Cloud::Deploy::V1::AutomationRuleCondition]
|
3823
3937
|
# Output only. Information around the state of the 'Automation' rule.
|
3938
|
+
# @!attribute [rw] repair_phases
|
3939
|
+
# @return [::Array<::Google::Cloud::Deploy::V1::RepairPhaseConfig>]
|
3940
|
+
# Required. Defines the types of automatic repair phases for failed jobs.
|
3824
3941
|
class RepairRolloutRule
|
3825
3942
|
include ::Google::Protobuf::MessageExts
|
3826
3943
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3827
3944
|
end
|
3828
3945
|
|
3946
|
+
# Configuration of the repair phase.
|
3947
|
+
# @!attribute [rw] retry
|
3948
|
+
# @return [::Google::Cloud::Deploy::V1::Retry]
|
3949
|
+
# Optional. Retries a failed job.
|
3950
|
+
# @!attribute [rw] rollback
|
3951
|
+
# @return [::Google::Cloud::Deploy::V1::Rollback]
|
3952
|
+
# Optional. Rolls back a `Rollout`.
|
3953
|
+
class RepairPhaseConfig
|
3954
|
+
include ::Google::Protobuf::MessageExts
|
3955
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3956
|
+
end
|
3957
|
+
|
3958
|
+
# Retries the failed job.
|
3959
|
+
# @!attribute [rw] attempts
|
3960
|
+
# @return [::Integer]
|
3961
|
+
# Required. Total number of retries. Retry is skipped if set to 0; The
|
3962
|
+
# minimum value is 1, and the maximum value is 10.
|
3963
|
+
# @!attribute [rw] wait
|
3964
|
+
# @return [::Google::Protobuf::Duration]
|
3965
|
+
# Optional. How long to wait for the first retry. Default is 0, and the
|
3966
|
+
# maximum value is 14d.
|
3967
|
+
# @!attribute [rw] backoff_mode
|
3968
|
+
# @return [::Google::Cloud::Deploy::V1::BackoffMode]
|
3969
|
+
# Optional. The pattern of how wait time will be increased. Default is
|
3970
|
+
# linear. Backoff mode will be ignored if `wait` is 0.
|
3971
|
+
class Retry
|
3972
|
+
include ::Google::Protobuf::MessageExts
|
3973
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3974
|
+
end
|
3975
|
+
|
3976
|
+
# Rolls back a `Rollout`.
|
3977
|
+
# @!attribute [rw] destination_phase
|
3978
|
+
# @return [::String]
|
3979
|
+
# Optional. The starting phase ID for the `Rollout`. If unspecified, the
|
3980
|
+
# `Rollout` will start in the stable phase.
|
3981
|
+
# @!attribute [rw] disable_rollback_if_rollout_pending
|
3982
|
+
# @return [::Boolean]
|
3983
|
+
# Optional. If pending rollout exists on the target, the rollback operation
|
3984
|
+
# will be aborted.
|
3985
|
+
class Rollback
|
3986
|
+
include ::Google::Protobuf::MessageExts
|
3987
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3988
|
+
end
|
3989
|
+
|
3829
3990
|
# `AutomationRuleCondition` contains conditions relevant to an
|
3830
3991
|
# `Automation` rule.
|
3831
3992
|
# @!attribute [rw] targets_present_condition
|
3832
3993
|
# @return [::Google::Cloud::Deploy::V1::TargetsPresentCondition]
|
3833
3994
|
# Optional. Details around targets enumerated in the rule.
|
3995
|
+
# @!attribute [rw] timed_promote_release_condition
|
3996
|
+
# @return [::Google::Cloud::Deploy::V1::TimedPromoteReleaseCondition]
|
3997
|
+
# Optional. TimedPromoteReleaseCondition contains rule conditions specific
|
3998
|
+
# to a an Automation with a timed promote release rule defined.
|
3834
3999
|
class AutomationRuleCondition
|
3835
4000
|
include ::Google::Protobuf::MessageExts
|
3836
4001
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3837
4002
|
end
|
3838
4003
|
|
4004
|
+
# `TimedPromoteReleaseCondition` contains conditions specific to an Automation
|
4005
|
+
# with a Timed Promote Release rule defined.
|
4006
|
+
# @!attribute [r] next_promotion_time
|
4007
|
+
# @return [::Google::Protobuf::Timestamp]
|
4008
|
+
# Output only. When the next scheduled promotion(s) will occur.
|
4009
|
+
# @!attribute [r] targets_list
|
4010
|
+
# @return [::Array<::Google::Cloud::Deploy::V1::TimedPromoteReleaseCondition::Targets>]
|
4011
|
+
# Output only. A list of targets involved in the upcoming timed promotion(s).
|
4012
|
+
class TimedPromoteReleaseCondition
|
4013
|
+
include ::Google::Protobuf::MessageExts
|
4014
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4015
|
+
|
4016
|
+
# The targets involved in a single timed promotion.
|
4017
|
+
# @!attribute [rw] source_target_id
|
4018
|
+
# @return [::String]
|
4019
|
+
# Optional. The source target ID.
|
4020
|
+
# @!attribute [rw] destination_target_id
|
4021
|
+
# @return [::String]
|
4022
|
+
# Optional. The destination target ID.
|
4023
|
+
class Targets
|
4024
|
+
include ::Google::Protobuf::MessageExts
|
4025
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4026
|
+
end
|
4027
|
+
end
|
4028
|
+
|
3839
4029
|
# The request object for `CreateAutomation`.
|
3840
4030
|
# @!attribute [rw] parent
|
3841
4031
|
# @return [::String]
|
@@ -4037,9 +4227,9 @@ module Google
|
|
4037
4227
|
# time.
|
4038
4228
|
# @!attribute [r] target_id
|
4039
4229
|
# @return [::String]
|
4040
|
-
# Output only. The ID of the target that
|
4041
|
-
#
|
4042
|
-
#
|
4230
|
+
# Output only. The ID of the source target that initiates the
|
4231
|
+
# `AutomationRun`. The value of this field is the last segment of a target
|
4232
|
+
# name.
|
4043
4233
|
# @!attribute [r] state
|
4044
4234
|
# @return [::Google::Cloud::Deploy::V1::AutomationRun::State]
|
4045
4235
|
# Output only. Current state of the `AutomationRun`.
|
@@ -4070,6 +4260,10 @@ module Google
|
|
4070
4260
|
# @!attribute [r] repair_rollout_operation
|
4071
4261
|
# @return [::Google::Cloud::Deploy::V1::RepairRolloutOperation]
|
4072
4262
|
# Output only. Repairs a failed 'Rollout'.
|
4263
|
+
# @!attribute [r] timed_promote_release_operation
|
4264
|
+
# @return [::Google::Cloud::Deploy::V1::TimedPromoteReleaseOperation]
|
4265
|
+
# Output only. Promotes a release to a specified 'Target' as defined in a
|
4266
|
+
# Timed Promote Release rule.
|
4073
4267
|
# @!attribute [r] wait_until_time
|
4074
4268
|
# @return [::Google::Protobuf::Timestamp]
|
4075
4269
|
# Output only. Earliest time the `AutomationRun` will attempt to resume.
|
@@ -4145,6 +4339,9 @@ module Google
|
|
4145
4339
|
# @!attribute [r] rollout
|
4146
4340
|
# @return [::String]
|
4147
4341
|
# Output only. The name of the rollout that initiates the `AutomationRun`.
|
4342
|
+
# @!attribute [r] current_repair_phase_index
|
4343
|
+
# @return [::Integer]
|
4344
|
+
# Output only. The index of the current repair action in the repair sequence.
|
4148
4345
|
# @!attribute [r] repair_phases
|
4149
4346
|
# @return [::Array<::Google::Cloud::Deploy::V1::RepairPhase>]
|
4150
4347
|
# Output only. Records of the repair attempts. Each repair phase may have
|
@@ -4161,6 +4358,23 @@ module Google
|
|
4161
4358
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4162
4359
|
end
|
4163
4360
|
|
4361
|
+
# Contains the information of an automated timed promote-release operation.
|
4362
|
+
# @!attribute [r] target_id
|
4363
|
+
# @return [::String]
|
4364
|
+
# Output only. The ID of the target that represents the promotion stage to
|
4365
|
+
# which the release will be promoted. The value of this field is the last
|
4366
|
+
# segment of a target name.
|
4367
|
+
# @!attribute [r] release
|
4368
|
+
# @return [::String]
|
4369
|
+
# Output only. The name of the release to be promoted.
|
4370
|
+
# @!attribute [r] phase
|
4371
|
+
# @return [::String]
|
4372
|
+
# Output only. The starting phase of the rollout created by this operation.
|
4373
|
+
class TimedPromoteReleaseOperation
|
4374
|
+
include ::Google::Protobuf::MessageExts
|
4375
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4376
|
+
end
|
4377
|
+
|
4164
4378
|
# RepairPhase tracks the repair attempts that have been made for
|
4165
4379
|
# each `RepairPhaseConfig` specified in the `Automation` resource.
|
4166
4380
|
# @!attribute [r] retry
|
@@ -4222,6 +4436,9 @@ module Google
|
|
4222
4436
|
# @!attribute [r] state_desc
|
4223
4437
|
# @return [::String]
|
4224
4438
|
# Output only. Description of the state of the Rollback.
|
4439
|
+
# @!attribute [r] disable_rollback_if_rollout_pending
|
4440
|
+
# @return [::Boolean]
|
4441
|
+
# Output only. If active rollout exists on the target, abort this rollback.
|
4225
4442
|
class RollbackAttempt
|
4226
4443
|
include ::Google::Protobuf::MessageExts
|
4227
4444
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -42,7 +42,7 @@ module Google
|
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
43
|
# @!attribute [rw] response
|
44
44
|
# @return [::Google::Protobuf::Any]
|
45
|
-
# The normal response of the operation
|
45
|
+
# The normal, successful response of the operation. If the original
|
46
46
|
# method returns no data on success, such as `Delete`, the response is
|
47
47
|
# `google.protobuf.Empty`. If the original method is standard
|
48
48
|
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
@@ -55,7 +55,8 @@ module Google
|
|
55
55
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
56
|
end
|
57
57
|
|
58
|
-
# The request message for
|
58
|
+
# The request message for
|
59
|
+
# Operations.GetOperation.
|
59
60
|
# @!attribute [rw] name
|
60
61
|
# @return [::String]
|
61
62
|
# The name of the operation resource.
|
@@ -64,7 +65,8 @@ module Google
|
|
64
65
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
66
|
end
|
66
67
|
|
67
|
-
# The request message for
|
68
|
+
# The request message for
|
69
|
+
# Operations.ListOperations.
|
68
70
|
# @!attribute [rw] name
|
69
71
|
# @return [::String]
|
70
72
|
# The name of the operation's parent resource.
|
@@ -82,7 +84,8 @@ module Google
|
|
82
84
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
83
85
|
end
|
84
86
|
|
85
|
-
# The response message for
|
87
|
+
# The response message for
|
88
|
+
# Operations.ListOperations.
|
86
89
|
# @!attribute [rw] operations
|
87
90
|
# @return [::Array<::Google::Longrunning::Operation>]
|
88
91
|
# A list of operations that matches the specified filter in the request.
|
@@ -94,7 +97,8 @@ module Google
|
|
94
97
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
98
|
end
|
96
99
|
|
97
|
-
# The request message for
|
100
|
+
# The request message for
|
101
|
+
# Operations.CancelOperation.
|
98
102
|
# @!attribute [rw] name
|
99
103
|
# @return [::String]
|
100
104
|
# The name of the operation resource to be cancelled.
|
@@ -103,7 +107,8 @@ module Google
|
|
103
107
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
104
108
|
end
|
105
109
|
|
106
|
-
# The request message for
|
110
|
+
# The request message for
|
111
|
+
# Operations.DeleteOperation.
|
107
112
|
# @!attribute [rw] name
|
108
113
|
# @return [::String]
|
109
114
|
# The name of the operation resource to be deleted.
|
@@ -112,7 +117,8 @@ module Google
|
|
112
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
118
|
end
|
114
119
|
|
115
|
-
# The request message for
|
120
|
+
# The request message for
|
121
|
+
# Operations.WaitOperation.
|
116
122
|
# @!attribute [rw] name
|
117
123
|
# @return [::String]
|
118
124
|
# The name of the operation resource to wait on.
|
@@ -130,13 +136,12 @@ module Google
|
|
130
136
|
#
|
131
137
|
# Example:
|
132
138
|
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# }
|
139
|
-
# }
|
139
|
+
# rpc Export(ExportRequest) returns (google.longrunning.Operation) {
|
140
|
+
# option (google.longrunning.operation_info) = {
|
141
|
+
# response_type: "ExportResponse"
|
142
|
+
# metadata_type: "ExportMetadata"
|
143
|
+
# };
|
144
|
+
# }
|
140
145
|
# @!attribute [rw] response_type
|
141
146
|
# @return [::String]
|
142
147
|
# Required. The message name of the primary return type for this
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-deploy-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.24.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.24.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -176,7 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
176
176
|
- !ruby/object:Gem::Version
|
177
177
|
version: '0'
|
178
178
|
requirements: []
|
179
|
-
rubygems_version: 3.5.
|
179
|
+
rubygems_version: 3.5.23
|
180
180
|
signing_key:
|
181
181
|
specification_version: 4
|
182
182
|
summary: API Client library for the Google Cloud Deploy V1 API
|