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

#active_repair_automation_run::String (readonly)

Returns Output only. The AutomationRun actively repairing the rollout.

Returns:

  • (::String)

    Output only. The AutomationRun actively repairing the rollout.



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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

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

Returns Optional. 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})

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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/{rollout}.

Returns:

  • (::String)

    Output only. Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/{rollout}.



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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}.



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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 Optional. Description of the Rollout for user purposes. Max length is 255 characters.

Returns:

  • (::String)

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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 Identifier. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/{rollout}. The rollout component must match [a-z]([a-z0-9-]{0,61}[a-z0-9])?.

Returns:

  • (::String)

    Identifier. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/{rollout}. The rollout component must match [a-z]([a-z0-9-]{0,61}[a-z0-9])?



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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:



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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



2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 2651

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 allotted 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