Skip to main content

Class KeyringResponse

Namespace: Consul
Assembly: Consul.dll

KeyringResponse is returned when listing the gossip encryption keys

public class KeyringResponse

Inheritance

objectKeyringResponse

Inherited Members

object.Equals(object) , object.Equals(object, object) , object.GetHashCode() , object.GetType() , object.MemberwiseClone() , object.ReferenceEquals(object, object) , object.ToString()

Properties

Datacenter

The datacenter name this request corresponds to

public string Datacenter { get; set; }

Property Value

string

Keys

A map of the encryption keys to the number of nodes they're installed on

public IDictionary<string, int> Keys { get; set; }

Property Value

IDictionary <string , int >

NumNodes

The total number of nodes in this ring

public int NumNodes { get; set; }

Property Value

int

WAN

Whether this response is for a WAN ring

public bool WAN { get; set; }

Property Value

bool