Class V1RoleRef
RoleRef contains information that points to the role being used
Assembly: KubernetesClient.dll
Syntax
public record V1RoleRef : IEquatable<V1RoleRef>
Constructors
View Source
V1RoleRef()
Declaration
View Source
V1RoleRef(V1RoleRef)
Declaration
protected V1RoleRef(V1RoleRef original)
Parameters
Properties
View Source
ApiGroup
APIGroup is the group for the resource being referenced
Declaration
[JsonPropertyName("apiGroup")]
public string ApiGroup { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Kind
Kind is the type of resource being referenced
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
View Source
Name
Name is the name of resource being referenced
Declaration
[JsonPropertyName("name")]
public string Name { 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(V1RoleRef?)
Declaration
public virtual bool Equals(V1RoleRef? 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 ==(V1RoleRef?, V1RoleRef?)
Declaration
public static bool operator ==(V1RoleRef? left, V1RoleRef? right)
Parameters
Returns
View Source
operator !=(V1RoleRef?, V1RoleRef?)
Declaration
public static bool operator !=(V1RoleRef? left, V1RoleRef? right)
Parameters
Returns
Implements