Class V1RoleRef
RoleRef contains information that points to the role being used
Assembly: KubernetesClient.dll
Syntax
public record V1RoleRef : IEquatable<V1RoleRef>
Constructors
V1RoleRef()
Declaration
V1RoleRef(V1RoleRef)
Declaration
protected V1RoleRef(V1RoleRef original)
Parameters
Properties
ApiGroup
APIGroup is the group for the resource being referenced
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(V1RoleRef?)
Declaration
public virtual bool Equals(V1RoleRef? 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 ==(V1RoleRef?, V1RoleRef?)
Declaration
public static bool operator ==(V1RoleRef? left, V1RoleRef? right)
Parameters
Returns
operator !=(V1RoleRef?, V1RoleRef?)
Declaration
public static bool operator !=(V1RoleRef? left, V1RoleRef? right)
Parameters
Returns
Implements