Class V1FlowSchema
FlowSchema defines the schema of a group of flows. Note that a flow is made up
of a set of inbound API requests with similar attributes and is identified by a
pair of strings: the name of the FlowSchema and a "flow distinguisher".
Assembly: KubernetesClient.dll
Syntax
[KubernetesEntity(Group = "flowcontrol.apiserver.k8s.io", Kind = "FlowSchema", ApiVersion = "v1", PluralName = "flowschemas")]
public record V1FlowSchema : IKubernetesObject<V1ObjectMeta>, IKubernetesObject, IMetadata<V1ObjectMeta>, ISpec<V1FlowSchemaSpec>, IEquatable<V1FlowSchema>
Constructors
V1FlowSchema()
Declaration
V1FlowSchema(V1FlowSchema)
Declaration
protected V1FlowSchema(V1FlowSchema original)
Parameters
Fields
KubeApiVersion
Declaration
public const string KubeApiVersion = "v1"
Field Value
KubeGroup
Declaration
public const string KubeGroup = "flowcontrol.apiserver.k8s.io"
Field Value
KubeKind
Declaration
public const string KubeKind = "FlowSchema"
Field Value
KubePluralName
Declaration
public const string KubePluralName = "flowschemas"
Field Value
Properties
ApiVersion
Declaration
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
Declaration
[JsonPropertyName("metadata")]
public V1ObjectMeta Metadata { get; set; }
Property Value
Spec
Declaration
[JsonPropertyName("spec")]
public V1FlowSchemaSpec Spec { get; set; }
Property Value
Status
Declaration
[JsonPropertyName("status")]
public V1FlowSchemaStatus Status { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1FlowSchema?)
Declaration
public virtual bool Equals(V1FlowSchema? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1FlowSchema?, V1FlowSchema?)
Declaration
public static bool operator ==(V1FlowSchema? left, V1FlowSchema? right)
Parameters
Returns
operator !=(V1FlowSchema?, V1FlowSchema?)
Declaration
public static bool operator !=(V1FlowSchema? left, V1FlowSchema? right)
Parameters
Returns
Implements
Extension Methods