2079 lines
		
	
	
		
			54 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			2079 lines
		
	
	
		
			54 KiB
		
	
	
	
		
			Go
		
	
	
	
/*
 | 
						|
Copyright The Kubernetes Authors.
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
 | 
						|
// source: api.proto
 | 
						|
 | 
						|
package v1alpha3
 | 
						|
 | 
						|
import (
 | 
						|
	context "context"
 | 
						|
	fmt "fmt"
 | 
						|
	_ "github.com/gogo/protobuf/gogoproto"
 | 
						|
	proto "github.com/gogo/protobuf/proto"
 | 
						|
	github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
 | 
						|
	grpc "google.golang.org/grpc"
 | 
						|
	codes "google.golang.org/grpc/codes"
 | 
						|
	status "google.golang.org/grpc/status"
 | 
						|
	io "io"
 | 
						|
	math "math"
 | 
						|
	math_bits "math/bits"
 | 
						|
	reflect "reflect"
 | 
						|
	strings "strings"
 | 
						|
)
 | 
						|
 | 
						|
// Reference imports to suppress errors if they are not otherwise used.
 | 
						|
var _ = proto.Marshal
 | 
						|
var _ = fmt.Errorf
 | 
						|
var _ = math.Inf
 | 
						|
 | 
						|
// This is a compile-time assertion to ensure that this generated file
 | 
						|
// is compatible with the proto package it is being compiled against.
 | 
						|
// A compilation error at this line likely means your copy of the
 | 
						|
// proto package needs to be updated.
 | 
						|
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
 | 
						|
 | 
						|
type NodePrepareResourcesRequest struct {
 | 
						|
	// The list of ResourceClaims that are to be prepared.
 | 
						|
	Claims               []*Claim `protobuf:"bytes,1,rep,name=claims,proto3" json:"claims,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesRequest) Reset()      { *m = NodePrepareResourcesRequest{} }
 | 
						|
func (*NodePrepareResourcesRequest) ProtoMessage() {}
 | 
						|
func (*NodePrepareResourcesRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_00212fb1f9d3bf1c, []int{0}
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_NodePrepareResourcesRequest.Marshal(b, m, deterministic)
 | 
						|
	} else {
 | 
						|
		b = b[:cap(b)]
 | 
						|
		n, err := m.MarshalToSizedBuffer(b)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		return b[:n], nil
 | 
						|
	}
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_NodePrepareResourcesRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_NodePrepareResourcesRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_NodePrepareResourcesRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
func (m *NodePrepareResourcesRequest) GetClaims() []*Claim {
 | 
						|
	if m != nil {
 | 
						|
		return m.Claims
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
type NodePrepareResourcesResponse struct {
 | 
						|
	// The ResourceClaims for which preparation was done
 | 
						|
	// or attempted, with claim_uid as key.
 | 
						|
	//
 | 
						|
	// It is an error if some claim listed in NodePrepareResourcesRequest
 | 
						|
	// does not get prepared. NodePrepareResources
 | 
						|
	// will be called again for those that are missing.
 | 
						|
	Claims               map[string]*NodePrepareResourceResponse `protobuf:"bytes,1,rep,name=claims,proto3" json:"claims,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}                                `json:"-"`
 | 
						|
	XXX_sizecache        int32                                   `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesResponse) Reset()      { *m = NodePrepareResourcesResponse{} }
 | 
						|
func (*NodePrepareResourcesResponse) ProtoMessage() {}
 | 
						|
func (*NodePrepareResourcesResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_00212fb1f9d3bf1c, []int{1}
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_NodePrepareResourcesResponse.Marshal(b, m, deterministic)
 | 
						|
	} else {
 | 
						|
		b = b[:cap(b)]
 | 
						|
		n, err := m.MarshalToSizedBuffer(b)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		return b[:n], nil
 | 
						|
	}
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_NodePrepareResourcesResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_NodePrepareResourcesResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_NodePrepareResourcesResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
func (m *NodePrepareResourcesResponse) GetClaims() map[string]*NodePrepareResourceResponse {
 | 
						|
	if m != nil {
 | 
						|
		return m.Claims
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
type NodePrepareResourceResponse struct {
 | 
						|
	// These are the additional devices that kubelet must
 | 
						|
	// make available via the container runtime. A resource
 | 
						|
	// may have zero or more devices.
 | 
						|
	CDIDevices []string `protobuf:"bytes,1,rep,name=cdi_devices,json=cdiDevices,proto3" json:"cdi_devices,omitempty"`
 | 
						|
	// If non-empty, preparing the ResourceClaim failed.
 | 
						|
	// cdi_devices is ignored in that case.
 | 
						|
	Error                string   `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourceResponse) Reset()      { *m = NodePrepareResourceResponse{} }
 | 
						|
func (*NodePrepareResourceResponse) ProtoMessage() {}
 | 
						|
func (*NodePrepareResourceResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_00212fb1f9d3bf1c, []int{2}
 | 
						|
}
 | 
						|
func (m *NodePrepareResourceResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *NodePrepareResourceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_NodePrepareResourceResponse.Marshal(b, m, deterministic)
 | 
						|
	} else {
 | 
						|
		b = b[:cap(b)]
 | 
						|
		n, err := m.MarshalToSizedBuffer(b)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		return b[:n], nil
 | 
						|
	}
 | 
						|
}
 | 
						|
func (m *NodePrepareResourceResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_NodePrepareResourceResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *NodePrepareResourceResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *NodePrepareResourceResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_NodePrepareResourceResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_NodePrepareResourceResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
func (m *NodePrepareResourceResponse) GetCDIDevices() []string {
 | 
						|
	if m != nil {
 | 
						|
		return m.CDIDevices
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourceResponse) GetError() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.Error
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
type NodeUnprepareResourcesRequest struct {
 | 
						|
	// The list of ResourceClaims that are to be unprepared.
 | 
						|
	Claims               []*Claim `protobuf:"bytes,1,rep,name=claims,proto3" json:"claims,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesRequest) Reset()      { *m = NodeUnprepareResourcesRequest{} }
 | 
						|
func (*NodeUnprepareResourcesRequest) ProtoMessage() {}
 | 
						|
func (*NodeUnprepareResourcesRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_00212fb1f9d3bf1c, []int{3}
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_NodeUnprepareResourcesRequest.Marshal(b, m, deterministic)
 | 
						|
	} else {
 | 
						|
		b = b[:cap(b)]
 | 
						|
		n, err := m.MarshalToSizedBuffer(b)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		return b[:n], nil
 | 
						|
	}
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_NodeUnprepareResourcesRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_NodeUnprepareResourcesRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_NodeUnprepareResourcesRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesRequest) GetClaims() []*Claim {
 | 
						|
	if m != nil {
 | 
						|
		return m.Claims
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
type NodeUnprepareResourcesResponse struct {
 | 
						|
	// The ResourceClaims for which preparation was reverted.
 | 
						|
	// The same rules as for NodePrepareResourcesResponse.claims
 | 
						|
	// apply.
 | 
						|
	Claims               map[string]*NodeUnprepareResourceResponse `protobuf:"bytes,1,rep,name=claims,proto3" json:"claims,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}                                  `json:"-"`
 | 
						|
	XXX_sizecache        int32                                     `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesResponse) Reset()      { *m = NodeUnprepareResourcesResponse{} }
 | 
						|
func (*NodeUnprepareResourcesResponse) ProtoMessage() {}
 | 
						|
func (*NodeUnprepareResourcesResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_00212fb1f9d3bf1c, []int{4}
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_NodeUnprepareResourcesResponse.Marshal(b, m, deterministic)
 | 
						|
	} else {
 | 
						|
		b = b[:cap(b)]
 | 
						|
		n, err := m.MarshalToSizedBuffer(b)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		return b[:n], nil
 | 
						|
	}
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_NodeUnprepareResourcesResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_NodeUnprepareResourcesResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_NodeUnprepareResourcesResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesResponse) GetClaims() map[string]*NodeUnprepareResourceResponse {
 | 
						|
	if m != nil {
 | 
						|
		return m.Claims
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
type NodeUnprepareResourceResponse struct {
 | 
						|
	// If non-empty, unpreparing the ResourceClaim failed.
 | 
						|
	Error                string   `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourceResponse) Reset()      { *m = NodeUnprepareResourceResponse{} }
 | 
						|
func (*NodeUnprepareResourceResponse) ProtoMessage() {}
 | 
						|
func (*NodeUnprepareResourceResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_00212fb1f9d3bf1c, []int{5}
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourceResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_NodeUnprepareResourceResponse.Marshal(b, m, deterministic)
 | 
						|
	} else {
 | 
						|
		b = b[:cap(b)]
 | 
						|
		n, err := m.MarshalToSizedBuffer(b)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		return b[:n], nil
 | 
						|
	}
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourceResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_NodeUnprepareResourceResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourceResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourceResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_NodeUnprepareResourceResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_NodeUnprepareResourceResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
func (m *NodeUnprepareResourceResponse) GetError() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.Error
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
type Claim struct {
 | 
						|
	// The ResourceClaim namespace (ResourceClaim.meta.Namespace).
 | 
						|
	// This field is REQUIRED.
 | 
						|
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
 | 
						|
	// The UID of the Resource claim (ResourceClaim.meta.UUID).
 | 
						|
	// This field is REQUIRED.
 | 
						|
	Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
 | 
						|
	// The name of the Resource claim (ResourceClaim.meta.Name)
 | 
						|
	// This field is REQUIRED.
 | 
						|
	Name                 string   `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *Claim) Reset()      { *m = Claim{} }
 | 
						|
func (*Claim) ProtoMessage() {}
 | 
						|
func (*Claim) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_00212fb1f9d3bf1c, []int{6}
 | 
						|
}
 | 
						|
func (m *Claim) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *Claim) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_Claim.Marshal(b, m, deterministic)
 | 
						|
	} else {
 | 
						|
		b = b[:cap(b)]
 | 
						|
		n, err := m.MarshalToSizedBuffer(b)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		return b[:n], nil
 | 
						|
	}
 | 
						|
}
 | 
						|
func (m *Claim) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_Claim.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *Claim) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *Claim) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_Claim.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_Claim proto.InternalMessageInfo
 | 
						|
 | 
						|
func (m *Claim) GetNamespace() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.Namespace
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (m *Claim) GetUid() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.Uid
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (m *Claim) GetName() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.Name
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func init() {
 | 
						|
	proto.RegisterType((*NodePrepareResourcesRequest)(nil), "v1alpha3.NodePrepareResourcesRequest")
 | 
						|
	proto.RegisterType((*NodePrepareResourcesResponse)(nil), "v1alpha3.NodePrepareResourcesResponse")
 | 
						|
	proto.RegisterMapType((map[string]*NodePrepareResourceResponse)(nil), "v1alpha3.NodePrepareResourcesResponse.ClaimsEntry")
 | 
						|
	proto.RegisterType((*NodePrepareResourceResponse)(nil), "v1alpha3.NodePrepareResourceResponse")
 | 
						|
	proto.RegisterType((*NodeUnprepareResourcesRequest)(nil), "v1alpha3.NodeUnprepareResourcesRequest")
 | 
						|
	proto.RegisterType((*NodeUnprepareResourcesResponse)(nil), "v1alpha3.NodeUnprepareResourcesResponse")
 | 
						|
	proto.RegisterMapType((map[string]*NodeUnprepareResourceResponse)(nil), "v1alpha3.NodeUnprepareResourcesResponse.ClaimsEntry")
 | 
						|
	proto.RegisterType((*NodeUnprepareResourceResponse)(nil), "v1alpha3.NodeUnprepareResourceResponse")
 | 
						|
	proto.RegisterType((*Claim)(nil), "v1alpha3.Claim")
 | 
						|
}
 | 
						|
 | 
						|
func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) }
 | 
						|
 | 
						|
var fileDescriptor_00212fb1f9d3bf1c = []byte{
 | 
						|
	// 480 bytes of a gzipped FileDescriptorProto
 | 
						|
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4d, 0x6f, 0xd3, 0x40,
 | 
						|
	0x10, 0xcd, 0x36, 0x4d, 0x85, 0x27, 0x12, 0xa0, 0x55, 0x85, 0xa2, 0x50, 0x4c, 0x64, 0x51, 0x92,
 | 
						|
	0x0b, 0xb6, 0x48, 0x41, 0xaa, 0x40, 0x5c, 0xd2, 0x82, 0xf8, 0x12, 0x42, 0x96, 0xb8, 0x70, 0x81,
 | 
						|
	0xb5, 0x3d, 0xb8, 0xab, 0x7c, 0xec, 0xb2, 0x6b, 0x47, 0xea, 0x8d, 0x9f, 0xc0, 0xcf, 0xea, 0x81,
 | 
						|
	0x03, 0xe2, 0xc4, 0xa9, 0xa2, 0xe6, 0x8f, 0x20, 0xaf, 0x9d, 0xf4, 0x43, 0x4e, 0x5d, 0x89, 0xdb,
 | 
						|
	0xcc, 0x78, 0x67, 0xde, 0x9b, 0xf7, 0x46, 0x06, 0x8b, 0x49, 0xee, 0x4a, 0x25, 0x12, 0x41, 0xaf,
 | 
						|
	0xcd, 0x1f, 0xb2, 0x89, 0x3c, 0x60, 0x3b, 0xdd, 0x07, 0x31, 0x4f, 0x0e, 0xd2, 0xc0, 0x0d, 0xc5,
 | 
						|
	0xd4, 0x8b, 0x45, 0x2c, 0x3c, 0xf3, 0x20, 0x48, 0xbf, 0x98, 0xcc, 0x24, 0x26, 0x2a, 0x1a, 0x9d,
 | 
						|
	0x17, 0x70, 0xfb, 0x9d, 0x88, 0xf0, 0xbd, 0x42, 0xc9, 0x14, 0xfa, 0xa8, 0x45, 0xaa, 0x42, 0xd4,
 | 
						|
	0x3e, 0x7e, 0x4d, 0x51, 0x27, 0xb4, 0x0f, 0x1b, 0xe1, 0x84, 0xf1, 0xa9, 0xee, 0x90, 0x5e, 0x73,
 | 
						|
	0xd0, 0x1e, 0xde, 0x70, 0x17, 0x40, 0xee, 0x5e, 0x5e, 0xf7, 0xcb, 0xcf, 0xce, 0x0f, 0x02, 0x5b,
 | 
						|
	0xd5, 0x83, 0xb4, 0x14, 0x33, 0x8d, 0xf4, 0xf5, 0x85, 0x49, 0xc3, 0xd3, 0x49, 0x97, 0xf5, 0x15,
 | 
						|
	0x30, 0xfa, 0xf9, 0x2c, 0x51, 0x87, 0x0b, 0xb0, 0xee, 0x67, 0x68, 0x9f, 0x29, 0xd3, 0x9b, 0xd0,
 | 
						|
	0x1c, 0xe3, 0x61, 0x87, 0xf4, 0xc8, 0xc0, 0xf2, 0xf3, 0x90, 0x3e, 0x85, 0xd6, 0x9c, 0x4d, 0x52,
 | 
						|
	0xec, 0xac, 0xf5, 0xc8, 0xa0, 0x3d, 0xdc, 0xbe, 0x14, 0x6b, 0x01, 0xe5, 0x17, 0x3d, 0x4f, 0xd6,
 | 
						|
	0x76, 0x89, 0x13, 0x55, 0xca, 0xb2, 0x5c, 0xc6, 0x83, 0x76, 0x18, 0xf1, 0x4f, 0x11, 0xce, 0x79,
 | 
						|
	0x88, 0xc5, 0x46, 0xd6, 0xe8, 0x7a, 0x76, 0x7c, 0x17, 0xf6, 0xf6, 0x5f, 0xed, 0x17, 0x55, 0x1f,
 | 
						|
	0xc2, 0x88, 0x97, 0x31, 0xdd, 0x84, 0x16, 0x2a, 0x25, 0x94, 0x21, 0x64, 0xf9, 0x45, 0xe2, 0xbc,
 | 
						|
	0x84, 0x3b, 0x39, 0xca, 0x87, 0x99, 0xfc, 0x5f, 0xf9, 0x7f, 0x11, 0xb0, 0x57, 0x8d, 0x2a, 0x39,
 | 
						|
	0xbf, 0xbd, 0x30, 0xeb, 0xd1, 0x79, 0x51, 0x56, 0x77, 0x56, 0x5a, 0x10, 0xd4, 0x59, 0xf0, 0xec,
 | 
						|
	0xbc, 0x05, 0xfd, 0x1a, 0xb4, 0x2a, 0x13, 0x1e, 0xaf, 0x90, 0x67, 0xb9, 0xd2, 0x52, 0x55, 0x72,
 | 
						|
	0x56, 0xd5, 0x37, 0xd0, 0x32, 0xd4, 0xe8, 0x16, 0x58, 0x33, 0x36, 0x45, 0x2d, 0x59, 0x88, 0xe5,
 | 
						|
	0x93, 0xd3, 0x42, 0x4e, 0x39, 0xe5, 0x51, 0x69, 0x48, 0x1e, 0x52, 0x0a, 0xeb, 0xf9, 0xe7, 0x4e,
 | 
						|
	0xd3, 0x94, 0x4c, 0x3c, 0x3c, 0x26, 0xb0, 0x9e, 0x93, 0xa0, 0x31, 0x6c, 0x56, 0xdd, 0x29, 0xdd,
 | 
						|
	0xae, 0xbb, 0x63, 0xe3, 0x64, 0xf7, 0xfe, 0xd5, 0xce, 0xdd, 0x69, 0xd0, 0x29, 0xdc, 0xaa, 0xf6,
 | 
						|
	0x83, 0xf6, 0xeb, 0x1d, 0x2b, 0xc0, 0x06, 0x57, 0xb5, 0xd6, 0x69, 0x8c, 0x46, 0x47, 0x27, 0x36,
 | 
						|
	0xf9, 0x7d, 0x62, 0x37, 0xbe, 0x65, 0x36, 0x39, 0xca, 0x6c, 0xf2, 0x33, 0xb3, 0xc9, 0x9f, 0xcc,
 | 
						|
	0x26, 0xdf, 0xff, 0xda, 0x8d, 0x8f, 0xf7, 0xc6, 0xbb, 0xda, 0xe5, 0xc2, 0x1b, 0xa7, 0x01, 0x4e,
 | 
						|
	0x30, 0xf1, 0xe4, 0x38, 0xf6, 0x98, 0xe4, 0xda, 0x8b, 0x14, 0xf3, 0x16, 0x20, 0xc1, 0x86, 0xf9,
 | 
						|
	0x97, 0xec, 0xfc, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xac, 0xa8, 0xa3, 0x6a, 0x91, 0x04, 0x00, 0x00,
 | 
						|
}
 | 
						|
 | 
						|
// Reference imports to suppress errors if they are not otherwise used.
 | 
						|
var _ context.Context
 | 
						|
var _ grpc.ClientConn
 | 
						|
 | 
						|
// This is a compile-time assertion to ensure that this generated file
 | 
						|
// is compatible with the grpc package it is being compiled against.
 | 
						|
const _ = grpc.SupportPackageIsVersion4
 | 
						|
 | 
						|
// NodeClient is the client API for Node service.
 | 
						|
//
 | 
						|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
 | 
						|
type NodeClient interface {
 | 
						|
	// NodePrepareResources prepares several ResourceClaims
 | 
						|
	// for use on the node. If an error is returned, the
 | 
						|
	// response is ignored. Failures for individual claims
 | 
						|
	// can be reported inside NodePrepareResourcesResponse.
 | 
						|
	NodePrepareResources(ctx context.Context, in *NodePrepareResourcesRequest, opts ...grpc.CallOption) (*NodePrepareResourcesResponse, error)
 | 
						|
	// NodeUnprepareResources is the opposite of NodePrepareResources.
 | 
						|
	// The same error handling rules apply,
 | 
						|
	NodeUnprepareResources(ctx context.Context, in *NodeUnprepareResourcesRequest, opts ...grpc.CallOption) (*NodeUnprepareResourcesResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
type nodeClient struct {
 | 
						|
	cc *grpc.ClientConn
 | 
						|
}
 | 
						|
 | 
						|
func NewNodeClient(cc *grpc.ClientConn) NodeClient {
 | 
						|
	return &nodeClient{cc}
 | 
						|
}
 | 
						|
 | 
						|
func (c *nodeClient) NodePrepareResources(ctx context.Context, in *NodePrepareResourcesRequest, opts ...grpc.CallOption) (*NodePrepareResourcesResponse, error) {
 | 
						|
	out := new(NodePrepareResourcesResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/v1alpha3.Node/NodePrepareResources", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *nodeClient) NodeUnprepareResources(ctx context.Context, in *NodeUnprepareResourcesRequest, opts ...grpc.CallOption) (*NodeUnprepareResourcesResponse, error) {
 | 
						|
	out := new(NodeUnprepareResourcesResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/v1alpha3.Node/NodeUnprepareResources", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
// NodeServer is the server API for Node service.
 | 
						|
type NodeServer interface {
 | 
						|
	// NodePrepareResources prepares several ResourceClaims
 | 
						|
	// for use on the node. If an error is returned, the
 | 
						|
	// response is ignored. Failures for individual claims
 | 
						|
	// can be reported inside NodePrepareResourcesResponse.
 | 
						|
	NodePrepareResources(context.Context, *NodePrepareResourcesRequest) (*NodePrepareResourcesResponse, error)
 | 
						|
	// NodeUnprepareResources is the opposite of NodePrepareResources.
 | 
						|
	// The same error handling rules apply,
 | 
						|
	NodeUnprepareResources(context.Context, *NodeUnprepareResourcesRequest) (*NodeUnprepareResourcesResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
// UnimplementedNodeServer can be embedded to have forward compatible implementations.
 | 
						|
type UnimplementedNodeServer struct {
 | 
						|
}
 | 
						|
 | 
						|
func (*UnimplementedNodeServer) NodePrepareResources(ctx context.Context, req *NodePrepareResourcesRequest) (*NodePrepareResourcesResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method NodePrepareResources not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedNodeServer) NodeUnprepareResources(ctx context.Context, req *NodeUnprepareResourcesRequest) (*NodeUnprepareResourcesResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method NodeUnprepareResources not implemented")
 | 
						|
}
 | 
						|
 | 
						|
func RegisterNodeServer(s *grpc.Server, srv NodeServer) {
 | 
						|
	s.RegisterService(&_Node_serviceDesc, srv)
 | 
						|
}
 | 
						|
 | 
						|
func _Node_NodePrepareResources_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(NodePrepareResourcesRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(NodeServer).NodePrepareResources(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/v1alpha3.Node/NodePrepareResources",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(NodeServer).NodePrepareResources(ctx, req.(*NodePrepareResourcesRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Node_NodeUnprepareResources_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(NodeUnprepareResourcesRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(NodeServer).NodeUnprepareResources(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/v1alpha3.Node/NodeUnprepareResources",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(NodeServer).NodeUnprepareResources(ctx, req.(*NodeUnprepareResourcesRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
var _Node_serviceDesc = grpc.ServiceDesc{
 | 
						|
	ServiceName: "v1alpha3.Node",
 | 
						|
	HandlerType: (*NodeServer)(nil),
 | 
						|
	Methods: []grpc.MethodDesc{
 | 
						|
		{
 | 
						|
			MethodName: "NodePrepareResources",
 | 
						|
			Handler:    _Node_NodePrepareResources_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "NodeUnprepareResources",
 | 
						|
			Handler:    _Node_NodeUnprepareResources_Handler,
 | 
						|
		},
 | 
						|
	},
 | 
						|
	Streams:  []grpc.StreamDesc{},
 | 
						|
	Metadata: "api.proto",
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesRequest) Marshal() (dAtA []byte, err error) {
 | 
						|
	size := m.Size()
 | 
						|
	dAtA = make([]byte, size)
 | 
						|
	n, err := m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return dAtA[:n], nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Claims) > 0 {
 | 
						|
		for iNdEx := len(m.Claims) - 1; iNdEx >= 0; iNdEx-- {
 | 
						|
			{
 | 
						|
				size, err := m.Claims[iNdEx].MarshalToSizedBuffer(dAtA[:i])
 | 
						|
				if err != nil {
 | 
						|
					return 0, err
 | 
						|
				}
 | 
						|
				i -= size
 | 
						|
				i = encodeVarintApi(dAtA, i, uint64(size))
 | 
						|
			}
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesResponse) Marshal() (dAtA []byte, err error) {
 | 
						|
	size := m.Size()
 | 
						|
	dAtA = make([]byte, size)
 | 
						|
	n, err := m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return dAtA[:n], nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Claims) > 0 {
 | 
						|
		for k := range m.Claims {
 | 
						|
			v := m.Claims[k]
 | 
						|
			baseI := i
 | 
						|
			if v != nil {
 | 
						|
				{
 | 
						|
					size, err := v.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
					if err != nil {
 | 
						|
						return 0, err
 | 
						|
					}
 | 
						|
					i -= size
 | 
						|
					i = encodeVarintApi(dAtA, i, uint64(size))
 | 
						|
				}
 | 
						|
				i--
 | 
						|
				dAtA[i] = 0x12
 | 
						|
			}
 | 
						|
			i -= len(k)
 | 
						|
			copy(dAtA[i:], k)
 | 
						|
			i = encodeVarintApi(dAtA, i, uint64(len(k)))
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
			i = encodeVarintApi(dAtA, i, uint64(baseI-i))
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourceResponse) Marshal() (dAtA []byte, err error) {
 | 
						|
	size := m.Size()
 | 
						|
	dAtA = make([]byte, size)
 | 
						|
	n, err := m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return dAtA[:n], nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourceResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourceResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Error) > 0 {
 | 
						|
		i -= len(m.Error)
 | 
						|
		copy(dAtA[i:], m.Error)
 | 
						|
		i = encodeVarintApi(dAtA, i, uint64(len(m.Error)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0x12
 | 
						|
	}
 | 
						|
	if len(m.CDIDevices) > 0 {
 | 
						|
		for iNdEx := len(m.CDIDevices) - 1; iNdEx >= 0; iNdEx-- {
 | 
						|
			i -= len(m.CDIDevices[iNdEx])
 | 
						|
			copy(dAtA[i:], m.CDIDevices[iNdEx])
 | 
						|
			i = encodeVarintApi(dAtA, i, uint64(len(m.CDIDevices[iNdEx])))
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesRequest) Marshal() (dAtA []byte, err error) {
 | 
						|
	size := m.Size()
 | 
						|
	dAtA = make([]byte, size)
 | 
						|
	n, err := m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return dAtA[:n], nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Claims) > 0 {
 | 
						|
		for iNdEx := len(m.Claims) - 1; iNdEx >= 0; iNdEx-- {
 | 
						|
			{
 | 
						|
				size, err := m.Claims[iNdEx].MarshalToSizedBuffer(dAtA[:i])
 | 
						|
				if err != nil {
 | 
						|
					return 0, err
 | 
						|
				}
 | 
						|
				i -= size
 | 
						|
				i = encodeVarintApi(dAtA, i, uint64(size))
 | 
						|
			}
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesResponse) Marshal() (dAtA []byte, err error) {
 | 
						|
	size := m.Size()
 | 
						|
	dAtA = make([]byte, size)
 | 
						|
	n, err := m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return dAtA[:n], nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Claims) > 0 {
 | 
						|
		for k := range m.Claims {
 | 
						|
			v := m.Claims[k]
 | 
						|
			baseI := i
 | 
						|
			if v != nil {
 | 
						|
				{
 | 
						|
					size, err := v.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
					if err != nil {
 | 
						|
						return 0, err
 | 
						|
					}
 | 
						|
					i -= size
 | 
						|
					i = encodeVarintApi(dAtA, i, uint64(size))
 | 
						|
				}
 | 
						|
				i--
 | 
						|
				dAtA[i] = 0x12
 | 
						|
			}
 | 
						|
			i -= len(k)
 | 
						|
			copy(dAtA[i:], k)
 | 
						|
			i = encodeVarintApi(dAtA, i, uint64(len(k)))
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
			i = encodeVarintApi(dAtA, i, uint64(baseI-i))
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourceResponse) Marshal() (dAtA []byte, err error) {
 | 
						|
	size := m.Size()
 | 
						|
	dAtA = make([]byte, size)
 | 
						|
	n, err := m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return dAtA[:n], nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourceResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourceResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Error) > 0 {
 | 
						|
		i -= len(m.Error)
 | 
						|
		copy(dAtA[i:], m.Error)
 | 
						|
		i = encodeVarintApi(dAtA, i, uint64(len(m.Error)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *Claim) Marshal() (dAtA []byte, err error) {
 | 
						|
	size := m.Size()
 | 
						|
	dAtA = make([]byte, size)
 | 
						|
	n, err := m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return dAtA[:n], nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *Claim) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *Claim) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Name) > 0 {
 | 
						|
		i -= len(m.Name)
 | 
						|
		copy(dAtA[i:], m.Name)
 | 
						|
		i = encodeVarintApi(dAtA, i, uint64(len(m.Name)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0x1a
 | 
						|
	}
 | 
						|
	if len(m.Uid) > 0 {
 | 
						|
		i -= len(m.Uid)
 | 
						|
		copy(dAtA[i:], m.Uid)
 | 
						|
		i = encodeVarintApi(dAtA, i, uint64(len(m.Uid)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0x12
 | 
						|
	}
 | 
						|
	if len(m.Namespace) > 0 {
 | 
						|
		i -= len(m.Namespace)
 | 
						|
		copy(dAtA[i:], m.Namespace)
 | 
						|
		i = encodeVarintApi(dAtA, i, uint64(len(m.Namespace)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func encodeVarintApi(dAtA []byte, offset int, v uint64) int {
 | 
						|
	offset -= sovApi(v)
 | 
						|
	base := offset
 | 
						|
	for v >= 1<<7 {
 | 
						|
		dAtA[offset] = uint8(v&0x7f | 0x80)
 | 
						|
		v >>= 7
 | 
						|
		offset++
 | 
						|
	}
 | 
						|
	dAtA[offset] = uint8(v)
 | 
						|
	return base
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Claims) > 0 {
 | 
						|
		for _, e := range m.Claims {
 | 
						|
			l = e.Size()
 | 
						|
			n += 1 + l + sovApi(uint64(l))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourcesResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Claims) > 0 {
 | 
						|
		for k, v := range m.Claims {
 | 
						|
			_ = k
 | 
						|
			_ = v
 | 
						|
			l = 0
 | 
						|
			if v != nil {
 | 
						|
				l = v.Size()
 | 
						|
				l += 1 + sovApi(uint64(l))
 | 
						|
			}
 | 
						|
			mapEntrySize := 1 + len(k) + sovApi(uint64(len(k))) + l
 | 
						|
			n += mapEntrySize + 1 + sovApi(uint64(mapEntrySize))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodePrepareResourceResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.CDIDevices) > 0 {
 | 
						|
		for _, s := range m.CDIDevices {
 | 
						|
			l = len(s)
 | 
						|
			n += 1 + l + sovApi(uint64(l))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	l = len(m.Error)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovApi(uint64(l))
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Claims) > 0 {
 | 
						|
		for _, e := range m.Claims {
 | 
						|
			l = e.Size()
 | 
						|
			n += 1 + l + sovApi(uint64(l))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourcesResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Claims) > 0 {
 | 
						|
		for k, v := range m.Claims {
 | 
						|
			_ = k
 | 
						|
			_ = v
 | 
						|
			l = 0
 | 
						|
			if v != nil {
 | 
						|
				l = v.Size()
 | 
						|
				l += 1 + sovApi(uint64(l))
 | 
						|
			}
 | 
						|
			mapEntrySize := 1 + len(k) + sovApi(uint64(len(k))) + l
 | 
						|
			n += mapEntrySize + 1 + sovApi(uint64(mapEntrySize))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *NodeUnprepareResourceResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.Error)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovApi(uint64(l))
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *Claim) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.Namespace)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovApi(uint64(l))
 | 
						|
	}
 | 
						|
	l = len(m.Uid)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovApi(uint64(l))
 | 
						|
	}
 | 
						|
	l = len(m.Name)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovApi(uint64(l))
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func sovApi(x uint64) (n int) {
 | 
						|
	return (math_bits.Len64(x|1) + 6) / 7
 | 
						|
}
 | 
						|
func sozApi(x uint64) (n int) {
 | 
						|
	return sovApi(uint64((x << 1) ^ uint64((int64(x) >> 63))))
 | 
						|
}
 | 
						|
func (this *NodePrepareResourcesRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	repeatedStringForClaims := "[]*Claim{"
 | 
						|
	for _, f := range this.Claims {
 | 
						|
		repeatedStringForClaims += strings.Replace(f.String(), "Claim", "Claim", 1) + ","
 | 
						|
	}
 | 
						|
	repeatedStringForClaims += "}"
 | 
						|
	s := strings.Join([]string{`&NodePrepareResourcesRequest{`,
 | 
						|
		`Claims:` + repeatedStringForClaims + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *NodePrepareResourcesResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	keysForClaims := make([]string, 0, len(this.Claims))
 | 
						|
	for k := range this.Claims {
 | 
						|
		keysForClaims = append(keysForClaims, k)
 | 
						|
	}
 | 
						|
	github_com_gogo_protobuf_sortkeys.Strings(keysForClaims)
 | 
						|
	mapStringForClaims := "map[string]*NodePrepareResourceResponse{"
 | 
						|
	for _, k := range keysForClaims {
 | 
						|
		mapStringForClaims += fmt.Sprintf("%v: %v,", k, this.Claims[k])
 | 
						|
	}
 | 
						|
	mapStringForClaims += "}"
 | 
						|
	s := strings.Join([]string{`&NodePrepareResourcesResponse{`,
 | 
						|
		`Claims:` + mapStringForClaims + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *NodePrepareResourceResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&NodePrepareResourceResponse{`,
 | 
						|
		`CDIDevices:` + fmt.Sprintf("%v", this.CDIDevices) + `,`,
 | 
						|
		`Error:` + fmt.Sprintf("%v", this.Error) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *NodeUnprepareResourcesRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	repeatedStringForClaims := "[]*Claim{"
 | 
						|
	for _, f := range this.Claims {
 | 
						|
		repeatedStringForClaims += strings.Replace(f.String(), "Claim", "Claim", 1) + ","
 | 
						|
	}
 | 
						|
	repeatedStringForClaims += "}"
 | 
						|
	s := strings.Join([]string{`&NodeUnprepareResourcesRequest{`,
 | 
						|
		`Claims:` + repeatedStringForClaims + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *NodeUnprepareResourcesResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	keysForClaims := make([]string, 0, len(this.Claims))
 | 
						|
	for k := range this.Claims {
 | 
						|
		keysForClaims = append(keysForClaims, k)
 | 
						|
	}
 | 
						|
	github_com_gogo_protobuf_sortkeys.Strings(keysForClaims)
 | 
						|
	mapStringForClaims := "map[string]*NodeUnprepareResourceResponse{"
 | 
						|
	for _, k := range keysForClaims {
 | 
						|
		mapStringForClaims += fmt.Sprintf("%v: %v,", k, this.Claims[k])
 | 
						|
	}
 | 
						|
	mapStringForClaims += "}"
 | 
						|
	s := strings.Join([]string{`&NodeUnprepareResourcesResponse{`,
 | 
						|
		`Claims:` + mapStringForClaims + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *NodeUnprepareResourceResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&NodeUnprepareResourceResponse{`,
 | 
						|
		`Error:` + fmt.Sprintf("%v", this.Error) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *Claim) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&Claim{`,
 | 
						|
		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
 | 
						|
		`Uid:` + fmt.Sprintf("%v", this.Uid) + `,`,
 | 
						|
		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func valueToStringApi(v interface{}) string {
 | 
						|
	rv := reflect.ValueOf(v)
 | 
						|
	if rv.IsNil() {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	pv := reflect.Indirect(rv).Interface()
 | 
						|
	return fmt.Sprintf("*%v", pv)
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesRequest) Unmarshal(dAtA []byte) error {
 | 
						|
	l := len(dAtA)
 | 
						|
	iNdEx := 0
 | 
						|
	for iNdEx < l {
 | 
						|
		preIndex := iNdEx
 | 
						|
		var wire uint64
 | 
						|
		for shift := uint(0); ; shift += 7 {
 | 
						|
			if shift >= 64 {
 | 
						|
				return ErrIntOverflowApi
 | 
						|
			}
 | 
						|
			if iNdEx >= l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			b := dAtA[iNdEx]
 | 
						|
			iNdEx++
 | 
						|
			wire |= uint64(b&0x7F) << shift
 | 
						|
			if b < 0x80 {
 | 
						|
				break
 | 
						|
			}
 | 
						|
		}
 | 
						|
		fieldNum := int32(wire >> 3)
 | 
						|
		wireType := int(wire & 0x7)
 | 
						|
		if wireType == 4 {
 | 
						|
			return fmt.Errorf("proto: NodePrepareResourcesRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: NodePrepareResourcesRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Claims", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Claims = append(m.Claims, &Claim{})
 | 
						|
			if err := m.Claims[len(m.Claims)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *NodePrepareResourcesResponse) Unmarshal(dAtA []byte) error {
 | 
						|
	l := len(dAtA)
 | 
						|
	iNdEx := 0
 | 
						|
	for iNdEx < l {
 | 
						|
		preIndex := iNdEx
 | 
						|
		var wire uint64
 | 
						|
		for shift := uint(0); ; shift += 7 {
 | 
						|
			if shift >= 64 {
 | 
						|
				return ErrIntOverflowApi
 | 
						|
			}
 | 
						|
			if iNdEx >= l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			b := dAtA[iNdEx]
 | 
						|
			iNdEx++
 | 
						|
			wire |= uint64(b&0x7F) << shift
 | 
						|
			if b < 0x80 {
 | 
						|
				break
 | 
						|
			}
 | 
						|
		}
 | 
						|
		fieldNum := int32(wire >> 3)
 | 
						|
		wireType := int(wire & 0x7)
 | 
						|
		if wireType == 4 {
 | 
						|
			return fmt.Errorf("proto: NodePrepareResourcesResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: NodePrepareResourcesResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Claims", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if m.Claims == nil {
 | 
						|
				m.Claims = make(map[string]*NodePrepareResourceResponse)
 | 
						|
			}
 | 
						|
			var mapkey string
 | 
						|
			var mapvalue *NodePrepareResourceResponse
 | 
						|
			for iNdEx < postIndex {
 | 
						|
				entryPreIndex := iNdEx
 | 
						|
				var wire uint64
 | 
						|
				for shift := uint(0); ; shift += 7 {
 | 
						|
					if shift >= 64 {
 | 
						|
						return ErrIntOverflowApi
 | 
						|
					}
 | 
						|
					if iNdEx >= l {
 | 
						|
						return io.ErrUnexpectedEOF
 | 
						|
					}
 | 
						|
					b := dAtA[iNdEx]
 | 
						|
					iNdEx++
 | 
						|
					wire |= uint64(b&0x7F) << shift
 | 
						|
					if b < 0x80 {
 | 
						|
						break
 | 
						|
					}
 | 
						|
				}
 | 
						|
				fieldNum := int32(wire >> 3)
 | 
						|
				if fieldNum == 1 {
 | 
						|
					var stringLenmapkey uint64
 | 
						|
					for shift := uint(0); ; shift += 7 {
 | 
						|
						if shift >= 64 {
 | 
						|
							return ErrIntOverflowApi
 | 
						|
						}
 | 
						|
						if iNdEx >= l {
 | 
						|
							return io.ErrUnexpectedEOF
 | 
						|
						}
 | 
						|
						b := dAtA[iNdEx]
 | 
						|
						iNdEx++
 | 
						|
						stringLenmapkey |= uint64(b&0x7F) << shift
 | 
						|
						if b < 0x80 {
 | 
						|
							break
 | 
						|
						}
 | 
						|
					}
 | 
						|
					intStringLenmapkey := int(stringLenmapkey)
 | 
						|
					if intStringLenmapkey < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					postStringIndexmapkey := iNdEx + intStringLenmapkey
 | 
						|
					if postStringIndexmapkey < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					if postStringIndexmapkey > l {
 | 
						|
						return io.ErrUnexpectedEOF
 | 
						|
					}
 | 
						|
					mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
 | 
						|
					iNdEx = postStringIndexmapkey
 | 
						|
				} else if fieldNum == 2 {
 | 
						|
					var mapmsglen int
 | 
						|
					for shift := uint(0); ; shift += 7 {
 | 
						|
						if shift >= 64 {
 | 
						|
							return ErrIntOverflowApi
 | 
						|
						}
 | 
						|
						if iNdEx >= l {
 | 
						|
							return io.ErrUnexpectedEOF
 | 
						|
						}
 | 
						|
						b := dAtA[iNdEx]
 | 
						|
						iNdEx++
 | 
						|
						mapmsglen |= int(b&0x7F) << shift
 | 
						|
						if b < 0x80 {
 | 
						|
							break
 | 
						|
						}
 | 
						|
					}
 | 
						|
					if mapmsglen < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					postmsgIndex := iNdEx + mapmsglen
 | 
						|
					if postmsgIndex < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					if postmsgIndex > l {
 | 
						|
						return io.ErrUnexpectedEOF
 | 
						|
					}
 | 
						|
					mapvalue = &NodePrepareResourceResponse{}
 | 
						|
					if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil {
 | 
						|
						return err
 | 
						|
					}
 | 
						|
					iNdEx = postmsgIndex
 | 
						|
				} else {
 | 
						|
					iNdEx = entryPreIndex
 | 
						|
					skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
					if err != nil {
 | 
						|
						return err
 | 
						|
					}
 | 
						|
					if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					if (iNdEx + skippy) > postIndex {
 | 
						|
						return io.ErrUnexpectedEOF
 | 
						|
					}
 | 
						|
					iNdEx += skippy
 | 
						|
				}
 | 
						|
			}
 | 
						|
			m.Claims[mapkey] = mapvalue
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *NodePrepareResourceResponse) Unmarshal(dAtA []byte) error {
 | 
						|
	l := len(dAtA)
 | 
						|
	iNdEx := 0
 | 
						|
	for iNdEx < l {
 | 
						|
		preIndex := iNdEx
 | 
						|
		var wire uint64
 | 
						|
		for shift := uint(0); ; shift += 7 {
 | 
						|
			if shift >= 64 {
 | 
						|
				return ErrIntOverflowApi
 | 
						|
			}
 | 
						|
			if iNdEx >= l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			b := dAtA[iNdEx]
 | 
						|
			iNdEx++
 | 
						|
			wire |= uint64(b&0x7F) << shift
 | 
						|
			if b < 0x80 {
 | 
						|
				break
 | 
						|
			}
 | 
						|
		}
 | 
						|
		fieldNum := int32(wire >> 3)
 | 
						|
		wireType := int(wire & 0x7)
 | 
						|
		if wireType == 4 {
 | 
						|
			return fmt.Errorf("proto: NodePrepareResourceResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: NodePrepareResourceResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field CDIDevices", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				stringLen |= uint64(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			intStringLen := int(stringLen)
 | 
						|
			if intStringLen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.CDIDevices = append(m.CDIDevices, string(dAtA[iNdEx:postIndex]))
 | 
						|
			iNdEx = postIndex
 | 
						|
		case 2:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				stringLen |= uint64(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			intStringLen := int(stringLen)
 | 
						|
			if intStringLen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Error = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesRequest) Unmarshal(dAtA []byte) error {
 | 
						|
	l := len(dAtA)
 | 
						|
	iNdEx := 0
 | 
						|
	for iNdEx < l {
 | 
						|
		preIndex := iNdEx
 | 
						|
		var wire uint64
 | 
						|
		for shift := uint(0); ; shift += 7 {
 | 
						|
			if shift >= 64 {
 | 
						|
				return ErrIntOverflowApi
 | 
						|
			}
 | 
						|
			if iNdEx >= l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			b := dAtA[iNdEx]
 | 
						|
			iNdEx++
 | 
						|
			wire |= uint64(b&0x7F) << shift
 | 
						|
			if b < 0x80 {
 | 
						|
				break
 | 
						|
			}
 | 
						|
		}
 | 
						|
		fieldNum := int32(wire >> 3)
 | 
						|
		wireType := int(wire & 0x7)
 | 
						|
		if wireType == 4 {
 | 
						|
			return fmt.Errorf("proto: NodeUnprepareResourcesRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: NodeUnprepareResourcesRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Claims", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Claims = append(m.Claims, &Claim{})
 | 
						|
			if err := m.Claims[len(m.Claims)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourcesResponse) Unmarshal(dAtA []byte) error {
 | 
						|
	l := len(dAtA)
 | 
						|
	iNdEx := 0
 | 
						|
	for iNdEx < l {
 | 
						|
		preIndex := iNdEx
 | 
						|
		var wire uint64
 | 
						|
		for shift := uint(0); ; shift += 7 {
 | 
						|
			if shift >= 64 {
 | 
						|
				return ErrIntOverflowApi
 | 
						|
			}
 | 
						|
			if iNdEx >= l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			b := dAtA[iNdEx]
 | 
						|
			iNdEx++
 | 
						|
			wire |= uint64(b&0x7F) << shift
 | 
						|
			if b < 0x80 {
 | 
						|
				break
 | 
						|
			}
 | 
						|
		}
 | 
						|
		fieldNum := int32(wire >> 3)
 | 
						|
		wireType := int(wire & 0x7)
 | 
						|
		if wireType == 4 {
 | 
						|
			return fmt.Errorf("proto: NodeUnprepareResourcesResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: NodeUnprepareResourcesResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Claims", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if m.Claims == nil {
 | 
						|
				m.Claims = make(map[string]*NodeUnprepareResourceResponse)
 | 
						|
			}
 | 
						|
			var mapkey string
 | 
						|
			var mapvalue *NodeUnprepareResourceResponse
 | 
						|
			for iNdEx < postIndex {
 | 
						|
				entryPreIndex := iNdEx
 | 
						|
				var wire uint64
 | 
						|
				for shift := uint(0); ; shift += 7 {
 | 
						|
					if shift >= 64 {
 | 
						|
						return ErrIntOverflowApi
 | 
						|
					}
 | 
						|
					if iNdEx >= l {
 | 
						|
						return io.ErrUnexpectedEOF
 | 
						|
					}
 | 
						|
					b := dAtA[iNdEx]
 | 
						|
					iNdEx++
 | 
						|
					wire |= uint64(b&0x7F) << shift
 | 
						|
					if b < 0x80 {
 | 
						|
						break
 | 
						|
					}
 | 
						|
				}
 | 
						|
				fieldNum := int32(wire >> 3)
 | 
						|
				if fieldNum == 1 {
 | 
						|
					var stringLenmapkey uint64
 | 
						|
					for shift := uint(0); ; shift += 7 {
 | 
						|
						if shift >= 64 {
 | 
						|
							return ErrIntOverflowApi
 | 
						|
						}
 | 
						|
						if iNdEx >= l {
 | 
						|
							return io.ErrUnexpectedEOF
 | 
						|
						}
 | 
						|
						b := dAtA[iNdEx]
 | 
						|
						iNdEx++
 | 
						|
						stringLenmapkey |= uint64(b&0x7F) << shift
 | 
						|
						if b < 0x80 {
 | 
						|
							break
 | 
						|
						}
 | 
						|
					}
 | 
						|
					intStringLenmapkey := int(stringLenmapkey)
 | 
						|
					if intStringLenmapkey < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					postStringIndexmapkey := iNdEx + intStringLenmapkey
 | 
						|
					if postStringIndexmapkey < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					if postStringIndexmapkey > l {
 | 
						|
						return io.ErrUnexpectedEOF
 | 
						|
					}
 | 
						|
					mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
 | 
						|
					iNdEx = postStringIndexmapkey
 | 
						|
				} else if fieldNum == 2 {
 | 
						|
					var mapmsglen int
 | 
						|
					for shift := uint(0); ; shift += 7 {
 | 
						|
						if shift >= 64 {
 | 
						|
							return ErrIntOverflowApi
 | 
						|
						}
 | 
						|
						if iNdEx >= l {
 | 
						|
							return io.ErrUnexpectedEOF
 | 
						|
						}
 | 
						|
						b := dAtA[iNdEx]
 | 
						|
						iNdEx++
 | 
						|
						mapmsglen |= int(b&0x7F) << shift
 | 
						|
						if b < 0x80 {
 | 
						|
							break
 | 
						|
						}
 | 
						|
					}
 | 
						|
					if mapmsglen < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					postmsgIndex := iNdEx + mapmsglen
 | 
						|
					if postmsgIndex < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					if postmsgIndex > l {
 | 
						|
						return io.ErrUnexpectedEOF
 | 
						|
					}
 | 
						|
					mapvalue = &NodeUnprepareResourceResponse{}
 | 
						|
					if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil {
 | 
						|
						return err
 | 
						|
					}
 | 
						|
					iNdEx = postmsgIndex
 | 
						|
				} else {
 | 
						|
					iNdEx = entryPreIndex
 | 
						|
					skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
					if err != nil {
 | 
						|
						return err
 | 
						|
					}
 | 
						|
					if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
						return ErrInvalidLengthApi
 | 
						|
					}
 | 
						|
					if (iNdEx + skippy) > postIndex {
 | 
						|
						return io.ErrUnexpectedEOF
 | 
						|
					}
 | 
						|
					iNdEx += skippy
 | 
						|
				}
 | 
						|
			}
 | 
						|
			m.Claims[mapkey] = mapvalue
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *NodeUnprepareResourceResponse) Unmarshal(dAtA []byte) error {
 | 
						|
	l := len(dAtA)
 | 
						|
	iNdEx := 0
 | 
						|
	for iNdEx < l {
 | 
						|
		preIndex := iNdEx
 | 
						|
		var wire uint64
 | 
						|
		for shift := uint(0); ; shift += 7 {
 | 
						|
			if shift >= 64 {
 | 
						|
				return ErrIntOverflowApi
 | 
						|
			}
 | 
						|
			if iNdEx >= l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			b := dAtA[iNdEx]
 | 
						|
			iNdEx++
 | 
						|
			wire |= uint64(b&0x7F) << shift
 | 
						|
			if b < 0x80 {
 | 
						|
				break
 | 
						|
			}
 | 
						|
		}
 | 
						|
		fieldNum := int32(wire >> 3)
 | 
						|
		wireType := int(wire & 0x7)
 | 
						|
		if wireType == 4 {
 | 
						|
			return fmt.Errorf("proto: NodeUnprepareResourceResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: NodeUnprepareResourceResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				stringLen |= uint64(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			intStringLen := int(stringLen)
 | 
						|
			if intStringLen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Error = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *Claim) Unmarshal(dAtA []byte) error {
 | 
						|
	l := len(dAtA)
 | 
						|
	iNdEx := 0
 | 
						|
	for iNdEx < l {
 | 
						|
		preIndex := iNdEx
 | 
						|
		var wire uint64
 | 
						|
		for shift := uint(0); ; shift += 7 {
 | 
						|
			if shift >= 64 {
 | 
						|
				return ErrIntOverflowApi
 | 
						|
			}
 | 
						|
			if iNdEx >= l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			b := dAtA[iNdEx]
 | 
						|
			iNdEx++
 | 
						|
			wire |= uint64(b&0x7F) << shift
 | 
						|
			if b < 0x80 {
 | 
						|
				break
 | 
						|
			}
 | 
						|
		}
 | 
						|
		fieldNum := int32(wire >> 3)
 | 
						|
		wireType := int(wire & 0x7)
 | 
						|
		if wireType == 4 {
 | 
						|
			return fmt.Errorf("proto: Claim: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: Claim: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Namespace", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				stringLen |= uint64(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			intStringLen := int(stringLen)
 | 
						|
			if intStringLen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Namespace = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		case 2:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Uid", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				stringLen |= uint64(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			intStringLen := int(stringLen)
 | 
						|
			if intStringLen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Uid = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		case 3:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				stringLen |= uint64(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			intStringLen := int(stringLen)
 | 
						|
			if intStringLen < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Name = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipApi(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func skipApi(dAtA []byte) (n int, err error) {
 | 
						|
	l := len(dAtA)
 | 
						|
	iNdEx := 0
 | 
						|
	depth := 0
 | 
						|
	for iNdEx < l {
 | 
						|
		var wire uint64
 | 
						|
		for shift := uint(0); ; shift += 7 {
 | 
						|
			if shift >= 64 {
 | 
						|
				return 0, ErrIntOverflowApi
 | 
						|
			}
 | 
						|
			if iNdEx >= l {
 | 
						|
				return 0, io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			b := dAtA[iNdEx]
 | 
						|
			iNdEx++
 | 
						|
			wire |= (uint64(b) & 0x7F) << shift
 | 
						|
			if b < 0x80 {
 | 
						|
				break
 | 
						|
			}
 | 
						|
		}
 | 
						|
		wireType := int(wire & 0x7)
 | 
						|
		switch wireType {
 | 
						|
		case 0:
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return 0, ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return 0, io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				iNdEx++
 | 
						|
				if dAtA[iNdEx-1] < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
		case 1:
 | 
						|
			iNdEx += 8
 | 
						|
		case 2:
 | 
						|
			var length int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return 0, ErrIntOverflowApi
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return 0, io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				length |= (int(b) & 0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if length < 0 {
 | 
						|
				return 0, ErrInvalidLengthApi
 | 
						|
			}
 | 
						|
			iNdEx += length
 | 
						|
		case 3:
 | 
						|
			depth++
 | 
						|
		case 4:
 | 
						|
			if depth == 0 {
 | 
						|
				return 0, ErrUnexpectedEndOfGroupApi
 | 
						|
			}
 | 
						|
			depth--
 | 
						|
		case 5:
 | 
						|
			iNdEx += 4
 | 
						|
		default:
 | 
						|
			return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
 | 
						|
		}
 | 
						|
		if iNdEx < 0 {
 | 
						|
			return 0, ErrInvalidLengthApi
 | 
						|
		}
 | 
						|
		if depth == 0 {
 | 
						|
			return iNdEx, nil
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return 0, io.ErrUnexpectedEOF
 | 
						|
}
 | 
						|
 | 
						|
var (
 | 
						|
	ErrInvalidLengthApi        = fmt.Errorf("proto: negative length found during unmarshaling")
 | 
						|
	ErrIntOverflowApi          = fmt.Errorf("proto: integer overflow")
 | 
						|
	ErrUnexpectedEndOfGroupApi = fmt.Errorf("proto: unexpected end of group")
 | 
						|
)
 |