Class V1WebhookConversion
WebhookConversion describes how to call a conversion webhook
Inheritance
V1WebhookConversion
Assembly: KubernetesClient.dll
Syntax
public record V1WebhookConversion : IEquatable<V1WebhookConversion>
Constructors
View Source
V1WebhookConversion()
Declaration
public V1WebhookConversion()
View Source
V1WebhookConversion(V1WebhookConversion)
Declaration
protected V1WebhookConversion(V1WebhookConversion original)
Parameters
Properties
View Source
ClientConfig
clientConfig is the instructions for how to call the webhook if strategy is
Webhook.
Declaration
[JsonPropertyName("clientConfig")]
public Apiextensionsv1WebhookClientConfig ClientConfig { get; set; }
Property Value
View Source
ConversionReviewVersions
conversionReviewVersions is an ordered list of preferred ConversionReview
versions the Webhook expects. The API server will use the first version in the
list which it supports. If none of the versions specified in this list are
supported by API server, conversion will fail for the custom resource. If a
persisted Webhook configuration specifies allowed versions and does not include
any versions known to the API Server, calls to the webhook will fail.
Declaration
[JsonPropertyName("conversionReviewVersions")]
public IList<string> ConversionReviewVersions { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1WebhookConversion?)
Declaration
public virtual bool Equals(V1WebhookConversion? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1WebhookConversion?, V1WebhookConversion?)
Declaration
public static bool operator ==(V1WebhookConversion? left, V1WebhookConversion? right)
Parameters
Returns
View Source
operator !=(V1WebhookConversion?, V1WebhookConversion?)
Declaration
public static bool operator !=(V1WebhookConversion? left, V1WebhookConversion? right)
Parameters
Returns
Implements