public sealed class Jwk : IMessage<Jwk>, IEquatable<Jwk>, IDeepCloneable<Jwk>, IBufferMessage, IMessageReference documentation and code samples for the Anthos Multi-Cloud v1 API class Jwk.
Jwk is a JSON Web Key as specified in RFC 7517.
Namespace
Google.Cloud.GkeMultiCloud.V1Assembly
Google.Cloud.GkeMultiCloud.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 |
|