Show / Hide Table of Contents

Class Jwk

Jwk is a JSON Web Key as specified in RFC 7517

Inheritance
object
Jwk
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Container.v1beta1.Data
Assembly: Google.Apis.Container.v1beta1.dll
Syntax
public class Jwk : IDirectResponseSchema

Properties

Alg

Algorithm.

Declaration
[JsonProperty("alg")]
public virtual string Alg { get; set; }
Property Value
Type Description
string

Crv

Used for ECDSA keys.

Declaration
[JsonProperty("crv")]
public virtual string Crv { get; set; }
Property Value
Type Description
string

E

Used for RSA keys.

Declaration
[JsonProperty("e")]
public virtual string E { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Kid

Key ID.

Declaration
[JsonProperty("kid")]
public virtual string Kid { get; set; }
Property Value
Type Description
string

Kty

Key Type.

Declaration
[JsonProperty("kty")]
public virtual string Kty { get; set; }
Property Value
Type Description
string

N

Used for RSA keys.

Declaration
[JsonProperty("n")]
public virtual string N { get; set; }
Property Value
Type Description
string

Use

Permitted uses for the public keys.

Declaration
[JsonProperty("use")]
public virtual string Use { get; set; }
Property Value
Type Description
string

X

Used for ECDSA keys.

Declaration
[JsonProperty("x")]
public virtual string X { get; set; }
Property Value
Type Description
string

Y

Used for ECDSA keys.

Declaration
[JsonProperty("y")]
public virtual string Y { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX