Documentation ¶
Overview ¶
Package v1alpha1 is a generated protocol buffer package.
It is generated from these files:
k8s.io/api/scheduling/v1alpha1/generated.proto
It has these top-level messages:
PriorityClass PriorityClassList
Index ¶
- Variables
- type PriorityClass
- func (*PriorityClass) Descriptor() ([]byte, []int)
- func (m *PriorityClass) GetDescription() string
- func (m *PriorityClass) GetGlobalDefault() bool
- func (m *PriorityClass) GetMetadata() *k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta
- func (m *PriorityClass) GetValue() int32
- func (m *PriorityClass) Marshal() (dAtA []byte, err error)
- func (m *PriorityClass) MarshalTo(dAtA []byte) (int, error)
- func (*PriorityClass) ProtoMessage()
- func (m *PriorityClass) Reset()
- func (m *PriorityClass) Size() (n int)
- func (m *PriorityClass) String() string
- func (m *PriorityClass) Unmarshal(dAtA []byte) error
- type PriorityClassList
- func (*PriorityClassList) Descriptor() ([]byte, []int)
- func (m *PriorityClassList) GetItems() []*PriorityClass
- func (m *PriorityClassList) GetMetadata() *k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta
- func (m *PriorityClassList) Marshal() (dAtA []byte, err error)
- func (m *PriorityClassList) MarshalTo(dAtA []byte) (int, error)
- func (*PriorityClassList) ProtoMessage()
- func (m *PriorityClassList) Reset()
- func (m *PriorityClassList) Size() (n int)
- func (m *PriorityClassList) String() string
- func (m *PriorityClassList) Unmarshal(dAtA []byte) error
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 PriorityClass ¶
type PriorityClass struct { // Standard object's 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"` // The value of this priority class. This is the actual priority that pods // receive when they have the name of this class in their pod spec. Value *int32 `protobuf:"varint,2,opt,name=value" json:"value,omitempty"` // globalDefault specifies whether this PriorityClass should be considered as // the default priority for pods that do not have any priority class. // Only one PriorityClass can be marked as `globalDefault`. However, if more than // one PriorityClasses exists with their `globalDefault` field set to true, // the smallest value of such global default PriorityClasses will be used as the default priority. // +optional GlobalDefault *bool `protobuf:"varint,3,opt,name=globalDefault" json:"globalDefault,omitempty"` // description is an arbitrary string that usually provides guidelines on // when this priority class should be used. // +optional Description *string `protobuf:"bytes,4,opt,name=description" json:"description,omitempty"` XXX_unrecognized []byte `json:"-"` }
PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.
func (*PriorityClass) Descriptor ¶
func (*PriorityClass) Descriptor() ([]byte, []int)
func (*PriorityClass) GetDescription ¶
func (m *PriorityClass) GetDescription() string
func (*PriorityClass) GetGlobalDefault ¶
func (m *PriorityClass) GetGlobalDefault() bool
func (*PriorityClass) GetMetadata ¶
func (m *PriorityClass) GetMetadata() *k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta
func (*PriorityClass) GetValue ¶
func (m *PriorityClass) GetValue() int32
func (*PriorityClass) Marshal ¶
func (m *PriorityClass) Marshal() (dAtA []byte, err error)
func (*PriorityClass) ProtoMessage ¶
func (*PriorityClass) ProtoMessage()
func (*PriorityClass) Reset ¶
func (m *PriorityClass) Reset()
func (*PriorityClass) Size ¶
func (m *PriorityClass) Size() (n int)
func (*PriorityClass) String ¶
func (m *PriorityClass) String() string
func (*PriorityClass) Unmarshal ¶
func (m *PriorityClass) Unmarshal(dAtA []byte) error
type PriorityClassList ¶
type PriorityClassList 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 PriorityClasses Items []*PriorityClass `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"` XXX_unrecognized []byte `json:"-"` }
PriorityClassList is a collection of priority classes.
func (*PriorityClassList) Descriptor ¶
func (*PriorityClassList) Descriptor() ([]byte, []int)
func (*PriorityClassList) GetItems ¶
func (m *PriorityClassList) GetItems() []*PriorityClass
func (*PriorityClassList) GetMetadata ¶
func (m *PriorityClassList) GetMetadata() *k8s_io_apimachinery_pkg_apis_meta_v1.ListMeta
func (*PriorityClassList) Marshal ¶
func (m *PriorityClassList) Marshal() (dAtA []byte, err error)
func (*PriorityClassList) MarshalTo ¶
func (m *PriorityClassList) MarshalTo(dAtA []byte) (int, error)
func (*PriorityClassList) ProtoMessage ¶
func (*PriorityClassList) ProtoMessage()
func (*PriorityClassList) Reset ¶
func (m *PriorityClassList) Reset()
func (*PriorityClassList) Size ¶
func (m *PriorityClassList) Size() (n int)
func (*PriorityClassList) String ¶
func (m *PriorityClassList) String() string
func (*PriorityClassList) Unmarshal ¶
func (m *PriorityClassList) Unmarshal(dAtA []byte) error
Click to show internal directories.
Click to hide internal directories.