Class: Google::Cloud::AIPlatform::V1::CorpusStatus
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::CorpusStatus
- 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
-
#error_status ⇒ ::String
readonly
Output only.
-
#state ⇒ ::Google::Cloud::AIPlatform::V1::CorpusStatus::State
readonly
Output only.
Instance Attribute Details
#error_status ⇒ ::String (readonly)
Returns Output only. Only when the state field is ERROR.
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 151 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.
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 151 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 |