v1alpha1

package
v1.2.0 Latest Latest
Warning

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

Go to latest
Published: Jul 26, 2018 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Overview

Package v1alpha1 is a generated protocol buffer package.

It is generated from these files:

k8s.io/api/storage/v1alpha1/generated.proto

It has these top-level messages:

VolumeAttachment
VolumeAttachmentList
VolumeAttachmentSource
VolumeAttachmentSpec
VolumeAttachmentStatus
VolumeError

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 VolumeAttachment

type VolumeAttachment struct {
	// Standard object metadata.
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_apimachinery_pkg_apis_meta_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_unrecognized []byte                  `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 (*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) 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

type VolumeAttachmentList

type VolumeAttachmentList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
	// +optional
	Metadata *k8s_io_apimachinery_pkg_apis_meta_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_unrecognized []byte              `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 (*VolumeAttachmentList) Marshal

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

func (*VolumeAttachmentList) MarshalTo

func (m *VolumeAttachmentList) MarshalTo(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

type VolumeAttachmentSource

type VolumeAttachmentSource struct {
	// Name of the persistent volume to attach.
	// +optional
	PersistentVolumeName *string `protobuf:"bytes,1,opt,name=persistentVolumeName" json:"persistentVolumeName,omitempty"`
	XXX_unrecognized     []byte  `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) 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) 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

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_unrecognized []byte  `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) 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

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_unrecognized []byte       `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) 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

type VolumeError

type VolumeError struct {
	// Time the error was encountered.
	// +optional
	Time *k8s_io_apimachinery_pkg_apis_meta_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_unrecognized []byte  `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 (*VolumeError) Marshal

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

func (*VolumeError) MarshalTo

func (m *VolumeError) MarshalTo(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

Jump to

Keyboard shortcuts

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