Class V1alpha1Variable
Variable is the definition of a variable that is used for composition.
Inheritance
V1alpha1Variable
Assembly: KubernetesClient.dll
Syntax
public record V1alpha1Variable : IEquatable<V1alpha1Variable>
Constructors
View Source
V1alpha1Variable()
Declaration
public V1alpha1Variable()
View Source
V1alpha1Variable(V1alpha1Variable)
Declaration
protected V1alpha1Variable(V1alpha1Variable original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
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
View Source
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
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1alpha1Variable?)
Declaration
public virtual bool Equals(V1alpha1Variable? 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 ==(V1alpha1Variable?, V1alpha1Variable?)
Declaration
public static bool operator ==(V1alpha1Variable? left, V1alpha1Variable? right)
Parameters
Returns
View Source
operator !=(V1alpha1Variable?, V1alpha1Variable?)
Declaration
public static bool operator !=(V1alpha1Variable? left, V1alpha1Variable? right)
Parameters
Returns
Implements