public sealed class Jwk : IMessage<Jwk>, IEquatable<Jwk>, IDeepCloneable<Jwk>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Kubernetes Engine v1 API class Jwk.
Jwk is a JSON Web Key as specified in RFC 7517
Namespace
Google.Cloud.Container.V1Assembly
Google.Cloud.Container.V1.dll
Constructors
Jwk()
public Jwk()
Jwk(Jwk)
public Jwk(Jwk other)
Parameter | |
---|---|
Name | Description |
other | Jwk |
Properties
Alg
public string Alg { get; set; }
Algorithm.
Property Value | |
---|---|
Type | Description |
String |
Crv
public string Crv { get; set; }
Used for ECDSA keys.
Property Value | |
---|---|
Type | Description |
String |
E
public string E { get; set; }
Used for RSA keys.
Property Value | |
---|---|
Type | Description |
String |
Kid
public string Kid { get; set; }
Key ID.
Property Value | |
---|---|
Type | Description |
String |
Kty
public string Kty { get; set; }
Key Type.
Property Value | |
---|---|
Type | Description |
String |
N
public string N { get; set; }
Used for RSA keys.
Property Value | |
---|---|
Type | Description |
String |
Use
public string Use { get; set; }
Permitted uses for the public keys.
Property Value | |
---|---|
Type | Description |
String |
X
public string X { get; set; }
Used for ECDSA keys.
Property Value | |
---|---|
Type | Description |
String |
Y
public string Y { get; set; }
Used for ECDSA keys.
Property Value | |
---|---|
Type | Description |
String |