Class IndexMetadata
A representation of a secondary index in Cassandra
Inheritance
System.Object
IndexMetadata
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dse
Assembly: Dse.dll
Syntax
public class IndexMetadata
Constructors
IndexMetadata(String, String, IndexMetadata.IndexKind, IDictionary<String, String>)
Declaration
public IndexMetadata(string name, string target, IndexMetadata.IndexKind kind, IDictionary<string, string> options)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.String | target | |
IndexMetadata.IndexKind | kind | |
System.Collections.Generic.IDictionary<System.String, System.String> | options |
Properties
Kind
Gets the index kind
Declaration
public IndexMetadata.IndexKind Kind { get; }
Property Value
Type | Description |
---|---|
IndexMetadata.IndexKind |
Name
Gets the index name
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Options
Gets index options
Declaration
public IDictionary<string, string> Options { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.String> |
Target
Gets the index target
Declaration
public string Target { get; }
Property Value
Type | Description |
---|---|
System.String |