Class V1TypedLocalObjectReference
TypedLocalObjectReference contains enough information to let you locate the
typed referenced object inside the same namespace.
Inheritance
V1TypedLocalObjectReference
Assembly: KubernetesClient.dll
Syntax
public record V1TypedLocalObjectReference : IEquatable<V1TypedLocalObjectReference>
Constructors
View Source
V1TypedLocalObjectReference()
Declaration
public V1TypedLocalObjectReference()
View Source
V1TypedLocalObjectReference(V1TypedLocalObjectReference)
Declaration
protected V1TypedLocalObjectReference(V1TypedLocalObjectReference original)
Parameters
Properties
View Source
ApiGroup
APIGroup is the group for the resource being referenced. If APIGroup is not
specified, the specified Kind must be in the core API group. For any other
third-party types, APIGroup is required.
Declaration
[JsonPropertyName("apiGroup")]
public string ApiGroup { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Kind
Kind is the type of resource being referenced
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
View Source
Name
Name is the name of resource being referenced
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(V1TypedLocalObjectReference?)
Declaration
public virtual bool Equals(V1TypedLocalObjectReference? 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 ==(V1TypedLocalObjectReference?, V1TypedLocalObjectReference?)
Declaration
public static bool operator ==(V1TypedLocalObjectReference? left, V1TypedLocalObjectReference? right)
Parameters
Returns
View Source
operator !=(V1TypedLocalObjectReference?, V1TypedLocalObjectReference?)
Declaration
public static bool operator !=(V1TypedLocalObjectReference? left, V1TypedLocalObjectReference? right)
Parameters
Returns
Implements