Class: Google::Cloud::AIPlatform::V1::FileStatus
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::FileStatus
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb
Overview
RagFile status.
Defined Under Namespace
Modules: State
Instance Attribute Summary collapse
-
#error_status ⇒ ::String
readonly
Output only.
-
#state ⇒ ::Google::Cloud::AIPlatform::V1::FileStatus::State
readonly
Output only.
Instance Attribute Details
#error_status ⇒ ::String (readonly)
Returns Output only. Only when the state field is ERROR.
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 173 class FileStatus include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # RagFile state. module State # RagFile state is unspecified. STATE_UNSPECIFIED = 0 # RagFile resource has been created and indexed successfully. ACTIVE = 1 # RagFile resource is in a problematic state. # See `error_message` field for details. ERROR = 2 end end |
#state ⇒ ::Google::Cloud::AIPlatform::V1::FileStatus::State (readonly)
Returns Output only. RagFile state.
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 173 class FileStatus include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # RagFile state. module State # RagFile state is unspecified. STATE_UNSPECIFIED = 0 # RagFile resource has been created and indexed successfully. ACTIVE = 1 # RagFile resource is in a problematic state. # See `error_message` field for details. ERROR = 2 end end |