k8s_io_api_storage_v1beta1

package
v0.0.0-...-940152b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 10, 2020 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthGenerated = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated   = fmt.Errorf("proto: integer overflow")
)

Functions

This section is empty.

Types

type CSIDriver

type CSIDriver struct {
	// Standard object metadata.
	// metadata.Name indicates the name of the CSI driver that this object
	// refers to; it MUST be the same name returned by the CSI GetPluginName()
	// call for that driver.
	// The driver name must be 63 characters or less, beginning and ending with
	// an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and
	// alphanumerics between.
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Specification of the CSI Driver.
	Spec *CSIDriverSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
}

CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.

func (*CSIDriver) Descriptor

func (*CSIDriver) Descriptor() ([]byte, []int)

func (*CSIDriver) Equal

func (this *CSIDriver) Equal(that interface{}) bool

func (*CSIDriver) GetMetadata

func (m *CSIDriver) GetMetadata() *v1.ObjectMeta

func (*CSIDriver) GetSpec

func (m *CSIDriver) GetSpec() *CSIDriverSpec

func (*CSIDriver) GoString

func (this *CSIDriver) GoString() string

func (*CSIDriver) Marshal

func (m *CSIDriver) Marshal() (dAtA []byte, err error)

func (*CSIDriver) MarshalTo

func (m *CSIDriver) MarshalTo(dAtA []byte) (int, error)

func (*CSIDriver) MarshalToSizedBuffer

func (m *CSIDriver) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSIDriver) ProtoMessage

func (*CSIDriver) ProtoMessage()

func (*CSIDriver) Reset

func (m *CSIDriver) Reset()

func (*CSIDriver) Size

func (m *CSIDriver) Size() (n int)

func (*CSIDriver) String

func (this *CSIDriver) String() string

func (*CSIDriver) Unmarshal

func (m *CSIDriver) Unmarshal(dAtA []byte) error

func (*CSIDriver) XXX_DiscardUnknown

func (m *CSIDriver) XXX_DiscardUnknown()

func (*CSIDriver) XXX_Marshal

func (m *CSIDriver) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSIDriver) XXX_Merge

func (m *CSIDriver) XXX_Merge(src proto.Message)

func (*CSIDriver) XXX_Size

func (m *CSIDriver) XXX_Size() int

func (*CSIDriver) XXX_Unmarshal

func (m *CSIDriver) XXX_Unmarshal(b []byte) error

type CSIDriverList

