Enum PipelineState

  • All Implemented Interfaces:
    com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<PipelineState>

    public enum PipelineState
    extends Enum<PipelineState>
    implements com.google.protobuf.ProtocolMessageEnum
     Describes the state of a pipeline.
     
    Protobuf enum google.cloud.aiplatform.v1.PipelineState
    • Enum Constant Detail

      • PIPELINE_STATE_UNSPECIFIED

        public static final PipelineState PIPELINE_STATE_UNSPECIFIED
         The pipeline state is unspecified.
         
        PIPELINE_STATE_UNSPECIFIED = 0;
      • PIPELINE_STATE_QUEUED

        public static final PipelineState PIPELINE_STATE_QUEUED
         The pipeline has been created or resumed, and processing has not yet
         begun.
         
        PIPELINE_STATE_QUEUED = 1;
      • PIPELINE_STATE_PENDING

        public static final PipelineState PIPELINE_STATE_PENDING
         The service is preparing to run the pipeline.
         
        PIPELINE_STATE_PENDING = 2;
      • PIPELINE_STATE_RUNNING

        public static final PipelineState PIPELINE_STATE_RUNNING
         The pipeline is in progress.
         
        PIPELINE_STATE_RUNNING = 3;
      • PIPELINE_STATE_SUCCEEDED

        public static final PipelineState PIPELINE_STATE_SUCCEEDED
         The pipeline completed successfully.
         
        PIPELINE_STATE_SUCCEEDED = 4;
      • PIPELINE_STATE_FAILED

        public static final PipelineState PIPELINE_STATE_FAILED
         The pipeline failed.
         
        PIPELINE_STATE_FAILED = 5;
      • PIPELINE_STATE_CANCELLING

        public static final PipelineState PIPELINE_STATE_CANCELLING
         The pipeline is being cancelled. From this state, the pipeline may only go
         to either PIPELINE_STATE_SUCCEEDED, PIPELINE_STATE_FAILED or
         PIPELINE_STATE_CANCELLED.
         
        PIPELINE_STATE_CANCELLING = 6;
      • PIPELINE_STATE_CANCELLED

        public static final PipelineState PIPELINE_STATE_CANCELLED
         The pipeline has been cancelled.
         
        PIPELINE_STATE_CANCELLED = 7;
      • PIPELINE_STATE_PAUSED

        public static final PipelineState PIPELINE_STATE_PAUSED
         The pipeline has been stopped, and can be resumed.
         
        PIPELINE_STATE_PAUSED = 8;
    • Field Detail

      • PIPELINE_STATE_UNSPECIFIED_VALUE

        public static final int PIPELINE_STATE_UNSPECIFIED_VALUE
         The pipeline state is unspecified.
         
        PIPELINE_STATE_UNSPECIFIED = 0;
        See Also:
        Constant Field Values
      • PIPELINE_STATE_QUEUED_VALUE

        public static final int PIPELINE_STATE_QUEUED_VALUE
         The pipeline has been created or resumed, and processing has not yet
         begun.
         
        PIPELINE_STATE_QUEUED = 1;
        See Also:
        Constant Field Values
      • PIPELINE_STATE_PENDING_VALUE

        public static final int PIPELINE_STATE_PENDING_VALUE
         The service is preparing to run the pipeline.
         
        PIPELINE_STATE_PENDING = 2;
        See Also:
        Constant Field Values
      • PIPELINE_STATE_RUNNING_VALUE

        public static final int PIPELINE_STATE_RUNNING_VALUE
         The pipeline is in progress.
         
        PIPELINE_STATE_RUNNING = 3;
        See Also:
        Constant Field Values
      • PIPELINE_STATE_SUCCEEDED_VALUE

        public static final int PIPELINE_STATE_SUCCEEDED_VALUE
         The pipeline completed successfully.
         
        PIPELINE_STATE_SUCCEEDED = 4;
        See Also:
        Constant Field Values
      • PIPELINE_STATE_FAILED_VALUE

        public static final int PIPELINE_STATE_FAILED_VALUE
         The pipeline failed.
         
        PIPELINE_STATE_FAILED = 5;
        See Also:
        Constant Field Values
      • PIPELINE_STATE_CANCELLING_VALUE

        public static final int PIPELINE_STATE_CANCELLING_VALUE
         The pipeline is being cancelled. From this state, the pipeline may only go
         to either PIPELINE_STATE_SUCCEEDED, PIPELINE_STATE_FAILED or
         PIPELINE_STATE_CANCELLED.
         
        PIPELINE_STATE_CANCELLING = 6;
        See Also:
        Constant Field Values
      • PIPELINE_STATE_CANCELLED_VALUE

        public static final int PIPELINE_STATE_CANCELLED_VALUE
         The pipeline has been cancelled.
         
        PIPELINE_STATE_CANCELLED = 7;
        See Also:
        Constant Field Values
      • PIPELINE_STATE_PAUSED_VALUE

        public static final int PIPELINE_STATE_PAUSED_VALUE
         The pipeline has been stopped, and can be resumed.
         
        PIPELINE_STATE_PAUSED = 8;
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static PipelineState[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (PipelineState c : PipelineState.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static PipelineState valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static PipelineState valueOf​(int value)
        Deprecated.
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • forNumber

        public static PipelineState forNumber​(int value)
        Parameters:
        value - The numeric wire value of the corresponding enum entry.
        Returns:
        The enum associated with the given numeric wire value.
      • internalGetValueMap

        public static com.google.protobuf.Internal.EnumLiteMap<PipelineState> internalGetValueMap()
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static PipelineState valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        desc - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null