Show / Hide Table of Contents

Class V1WebhookConversion

WebhookConversion describes how to call a conversion webhook

Inheritance
object
V1WebhookConversion
Implements
IEquatable<V1WebhookConversion>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
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
Type Name Description
V1WebhookConversion original

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
Type Description
Apiextensionsv1WebhookClientConfig
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
Type Description
IList<string>
View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

Methods

View Source

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)
View Source

Equals(V1WebhookConversion?)

Declaration
public virtual bool Equals(V1WebhookConversion? other)
Parameters
Type Name Description
V1WebhookConversion other
Returns
Type Description
bool
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()
View Source

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

View Source

operator ==(V1WebhookConversion?, V1WebhookConversion?)

Declaration
public static bool operator ==(V1WebhookConversion? left, V1WebhookConversion? right)
Parameters
Type Name Description
V1WebhookConversion left
V1WebhookConversion right
Returns
Type Description
bool
View Source

operator !=(V1WebhookConversion?, V1WebhookConversion?)

Declaration
public static bool operator !=(V1WebhookConversion? left, V1WebhookConversion? right)
Parameters
Type Name Description
V1WebhookConversion left
V1WebhookConversion right
Returns
Type Description
bool

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX