Show / Hide Table of Contents

Class V1QuobyteVolumeSource

Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

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

Constructors

View Source

V1QuobyteVolumeSource()

Declaration
public V1QuobyteVolumeSource()
View Source

V1QuobyteVolumeSource(V1QuobyteVolumeSource)

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

Properties

View Source

EqualityContract

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

Group

group to map volume access to Default is no group

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

ReadOnlyProperty

readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

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

Registry

registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes

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

Tenant

tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin

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

User

user to map volume access to Defaults to serivceaccount user

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

Volume

volume is a string that references an already created Quobyte volume by name.

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

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(V1QuobyteVolumeSource?)

Declaration
public virtual bool Equals(V1QuobyteVolumeSource? other)
Parameters
Type Name Description
V1QuobyteVolumeSource 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 ==(V1QuobyteVolumeSource?, V1QuobyteVolumeSource?)

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

operator !=(V1QuobyteVolumeSource?, V1QuobyteVolumeSource?)

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

Implements

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