Show / Hide Table of Contents

Class IndexSummary

Information about an index.

Inheritance
object
IndexSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.NosqlService.Models
Assembly: OCI.DotNetSDK.Nosql.dll
Syntax
public class IndexSummary

Properties

Keys

Declaration
[JsonProperty(PropertyName = "keys")]
public List<IndexKey> Keys { get; set; }
Property Value
Type Description
List<IndexKey>

A set of keys for a secondary index.

LifecycleDetails

Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
public string LifecycleDetails { get; set; }
Property Value
Type Description
string

A message describing the current state in more detail.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public Index.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
Index.LifecycleStateEnum?

The state of an index.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Index name.

In this article
Back to top