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
View Source
V1APIResourceList()
Declaration
public V1APIResourceList()
View Source
V1APIResourceList(V1APIResourceList)
Declaration
protected V1APIResourceList(V1APIResourceList original)
Parameters
Fields
View Source
KubeApiVersion
Declaration
public const string KubeApiVersion = "v1"
Field Value
View Source
KubeGroup
Declaration
public const string KubeGroup = ""
Field Value
View Source
KubeKind
Declaration
public const string KubeKind = "APIResourceList"
Field Value
View Source
KubePluralName
Declaration
public const string KubePluralName = ""
Field Value
Properties
View Source
ApiVersion
Declaration
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
GroupVersion
groupVersion is the group and version this APIResourceList is for.
Declaration
[JsonPropertyName("groupVersion")]
public string GroupVersion { get; set; }
Property Value
View Source
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
View Source
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
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1APIResourceList?)
Declaration
public virtual bool Equals(V1APIResourceList? 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 ==(V1APIResourceList?, V1APIResourceList?)
Declaration
public static bool operator ==(V1APIResourceList? left, V1APIResourceList? right)
Parameters
Returns
View Source
operator !=(V1APIResourceList?, V1APIResourceList?)
Declaration
public static bool operator !=(V1APIResourceList? left, V1APIResourceList? right)
Parameters
Returns
Implements
Extension Methods