Class: Google::Cloud::Deploy::V1::Rollout

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#annotations::Google::Protobuf::Map{::String => ::String}

Returns User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

Returns:

  • (::Google::Protobuf::Map{::String => ::String})

    User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.



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)

Returns Output only. Approval state of the Rollout.

Returns:



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)

Returns Output only. Time at which the Rollout was approved.

Returns:



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)

Returns Output only. Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/[a-z][a-z0-9\-]{0,62}.

Returns:

  • (::String)

    Output only. Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/[a-z][a-z0-9\-]{0,62}.



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)

Returns Output only. Time at which the Rollout was created.

Returns:



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)

Returns Output only. Time at which the Rollout finished deploying.

Returns:



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)

Returns Output only. The reason this rollout failed. This will always be unspecified while the rollout is in progress.

Returns:



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)

Returns Output only. Time at which the Rollout started deploying.

Returns:



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)

Returns Output only. The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/{project}/locations/{location}/builds/{build}.

Returns:

  • (::String)

    Output only. The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/{project}/locations/{location}/builds/{build}.



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

Returns Description of the Rollout for user purposes. Max length is 255 characters.

Returns:

  • (::String)

    Description of the Rollout for user purposes. Max length is 255 characters.



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)

Returns Output only. Time at which the Rollout was enqueued.

Returns:



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

Returns 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.

Returns:

  • (::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.



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)

Returns Output only. Additional information about the rollout failure, if available.

Returns:

  • (::String)

    Output only. Additional information about the rollout failure, if available.



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}

Returns Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints:

  • Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes.
  • All characters must use UTF-8 encoding, and international characters are allowed.
  • Keys must start with a lowercase letter or international character.
  • Each resource is limited to a maximum of 64 labels.

Both keys and values are additionally constrained to be <= 128 bytes.

Returns:

  • (::Google::Protobuf::Map{::String => ::String})

    Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints:

    • Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes.
    • All characters must use UTF-8 encoding, and international characters are allowed.
    • Keys must start with a lowercase letter or international character.
    • Each resource is limited to a maximum of 64 labels.

    Both keys and values are additionally constrained to be <= 128 bytes.



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)

Returns Output only. Metadata contains information about the rollout.

Returns:



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

Returns Optional. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/[a-z][a-z0-9\-]{0,62}.

Returns:

  • (::String)

    Optional. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/[a-z][a-z0-9\-]{0,62}.



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)

Returns Output only. The phases that represent the workflows of this Rollout.

Returns:



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)

Returns Output only. Name of the Rollout that is rolled back by this Rollout. Empty if this Rollout wasn't created as a rollback.

Returns:

  • (::String)

    Output only. Name of the Rollout that is rolled back by this Rollout. Empty if this Rollout wasn't created as a rollback.



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)

Returns Output only. Names of Rollouts that rolled back this Rollout.

Returns:

  • (::Array<::String>)

    Output only. Names of Rollouts that rolled back this Rollout.



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)

Returns Output only. Current state of the Rollout.

Returns:



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

Returns Required. The ID of Target to which this Rollout is deploying.

Returns:

  • (::String)

    Required. The ID of Target to which this Rollout is deploying.



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)

Returns Output only. Unique identifier of the Rollout.

Returns:

  • (::String)

    Output only. Unique identifier of the Rollout.



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