Class: Google::Cloud::Deploy::V1::Rollout
- Inherits:
-
Object
- Object
- Google::Cloud::Deploy::V1::Rollout
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/deploy/v1/cloud_deploy.rb
Overview
A Rollout resource in the Cloud Deploy API.
A Rollout contains information around a specific deployment to a Target.
Defined Under Namespace
Modules: ApprovalState, FailureCause, State Classes: AnnotationsEntry, LabelsEntry
Instance Attribute Summary collapse
-
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
User annotations.
-
#approval_state ⇒ ::Google::Cloud::Deploy::V1::Rollout::ApprovalState
readonly
Output only.
-
#approve_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#controller_rollout ⇒ ::String
readonly
Output only.
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#deploy_end_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#deploy_failure_cause ⇒ ::Google::Cloud::Deploy::V1::Rollout::FailureCause
readonly
Output only.
-
#deploy_start_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#deploying_build ⇒ ::String
readonly
Output only.
-
#description ⇒ ::String
Description of the
Rolloutfor user purposes. -
#enqueue_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#etag ⇒ ::String
This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
-
#failure_reason ⇒ ::String
readonly
Output only.
-
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Labels are attributes that can be set and used by both the user and by Cloud Deploy.
-
#metadata ⇒ ::Google::Cloud::Deploy::V1::Metadata
readonly
Output only.
-
#name ⇒ ::String
Optional.
-
#phases ⇒ ::Array<::Google::Cloud::Deploy::V1::Phase>
readonly
Output only.
-
#rollback_of_rollout ⇒ ::String
readonly
Output only.
-
#rolled_back_by_rollouts ⇒ ::Array<::String>
readonly
Output only.
-
#state ⇒ ::Google::Cloud::Deploy::V1::Rollout::State
readonly
Output only.
-
#target_id ⇒ ::String
Required.
-
#uid ⇒ ::String
readonly
Output only.
Instance Attribute Details
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#approval_state ⇒ ::Google::Cloud::Deploy::V1::Rollout::ApprovalState (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#approve_time ⇒ ::Google::Protobuf::Timestamp (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#controller_rollout ⇒ ::String (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#deploy_end_time ⇒ ::Google::Protobuf::Timestamp (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#deploy_failure_cause ⇒ ::Google::Cloud::Deploy::V1::Rollout::FailureCause (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#deploy_start_time ⇒ ::Google::Protobuf::Timestamp (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#deploying_build ⇒ ::String (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#description ⇒ ::String
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#enqueue_time ⇒ ::Google::Protobuf::Timestamp (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#etag ⇒ ::String
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#failure_reason ⇒ ::String (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#metadata ⇒ ::Google::Cloud::Deploy::V1::Metadata (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#name ⇒ ::String
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#phases ⇒ ::Array<::Google::Cloud::Deploy::V1::Phase> (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#rollback_of_rollout ⇒ ::String (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#rolled_back_by_rollouts ⇒ ::Array<::String> (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#state ⇒ ::Google::Cloud::Deploy::V1::Rollout::State (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#target_id ⇒ ::String
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |
#uid ⇒ ::String (readonly)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2023 class Rollout include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Valid approval states of a `Rollout`. module ApprovalState # The `Rollout` has an unspecified approval state. APPROVAL_STATE_UNSPECIFIED = 0 # The `Rollout` requires approval. NEEDS_APPROVAL = 1 # The `Rollout` does not require approval. DOES_NOT_NEED_APPROVAL = 2 # The `Rollout` has been approved. APPROVED = 3 # The `Rollout` has been rejected. REJECTED = 4 end # Valid states of a `Rollout`. module State # The `Rollout` has an unspecified state. STATE_UNSPECIFIED = 0 # The `Rollout` has completed successfully. SUCCEEDED = 1 # The `Rollout` has failed. FAILED = 2 # The `Rollout` is being deployed. IN_PROGRESS = 3 # The `Rollout` needs approval. PENDING_APPROVAL = 4 # An approver rejected the `Rollout`. APPROVAL_REJECTED = 5 # The `Rollout` is waiting for an earlier Rollout(s) to complete on this # `Target`. PENDING = 6 # The `Rollout` is waiting for the `Release` to be fully rendered. PENDING_RELEASE = 7 # The `Rollout` is in the process of being cancelled. CANCELLING = 8 # The `Rollout` has been cancelled. CANCELLED = 9 # The `Rollout` is halted. HALTED = 10 end # Well-known rollout failures. module FailureCause # No reason for failure is specified. FAILURE_CAUSE_UNSPECIFIED = 0 # Cloud Build is not available, either because it is not enabled or because # Cloud Deploy has insufficient permissions. See [required # permission](https://cloud.google.com/deploy/docs/cloud-deploy-service-account#required_permissions). CLOUD_BUILD_UNAVAILABLE = 1 # The deploy operation did not complete successfully; check Cloud Build # logs. EXECUTION_FAILED = 2 # Deployment did not complete within the alloted time. DEADLINE_EXCEEDED = 3 # Release is in a failed state. RELEASE_FAILED = 4 # Release is abandoned. RELEASE_ABANDONED = 5 # No Skaffold verify configuration was found. VERIFICATION_CONFIG_NOT_FOUND = 6 # Cloud Build failed to fulfill Cloud Deploy's request. See failure_message # for additional details. CLOUD_BUILD_REQUEST_FAILED = 7 # A Rollout operation had a feature configured that is not supported. OPERATION_FEATURE_NOT_SUPPORTED = 8 end end |