Class ChallengeResponse
Namespace: Neon.Kube.Resources.CertManager
Assembly: Neon.Kube.Resources.dll
Syntax
public class ChallengeResponse
Properties
Success
Indicates whether the request was successful.
Declaration
[JsonProperty(PropertyName = "success", Required = Required.Default, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
public bool Success { get; set; }
Property Value
Type | Description |
---|---|
bool |
Uid
UID is an identifier for the individual request/response. It allows us to distinguish instances of requests which are otherwise identical (parallel requests, requests when earlier requests did not modify etc)
The UID is meant to track the round trip (request/response) between the KAS and the WebHook, not the user request. It is suitable for correlating log entries between the webhook and apiserver, for either auditing or debugging.
Declaration
[JsonProperty(PropertyName = "uid", Required = Required.Default, DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
public string Uid { get; set; }
Property Value
Type | Description |
---|---|
string |