Show / Hide Table of Contents

Class V1APIGroupList

APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.

Inheritance
object
V1APIGroupList
Implements
IKubernetesObject
IEquatable<V1APIGroupList>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
[KubernetesEntity(Group = "", Kind = "APIGroupList", ApiVersion = "v1", PluralName = "")]
public record V1APIGroupList : IKubernetesObject, IEquatable<V1APIGroupList>

Constructors

V1APIGroupList()

Declaration
public V1APIGroupList()

V1APIGroupList(V1APIGroupList)

Declaration
protected V1APIGroupList(V1APIGroupList original)
Parameters
Type Name Description
V1APIGroupList original

Fields

KubeApiVersion

Declaration
public const string KubeApiVersion = "v1"
Field Value
Type Description
string

KubeGroup

Declaration
public const string KubeGroup = ""
Field Value
Type Description
string

KubeKind

Declaration
public const string KubeKind = "APIGroupList"
Field Value
Type Description
string

KubePluralName

Declaration
public const string KubePluralName = ""
Field Value
Type Description
string

Properties

ApiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

Declaration
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
Property Value
Type Description
string

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

Groups

groups is a list of APIGroup.

Declaration
[JsonPropertyName("groups")]
public IList<V1APIGroup> Groups { get; set; }
Property Value
Type Description
IList<V1APIGroup>

Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
Type Description
string

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(V1APIGroupList?)

Declaration
public virtual bool Equals(V1APIGroupList? other)
Parameters
Type Name Description
V1APIGroupList other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(V1APIGroupList?, V1APIGroupList?)

Declaration
public static bool operator ==(V1APIGroupList? left, V1APIGroupList? right)
Parameters
Type Name Description
V1APIGroupList left
V1APIGroupList right
Returns
Type Description
bool

operator !=(V1APIGroupList?, V1APIGroupList?)

Declaration
public static bool operator !=(V1APIGroupList? left, V1APIGroupList? right)
Parameters
Type Name Description
V1APIGroupList left
V1APIGroupList right
Returns
Type Description
bool

Implements

IKubernetesObject
IEquatable<T>

Extension Methods

ModelExtensions.ApiGroup(IKubernetesObject)
ModelExtensions.ApiGroupAndVersion(IKubernetesObject)
ModelExtensions.ApiGroupVersion(IKubernetesObject)
ModelExtensions.GetApiGroupAndVersion(IKubernetesObject, out string, out string)
Extensions.GetKubernetesTypeMetadata<T>(T)
Extensions.Initialize<T>(T)
In this article
Back to top Generated by DocFX