Class V1beta1Variable
Variable is the definition of a variable that is used for composition. A
variable is defined as a named expression.
Inheritance
V1beta1Variable
Assembly: KubernetesClient.dll
Syntax
public record V1beta1Variable : IEquatable<V1beta1Variable>
Constructors
V1beta1Variable()
Declaration
V1beta1Variable(V1beta1Variable)
Declaration
protected V1beta1Variable(V1beta1Variable original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Expression
expression is the expression that will be evaluated as the value of the
variable. The CEL expression has access to the same identifiers as the CEL
expressions in Validation.
Declaration
[JsonPropertyName("expression")]
public string Expression { get; set; }
Property Value
Name
name is the name of the variable. The name must be a valid CEL identifier and
unique among all variables. The variable can be accessed in other expressions
through variables For example, if name is "foo", the variable will be
available as variables.foo
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1beta1Variable?)
Declaration
public virtual bool Equals(V1beta1Variable? 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 ==(V1beta1Variable?, V1beta1Variable?)
Declaration
public static bool operator ==(V1beta1Variable? left, V1beta1Variable? right)
Parameters
Returns
operator !=(V1beta1Variable?, V1beta1Variable?)
Declaration
public static bool operator !=(V1beta1Variable? left, V1beta1Variable? right)
Parameters
Returns
Implements