Class V1alpha2TypedLocalObjectReference
TypedLocalObjectReference allows to reference typed object inside the same
namespace.
Inheritance
V1alpha2TypedLocalObjectReference
Assembly: KubernetesClient.dll
Syntax
public record V1alpha2TypedLocalObjectReference : IEquatable<V1alpha2TypedLocalObjectReference>
Constructors
V1alpha2TypedLocalObjectReference()
Declaration
public V1alpha2TypedLocalObjectReference()
V1alpha2TypedLocalObjectReference(V1alpha2TypedLocalObjectReference)
Declaration
protected V1alpha2TypedLocalObjectReference(V1alpha2TypedLocalObjectReference original)
Parameters
Properties
ApiGroup
APIGroup is the group for the resource being referenced. If APIGroup is empty,
the specified Kind must be in the core API group. For any other third-party
types, setting APIGroup is required. It must be a DNS subdomain.
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. It must be a path segment name.
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
Name
Name is the name of resource being referenced. It must be a path segment name.
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(V1alpha2TypedLocalObjectReference?)
Declaration
public virtual bool Equals(V1alpha2TypedLocalObjectReference? 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 ==(V1alpha2TypedLocalObjectReference?, V1alpha2TypedLocalObjectReference?)
Declaration
public static bool operator ==(V1alpha2TypedLocalObjectReference? left, V1alpha2TypedLocalObjectReference? right)
Parameters
Returns
operator !=(V1alpha2TypedLocalObjectReference?, V1alpha2TypedLocalObjectReference?)
Declaration
public static bool operator !=(V1alpha2TypedLocalObjectReference? left, V1alpha2TypedLocalObjectReference? right)
Parameters
Returns
Implements