type CSIDriverList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// items is the list of CSIDriver
	Items []*CSIDriver `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
}

CSIDriverList is a collection of CSIDriver objects.

func (*CSIDriverList) Descriptor

func (*CSIDriverList) Descriptor() ([]byte, []int)

func (*CSIDriverList) Equal

func (this *CSIDriverList) Equal(that interface{}) bool

func (*CSIDriverList) GetItems

func (m *CSIDriverList) GetItems() []*CSIDriver

func (*CSIDriverList) GetMetadata

func (m *CSIDriverList) GetMetadata() *v1.ListMeta

func (*CSIDriverList) GoString

func (this *CSIDriverList) GoString() string

func (*CSIDriverList) Marshal

func (m *CSIDriverList) Marshal() (dAtA []byte, err error)

func (*CSIDriverList) MarshalTo

func (m *CSIDriverList) MarshalTo(dAtA []byte) (int, error)

func (*CSIDriverList) MarshalToSizedBuffer

func (m *CSIDriverList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSIDriverList) ProtoMessage

func (*CSIDriverList) ProtoMessage()

func (*CSIDriverList) Reset

func (m *CSIDriverList) Reset()

func (*CSIDriverList) Size

func (m *CSIDriverList) Size() (n int)

func (*CSIDriverList) String

func (this *CSIDriverList) String() string

func (*CSIDriverList) Unmarshal

func (m *CSIDriverList) Unmarshal(dAtA []byte) error

func (*CSIDriverList) XXX_DiscardUnknown

func (m *CSIDriverList) XXX_DiscardUnknown()

func (*CSIDriverList) XXX_Marshal

func (m *CSIDriverList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSIDriverList) XXX_Merge

func (m *CSIDriverList) XXX_Merge(src proto.Message)

func (*CSIDriverList) XXX_Size

func (m *CSIDriverList) XXX_Size() int

func (*CSIDriverList) XXX_Unmarshal

func (m *CSIDriverList) XXX_Unmarshal(b []byte) error

type CSIDriverSpec

type CSIDriverSpec struct {
	// attachRequired indicates this CSI volume driver requires an attach
	// operation (because it implements the CSI ControllerPublishVolume()
	// method), and that the Kubernetes attach detach controller should call
	// the attach volume interface which checks the volumeattachment status
	// and waits until the volume is attached before proceeding to mounting.
	// The CSI external-attacher coordinates with CSI volume driver and updates
	// the volumeattachment status when the attach operation is complete.
	// If the CSIDriverRegistry feature gate is enabled and the value is
	// specified to false, the attach operation will be skipped.
	// Otherwise the attach operation will be called.
	// +optional
	AttachRequired bool `protobuf:"varint,1,opt,name=attachRequired" json:"attachRequired"`
	// If set to true, podInfoOnMount indicates this CSI volume driver
	// requires additional pod information (like podName, podUID, etc.) during
	// mount operations.
	// If set to false, pod information will not be passed on mount.
	// Default is false.
	// The CSI driver specifies podInfoOnMount as part of driver deployment.
	// If true, Kubelet will pass pod information as VolumeContext in the CSI
	// NodePublishVolume() calls.
	// The CSI driver is responsible for parsing and validating the information
	// passed in as VolumeContext.
	// The following VolumeConext will be passed if podInfoOnMount is set to true.
	// This list might grow, but the prefix will be used.
	// "csi.storage.k8s.io/pod.name": pod.Name
	// "csi.storage.k8s.io/pod.namespace": pod.Namespace
	// "csi.storage.k8s.io/pod.uid": string(pod.UID)
	// "csi.storage.k8s.io/ephemeral": "true" iff the volume is an ephemeral inline volume
	//                                 defined by a CSIVolumeSource, otherwise "false"
	//
	// "csi.storage.k8s.io/ephemeral" is a new feature in Kubernetes 1.16. It is only
	// required for drivers which support both the "Persistent" and "Ephemeral" VolumeLifecycleMode.
	// Other drivers can leave pod info disabled and/or ignore this field.
	// As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when
	// deployed on such a cluster and the deployment determines which mode that is, for example
	// via a command line parameter of the driver.
	// +optional
	PodInfoOnMount bool `protobuf:"varint,2,opt,name=podInfoOnMount" json:"podInfoOnMount"`
	// VolumeLifecycleModes defines what kind of volumes this CSI volume driver supports.
	// The default if the list is empty is "Persistent", which is the usage
	// defined by the CSI specification and implemented in Kubernetes via the usual
	// PV/PVC mechanism.
	// The other mode is "Ephemeral". In this mode, volumes are defined inline
	// inside the pod spec with CSIVolumeSource and their lifecycle is tied to
	// the lifecycle of that pod. A driver has to be aware of this
	// because it is only going to get a NodePublishVolume call for such a volume.
	// For more information about implementing this mode, see
	// https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html
	// A driver can support one or more of these modes and
	// more modes may be added in the future.
	// +optional
	VolumeLifecycleModes []string `protobuf:"bytes,3,rep,name=volumeLifecycleModes" json:"volumeLifecycleModes,omitempty"`
}

CSIDriverSpec is the specification of a CSIDriver.

func (*CSIDriverSpec) Descriptor

func (*CSIDriverSpec) Descriptor() ([]byte, []int)

func (*CSIDriverSpec) Equal

func (this *CSIDriverSpec) Equal(that interface{}) bool

func (*CSIDriverSpec) GetAttachRequired

func (m *CSIDriverSpec) GetAttachRequired() bool

func (*CSIDriverSpec) GetPodInfoOnMount

func (m *CSIDriverSpec) GetPodInfoOnMount() bool

func (*CSIDriverSpec) GetVolumeLifecycleModes

func (m *CSIDriverSpec) GetVolumeLifecycleModes() []string

func (*CSIDriverSpec) GoString

func (this *CSIDriverSpec) GoString() string

func (*CSIDriverSpec) Marshal

func (m *CSIDriverSpec) Marshal() (dAtA []byte, err error)

func (*CSIDriverSpec) MarshalTo

func (m *CSIDriverSpec) MarshalTo(dAtA []byte) (int, error)

func (*CSIDriverSpec) MarshalToSizedBuffer

func (m *CSIDriverSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSIDriverSpec) ProtoMessage

func (*CSIDriverSpec) ProtoMessage()

func (*CSIDriverSpec) Reset

func (m *CSIDriverSpec) Reset()

func (*CSIDriverSpec) Size

func (m *CSIDriverSpec) Size() (n int)

func (*CSIDriverSpec) String

func (this *CSIDriverSpec) String() string

func (*CSIDriverSpec) Unmarshal

func (m *CSIDriverSpec) Unmarshal(dAtA []byte) error

func (*CSIDriverSpec) XXX_DiscardUnknown

func (m *CSIDriverSpec) XXX_DiscardUnknown()

func (*CSIDriverSpec) XXX_Marshal

func (m *CSIDriverSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSIDriverSpec) XXX_Merge

func (m *CSIDriverSpec) XXX_Merge(src proto.Message)

func (*CSIDriverSpec) XXX_Size

func (m *CSIDriverSpec) XXX_Size() int

func (*CSIDriverSpec) XXX_Unmarshal

func (m *CSIDriverSpec) XXX_Unmarshal(b []byte) error

type CSINode

type CSINode struct {
	// metadata.name must be the Kubernetes node name.
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// spec is the specification of CSINode
	Spec *CSINodeSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
}

CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.

func (*CSINode) Descriptor

func (*CSINode) Descriptor() ([]byte, []int)

func (*CSINode) Equal

func (this *CSINode) Equal(that interface{}) bool

func (*CSINode) GetMetadata

func (m *CSINode) GetMetadata() *v1.ObjectMeta

func (*CSINode) GetSpec

func (m *CSINode) GetSpec() *CSINodeSpec

func (*CSINode) GoString

func (this *CSINode) GoString() string

func (*CSINode) Marshal

func (m *CSINode) Marshal() (dAtA []byte, err error)

func (*CSINode) MarshalTo

func (m *CSINode) MarshalTo(dAtA []byte) (int, error)

func (*CSINode) MarshalToSizedBuffer

func (m *CSINode) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSINode) ProtoMessage

func (*CSINode) ProtoMessage()

func (*CSINode) Reset

func (m *CSINode) Reset()

func (*CSINode) Size

func (m *CSINode) Size() (n int)

func (*CSINode) String

func (this *CSINode) String() string

func (*CSINode) Unmarshal

func (m *CSINode) Unmarshal(dAtA []byte) error

func (*CSINode) XXX_DiscardUnknown

func (m *CSINode) XXX_DiscardUnknown()

func (*CSINode) XXX_Marshal

func (m *CSINode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSINode) XXX_Merge

func (m *CSINode) XXX_Merge(src proto.Message)

func (*CSINode) XXX_Size

func (m *CSINode) XXX_Size() int

func (*CSINode) XXX_Unmarshal

func (m *CSINode) XXX_Unmarshal(b []byte) error

type CSINodeDriver

type CSINodeDriver struct {
	// This is the name of the CSI driver that this object refers to.
	// This MUST be the same name returned by the CSI GetPluginName() call for
	// that driver.
	Name string `protobuf:"bytes,1,opt,name=name" json:"name"`
	// nodeID of the node from the driver point of view.
	// This field enables Kubernetes to communicate with storage systems that do
	// not share the same nomenclature for nodes. For example, Kubernetes may
	// refer to a given node as "node1", but the storage system may refer to
	// the same node as "nodeA". When Kubernetes issues a command to the storage
	// system to attach a volume to a specific node, it can use this field to
	// refer to the node name using the ID that the storage system will
	// understand, e.g. "nodeA" instead of "node1". This field is required.
	NodeID string `protobuf:"bytes,2,opt,name=nodeID" json:"nodeID"`
	// topologyKeys is the list of keys supported by the driver.
	// When a driver is initialized on a cluster, it provides a set of topology
	// keys that it understands (e.g. "company.com/zone", "company.com/region").
	// When a driver is initialized on a node, it provides the same topology keys
	// along with values. Kubelet will expose these topology keys as labels
	// on its own node object.
	// When Kubernetes does topology aware provisioning, it can use this list to
	// determine which labels it should retrieve from the node object and pass
	// back to the driver.
	// It is possible for different nodes to use different topology keys.
	// This can be empty if driver does not support topology.
	// +optional
	TopologyKeys []string `protobuf:"bytes,3,rep,name=topologyKeys" json:"topologyKeys,omitempty"`
	// allocatable represents the volume resources of a node that are available for scheduling.
	// +optional
	Allocatable *VolumeNodeResources `protobuf:"bytes,4,opt,name=allocatable" json:"allocatable,omitempty"`
}

CSINodeDriver holds information about the specification of one CSI driver installed on a node

func (*CSINodeDriver) Descriptor

func (*CSINodeDriver) Descriptor() ([]byte, []int)

func (*CSINodeDriver) Equal

func (this *CSINodeDriver) Equal(that interface{}) bool

func (*CSINodeDriver) GetAllocatable

func (m *CSINodeDriver) GetAllocatable() *VolumeNodeResources

func (*CSINodeDriver) GetName

func (m *CSINodeDriver) GetName() string

func (*CSINodeDriver) GetNodeID

func (m *CSINodeDriver) GetNodeID() string

func (*CSINodeDriver) GetTopologyKeys

func (m *CSINodeDriver) GetTopologyKeys() []string

func (*CSINodeDriver) GoString

func (this *CSINodeDriver) GoString() string

func (*CSINodeDriver) Marshal

func (m *CSINodeDriver) Marshal() (dAtA []byte, err error)

func (*CSINodeDriver) MarshalTo

func (m *CSINodeDriver) MarshalTo(dAtA []byte) (int, error)

func (*CSINodeDriver) MarshalToSizedBuffer

func (m *CSINodeDriver) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSINodeDriver) ProtoMessage

func (*CSINodeDriver) ProtoMessage()

func (*CSINodeDriver) Reset

func (m *CSINodeDriver) Reset()

func (*CSINodeDriver) Size

func (m *CSINodeDriver) Size() (n int)

func (*CSINodeDriver) String

func (this *CSINodeDriver) String() string

func (*CSINodeDriver) Unmarshal

func (m *CSINodeDriver) Unmarshal(dAtA []byte) error

func (*CSINodeDriver) XXX_DiscardUnknown

func (m *CSINodeDriver) XXX_DiscardUnknown()

func (*CSINodeDriver) XXX_Marshal

func (m *CSINodeDriver) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSINodeDriver) XXX_Merge

func (m *CSINodeDriver) XXX_Merge(src proto.Message)

func (*CSINodeDriver) XXX_Size

func (m *CSINodeDriver) XXX_Size() int

func (*CSINodeDriver) XXX_Unmarshal

func (m *CSINodeDriver) XXX_Unmarshal(b []byte) error

type CSINodeList

type CSINodeList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// items is the list of CSINode
	Items []*CSINode `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
}

