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
V1TypedLocalObjectReference()
Declaration
public V1TypedLocalObjectReference()
V1TypedLocalObjectReference(V1TypedLocalObjectReference)
Declaration
protected V1TypedLocalObjectReference(V1TypedLocalObjectReference original)
Parameters
Properties
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
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Kind
Kind is the type of resource being referenced
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
Name
Name is the name of resource being referenced
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(V1TypedLocalObjectReference?)
Declaration
public virtual bool Equals(V1TypedLocalObjectReference? 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 ==(V1TypedLocalObjectReference?, V1TypedLocalObjectReference?)
Declaration
public static bool operator ==(V1TypedLocalObjectReference? left, V1TypedLocalObjectReference? right)
Parameters
Returns
operator !=(V1TypedLocalObjectReference?, V1TypedLocalObjectReference?)
Declaration
public static bool operator !=(V1TypedLocalObjectReference? left, V1TypedLocalObjectReference? right)
Parameters
Returns
Implements