confluent-kafka-dotnet
Show / Hide Table of Contents

Class Kek

Inheritance
object
Kek
RegisteredKek
Implements
IEquatable<Kek>
Inherited Members
object.Equals(object, object)
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Confluent.SchemaRegistry.Encryption
Assembly: Confluent.SchemaRegistry.Encryption.dll
Syntax
[DataContract]
public class Kek : IEquatable<Kek>

Properties

Deleted

Whether the KEK is deleted.

Declaration
[DataMember(Name = "deleted")]
public bool Deleted { get; set; }
Property Value
TypeDescription
bool

Doc

The doc for the KEK.

Declaration
[DataMember(Name = "doc")]
public string Doc { get; set; }
Property Value
TypeDescription
string

KmsKeyId

The KMS key ID for the KEK

Declaration
[DataMember(Name = "kmsKeyId")]
public string KmsKeyId { get; set; }
Property Value
TypeDescription
string

KmsProps

The KMS properties.

Declaration
[DataMember(Name = "kmsProps")]
public IDictionary<string, string> KmsProps { get; set; }
Property Value
TypeDescription
IDictionary<string, string>

KmsType

The KMS type for the KEK.

Declaration
[DataMember(Name = "kmsType")]
public string KmsType { get; set; }
Property Value
TypeDescription
string

Name

The name of the KEK.

Declaration
[DataMember(Name = "name")]
public string Name { get; set; }
Property Value
TypeDescription
string

Shared

Whether the KEK is shared.

Declaration
[DataMember(Name = "shared")]
public bool Shared { get; set; }
Property Value
TypeDescription
bool

Methods

Equals(Kek)

Indicates whether the current object is equal to another object of the same type.

Declaration
public bool Equals(Kek other)
Parameters
TypeNameDescription
Kekother

An object to compare with this object.

Returns
TypeDescription
bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object)

Determines whether the specified object is equal to the current object.

Declaration
public override bool Equals(object obj)
Parameters
TypeNameDescription
objectobj

The object to compare with the current object.

Returns
TypeDescription
bool

true if the specified object is equal to the current object; otherwise, false.

Overrides
object.Equals(object)

GetHashCode()

Serves as the default hash function.

Declaration
public override int GetHashCode()
Returns
TypeDescription
int

A hash code for the current object.

Overrides
object.GetHashCode()

Implements

IEquatable<T>
In this article