CSINodeList is a collection of CSINode objects.

func (*CSINodeList) Descriptor

func (*CSINodeList) Descriptor() ([]byte, []int)

func (*CSINodeList) Equal

func (this *CSINodeList) Equal(that interface{}) bool

func (*CSINodeList) GetItems

func (m *CSINodeList) GetItems() []*CSINode

func (*CSINodeList) GetMetadata

func (m *CSINodeList) GetMetadata() *v1.ListMeta

func (*CSINodeList) GoString

func (this *CSINodeList) GoString() string

func (*CSINodeList) Marshal

func (m *CSINodeList) Marshal() (dAtA []byte, err error)

func (*CSINodeList) MarshalTo

func (m *CSINodeList) MarshalTo(dAtA []byte) (int, error)

func (*CSINodeList) MarshalToSizedBuffer

func (m *CSINodeList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSINodeList) ProtoMessage

func (*CSINodeList) ProtoMessage()

func (*CSINodeList) Reset

func (m *CSINodeList) Reset()

func (*CSINodeList) Size

func (m *CSINodeList) Size() (n int)

func (*CSINodeList) String

func (this *CSINodeList) String() string

func (*CSINodeList) Unmarshal

func (m *CSINodeList) Unmarshal(dAtA []byte) error

func (*CSINodeList) XXX_DiscardUnknown

