Class: Google::Cloud::VisionAI::V1::IndexingStatus

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

Overview

The status of indexing for the asset.

Defined Under Namespace

Modules: State

Instance Attribute Summary collapse

Instance Attribute Details

#state::Google::Cloud::VisionAI::V1::IndexingStatus::State (readonly)

Returns Output only. State of this asset's indexing.

Returns:



299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# File 'proto_docs/google/cloud/visionai/v1/warehouse.rb', line 299

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

  # State enum for this asset's indexing.
  module State
    # The default process state should never happen.
    STATE_UNSPECIFIED = 0

    # The indexing is in progress.
    IN_PROGRESS = 1

    # The process is successfully done.
    SUCCEEDED = 2

    # The process failed.
    FAILED = 3
  end
end

#status_message::String

Returns Detailed message describing the state.

Returns:

  • (::String)

    Detailed message describing the state.



299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# File 'proto_docs/google/cloud/visionai/v1/warehouse.rb', line 299

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

  # State enum for this asset's indexing.
  module State
    # The default process state should never happen.
    STATE_UNSPECIFIED = 0

    # The indexing is in progress.
    IN_PROGRESS = 1

    # The process is successfully done.
    SUCCEEDED = 2

    # The process failed.
    FAILED = 3
  end
end