Class: Google::Cloud::AIPlatform::V1::CorpusStatus

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb

Overview

RagCorpus status.

Defined Under Namespace

Modules: State

Instance Attribute Summary collapse

Instance Attribute Details

#error_status::String (readonly)

Returns Output only. Only when the state field is ERROR.

Returns:

  • (::String)

    Output only. Only when the state field is ERROR.



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 210

class CorpusStatus
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # RagCorpus life state.
  module State
    # This state is not supposed to happen.
    UNKNOWN = 0

    # RagCorpus resource entry is initialized, but hasn't done validation.
    INITIALIZED = 1

    # RagCorpus is provisioned successfully and is ready to serve.
    ACTIVE = 2

    # RagCorpus is in a problematic situation.
    # See `error_message` field for details.
    ERROR = 3
  end
end

#state::Google::Cloud::AIPlatform::V1::CorpusStatus::State (readonly)

Returns Output only. RagCorpus life state.

Returns:



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 210

class CorpusStatus
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # RagCorpus life state.
  module State
    # This state is not supposed to happen.
    UNKNOWN = 0

    # RagCorpus resource entry is initialized, but hasn't done validation.
    INITIALIZED = 1

    # RagCorpus is provisioned successfully and is ready to serve.
    ACTIVE = 2

    # RagCorpus is in a problematic situation.
    # See `error_message` field for details.
    ERROR = 3
  end
end