func (m *CSINodeList) XXX_DiscardUnknown()

func (*CSINodeList) XXX_Marshal

func (m *CSINodeList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSINodeList) XXX_Merge

func (m *CSINodeList) XXX_Merge(src proto.Message)

func (*CSINodeList) XXX_Size

func (m *CSINodeList) XXX_Size() int

func (*CSINodeList) XXX_Unmarshal

func (m *CSINodeList) XXX_Unmarshal(b []byte) error

type CSINodeSpec

type CSINodeSpec struct {
	// drivers is a list of information of all CSI Drivers existing on a node.
	// If all drivers in the list are uninstalled, this can become empty.
	// +patchMergeKey=name
	// +patchStrategy=merge
	Drivers []*CSINodeDriver `protobuf:"bytes,1,rep,name=drivers" json:"drivers,omitempty"`
}

CSINodeSpec holds information about the specification of all CSI drivers installed on a node

func (*CSINodeSpec) Descriptor

func (*CSINodeSpec) Descriptor() ([]byte, []int)

func (*CSINodeSpec) Equal

func (this *CSINodeSpec) Equal(that interface{}) bool

func (*CSINodeSpec) GetDrivers

func (m *CSINodeSpec) GetDrivers() []*CSINodeDriver

func (*CSINodeSpec) GoString

func (this *CSINodeSpec) GoString() string

func (*CSINodeSpec) Marshal

func (m *CSINodeSpec) Marshal() (dAtA []byte, err error)

func (*CSINodeSpec) MarshalTo

func (m *CSINodeSpec) MarshalTo(dAtA []byte) (int, error)

func (*CSINodeSpec) MarshalToSizedBuffer

func (m *CSINodeSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSINodeSpec) ProtoMessage

func (*CSINodeSpec) ProtoMessage()

func (*CSINodeSpec) Reset

func (m *CSINodeSpec) Reset()

func (*CSINodeSpec) Size

func (m *CSINodeSpec) Size() (n int)

func (*CSINodeSpec) String

func (this *CSINodeSpec) String() string

func (*CSINodeSpec) Unmarshal

func (m *CSINodeSpec) Unmarshal(dAtA []byte) error

func (*CSINodeSpec) XXX_DiscardUnknown

func (m *CSINodeSpec) XXX_DiscardUnknown()

func (*CSINodeSpec) XXX_Marshal

func (m *CSINodeSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSINodeSpec) XXX_Merge

func (m *CSINodeSpec) XXX_Merge(src proto.Message)

func (*CSINodeSpec) XXX_Size

func (m *CSINodeSpec) XXX_Size() int

func (*CSINodeSpec) XXX_Unmarshal

func (m *CSINodeSpec) XXX_Unmarshal(b []byte) error

type StorageClass

type StorageClass struct {
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Provisioner indicates the type of the provisioner.
	Provisioner string `protobuf:"bytes,2,opt,name=provisioner" json:"provisioner"`
	// Parameters holds the parameters for the provisioner that should
	// create volumes of this storage class.
	// +optional
	Parameters map[string]string `` /* 140-byte string literal not displayed */
	// Dynamically provisioned PersistentVolumes of this storage class are
	// created with this reclaimPolicy. Defaults to Delete.
	// +optional
	ReclaimPolicy string `protobuf:"bytes,4,opt,name=reclaimPolicy" json:"reclaimPolicy"`
	// Dynamically provisioned PersistentVolumes of this storage class are
	// created with these mountOptions, e.g. ["ro", "soft"]. Not validated -
	// mount of the PVs will simply fail if one is invalid.
	// +optional
	MountOptions []string `protobuf:"bytes,5,rep,name=mountOptions" json:"mountOptions,omitempty"`
	// AllowVolumeExpansion shows whether the storage class allow volume expand
	// +optional
	AllowVolumeExpansion bool `protobuf:"varint,6,opt,name=allowVolumeExpansion" json:"allowVolumeExpansion"`
	// VolumeBindingMode indicates how PersistentVolumeClaims should be
	// provisioned and bound.  When unset, VolumeBindingImmediate is used.
	// This field is only honored by servers that enable the VolumeScheduling feature.
	// +optional
	VolumeBindingMode string `protobuf:"bytes,7,opt,name=volumeBindingMode" json:"volumeBindingMode"`
	// Restrict the node topologies where volumes can be dynamically provisioned.
	// Each volume plugin defines its own supported topology specifications.
	// An empty TopologySelectorTerm list means there is no topology restriction.
	// This field is only honored by servers that enable the VolumeScheduling feature.
	// +optional
	AllowedTopologies []*v11.TopologySelectorTerm `protobuf:"bytes,8,rep,name=allowedTopologies" json:"allowedTopologies,omitempty"`
}

StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.

StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.

func (*StorageClass) Descriptor

func (*StorageClass) Descriptor() ([]byte, []int)

func (*StorageClass) Equal

func (this *StorageClass) Equal(that interface{}) bool

func (*StorageClass) GetAllowVolumeExpansion

func (m *StorageClass) GetAllowVolumeExpansion() bool

func (*StorageClass) GetAllowedTopologies

func (m *StorageClass) GetAllowedTopologies() []*v11.TopologySelectorTerm

func (*StorageClass) GetMetadata

func (m *StorageClass) GetMetadata() *v1.ObjectMeta

