Class V1beta1ParentReference
ParentReference describes a reference to a parent object.
Inheritance
V1beta1ParentReference
Assembly: KubernetesClient.dll
Syntax
public record V1beta1ParentReference : IEquatable<V1beta1ParentReference>
Constructors
V1beta1ParentReference()
Declaration
public V1beta1ParentReference()
V1beta1ParentReference(V1beta1ParentReference)
Declaration
protected V1beta1ParentReference(V1beta1ParentReference original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Group
Group is the group of the object being referenced.
Declaration
[JsonPropertyName("group")]
public string Group { get; set; }
Property Value
Name
Name is the name of the object being referenced.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
NamespaceProperty
Namespace is the namespace of the object being referenced.
Declaration
[JsonPropertyName("namespace")]
public string NamespaceProperty { get; set; }
Property Value
Resource
Resource is the resource of the object being referenced.
Declaration
[JsonPropertyName("resource")]
public string Resource { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1beta1ParentReference?)
Declaration
public virtual bool Equals(V1beta1ParentReference? 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 ==(V1beta1ParentReference?, V1beta1ParentReference?)
Declaration
public static bool operator ==(V1beta1ParentReference? left, V1beta1ParentReference? right)
Parameters
Returns
operator !=(V1beta1ParentReference?, V1beta1ParentReference?)
Declaration
public static bool operator !=(V1beta1ParentReference? left, V1beta1ParentReference? right)
Parameters
Returns
Implements