Anthos Multi-Cloud v1 API - Class Jwk (2.5.0)

public sealed class Jwk : IMessage<Jwk>, IEquatable<Jwk>, IDeepCloneable<Jwk>, IBufferMessage, IMessage

Reference documentation and code samples for the Anthos Multi-Cloud v1 API class Jwk.

Jwk is a JSON Web Key as specified in RFC 7517.

Inheritance

object > Jwk

Namespace

Google.Cloud.GkeMultiCloud.V1

Assembly

Google.Cloud.GkeMultiCloud.V1.dll

Constructors

Jwk()

public Jwk()

Jwk(Jwk)

public Jwk(Jwk other)
Parameter
NameDescription
otherJwk

Properties

Alg

public string Alg { get; set; }

Algorithm.

Property Value
TypeDescription
string

Crv

public string Crv { get; set; }

Used for ECDSA keys.

Property Value
TypeDescription
string

E

public string E { get; set; }

Used for RSA keys.

Property Value
TypeDescription
string

Kid

public string Kid { get; set; }

Key ID.

Property Value
TypeDescription
string

Kty

public string Kty { get; set; }

Key Type.

Property Value
TypeDescription
string

N

public string N { get; set; }

Used for RSA keys.

Property Value
TypeDescription
string

Use

public string Use { get; set; }

Permitted uses for the public keys.

Property Value
TypeDescription
string

X

public string X { get; set; }

Used for ECDSA keys.

Property Value
TypeDescription
string

Y

public string Y { get; set; }

Used for ECDSA keys.

Property Value
TypeDescription
string