Class V1ResourceClaimConsumerReference
ResourceClaimConsumerReference contains enough information to let you locate the
consumer of a ResourceClaim. The user must be a resource in the same namespace
as the ResourceClaim.
Inheritance
V1ResourceClaimConsumerReference
Assembly: KubernetesClient.dll
Syntax
public record V1ResourceClaimConsumerReference : IEquatable<V1ResourceClaimConsumerReference>
Constructors
View Source
V1ResourceClaimConsumerReference()
Declaration
public V1ResourceClaimConsumerReference()
View Source
V1ResourceClaimConsumerReference(V1ResourceClaimConsumerReference)
Declaration
protected V1ResourceClaimConsumerReference(V1ResourceClaimConsumerReference original)
Parameters
Properties
View Source
ApiGroup
APIGroup is the group for the resource being referenced. It is empty for the
core API. This matches the group in the APIVersion that is used when creating
the resources.
Declaration
[JsonPropertyName("apiGroup")]
public string ApiGroup { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Name
Name is the name of resource being referenced.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
View Source
Resource
Resource is the type of resource being referenced, for example "pods".
Declaration
[JsonPropertyName("resource")]
public string Resource { get; set; }
Property Value
View Source
Uid
UID identifies exactly one incarnation of the resource.
Declaration
[JsonPropertyName("uid")]
public string Uid { 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(V1ResourceClaimConsumerReference?)
Declaration
public virtual bool Equals(V1ResourceClaimConsumerReference? 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 ==(V1ResourceClaimConsumerReference?, V1ResourceClaimConsumerReference?)
Declaration
public static bool operator ==(V1ResourceClaimConsumerReference? left, V1ResourceClaimConsumerReference? right)
Parameters
Returns
View Source
operator !=(V1ResourceClaimConsumerReference?, V1ResourceClaimConsumerReference?)
Declaration
public static bool operator !=(V1ResourceClaimConsumerReference? left, V1ResourceClaimConsumerReference? right)
Parameters
Returns
Implements