Show / Hide Table of Contents

Class V1APIServiceSpec

APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.

Inheritance
object
V1APIServiceSpec
Implements
IEquatable<V1APIServiceSpec>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1APIServiceSpec : IEquatable<V1APIServiceSpec>

Constructors

View Source

V1APIServiceSpec()

Declaration
public V1APIServiceSpec()
View Source

V1APIServiceSpec(V1APIServiceSpec)

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

Properties

View Source

CaBundle

CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.

Declaration
[JsonPropertyName("caBundle")]
public byte[] CaBundle { get; set; }
Property Value
Type Description
byte[]
View Source

EqualityContract

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

Group

Group is the API group name this server hosts

Declaration
[JsonPropertyName("group")]
public string Group { get; set; }
Property Value
Type Description
string
View Source

GroupPriorityMinimum

GroupPriorityMinimum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s

Declaration
[JsonPropertyName("groupPriorityMinimum")]
public int GroupPriorityMinimum { get; set; }
Property Value
Type Description
int
View Source

InsecureSkipTLSVerify

InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.

Declaration
[JsonPropertyName("insecureSkipTLSVerify")]
public bool? InsecureSkipTLSVerify { get; set; }
Property Value
Type Description
bool?
View Source

Service

Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.

Declaration
[JsonPropertyName("service")]
public Apiregistrationv1ServiceReference Service { get; set; }
Property Value
Type Description
Apiregistrationv1ServiceReference
View Source

Version

Version is the API version this server hosts. For example, "v1"

Declaration
[JsonPropertyName("version")]
public string Version { get; set; }
Property Value
Type Description
string
View Source

VersionPriority

VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.

Declaration
[JsonPropertyName("versionPriority")]
public int VersionPriority { get; set; }
Property Value
Type Description
int

Methods

View Source

Equals(object?)

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

Equals(V1APIServiceSpec?)

Declaration
public virtual bool Equals(V1APIServiceSpec? other)
Parameters
Type Name Description
V1APIServiceSpec other
Returns
Type Description
bool
View Source

GetHashCode()

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

PrintMembers(StringBuilder)

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

ToString()

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

Operators

View Source

operator ==(V1APIServiceSpec?, V1APIServiceSpec?)

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

operator !=(V1APIServiceSpec?, V1APIServiceSpec?)

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

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX