v1alpha1

package
v1.2.2 Latest Latest
Warning

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

Go to latest
Published: Jan 12, 2022 License: Apache-2.0 Imports: 11 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")
	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
)

Functions

This section is empty.

Types

type CSIStorageCapacity added in v1.2.2

type CSIStorageCapacity struct {
	// Standard object's metadata. The name has no particular meaning. It must be
	// be a DNS subdomain (dots allowed, 253 characters). To ensure that
	// there are no conflicts with other CSI drivers on the cluster, the recommendation
	// is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
	// with the unique CSI driver name.
	//
	// Objects are namespaced.
	//
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// NodeTopology defines which nodes have access to the storage
	// for which capacity was reported. If not set, the storage is
	// not accessible from any node in the cluster. If empty, the
	// storage is accessible from all nodes. This field is
	// immutable.
	//
	// +optional
	NodeTopology *v1.LabelSelector `protobuf:"bytes,2,opt,name=nodeTopology" json:"nodeTopology,omitempty"`
	// The name of the StorageClass that the reported capacity applies to.
	// It must meet the same requirements as the name of a StorageClass
	// object (non-empty, DNS subdomain). If that object no longer exists,
	// the CSIStorageCapacity object is obsolete and should be removed by its
	// creator.
	// This field is immutable.
	StorageClassName *string `protobuf:"bytes,3,opt,name=storageClassName" json:"storageClassName,omitempty"`
	// Capacity is the value reported by the CSI driver in its GetCapacityResponse
	// for a GetCapacityRequest with topology and parameters that match the
	// previous fields.
	//
	// The semantic is currently (CSI spec 1.2) defined as:
	// The available capacity, in bytes, of the storage that can be used
	// to provision volumes. If not set, that information is currently
	// unavailable and treated like zero capacity.
	//
	// +optional
	Capacity             *resource.Quantity `protobuf:"bytes,4,opt,name=capacity" json:"capacity,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment. This can be used when considering where to instantiate new PersistentVolumes.

For example this can express things like: - StorageClass "standard" has "1234 GiB" available in "topology.kubernetes.io/zone=us-east1" - StorageClass "localssd" has "10 GiB" available in "kubernetes.io/hostname=knode-abc123"

The following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero

The producer of these objects can decide which approach is more suitable.

This is an alpha feature and only available when the CSIStorageCapacity feature is enabled.

func (*CSIStorageCapacity) Descriptor added in v1.2.2

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

func (*CSIStorageCapacity) GetCapacity added in v1.2.2

func (m *CSIStorageCapacity) GetCapacity() *resource.Quantity

func (*CSIStorageCapacity) GetMetadata added in v1.2.2

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

func (*CSIStorageCapacity) GetNodeTopology added in v1.2.2

func (m *CSIStorageCapacity) GetNodeTopology() *v1.LabelSelector

func (*CSIStorageCapacity) GetStorageClassName added in v1.2.2

func (m *CSIStorageCapacity) GetStorageClassName() string

func (*CSIStorageCapacity) Marshal added in v1.2.2

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

func (*CSIStorageCapacity) MarshalTo added in v1.2.2

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

func (*CSIStorageCapacity) MarshalToSizedBuffer added in v1.2.2

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

func (*CSIStorageCapacity) ProtoMessage added in v1.2.2

func (*CSIStorageCapacity) ProtoMessage()

func (*CSIStorageCapacity) Reset added in v1.2.2

func (m *CSIStorageCapacity) Reset()

func (*CSIStorageCapacity) Size added in v1.2.2

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

func (*CSIStorageCapacity) String added in v1.2.2

func (m *CSIStorageCapacity) String() string

func (*CSIStorageCapacity) Unmarshal added in v1.2.2

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

func (*CSIStorageCapacity) XXX_DiscardUnknown added in v1.2.2

func (m *CSIStorageCapacity) XXX_DiscardUnknown()

func (*CSIStorageCapacity) XXX_Marshal added in v1.2.2

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

func (*CSIStorageCapacity) XXX_Merge added in v1.2.2

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

func (*CSIStorageCapacity) XXX_Size added in v1.2.2

func (m *CSIStorageCapacity) XXX_Size() int

func (*CSIStorageCapacity) XXX_Unmarshal added in v1.2.2

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

type CSIStorageCapacityList added in v1.2.2

type CSIStorageCapacityList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of CSIStorageCapacity objects.
	// +listType=map
	// +listMapKey=name
	Items                []*CSIStorageCapacity `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

CSIStorageCapacityList is a collection of CSIStorageCapacity objects.

func (*CSIStorageCapacityList) Descriptor added in v1.2.2

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

func (*CSIStorageCapacityList) GetItems added in v1.2.2

func (m *CSIStorageCapacityList) GetItems() []*CSIStorageCapacity

func (*CSIStorageCapacityList) GetMetadata added in v1.2.2

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

func (*CSIStorageCapacityList) Marshal added in v1.2.2

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

func (*CSIStorageCapacityList) MarshalTo added in v1.2.2

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

func (*CSIStorageCapacityList) MarshalToSizedBuffer added in v1.2.2

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

func (*CSIStorageCapacityList) ProtoMessage added in v1.2.2

func (*CSIStorageCapacityList) ProtoMessage()

func (*CSIStorageCapacityList) Reset added in v1.2.2

func (m *CSIStorageCapacityList) Reset()

func (*CSIStorageCapacityList) Size added in v1.2.2

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

func (*CSIStorageCapacityList) String added in v1.2.2

func (m *CSIStorageCapacityList) String() string

func (*CSIStorageCapacityList) Unmarshal added in v1.2.2

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

func (*CSIStorageCapacityList) XXX_DiscardUnknown added in v1.2.2

func (m *CSIStorageCapacityList) XXX_DiscardUnknown()

func (*CSIStorageCapacityList) XXX_Marshal added in v1.2.2

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

func (*CSIStorageCapacityList) XXX_Merge added in v1.2.2

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

func (*CSIStorageCapacityList) XXX_Size added in v1.2.2

func (m *CSIStorageCapacityList) XXX_Size() int

func (*CSIStorageCapacityList) XXX_Unmarshal added in v1.2.2

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

type VolumeAttachment

type VolumeAttachment struct {
	// Standard object metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/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"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

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) 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) Marshal

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

func (*VolumeAttachment) MarshalTo

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

func (*VolumeAttachment) MarshalToSizedBuffer added in v1.2.1

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 (m *VolumeAttachment) String() string

func (*VolumeAttachment) Unmarshal

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

func (*VolumeAttachment) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachment) XXX_DiscardUnknown()

func (*VolumeAttachment) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachment) XXX_Merge added in v1.2.1

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

func (*VolumeAttachment) XXX_Size added in v1.2.1

func (m *VolumeAttachment) XXX_Size() int

func (*VolumeAttachment) XXX_Unmarshal added in v1.2.1

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/sig-architecture/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"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

VolumeAttachmentList is a collection of VolumeAttachment objects.

func (*VolumeAttachmentList) Descriptor

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

func (*VolumeAttachmentList) GetItems

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

func (*VolumeAttachmentList) GetMetadata

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

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 added in v1.2.1

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 (m *VolumeAttachmentList) String() string

func (*VolumeAttachmentList) Unmarshal

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

func (*VolumeAttachmentList) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachmentList) XXX_DiscardUnknown()

func (*VolumeAttachmentList) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachmentList) XXX_Merge added in v1.2.1

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

func (*VolumeAttachmentList) XXX_Size added in v1.2.1

func (m *VolumeAttachmentList) XXX_Size() int

func (*VolumeAttachmentList) XXX_Unmarshal added in v1.2.1

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,omitempty"`
	// 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"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

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) GetInlineVolumeSpec added in v1.2.2

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

func (*VolumeAttachmentSource) GetPersistentVolumeName

func (m *VolumeAttachmentSource) GetPersistentVolumeName() 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 added in v1.2.1

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 (m *VolumeAttachmentSource) String() string

func (*VolumeAttachmentSource) Unmarshal

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

func (*VolumeAttachmentSource) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachmentSource) XXX_DiscardUnknown()

func (*VolumeAttachmentSource) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachmentSource) XXX_Merge added in v1.2.1

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

func (*VolumeAttachmentSource) XXX_Size added in v1.2.1

func (m *VolumeAttachmentSource) XXX_Size() int

func (*VolumeAttachmentSource) XXX_Unmarshal added in v1.2.1

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,omitempty"`
	// 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,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

func (*VolumeAttachmentSpec) Descriptor

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

func (*VolumeAttachmentSpec) GetAttacher

func (m *VolumeAttachmentSpec) GetAttacher() string

func (*VolumeAttachmentSpec) GetNodeName

func (m *VolumeAttachmentSpec) GetNodeName() string

func (*VolumeAttachmentSpec) GetSource

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 added in v1.2.1

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 (m *VolumeAttachmentSpec) String() string

func (*VolumeAttachmentSpec) Unmarshal

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

func (*VolumeAttachmentSpec) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachmentSpec) XXX_DiscardUnknown()

func (*VolumeAttachmentSpec) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachmentSpec) XXX_Merge added in v1.2.1

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

func (*VolumeAttachmentSpec) XXX_Size added in v1.2.1

func (m *VolumeAttachmentSpec) XXX_Size() int

func (*VolumeAttachmentSpec) XXX_Unmarshal added in v1.2.1

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,omitempty"`
	// 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"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

VolumeAttachmentStatus is the status of a VolumeAttachment request.

func (*VolumeAttachmentStatus) Descriptor

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

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) Marshal

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

func (*VolumeAttachmentStatus) MarshalTo

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

func (*VolumeAttachmentStatus) MarshalToSizedBuffer added in v1.2.1

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 (m *VolumeAttachmentStatus) String() string

func (*VolumeAttachmentStatus) Unmarshal

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

func (*VolumeAttachmentStatus) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachmentStatus) XXX_DiscardUnknown()

func (*VolumeAttachmentStatus) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachmentStatus) XXX_Merge added in v1.2.1

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

func (*VolumeAttachmentStatus) XXX_Size added in v1.2.1

func (m *VolumeAttachmentStatus) XXX_Size() int

func (*VolumeAttachmentStatus) XXX_Unmarshal added in v1.2.1

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 maybe logged, so it should not contain sensitive
	// information.
	// +optional
	Message              *string  `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

VolumeError captures an error encountered during a volume operation.

func (*VolumeError) Descriptor

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

func (*VolumeError) GetMessage

func (m *VolumeError) GetMessage() string

func (*VolumeError) GetTime

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

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 added in v1.2.1

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 (m *VolumeError) String() string

func (*VolumeError) Unmarshal

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

func (*VolumeError) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeError) XXX_DiscardUnknown()

func (*VolumeError) XXX_Marshal added in v1.2.1

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

func (*VolumeError) XXX_Merge added in v1.2.1

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

func (*VolumeError) XXX_Size added in v1.2.1

func (m *VolumeError) XXX_Size() int

func (*VolumeError) XXX_Unmarshal added in v1.2.1

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

Jump to

Keyboard shortcuts

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