Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexStats
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexStats
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Stats of the Index.
Instance Attribute Summary collapse
-
#shards_count ⇒ Fixnum
Output only.
-
#sparse_vectors_count ⇒ Fixnum
Output only.
-
#vectors_count ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1IndexStats
constructor
A new instance of GoogleCloudAiplatformV1IndexStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1IndexStats
Returns a new instance of GoogleCloudAiplatformV1IndexStats.
11883 11884 11885 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11883 def initialize(**args) update!(**args) end |
Instance Attribute Details
#shards_count ⇒ Fixnum
Output only. The number of shards in the Index.
Corresponds to the JSON property shardsCount
11871 11872 11873 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11871 def shards_count @shards_count end |
#sparse_vectors_count ⇒ Fixnum
Output only. The number of sparse vectors in the Index.
Corresponds to the JSON property sparseVectorsCount
11876 11877 11878 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11876 def sparse_vectors_count @sparse_vectors_count end |
#vectors_count ⇒ Fixnum
Output only. The number of dense vectors in the Index.
Corresponds to the JSON property vectorsCount
11881 11882 11883 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11881 def vectors_count @vectors_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11888 11889 11890 11891 11892 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 11888 def update!(**args) @shards_count = args[:shards_count] if args.key?(:shards_count) @sparse_vectors_count = args[:sparse_vectors_count] if args.key?(:sparse_vectors_count) @vectors_count = args[:vectors_count] if args.key?(:vectors_count) end |