func (*StorageClass) GetMountOptions

func (m *StorageClass) GetMountOptions() []string

func (*StorageClass) GetParameters

func (m *StorageClass) GetParameters() map[string]string

func (*StorageClass) GetProvisioner

func (m *StorageClass) GetProvisioner() string

func (*StorageClass) GetReclaimPolicy

func (m *StorageClass) GetReclaimPolicy() string

func (*StorageClass) GetVolumeBindingMode

func (m *StorageClass) GetVolumeBindingMode() string

func (*StorageClass) GoString

func (this *StorageClass) GoString() string

func (*StorageClass) Marshal

func (m *StorageClass) Marshal() (dAtA []byte, err error)

func (*StorageClass) MarshalTo

func (m *StorageClass) MarshalTo(dAtA []byte) (int, error)

func (*StorageClass) MarshalToSizedBuffer

func (m *StorageClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StorageClass) ProtoMessage

func (*StorageClass) ProtoMessage()

func (*StorageClass) Reset

func (m *StorageClass) Reset()

func (*StorageClass) Size

func (m *StorageClass) Size() (n int)

func (*StorageClass) String

func (this *StorageClass) String() string

func (*StorageClass) Unmarshal

func (m *StorageClass) Unmarshal(dAtA []byte) error

func (*StorageClass) XXX_DiscardUnknown

func (m *StorageClass) XXX_DiscardUnknown()

func (*StorageClass) XXX_Marshal

func (m *StorageClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StorageClass) XXX_Merge

func (m *StorageClass) XXX_Merge(src proto.Message)

func (*StorageClass) XXX_Size

func (m *StorageClass) XXX_Size() int

func (*StorageClass) XXX_Unmarshal

func (m *StorageClass) XXX_Unmarshal(b []byte) error

type StorageClassList

type StorageClassList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of StorageClasses
	Items []*StorageClass `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
}

StorageClassList is a collection of storage classes.

func (*StorageClassList) Descriptor

func (*StorageClassList) Descriptor() ([]byte, []int)

func (*StorageClassList) Equal

func (this *StorageClassList) Equal(that interface{}) bool

func (*StorageClassList) GetItems

func (m *StorageClassList) GetItems() []*StorageClass

func (*StorageClassList) GetMetadata

func (m *StorageClassList) GetMetadata() *v1.ListMeta

func (*StorageClassList) GoString

func (this *StorageClassList) GoString() string

func (*StorageClassList) Marshal

func (m *StorageClassList) Marshal() (dAtA []byte, err error)

func (*StorageClassList) MarshalTo

func (m *StorageClassList) MarshalTo(dAtA []byte) (int, error)

func (*StorageClassList) MarshalToSizedBuffer

func (m *StorageClassList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StorageClassList) ProtoMessage

func (*StorageClassList) ProtoMessage()

func (*StorageClassList) Reset

func (m *StorageClassList) Reset()

func (*StorageClassList) Size

func (m *StorageClassList) Size() (n int)

func (*StorageClassList) String

func (this *StorageClassList) String() string

func (*StorageClassList) Unmarshal

func (m *StorageClassList) Unmarshal(dAtA []byte) error

func (*StorageClassList) XXX_DiscardUnknown

func (m *StorageClassList) XXX_DiscardUnknown()

func (*StorageClassList) XXX_Marshal

func (m *StorageClassList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StorageClassList) XXX_Merge

func (m *StorageClassList) XXX_Merge(src proto.Message)

func (*StorageClassList) XXX_Size

func (m *StorageClassList) XXX_Size() int

func (*StorageClassList) XXX_Unmarshal

func (m *StorageClassList) XXX_Unmarshal(b []byte) error

type VolumeAttachment

type VolumeAttachment struct {
	// Standard object metadata.
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Specification of the desired attach/detach volume behavior.
	// Populated by the Kubernetes system.
	Spec *VolumeAttachmentSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// Status of the VolumeAttachment request.
	// Populated by the entity completing the attach or detach
	// operation, i.e. the external-attacher.
	// +optional
	Status *VolumeAttachmentStatus `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
}

VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.

VolumeAttachment objects are non-namespaced.

func (*VolumeAttachment) Descriptor

func (*VolumeAttachment) Descriptor() ([]byte, []int)

func (*VolumeAttachment) Equal

func (this *VolumeAttachment) Equal(that interface{}) bool

func (*VolumeAttachment) GetMetadata

func (m *VolumeAttachment) GetMetadata() *v1.ObjectMeta

func (*VolumeAttachment) GetSpec

func (m *VolumeAttachment) GetSpec() *VolumeAttachmentSpec

func (*VolumeAttachment) GetStatus

func (m *VolumeAttachment) GetStatus() *VolumeAttachmentStatus

func (*VolumeAttachment) GoString

func (this *VolumeAttachment) GoString() string

func (*VolumeAttachment) Marshal

func (m *VolumeAttachment) Marshal() (dAtA []byte, err error)

func (*VolumeAttachment) MarshalTo

func (m *VolumeAttachment) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachment) MarshalToSizedBuffer

func (m *VolumeAttachment) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachment) ProtoMessage

func (*VolumeAttachment) ProtoMessage()

func (*VolumeAttachment) Reset

func (m *VolumeAttachment) Reset()

func (*VolumeAttachment) Size

func (m *VolumeAttachment) Size() (n int)

func (*VolumeAttachment) String

func (this *VolumeAttachment) String() string

func (*VolumeAttachment) Unmarshal

func (m *VolumeAttachment) Unmarshal(dAtA []byte) error

