Ejemplo n.º 1
0
 /// <summary>
 /// KeyringRemove is used to remove a gossip encryption key from the cluster
 /// </summary>
 public Task <WriteResult> KeyringRemove(string key, WriteOptions q, CancellationToken ct = default(CancellationToken))
 {
     return(_client.DeleteAccepting("/v1/operator/keyring", new KeyringRequest()
     {
         Key = key
     }, q).Execute(ct));
 }