Class V1APIResourceList
APIResourceList is a list of APIResource, it is used to expose the name of the
resources supported in a specific group and version, and if the resource is
namespaced.
Inheritance
V1APIResourceList
Assembly: KubernetesClient.dll
Syntax
[KubernetesEntity(Group = "", Kind = "APIResourceList", ApiVersion = "v1", PluralName = "")]
public record V1APIResourceList : IKubernetesObject, IEquatable<V1APIResourceList>
Constructors
V1APIResourceList()
Declaration
public V1APIResourceList()
V1APIResourceList(V1APIResourceList)
Declaration
protected V1APIResourceList(V1APIResourceList original)
Parameters
Fields
KubeApiVersion
Declaration
public const string KubeApiVersion = "v1"
Field Value
KubeGroup
Declaration
public const string KubeGroup = ""
Field Value
KubeKind
Declaration
public const string KubeKind = "APIResourceList"
Field Value
KubePluralName
Declaration
public const string KubePluralName = ""
Field Value
Properties
ApiVersion
Declaration
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
GroupVersion
groupVersion is the group and version this APIResourceList is for.
Declaration
[JsonPropertyName("groupVersion")]
public string GroupVersion { get; set; }
Property Value
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
Resources
resources contains the name of the resources and if they are namespaced.
Declaration
[JsonPropertyName("resources")]
public IList<V1APIResource> Resources { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1APIResourceList?)
Declaration
public virtual bool Equals(V1APIResourceList? 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 ==(V1APIResourceList?, V1APIResourceList?)
Declaration
public static bool operator ==(V1APIResourceList? left, V1APIResourceList? right)
Parameters
Returns
operator !=(V1APIResourceList?, V1APIResourceList?)
Declaration
public static bool operator !=(V1APIResourceList? left, V1APIResourceList? right)
Parameters
Returns
Implements
Extension Methods