func (*VolumeAttachment) XXX_DiscardUnknown

func (m *VolumeAttachment) XXX_DiscardUnknown()

func (*VolumeAttachment) XXX_Marshal

func (m *VolumeAttachment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachment) XXX_Merge

func (m *VolumeAttachment) XXX_Merge(src proto.Message)

func (*VolumeAttachment) XXX_Size

func (m *VolumeAttachment) XXX_Size() int

func (*VolumeAttachment) XXX_Unmarshal

func (m *VolumeAttachment) XXX_Unmarshal(b []byte) error

type VolumeAttachmentList

type VolumeAttachmentList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of VolumeAttachments
	Items []*VolumeAttachment `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
}

VolumeAttachmentList is a collection of VolumeAttachment objects.

func (*VolumeAttachmentList) Descriptor

func (*VolumeAttachmentList) Descriptor() ([]byte, []int)

func (*VolumeAttachmentList) Equal

func (this *VolumeAttachmentList) Equal(that interface{}) bool

func (*VolumeAttachmentList) GetItems

func (m *VolumeAttachmentList) GetItems() []*VolumeAttachment

func (*VolumeAttachmentList) GetMetadata

func (m *VolumeAttachmentList) GetMetadata() *v1.ListMeta

func (*VolumeAttachmentList) GoString

func (this *VolumeAttachmentList) GoString() string

func (*VolumeAttachmentList) Marshal

func (m *VolumeAttachmentList) Marshal() (dAtA []byte, err error)

func (*VolumeAttachmentList) MarshalTo

func (m *VolumeAttachmentList) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachmentList) MarshalToSizedBuffer

func (m *VolumeAttachmentList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachmentList) ProtoMessage

func (*VolumeAttachmentList) ProtoMessage()

func (*VolumeAttachmentList) Reset

func (m *VolumeAttachmentList) Reset()

func (*VolumeAttachmentList) Size

func (m *VolumeAttachmentList) Size() (n int)

func (*VolumeAttachmentList) String

func (this *VolumeAttachmentList) String() string

func (*VolumeAttachmentList) Unmarshal

func (m *VolumeAttachmentList) Unmarshal(dAtA []byte) error

func (*VolumeAttachmentList) XXX_DiscardUnknown

func (m *VolumeAttachmentList) XXX_DiscardUnknown()

func (*VolumeAttachmentList) XXX_Marshal

func (m *VolumeAttachmentList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachmentList) XXX_Merge

func (m *VolumeAttachmentList) XXX_Merge(src proto.Message)

func (*VolumeAttachmentList) XXX_Size

func (m *VolumeAttachmentList) XXX_Size() int

func (*VolumeAttachmentList) XXX_Unmarshal

func (m *VolumeAttachmentList) XXX_Unmarshal(b []byte) error

type VolumeAttachmentSource

type VolumeAttachmentSource struct {
	// Name of the persistent volume to attach.
	// +optional
	PersistentVolumeName string `protobuf:"bytes,1,opt,name=persistentVolumeName" json:"persistentVolumeName"`
	// inlineVolumeSpec contains all the information necessary to attach
	// a persistent volume defined by a pod's inline VolumeSource. This field
	// is populated only for the CSIMigration feature. It contains
	// translated fields from a pod's inline VolumeSource to a
	// PersistentVolumeSpec. This field is alpha-level and is only
	// honored by servers that enabled the CSIMigration feature.
	// +optional
	InlineVolumeSpec *v11.PersistentVolumeSpec `protobuf:"bytes,2,opt,name=inlineVolumeSpec" json:"inlineVolumeSpec,omitempty"`
}

VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.

func (*VolumeAttachmentSource) Descriptor

func (*VolumeAttachmentSource) Descriptor() ([]byte, []int)

func (*VolumeAttachmentSource) Equal

func (this *VolumeAttachmentSource) Equal(that interface{}) bool

func (*VolumeAttachmentSource) GetInlineVolumeSpec

func (m *VolumeAttachmentSource) GetInlineVolumeSpec() *v11.PersistentVolumeSpec

func (*VolumeAttachmentSource) GetPersistentVolumeName

func (m *VolumeAttachmentSource) GetPersistentVolumeName() string

func (*VolumeAttachmentSource) GoString

func (this *VolumeAttachmentSource) GoString() string

func (*VolumeAttachmentSource) Marshal

func (m *VolumeAttachmentSource) Marshal() (dAtA []byte, err error)

func (*VolumeAttachmentSource) MarshalTo

func (m *VolumeAttachmentSource) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachmentSource) MarshalToSizedBuffer

func (m *VolumeAttachmentSource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachmentSource) ProtoMessage

func (*VolumeAttachmentSource) ProtoMessage()

func (*VolumeAttachmentSource) Reset

func (m *VolumeAttachmentSource) Reset()

func (*VolumeAttachmentSource) Size

func (m *VolumeAttachmentSource) Size() (n int)

func (*VolumeAttachmentSource) String

func (this *VolumeAttachmentSource) String() string

func (*VolumeAttachmentSource) Unmarshal

func (m *VolumeAttachmentSource) Unmarshal(dAtA []byte) error

func (*VolumeAttachmentSource) XXX_DiscardUnknown

func (m *VolumeAttachmentSource) XXX_DiscardUnknown()

func (*VolumeAttachmentSource) XXX_Marshal

func (m *VolumeAttachmentSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachmentSource) XXX_Merge

func (m *VolumeAttachmentSource) XXX_Merge(src proto.Message)

func (*VolumeAttachmentSource) XXX_Size

func (m *VolumeAttachmentSource) XXX_Size() int

func (*VolumeAttachmentSource) XXX_Unmarshal

func (m *VolumeAttachmentSource) XXX_Unmarshal(b []byte) error

type VolumeAttachmentSpec

type VolumeAttachmentSpec struct {
	// Attacher indicates the name of the volume driver that MUST handle this
	// request. This is the name returned by GetPluginName().
	Attacher string `protobuf:"bytes,1,opt,name=attacher" json:"attacher"`
	// Source represents the volume that should be attached.
	Source *VolumeAttachmentSource `protobuf:"bytes,2,opt,name=source" json:"source,omitempty"`
	// The node that the volume should be attached to.
	NodeName string `protobuf:"bytes,3,opt,name=nodeName" json:"nodeName"`
}

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

func (*VolumeAttachmentSpec) Descriptor

func (*VolumeAttachmentSpec) Descriptor() ([]byte, []int)

func (*VolumeAttachmentSpec) Equal

func (this *VolumeAttachmentSpec) Equal(that interface{}) bool

func (*VolumeAttachmentSpec) GetAttacher

func (m *VolumeAttachmentSpec) GetAttacher() string

func (*VolumeAttachmentSpec) GetNodeName

func (m *VolumeAttachmentSpec) GetNodeName() string

func (*VolumeAttachmentSpec) GetSource

func (*VolumeAttachmentSpec) GoString

func (this *VolumeAttachmentSpec) GoString() string

func (*VolumeAttachmentSpec) Marshal

func (m *VolumeAttachmentSpec) Marshal() (dAtA []byte, err error)

func (*VolumeAttachmentSpec) MarshalTo

func (m *VolumeAttachmentSpec) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachmentSpec) MarshalToSizedBuffer

func (m *VolumeAttachmentSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachmentSpec) ProtoMessage

func (*VolumeAttachmentSpec) ProtoMessage()

func (*VolumeAttachmentSpec) Reset

func (m *VolumeAttachmentSpec) Reset()

func (*VolumeAttachmentSpec) Size

func (m *VolumeAttachmentSpec) Size() (n int)

func (*VolumeAttachmentSpec) String

func (this *VolumeAttachmentSpec) String() string

func (*VolumeAttachmentSpec) Unmarshal

func (m *VolumeAttachmentSpec) Unmarshal(dAtA []byte) error

func (*VolumeAttachmentSpec) XXX_DiscardUnknown

func (m *VolumeAttachmentSpec) XXX_DiscardUnknown()

func (*VolumeAttachmentSpec) XXX_Marshal

func (m *VolumeAttachmentSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachmentSpec) XXX_Merge

func (m *VolumeAttachmentSpec) XXX_Merge(src proto.Message)

func (*VolumeAttachmentSpec) XXX_Size

func (m *VolumeAttachmentSpec) XXX_Size() int

func (*VolumeAttachmentSpec) XXX_Unmarshal

func (m *VolumeAttachmentSpec) XXX_Unmarshal(b []byte) error

type VolumeAttachmentStatus

type VolumeAttachmentStatus struct {
	// Indicates the volume is successfully attached.
	// This field must only be set by the entity completing the attach
	// operation, i.e. the external-attacher.
	Attached bool `protobuf:"varint,1,opt,name=attached" json:"attached"`
	// Upon successful attach, this field is populated with any
	// information returned by the attach operation that must be passed
	// into subsequent WaitForAttach or Mount calls.
	// This field must only be set by the entity completing the attach
	// operation, i.e. the external-attacher.
	// +optional
	AttachmentMetadata map[string]string `` /* 156-byte string literal not displayed */
	// The last error encountered during attach operation, if any.
	// This field must only be set by the entity completing the attach
	// operation, i.e. the external-attacher.
	// +optional
	AttachError *VolumeError `protobuf:"bytes,3,opt,name=attachError" json:"attachError,omitempty"`
	// The last error encountered during detach operation, if any.
	// This field must only be set by the entity completing the detach
	// operation, i.e. the external-attacher.
	// +optional
	DetachError *VolumeError `protobuf:"bytes,4,opt,name=detachError" json:"detachError,omitempty"`
}

VolumeAttachmentStatus is the status of a VolumeAttachment request.

func (*VolumeAttachmentStatus) Descriptor

func (*VolumeAttachmentStatus) Descriptor() ([]byte, []int)

func (*VolumeAttachmentStatus) Equal

func (this *VolumeAttachmentStatus) Equal(that interface{}) bool

func (*VolumeAttachmentStatus) GetAttachError

func (m *VolumeAttachmentStatus) GetAttachError() *VolumeError

func (*VolumeAttachmentStatus) GetAttached

func (m *VolumeAttachmentStatus) GetAttached() bool

func (*VolumeAttachmentStatus) GetAttachmentMetadata

func (m *VolumeAttachmentStatus) GetAttachmentMetadata() map[string]string

func (*VolumeAttachmentStatus) GetDetachError

func (m *VolumeAttachmentStatus) GetDetachError() *VolumeError

func (*VolumeAttachmentStatus) GoString

func (this *VolumeAttachmentStatus) GoString() string

func (*VolumeAttachmentStatus) Marshal

func (m *VolumeAttachmentStatus) Marshal() (dAtA []byte, err error)

func (*VolumeAttachmentStatus) MarshalTo

func (m *VolumeAttachmentStatus) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachmentStatus) MarshalToSizedBuffer

func (m *VolumeAttachmentStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachmentStatus) ProtoMessage

func (*VolumeAttachmentStatus) ProtoMessage()

func (*VolumeAttachmentStatus) Reset

func (m *VolumeAttachmentStatus) Reset()

func (*VolumeAttachmentStatus) Size

func (m *VolumeAttachmentStatus) Size() (n int)

func (*VolumeAttachmentStatus) String

func (this *VolumeAttachmentStatus) String() string

func (*VolumeAttachmentStatus) Unmarshal

func (m *VolumeAttachmentStatus) Unmarshal(dAtA []byte) error

func (*VolumeAttachmentStatus) XXX_DiscardUnknown

func (m *VolumeAttachmentStatus) XXX_DiscardUnknown()

func (*VolumeAttachmentStatus) XXX_Marshal

func (m *VolumeAttachmentStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachmentStatus) XXX_Merge

func (m *VolumeAttachmentStatus) XXX_Merge(src proto.Message)

func (*VolumeAttachmentStatus) XXX_Size

func (m *VolumeAttachmentStatus) XXX_Size() int

func (*VolumeAttachmentStatus) XXX_Unmarshal

func (m *VolumeAttachmentStatus) XXX_Unmarshal(b []byte) error

type VolumeError

type VolumeError struct {
	// Time the error was encountered.
	// +optional
	Time *v1.Time `protobuf:"bytes,1,opt,name=time" json:"time,omitempty"`
	// String detailing the error encountered during Attach or Detach operation.
	// This string may be logged, so it should not contain sensitive
	// information.
	// +optional
	Message string `protobuf:"bytes,2,opt,name=message" json:"message"`
}

VolumeError captures an error encountered during a volume operation.

func (*VolumeError) Descriptor

func (*VolumeError) Descriptor() ([]byte, []int)

func (*VolumeError) Equal

func (this *VolumeError) Equal(that interface{}) bool

func (*VolumeError) GetMessage

func (m *VolumeError) GetMessage() string

func (*VolumeError) GetTime

func (m *VolumeError) GetTime() *v1.Time

func (*VolumeError) GoString

func (this *VolumeError) GoString() string

func (*VolumeError) Marshal

func (m *VolumeError) Marshal() (dAtA []byte, err error)

func (*VolumeError) MarshalTo

func (m *VolumeError) MarshalTo(dAtA []byte) (int, error)

func (*VolumeError) MarshalToSizedBuffer

func (m *VolumeError) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeError) ProtoMessage

func (*VolumeError) ProtoMessage()

func (*VolumeError) Reset

func (m *VolumeError) Reset()

func (*VolumeError) Size

func (m *VolumeError) Size() (n int)

func (*VolumeError) String

func (this *VolumeError) String() string

func (*VolumeError) Unmarshal

func (m *VolumeError) Unmarshal(dAtA []byte) error

func (*VolumeError) XXX_DiscardUnknown

func (m *VolumeError) XXX_DiscardUnknown()

func (*VolumeError) XXX_Marshal

func (m *VolumeError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeError) XXX_Merge

func (m *VolumeError) XXX_Merge(src proto.Message)

func (*VolumeError) XXX_Size

func (m *VolumeError) XXX_Size() int

func (*VolumeError) XXX_Unmarshal

func (m *VolumeError) XXX_Unmarshal(b []byte) error

type VolumeNodeResources

type VolumeNodeResources struct {
	// Maximum number of unique volumes managed by the CSI driver that can be used on a node.
	// A volume that is both attached and mounted on a node is considered to be used once, not twice.
	// The same rule applies for a unique volume that is shared among multiple pods on the same node.
	// If this field is nil, then the supported number of volumes on this node is unbounded.
	// +optional
	Count int32 `protobuf:"varint,1,opt,name=count" json:"count"`
}

VolumeNodeResources is a set of resource limits for scheduling of volumes.

func (*VolumeNodeResources) Descriptor

func (*VolumeNodeResources) Descriptor() ([]byte, []int)

func (*VolumeNodeResources) Equal

func (this *VolumeNodeResources) Equal(that interface{}) bool

func (*VolumeNodeResources) GetCount

func (m *VolumeNodeResources) GetCount() int32

func (*VolumeNodeResources) GoString

func (this *VolumeNodeResources) GoString() string

func (*VolumeNodeResources) Marshal

func (m *VolumeNodeResources) Marshal() (dAtA []byte, err error)

func (*VolumeNodeResources) MarshalTo

func (m *VolumeNodeResources) MarshalTo(dAtA []byte) (int, error)

func (*VolumeNodeResources) MarshalToSizedBuffer

func (m *VolumeNodeResources) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeNodeResources) ProtoMessage

func (*VolumeNodeResources) ProtoMessage()

func (*VolumeNodeResources) Reset

func (m *VolumeNodeResources) Reset()

func (*VolumeNodeResources) Size

func (m *VolumeNodeResources) Size() (n int)

func (*VolumeNodeResources) String

func (this *VolumeNodeResources) String() string

func (*VolumeNodeResources) Unmarshal

func (m *VolumeNodeResources) Unmarshal(dAtA []byte) error

func (*VolumeNodeResources) XXX_DiscardUnknown

func (m *VolumeNodeResources) XXX_DiscardUnknown()

func (*VolumeNodeResources) XXX_Marshal

func (m *VolumeNodeResources) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeNodeResources) XXX_Merge

func (m *VolumeNodeResources) XXX_Merge(src proto.Message)

func (*VolumeNodeResources) XXX_Size

func (m *VolumeNodeResources) XXX_Size() int

func (*VolumeNodeResources) XXX_Unmarshal

func (m *VolumeNodeResources) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL