4610 lines
		
	
	
		
			122 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			4610 lines
		
	
	
		
			122 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Code generated by protoc-gen-gogo. DO NOT EDIT.
 | 
						|
// source: github.com/containerd/containerd/api/services/sandbox/v1/sandbox.proto
 | 
						|
 | 
						|
// Sandbox is a v2 runtime extension that allows more complex execution environments for containers.
 | 
						|
// This adds a notion of groups of containers that share same lifecycle and/or resources.
 | 
						|
// A few good fits for sandbox can be:
 | 
						|
// - A "pause" container in k8s, that acts as a parent process for child containers to hold network namespace.
 | 
						|
// - (micro)VMs that launch a VM process and executes containers inside guest OS.
 | 
						|
// containerd in this case remains implementation agnostic and delegates sandbox handling to runtimes.
 | 
						|
// See proposal and discussion here: https://github.com/containerd/containerd/issues/4131
 | 
						|
 | 
						|
package sandbox
 | 
						|
 | 
						|
import (
 | 
						|
	context "context"
 | 
						|
	fmt "fmt"
 | 
						|
	types "github.com/containerd/containerd/api/types"
 | 
						|
	proto "github.com/gogo/protobuf/proto"
 | 
						|
	types1 "github.com/gogo/protobuf/types"
 | 
						|
	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 StoreCreateRequest struct {
 | 
						|
	Sandbox              types.Sandbox `protobuf:"bytes,1,opt,name=sandbox,proto3" json:"sandbox"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
 | 
						|
	XXX_unrecognized     []byte        `json:"-"`
 | 
						|
	XXX_sizecache        int32         `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreCreateRequest) Reset()      { *m = StoreCreateRequest{} }
 | 
						|
func (*StoreCreateRequest) ProtoMessage() {}
 | 
						|
func (*StoreCreateRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{0}
 | 
						|
}
 | 
						|
func (m *StoreCreateRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreCreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreCreateRequest.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 *StoreCreateRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreCreateRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreCreateRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreCreateRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreCreateRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreCreateRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreCreateResponse struct {
 | 
						|
	Sandbox              types.Sandbox `protobuf:"bytes,1,opt,name=sandbox,proto3" json:"sandbox"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
 | 
						|
	XXX_unrecognized     []byte        `json:"-"`
 | 
						|
	XXX_sizecache        int32         `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreCreateResponse) Reset()      { *m = StoreCreateResponse{} }
 | 
						|
func (*StoreCreateResponse) ProtoMessage() {}
 | 
						|
func (*StoreCreateResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{1}
 | 
						|
}
 | 
						|
func (m *StoreCreateResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreCreateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreCreateResponse.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 *StoreCreateResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreCreateResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreCreateResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreCreateResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreCreateResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreCreateResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreUpdateRequest struct {
 | 
						|
	Sandbox              types.Sandbox `protobuf:"bytes,1,opt,name=sandbox,proto3" json:"sandbox"`
 | 
						|
	Fields               []string      `protobuf:"bytes,2,rep,name=fields,proto3" json:"fields,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
 | 
						|
	XXX_unrecognized     []byte        `json:"-"`
 | 
						|
	XXX_sizecache        int32         `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreUpdateRequest) Reset()      { *m = StoreUpdateRequest{} }
 | 
						|
func (*StoreUpdateRequest) ProtoMessage() {}
 | 
						|
func (*StoreUpdateRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{2}
 | 
						|
}
 | 
						|
func (m *StoreUpdateRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreUpdateRequest.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 *StoreUpdateRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreUpdateRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreUpdateRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreUpdateRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreUpdateRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreUpdateRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreUpdateResponse struct {
 | 
						|
	Sandbox              types.Sandbox `protobuf:"bytes,1,opt,name=sandbox,proto3" json:"sandbox"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
 | 
						|
	XXX_unrecognized     []byte        `json:"-"`
 | 
						|
	XXX_sizecache        int32         `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreUpdateResponse) Reset()      { *m = StoreUpdateResponse{} }
 | 
						|
func (*StoreUpdateResponse) ProtoMessage() {}
 | 
						|
func (*StoreUpdateResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{3}
 | 
						|
}
 | 
						|
func (m *StoreUpdateResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreUpdateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreUpdateResponse.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 *StoreUpdateResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreUpdateResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreUpdateResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreUpdateResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreUpdateResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreUpdateResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreDeleteRequest struct {
 | 
						|
	SandboxID            string   `protobuf:"bytes,1,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreDeleteRequest) Reset()      { *m = StoreDeleteRequest{} }
 | 
						|
func (*StoreDeleteRequest) ProtoMessage() {}
 | 
						|
func (*StoreDeleteRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{4}
 | 
						|
}
 | 
						|
func (m *StoreDeleteRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreDeleteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreDeleteRequest.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 *StoreDeleteRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreDeleteRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreDeleteRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreDeleteRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreDeleteRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreDeleteRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreDeleteResponse struct {
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreDeleteResponse) Reset()      { *m = StoreDeleteResponse{} }
 | 
						|
func (*StoreDeleteResponse) ProtoMessage() {}
 | 
						|
func (*StoreDeleteResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{5}
 | 
						|
}
 | 
						|
func (m *StoreDeleteResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreDeleteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreDeleteResponse.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 *StoreDeleteResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreDeleteResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreDeleteResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreDeleteResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreDeleteResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreDeleteResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreListRequest struct {
 | 
						|
	Filters              []string `protobuf:"bytes,1,rep,name=filters,proto3" json:"filters,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreListRequest) Reset()      { *m = StoreListRequest{} }
 | 
						|
func (*StoreListRequest) ProtoMessage() {}
 | 
						|
func (*StoreListRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{6}
 | 
						|
}
 | 
						|
func (m *StoreListRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreListRequest.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 *StoreListRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreListRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreListRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreListRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreListRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreListRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreListResponse struct {
 | 
						|
	List                 []types.Sandbox `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
 | 
						|
	XXX_unrecognized     []byte          `json:"-"`
 | 
						|
	XXX_sizecache        int32           `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreListResponse) Reset()      { *m = StoreListResponse{} }
 | 
						|
func (*StoreListResponse) ProtoMessage() {}
 | 
						|
func (*StoreListResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{7}
 | 
						|
}
 | 
						|
func (m *StoreListResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreListResponse.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 *StoreListResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreListResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreListResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreListResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreListResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreListResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreGetRequest struct {
 | 
						|
	SandboxID            string   `protobuf:"bytes,1,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreGetRequest) Reset()      { *m = StoreGetRequest{} }
 | 
						|
func (*StoreGetRequest) ProtoMessage() {}
 | 
						|
func (*StoreGetRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{8}
 | 
						|
}
 | 
						|
func (m *StoreGetRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreGetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreGetRequest.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 *StoreGetRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreGetRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreGetRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreGetRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreGetRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreGetRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type StoreGetResponse struct {
 | 
						|
	Sandbox              *types.Sandbox `protobuf:"bytes,1,opt,name=sandbox,proto3" json:"sandbox,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
 | 
						|
	XXX_unrecognized     []byte         `json:"-"`
 | 
						|
	XXX_sizecache        int32          `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreGetResponse) Reset()      { *m = StoreGetResponse{} }
 | 
						|
func (*StoreGetResponse) ProtoMessage() {}
 | 
						|
func (*StoreGetResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{9}
 | 
						|
}
 | 
						|
func (m *StoreGetResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *StoreGetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_StoreGetResponse.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 *StoreGetResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_StoreGetResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *StoreGetResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *StoreGetResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_StoreGetResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_StoreGetResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerStartRequest struct {
 | 
						|
	SandboxID            string      `protobuf:"bytes,1,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"`
 | 
						|
	Spec                 *types1.Any `protobuf:"bytes,4,opt,name=spec,proto3" json:"spec,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
 | 
						|
	XXX_unrecognized     []byte      `json:"-"`
 | 
						|
	XXX_sizecache        int32       `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStartRequest) Reset()      { *m = ControllerStartRequest{} }
 | 
						|
func (*ControllerStartRequest) ProtoMessage() {}
 | 
						|
func (*ControllerStartRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{10}
 | 
						|
}
 | 
						|
func (m *ControllerStartRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerStartRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerStartRequest.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 *ControllerStartRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerStartRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerStartRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerStartRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerStartRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerStartRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerStartResponse struct {
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStartResponse) Reset()      { *m = ControllerStartResponse{} }
 | 
						|
func (*ControllerStartResponse) ProtoMessage() {}
 | 
						|
func (*ControllerStartResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{11}
 | 
						|
}
 | 
						|
func (m *ControllerStartResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerStartResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerStartResponse.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 *ControllerStartResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerStartResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerStartResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerStartResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerStartResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerStartResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerShutdownRequest struct {
 | 
						|
	SandboxID            string   `protobuf:"bytes,1,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerShutdownRequest) Reset()      { *m = ControllerShutdownRequest{} }
 | 
						|
func (*ControllerShutdownRequest) ProtoMessage() {}
 | 
						|
func (*ControllerShutdownRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{12}
 | 
						|
}
 | 
						|
func (m *ControllerShutdownRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerShutdownRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerShutdownRequest.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 *ControllerShutdownRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerShutdownRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerShutdownRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerShutdownRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerShutdownRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerShutdownRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerShutdownResponse struct {
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerShutdownResponse) Reset()      { *m = ControllerShutdownResponse{} }
 | 
						|
func (*ControllerShutdownResponse) ProtoMessage() {}
 | 
						|
func (*ControllerShutdownResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{13}
 | 
						|
}
 | 
						|
func (m *ControllerShutdownResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerShutdownResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerShutdownResponse.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 *ControllerShutdownResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerShutdownResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerShutdownResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerShutdownResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerShutdownResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerShutdownResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerPauseRequest struct {
 | 
						|
	SandboxID            string   `protobuf:"bytes,1,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPauseRequest) Reset()      { *m = ControllerPauseRequest{} }
 | 
						|
func (*ControllerPauseRequest) ProtoMessage() {}
 | 
						|
func (*ControllerPauseRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{14}
 | 
						|
}
 | 
						|
func (m *ControllerPauseRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerPauseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerPauseRequest.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 *ControllerPauseRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerPauseRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerPauseRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerPauseRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerPauseRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerPauseRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerPauseResponse struct {
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPauseResponse) Reset()      { *m = ControllerPauseResponse{} }
 | 
						|
func (*ControllerPauseResponse) ProtoMessage() {}
 | 
						|
func (*ControllerPauseResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{15}
 | 
						|
}
 | 
						|
func (m *ControllerPauseResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerPauseResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerPauseResponse.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 *ControllerPauseResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerPauseResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerPauseResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerPauseResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerPauseResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerPauseResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerResumeRequest struct {
 | 
						|
	SandboxID            string   `protobuf:"bytes,1,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerResumeRequest) Reset()      { *m = ControllerResumeRequest{} }
 | 
						|
func (*ControllerResumeRequest) ProtoMessage() {}
 | 
						|
func (*ControllerResumeRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{16}
 | 
						|
}
 | 
						|
func (m *ControllerResumeRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerResumeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerResumeRequest.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 *ControllerResumeRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerResumeRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerResumeRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerResumeRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerResumeRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerResumeRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerResumeResponse struct {
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerResumeResponse) Reset()      { *m = ControllerResumeResponse{} }
 | 
						|
func (*ControllerResumeResponse) ProtoMessage() {}
 | 
						|
func (*ControllerResumeResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{17}
 | 
						|
}
 | 
						|
func (m *ControllerResumeResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerResumeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerResumeResponse.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 *ControllerResumeResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerResumeResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerResumeResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerResumeResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerResumeResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerResumeResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerPingRequest struct {
 | 
						|
	SandboxID            string   `protobuf:"bytes,1,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPingRequest) Reset()      { *m = ControllerPingRequest{} }
 | 
						|
func (*ControllerPingRequest) ProtoMessage() {}
 | 
						|
func (*ControllerPingRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{18}
 | 
						|
}
 | 
						|
func (m *ControllerPingRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerPingRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerPingRequest.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 *ControllerPingRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerPingRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerPingRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerPingRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerPingRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerPingRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerPingResponse struct {
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPingResponse) Reset()      { *m = ControllerPingResponse{} }
 | 
						|
func (*ControllerPingResponse) ProtoMessage() {}
 | 
						|
func (*ControllerPingResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{19}
 | 
						|
}
 | 
						|
func (m *ControllerPingResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerPingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerPingResponse.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 *ControllerPingResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerPingResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerPingResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerPingResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerPingResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerPingResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerStatusRequest struct {
 | 
						|
	SandboxID            string   `protobuf:"bytes,1,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | 
						|
	XXX_unrecognized     []byte   `json:"-"`
 | 
						|
	XXX_sizecache        int32    `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStatusRequest) Reset()      { *m = ControllerStatusRequest{} }
 | 
						|
func (*ControllerStatusRequest) ProtoMessage() {}
 | 
						|
func (*ControllerStatusRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{20}
 | 
						|
}
 | 
						|
func (m *ControllerStatusRequest) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerStatusRequest.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 *ControllerStatusRequest) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerStatusRequest.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerStatusRequest) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerStatusRequest) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerStatusRequest.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerStatusRequest proto.InternalMessageInfo
 | 
						|
 | 
						|
type ControllerStatusResponse struct {
 | 
						|
	Status               *types1.Any `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
 | 
						|
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
 | 
						|
	XXX_unrecognized     []byte      `json:"-"`
 | 
						|
	XXX_sizecache        int32       `json:"-"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStatusResponse) Reset()      { *m = ControllerStatusResponse{} }
 | 
						|
func (*ControllerStatusResponse) ProtoMessage() {}
 | 
						|
func (*ControllerStatusResponse) Descriptor() ([]byte, []int) {
 | 
						|
	return fileDescriptor_d6eb1ebcbc2879f1, []int{21}
 | 
						|
}
 | 
						|
func (m *ControllerStatusResponse) XXX_Unmarshal(b []byte) error {
 | 
						|
	return m.Unmarshal(b)
 | 
						|
}
 | 
						|
func (m *ControllerStatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | 
						|
	if deterministic {
 | 
						|
		return xxx_messageInfo_ControllerStatusResponse.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 *ControllerStatusResponse) XXX_Merge(src proto.Message) {
 | 
						|
	xxx_messageInfo_ControllerStatusResponse.Merge(m, src)
 | 
						|
}
 | 
						|
func (m *ControllerStatusResponse) XXX_Size() int {
 | 
						|
	return m.Size()
 | 
						|
}
 | 
						|
func (m *ControllerStatusResponse) XXX_DiscardUnknown() {
 | 
						|
	xxx_messageInfo_ControllerStatusResponse.DiscardUnknown(m)
 | 
						|
}
 | 
						|
 | 
						|
var xxx_messageInfo_ControllerStatusResponse proto.InternalMessageInfo
 | 
						|
 | 
						|
func init() {
 | 
						|
	proto.RegisterType((*StoreCreateRequest)(nil), "containerd.services.sandbox.v1.StoreCreateRequest")
 | 
						|
	proto.RegisterType((*StoreCreateResponse)(nil), "containerd.services.sandbox.v1.StoreCreateResponse")
 | 
						|
	proto.RegisterType((*StoreUpdateRequest)(nil), "containerd.services.sandbox.v1.StoreUpdateRequest")
 | 
						|
	proto.RegisterType((*StoreUpdateResponse)(nil), "containerd.services.sandbox.v1.StoreUpdateResponse")
 | 
						|
	proto.RegisterType((*StoreDeleteRequest)(nil), "containerd.services.sandbox.v1.StoreDeleteRequest")
 | 
						|
	proto.RegisterType((*StoreDeleteResponse)(nil), "containerd.services.sandbox.v1.StoreDeleteResponse")
 | 
						|
	proto.RegisterType((*StoreListRequest)(nil), "containerd.services.sandbox.v1.StoreListRequest")
 | 
						|
	proto.RegisterType((*StoreListResponse)(nil), "containerd.services.sandbox.v1.StoreListResponse")
 | 
						|
	proto.RegisterType((*StoreGetRequest)(nil), "containerd.services.sandbox.v1.StoreGetRequest")
 | 
						|
	proto.RegisterType((*StoreGetResponse)(nil), "containerd.services.sandbox.v1.StoreGetResponse")
 | 
						|
	proto.RegisterType((*ControllerStartRequest)(nil), "containerd.services.sandbox.v1.ControllerStartRequest")
 | 
						|
	proto.RegisterType((*ControllerStartResponse)(nil), "containerd.services.sandbox.v1.ControllerStartResponse")
 | 
						|
	proto.RegisterType((*ControllerShutdownRequest)(nil), "containerd.services.sandbox.v1.ControllerShutdownRequest")
 | 
						|
	proto.RegisterType((*ControllerShutdownResponse)(nil), "containerd.services.sandbox.v1.ControllerShutdownResponse")
 | 
						|
	proto.RegisterType((*ControllerPauseRequest)(nil), "containerd.services.sandbox.v1.ControllerPauseRequest")
 | 
						|
	proto.RegisterType((*ControllerPauseResponse)(nil), "containerd.services.sandbox.v1.ControllerPauseResponse")
 | 
						|
	proto.RegisterType((*ControllerResumeRequest)(nil), "containerd.services.sandbox.v1.ControllerResumeRequest")
 | 
						|
	proto.RegisterType((*ControllerResumeResponse)(nil), "containerd.services.sandbox.v1.ControllerResumeResponse")
 | 
						|
	proto.RegisterType((*ControllerPingRequest)(nil), "containerd.services.sandbox.v1.ControllerPingRequest")
 | 
						|
	proto.RegisterType((*ControllerPingResponse)(nil), "containerd.services.sandbox.v1.ControllerPingResponse")
 | 
						|
	proto.RegisterType((*ControllerStatusRequest)(nil), "containerd.services.sandbox.v1.ControllerStatusRequest")
 | 
						|
	proto.RegisterType((*ControllerStatusResponse)(nil), "containerd.services.sandbox.v1.ControllerStatusResponse")
 | 
						|
}
 | 
						|
 | 
						|
func init() {
 | 
						|
	proto.RegisterFile("github.com/containerd/containerd/api/services/sandbox/v1/sandbox.proto", fileDescriptor_d6eb1ebcbc2879f1)
 | 
						|
}
 | 
						|
 | 
						|
var fileDescriptor_d6eb1ebcbc2879f1 = []byte{
 | 
						|
	// 730 bytes of a gzipped FileDescriptorProto
 | 
						|
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4d, 0x4f, 0xd4, 0x40,
 | 
						|
	0x18, 0xde, 0xca, 0x52, 0xdc, 0xd7, 0x18, 0x75, 0x04, 0xec, 0x36, 0xa6, 0x90, 0x9e, 0x38, 0x90,
 | 
						|
	0x16, 0x96, 0x88, 0xa0, 0x07, 0x75, 0x41, 0x16, 0x12, 0x13, 0xc9, 0x6e, 0x4c, 0x0c, 0x17, 0xd3,
 | 
						|
	0xdd, 0x0e, 0xa5, 0xb1, 0x74, 0xba, 0x9d, 0x29, 0x42, 0xbc, 0xe8, 0xaf, 0xf2, 0x2f, 0x70, 0xf4,
 | 
						|
	0xe8, 0x89, 0xc8, 0xfe, 0x07, 0xef, 0x66, 0xa7, 0x53, 0xda, 0xca, 0x46, 0xdb, 0xe2, 0x6d, 0xba,
 | 
						|
	0x7d, 0xde, 0xe7, 0x63, 0x78, 0xf7, 0x61, 0x61, 0xc7, 0x71, 0xd9, 0x51, 0xd4, 0x37, 0x06, 0xe4,
 | 
						|
	0xd8, 0x1c, 0x10, 0x9f, 0x59, 0xae, 0x8f, 0x43, 0x3b, 0x7b, 0xb4, 0x02, 0xd7, 0xa4, 0x38, 0x3c,
 | 
						|
	0x71, 0x07, 0x98, 0x9a, 0xd4, 0xf2, 0xed, 0x3e, 0x39, 0x35, 0x4f, 0x56, 0x93, 0xa3, 0x11, 0x84,
 | 
						|
	0x84, 0x11, 0xa4, 0xa5, 0x13, 0x46, 0x82, 0x36, 0x12, 0xc8, 0xc9, 0xaa, 0x3a, 0xeb, 0x10, 0x87,
 | 
						|
	0x70, 0xa8, 0x39, 0x3e, 0xc5, 0x53, 0x6a, 0xd3, 0x21, 0xc4, 0xf1, 0xb0, 0xc9, 0x9f, 0xfa, 0xd1,
 | 
						|
	0xa1, 0x69, 0xf9, 0x67, 0xe2, 0xd5, 0x46, 0x21, 0x63, 0xec, 0x2c, 0x48, 0x5d, 0xc5, 0x93, 0xfa,
 | 
						|
	0x5b, 0x40, 0x3d, 0x46, 0x42, 0xbc, 0x15, 0x62, 0x8b, 0xe1, 0x2e, 0x1e, 0x46, 0x98, 0x32, 0xb4,
 | 
						|
	0x09, 0x33, 0x02, 0xa6, 0x48, 0x8b, 0xd2, 0xd2, 0x9d, 0x56, 0xd3, 0xc8, 0x58, 0xe6, 0x3c, 0x46,
 | 
						|
	0x2f, 0x06, 0xb4, 0xeb, 0xe7, 0x17, 0x0b, 0xb5, 0x6e, 0x82, 0xd7, 0xf7, 0xe1, 0x61, 0x8e, 0x90,
 | 
						|
	0x06, 0xc4, 0xa7, 0xf8, 0x26, 0x8c, 0x8e, 0xb0, 0xf8, 0x2e, 0xb0, 0xff, 0x8b, 0x45, 0x34, 0x0f,
 | 
						|
	0xf2, 0xa1, 0x8b, 0x3d, 0x9b, 0x2a, 0xb7, 0x16, 0xa7, 0x96, 0x1a, 0x5d, 0xf1, 0x74, 0x65, 0x3d,
 | 
						|
	0x11, 0xba, 0xb9, 0xf5, 0xb6, 0xb0, 0xbe, 0x8d, 0x3d, 0x9c, 0x5a, 0x5f, 0x06, 0x10, 0x80, 0x0f,
 | 
						|
	0xae, 0xcd, 0x39, 0x1b, 0xed, 0xbb, 0xa3, 0x8b, 0x85, 0x86, 0x60, 0xd9, 0xdb, 0xee, 0x36, 0x04,
 | 
						|
	0x60, 0xcf, 0xd6, 0xe7, 0x84, 0xab, 0x84, 0x23, 0x76, 0xa5, 0x2f, 0xc3, 0x7d, 0xfe, 0xf1, 0x1b,
 | 
						|
	0x97, 0xb2, 0x84, 0x58, 0x81, 0x99, 0x43, 0xd7, 0x63, 0x38, 0xa4, 0x8a, 0xc4, 0x93, 0x25, 0x8f,
 | 
						|
	0xfa, 0x2e, 0x3c, 0xc8, 0xa0, 0x45, 0xb0, 0x35, 0xa8, 0x7b, 0x2e, 0x65, 0x1c, 0x5b, 0x20, 0x15,
 | 
						|
	0x07, 0xeb, 0x2f, 0xe0, 0x1e, 0x67, 0xea, 0x60, 0x56, 0x2d, 0x4f, 0x47, 0x18, 0xe7, 0x04, 0x57,
 | 
						|
	0x4e, 0x0a, 0x5f, 0x71, 0x7a, 0xb9, 0x01, 0xcc, 0x6f, 0x11, 0x9f, 0x85, 0xc4, 0xf3, 0x70, 0xd8,
 | 
						|
	0x63, 0x56, 0x58, 0xcd, 0x10, 0x5a, 0x82, 0x3a, 0x0d, 0xf0, 0x40, 0xa9, 0x73, 0xe5, 0x59, 0x23,
 | 
						|
	0xfe, 0x9a, 0x19, 0xc9, 0xd7, 0xcc, 0x78, 0xe5, 0x9f, 0x75, 0x39, 0x42, 0x6f, 0xc2, 0xa3, 0x6b,
 | 
						|
	0x8a, 0xe2, 0xcf, 0xb1, 0x07, 0xcd, 0xcc, 0xab, 0xa3, 0x88, 0xd9, 0xe4, 0x93, 0x5f, 0xed, 0x82,
 | 
						|
	0x1e, 0x83, 0x3a, 0x89, 0x4a, 0x08, 0xed, 0x64, 0x53, 0xef, 0x5b, 0x11, 0xad, 0xb8, 0x56, 0xb9,
 | 
						|
	0x2c, 0x82, 0x47, 0x48, 0x74, 0xb2, 0xaf, 0xba, 0x98, 0x46, 0xc7, 0x15, 0x35, 0x54, 0x50, 0xae,
 | 
						|
	0x13, 0x09, 0x91, 0xd7, 0x30, 0x97, 0xd1, 0x77, 0x7d, 0xa7, 0x9a, 0x84, 0x92, 0xbb, 0x0e, 0x4e,
 | 
						|
	0x33, 0x29, 0x45, 0x8f, 0x59, 0x2c, 0xa2, 0xd5, 0x24, 0x76, 0xb3, 0x29, 0x12, 0x22, 0xb1, 0xb8,
 | 
						|
	0xcb, 0x20, 0x53, 0xfe, 0x89, 0xd8, 0xdb, 0xc9, 0xdb, 0x23, 0x30, 0xad, 0x6f, 0x75, 0x98, 0xe6,
 | 
						|
	0xbb, 0x8f, 0x86, 0x20, 0xc7, 0x05, 0x89, 0x5a, 0xc6, 0xdf, 0xff, 0x19, 0x18, 0xd7, 0xeb, 0x59,
 | 
						|
	0x5d, 0x2b, 0x35, 0x23, 0xac, 0x0e, 0x41, 0x8e, 0x8b, 0xad, 0xa0, 0x64, 0xae, 0x6e, 0x0b, 0x4a,
 | 
						|
	0xfe, 0xd1, 0x9c, 0x43, 0x90, 0xe3, 0xd6, 0x2a, 0x28, 0x99, 0xab, 0xc9, 0x82, 0x92, 0xf9, 0x5a,
 | 
						|
	0x44, 0x1f, 0xa1, 0x3e, 0xee, 0x38, 0xb4, 0x52, 0x68, 0x38, 0x53, 0x9e, 0xea, 0x6a, 0x89, 0x09,
 | 
						|
	0x21, 0x76, 0x04, 0x53, 0x1d, 0xcc, 0x90, 0x59, 0x68, 0x32, 0x2d, 0x4c, 0x75, 0xa5, 0xf8, 0x40,
 | 
						|
	0xac, 0xd4, 0xfa, 0x35, 0x0d, 0x90, 0x2e, 0x21, 0x3a, 0x1d, 0xef, 0x91, 0x15, 0x32, 0xb4, 0xfe,
 | 
						|
	0x2f, 0xa6, 0xc9, 0x0d, 0xa9, 0x3e, 0x2d, 0x3d, 0x27, 0x22, 0x7f, 0x95, 0xe0, 0x76, 0xd2, 0x49,
 | 
						|
	0x68, 0xb3, 0x04, 0x4b, 0xbe, 0x12, 0xd5, 0x67, 0x55, 0x46, 0x85, 0x87, 0x53, 0x98, 0xe6, 0x85,
 | 
						|
	0x55, 0x26, 0x7d, 0xb6, 0x29, 0xcb, 0xa4, 0xcf, 0x35, 0x23, 0xfa, 0x0c, 0x72, 0x5c, 0x63, 0xa8,
 | 
						|
	0x04, 0x45, 0xae, 0x41, 0xd5, 0x8d, 0xf2, 0x83, 0x42, 0x3c, 0x82, 0xfa, 0xb8, 0xe0, 0xd0, 0x93,
 | 
						|
	0x12, 0xee, 0xd3, 0x5e, 0x55, 0xd7, 0xcb, 0x8e, 0xa5, 0x99, 0xe3, 0xd2, 0x43, 0xe5, 0x96, 0x26,
 | 
						|
	0xed, 0xdb, 0x32, 0x99, 0xf3, 0xfd, 0xda, 0x3e, 0x38, 0xbf, 0xd4, 0x6a, 0x3f, 0x2e, 0xb5, 0xda,
 | 
						|
	0x97, 0x91, 0x26, 0x9d, 0x8f, 0x34, 0xe9, 0xfb, 0x48, 0x93, 0x7e, 0x8e, 0x34, 0xe9, 0xe0, 0x65,
 | 
						|
	0xd5, 0xdf, 0xe2, 0xcf, 0xc5, 0xf1, 0x7d, 0xad, 0x2f, 0xf3, 0x96, 0x5e, 0xfb, 0x1d, 0x00, 0x00,
 | 
						|
	0xff, 0xff, 0x94, 0xa8, 0x1b, 0x82, 0xd8, 0x0b, 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
 | 
						|
 | 
						|
// StoreClient is the client API for Store service.
 | 
						|
//
 | 
						|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
 | 
						|
type StoreClient interface {
 | 
						|
	Create(ctx context.Context, in *StoreCreateRequest, opts ...grpc.CallOption) (*StoreCreateResponse, error)
 | 
						|
	Update(ctx context.Context, in *StoreUpdateRequest, opts ...grpc.CallOption) (*StoreUpdateResponse, error)
 | 
						|
	Delete(ctx context.Context, in *StoreDeleteRequest, opts ...grpc.CallOption) (*StoreDeleteResponse, error)
 | 
						|
	List(ctx context.Context, in *StoreListRequest, opts ...grpc.CallOption) (*StoreListResponse, error)
 | 
						|
	Get(ctx context.Context, in *StoreGetRequest, opts ...grpc.CallOption) (*StoreGetResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
type storeClient struct {
 | 
						|
	cc *grpc.ClientConn
 | 
						|
}
 | 
						|
 | 
						|
func NewStoreClient(cc *grpc.ClientConn) StoreClient {
 | 
						|
	return &storeClient{cc}
 | 
						|
}
 | 
						|
 | 
						|
func (c *storeClient) Create(ctx context.Context, in *StoreCreateRequest, opts ...grpc.CallOption) (*StoreCreateResponse, error) {
 | 
						|
	out := new(StoreCreateResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Store/Create", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *storeClient) Update(ctx context.Context, in *StoreUpdateRequest, opts ...grpc.CallOption) (*StoreUpdateResponse, error) {
 | 
						|
	out := new(StoreUpdateResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Store/Update", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *storeClient) Delete(ctx context.Context, in *StoreDeleteRequest, opts ...grpc.CallOption) (*StoreDeleteResponse, error) {
 | 
						|
	out := new(StoreDeleteResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Store/Delete", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *storeClient) List(ctx context.Context, in *StoreListRequest, opts ...grpc.CallOption) (*StoreListResponse, error) {
 | 
						|
	out := new(StoreListResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Store/List", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *storeClient) Get(ctx context.Context, in *StoreGetRequest, opts ...grpc.CallOption) (*StoreGetResponse, error) {
 | 
						|
	out := new(StoreGetResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Store/Get", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
// StoreServer is the server API for Store service.
 | 
						|
type StoreServer interface {
 | 
						|
	Create(context.Context, *StoreCreateRequest) (*StoreCreateResponse, error)
 | 
						|
	Update(context.Context, *StoreUpdateRequest) (*StoreUpdateResponse, error)
 | 
						|
	Delete(context.Context, *StoreDeleteRequest) (*StoreDeleteResponse, error)
 | 
						|
	List(context.Context, *StoreListRequest) (*StoreListResponse, error)
 | 
						|
	Get(context.Context, *StoreGetRequest) (*StoreGetResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
// UnimplementedStoreServer can be embedded to have forward compatible implementations.
 | 
						|
type UnimplementedStoreServer struct {
 | 
						|
}
 | 
						|
 | 
						|
func (*UnimplementedStoreServer) Create(ctx context.Context, req *StoreCreateRequest) (*StoreCreateResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Create not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedStoreServer) Update(ctx context.Context, req *StoreUpdateRequest) (*StoreUpdateResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Update not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedStoreServer) Delete(ctx context.Context, req *StoreDeleteRequest) (*StoreDeleteResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedStoreServer) List(ctx context.Context, req *StoreListRequest) (*StoreListResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method List not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedStoreServer) Get(ctx context.Context, req *StoreGetRequest) (*StoreGetResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Get not implemented")
 | 
						|
}
 | 
						|
 | 
						|
func RegisterStoreServer(s *grpc.Server, srv StoreServer) {
 | 
						|
	s.RegisterService(&_Store_serviceDesc, srv)
 | 
						|
}
 | 
						|
 | 
						|
func _Store_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(StoreCreateRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(StoreServer).Create(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Store/Create",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(StoreServer).Create(ctx, req.(*StoreCreateRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Store_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(StoreUpdateRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(StoreServer).Update(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Store/Update",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(StoreServer).Update(ctx, req.(*StoreUpdateRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Store_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(StoreDeleteRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(StoreServer).Delete(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Store/Delete",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(StoreServer).Delete(ctx, req.(*StoreDeleteRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Store_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(StoreListRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(StoreServer).List(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Store/List",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(StoreServer).List(ctx, req.(*StoreListRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Store_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(StoreGetRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(StoreServer).Get(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Store/Get",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(StoreServer).Get(ctx, req.(*StoreGetRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
var _Store_serviceDesc = grpc.ServiceDesc{
 | 
						|
	ServiceName: "containerd.services.sandbox.v1.Store",
 | 
						|
	HandlerType: (*StoreServer)(nil),
 | 
						|
	Methods: []grpc.MethodDesc{
 | 
						|
		{
 | 
						|
			MethodName: "Create",
 | 
						|
			Handler:    _Store_Create_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "Update",
 | 
						|
			Handler:    _Store_Update_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "Delete",
 | 
						|
			Handler:    _Store_Delete_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "List",
 | 
						|
			Handler:    _Store_List_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "Get",
 | 
						|
			Handler:    _Store_Get_Handler,
 | 
						|
		},
 | 
						|
	},
 | 
						|
	Streams:  []grpc.StreamDesc{},
 | 
						|
	Metadata: "github.com/containerd/containerd/api/services/sandbox/v1/sandbox.proto",
 | 
						|
}
 | 
						|
 | 
						|
// ControllerClient is the client API for Controller service.
 | 
						|
//
 | 
						|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
 | 
						|
type ControllerClient interface {
 | 
						|
	Start(ctx context.Context, in *ControllerStartRequest, opts ...grpc.CallOption) (*ControllerStartResponse, error)
 | 
						|
	Shutdown(ctx context.Context, in *ControllerShutdownRequest, opts ...grpc.CallOption) (*ControllerShutdownResponse, error)
 | 
						|
	Pause(ctx context.Context, in *ControllerPauseRequest, opts ...grpc.CallOption) (*ControllerPauseResponse, error)
 | 
						|
	Resume(ctx context.Context, in *ControllerResumeRequest, opts ...grpc.CallOption) (*ControllerResumeResponse, error)
 | 
						|
	Ping(ctx context.Context, in *ControllerPingRequest, opts ...grpc.CallOption) (*ControllerPingResponse, error)
 | 
						|
	Status(ctx context.Context, in *ControllerStatusRequest, opts ...grpc.CallOption) (*ControllerStatusResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
type controllerClient struct {
 | 
						|
	cc *grpc.ClientConn
 | 
						|
}
 | 
						|
 | 
						|
func NewControllerClient(cc *grpc.ClientConn) ControllerClient {
 | 
						|
	return &controllerClient{cc}
 | 
						|
}
 | 
						|
 | 
						|
func (c *controllerClient) Start(ctx context.Context, in *ControllerStartRequest, opts ...grpc.CallOption) (*ControllerStartResponse, error) {
 | 
						|
	out := new(ControllerStartResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Controller/Start", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *controllerClient) Shutdown(ctx context.Context, in *ControllerShutdownRequest, opts ...grpc.CallOption) (*ControllerShutdownResponse, error) {
 | 
						|
	out := new(ControllerShutdownResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Controller/Shutdown", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *controllerClient) Pause(ctx context.Context, in *ControllerPauseRequest, opts ...grpc.CallOption) (*ControllerPauseResponse, error) {
 | 
						|
	out := new(ControllerPauseResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Controller/Pause", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *controllerClient) Resume(ctx context.Context, in *ControllerResumeRequest, opts ...grpc.CallOption) (*ControllerResumeResponse, error) {
 | 
						|
	out := new(ControllerResumeResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Controller/Resume", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *controllerClient) Ping(ctx context.Context, in *ControllerPingRequest, opts ...grpc.CallOption) (*ControllerPingResponse, error) {
 | 
						|
	out := new(ControllerPingResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Controller/Ping", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *controllerClient) Status(ctx context.Context, in *ControllerStatusRequest, opts ...grpc.CallOption) (*ControllerStatusResponse, error) {
 | 
						|
	out := new(ControllerStatusResponse)
 | 
						|
	err := c.cc.Invoke(ctx, "/containerd.services.sandbox.v1.Controller/Status", in, out, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
// ControllerServer is the server API for Controller service.
 | 
						|
type ControllerServer interface {
 | 
						|
	Start(context.Context, *ControllerStartRequest) (*ControllerStartResponse, error)
 | 
						|
	Shutdown(context.Context, *ControllerShutdownRequest) (*ControllerShutdownResponse, error)
 | 
						|
	Pause(context.Context, *ControllerPauseRequest) (*ControllerPauseResponse, error)
 | 
						|
	Resume(context.Context, *ControllerResumeRequest) (*ControllerResumeResponse, error)
 | 
						|
	Ping(context.Context, *ControllerPingRequest) (*ControllerPingResponse, error)
 | 
						|
	Status(context.Context, *ControllerStatusRequest) (*ControllerStatusResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
// UnimplementedControllerServer can be embedded to have forward compatible implementations.
 | 
						|
type UnimplementedControllerServer struct {
 | 
						|
}
 | 
						|
 | 
						|
func (*UnimplementedControllerServer) Start(ctx context.Context, req *ControllerStartRequest) (*ControllerStartResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Start not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedControllerServer) Shutdown(ctx context.Context, req *ControllerShutdownRequest) (*ControllerShutdownResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Shutdown not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedControllerServer) Pause(ctx context.Context, req *ControllerPauseRequest) (*ControllerPauseResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Pause not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedControllerServer) Resume(ctx context.Context, req *ControllerResumeRequest) (*ControllerResumeResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Resume not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedControllerServer) Ping(ctx context.Context, req *ControllerPingRequest) (*ControllerPingResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Ping not implemented")
 | 
						|
}
 | 
						|
func (*UnimplementedControllerServer) Status(ctx context.Context, req *ControllerStatusRequest) (*ControllerStatusResponse, error) {
 | 
						|
	return nil, status.Errorf(codes.Unimplemented, "method Status not implemented")
 | 
						|
}
 | 
						|
 | 
						|
func RegisterControllerServer(s *grpc.Server, srv ControllerServer) {
 | 
						|
	s.RegisterService(&_Controller_serviceDesc, srv)
 | 
						|
}
 | 
						|
 | 
						|
func _Controller_Start_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ControllerStartRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(ControllerServer).Start(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Controller/Start",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(ControllerServer).Start(ctx, req.(*ControllerStartRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Controller_Shutdown_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ControllerShutdownRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(ControllerServer).Shutdown(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Controller/Shutdown",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(ControllerServer).Shutdown(ctx, req.(*ControllerShutdownRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Controller_Pause_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ControllerPauseRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(ControllerServer).Pause(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Controller/Pause",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(ControllerServer).Pause(ctx, req.(*ControllerPauseRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Controller_Resume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ControllerResumeRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(ControllerServer).Resume(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Controller/Resume",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(ControllerServer).Resume(ctx, req.(*ControllerResumeRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Controller_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ControllerPingRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(ControllerServer).Ping(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Controller/Ping",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(ControllerServer).Ping(ctx, req.(*ControllerPingRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
func _Controller_Status_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(ControllerStatusRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(ControllerServer).Status(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/containerd.services.sandbox.v1.Controller/Status",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(ControllerServer).Status(ctx, req.(*ControllerStatusRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
var _Controller_serviceDesc = grpc.ServiceDesc{
 | 
						|
	ServiceName: "containerd.services.sandbox.v1.Controller",
 | 
						|
	HandlerType: (*ControllerServer)(nil),
 | 
						|
	Methods: []grpc.MethodDesc{
 | 
						|
		{
 | 
						|
			MethodName: "Start",
 | 
						|
			Handler:    _Controller_Start_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "Shutdown",
 | 
						|
			Handler:    _Controller_Shutdown_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "Pause",
 | 
						|
			Handler:    _Controller_Pause_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "Resume",
 | 
						|
			Handler:    _Controller_Resume_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "Ping",
 | 
						|
			Handler:    _Controller_Ping_Handler,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			MethodName: "Status",
 | 
						|
			Handler:    _Controller_Status_Handler,
 | 
						|
		},
 | 
						|
	},
 | 
						|
	Streams:  []grpc.StreamDesc{},
 | 
						|
	Metadata: "github.com/containerd/containerd/api/services/sandbox/v1/sandbox.proto",
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreCreateRequest) 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 *StoreCreateRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreCreateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	{
 | 
						|
		size, err := m.Sandbox.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
		if err != nil {
 | 
						|
			return 0, err
 | 
						|
		}
 | 
						|
		i -= size
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(size))
 | 
						|
	}
 | 
						|
	i--
 | 
						|
	dAtA[i] = 0xa
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreCreateResponse) 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 *StoreCreateResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreCreateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	{
 | 
						|
		size, err := m.Sandbox.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
		if err != nil {
 | 
						|
			return 0, err
 | 
						|
		}
 | 
						|
		i -= size
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(size))
 | 
						|
	}
 | 
						|
	i--
 | 
						|
	dAtA[i] = 0xa
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreUpdateRequest) 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 *StoreUpdateRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreUpdateRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.Fields) > 0 {
 | 
						|
		for iNdEx := len(m.Fields) - 1; iNdEx >= 0; iNdEx-- {
 | 
						|
			i -= len(m.Fields[iNdEx])
 | 
						|
			copy(dAtA[i:], m.Fields[iNdEx])
 | 
						|
			i = encodeVarintSandbox(dAtA, i, uint64(len(m.Fields[iNdEx])))
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0x12
 | 
						|
		}
 | 
						|
	}
 | 
						|
	{
 | 
						|
		size, err := m.Sandbox.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
		if err != nil {
 | 
						|
			return 0, err
 | 
						|
		}
 | 
						|
		i -= size
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(size))
 | 
						|
	}
 | 
						|
	i--
 | 
						|
	dAtA[i] = 0xa
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreUpdateResponse) 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 *StoreUpdateResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreUpdateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	{
 | 
						|
		size, err := m.Sandbox.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
		if err != nil {
 | 
						|
			return 0, err
 | 
						|
		}
 | 
						|
		i -= size
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(size))
 | 
						|
	}
 | 
						|
	i--
 | 
						|
	dAtA[i] = 0xa
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreDeleteRequest) 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 *StoreDeleteRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreDeleteRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.SandboxID) > 0 {
 | 
						|
		i -= len(m.SandboxID)
 | 
						|
		copy(dAtA[i:], m.SandboxID)
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(len(m.SandboxID)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreDeleteResponse) 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 *StoreDeleteResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreDeleteResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreListRequest) 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 *StoreListRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreListRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.Filters) > 0 {
 | 
						|
		for iNdEx := len(m.Filters) - 1; iNdEx >= 0; iNdEx-- {
 | 
						|
			i -= len(m.Filters[iNdEx])
 | 
						|
			copy(dAtA[i:], m.Filters[iNdEx])
 | 
						|
			i = encodeVarintSandbox(dAtA, i, uint64(len(m.Filters[iNdEx])))
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreListResponse) 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 *StoreListResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreListResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.List) > 0 {
 | 
						|
		for iNdEx := len(m.List) - 1; iNdEx >= 0; iNdEx-- {
 | 
						|
			{
 | 
						|
				size, err := m.List[iNdEx].MarshalToSizedBuffer(dAtA[:i])
 | 
						|
				if err != nil {
 | 
						|
					return 0, err
 | 
						|
				}
 | 
						|
				i -= size
 | 
						|
				i = encodeVarintSandbox(dAtA, i, uint64(size))
 | 
						|
			}
 | 
						|
			i--
 | 
						|
			dAtA[i] = 0xa
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreGetRequest) 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 *StoreGetRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreGetRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.SandboxID) > 0 {
 | 
						|
		i -= len(m.SandboxID)
 | 
						|
		copy(dAtA[i:], m.SandboxID)
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(len(m.SandboxID)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreGetResponse) 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 *StoreGetResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreGetResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if m.Sandbox != nil {
 | 
						|
		{
 | 
						|
			size, err := m.Sandbox.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
			if err != nil {
 | 
						|
				return 0, err
 | 
						|
			}
 | 
						|
			i -= size
 | 
						|
			i = encodeVarintSandbox(dAtA, i, uint64(size))
 | 
						|
		}
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStartRequest) 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 *ControllerStartRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStartRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if m.Spec != nil {
 | 
						|
		{
 | 
						|
			size, err := m.Spec.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
			if err != nil {
 | 
						|
				return 0, err
 | 
						|
			}
 | 
						|
			i -= size
 | 
						|
			i = encodeVarintSandbox(dAtA, i, uint64(size))
 | 
						|
		}
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0x22
 | 
						|
	}
 | 
						|
	if len(m.SandboxID) > 0 {
 | 
						|
		i -= len(m.SandboxID)
 | 
						|
		copy(dAtA[i:], m.SandboxID)
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(len(m.SandboxID)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStartResponse) 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 *ControllerStartResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStartResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerShutdownRequest) 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 *ControllerShutdownRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerShutdownRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.SandboxID) > 0 {
 | 
						|
		i -= len(m.SandboxID)
 | 
						|
		copy(dAtA[i:], m.SandboxID)
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(len(m.SandboxID)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerShutdownResponse) 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 *ControllerShutdownResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerShutdownResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPauseRequest) 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 *ControllerPauseRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPauseRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.SandboxID) > 0 {
 | 
						|
		i -= len(m.SandboxID)
 | 
						|
		copy(dAtA[i:], m.SandboxID)
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(len(m.SandboxID)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPauseResponse) 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 *ControllerPauseResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPauseResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerResumeRequest) 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 *ControllerResumeRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerResumeRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.SandboxID) > 0 {
 | 
						|
		i -= len(m.SandboxID)
 | 
						|
		copy(dAtA[i:], m.SandboxID)
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(len(m.SandboxID)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerResumeResponse) 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 *ControllerResumeResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerResumeResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPingRequest) 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 *ControllerPingRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPingRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.SandboxID) > 0 {
 | 
						|
		i -= len(m.SandboxID)
 | 
						|
		copy(dAtA[i:], m.SandboxID)
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(len(m.SandboxID)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPingResponse) 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 *ControllerPingResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPingResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStatusRequest) 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 *ControllerStatusRequest) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStatusRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if len(m.SandboxID) > 0 {
 | 
						|
		i -= len(m.SandboxID)
 | 
						|
		copy(dAtA[i:], m.SandboxID)
 | 
						|
		i = encodeVarintSandbox(dAtA, i, uint64(len(m.SandboxID)))
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStatusResponse) 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 *ControllerStatusResponse) MarshalTo(dAtA []byte) (int, error) {
 | 
						|
	size := m.Size()
 | 
						|
	return m.MarshalToSizedBuffer(dAtA[:size])
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
 | 
						|
	i := len(dAtA)
 | 
						|
	_ = i
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		i -= len(m.XXX_unrecognized)
 | 
						|
		copy(dAtA[i:], m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	if m.Status != nil {
 | 
						|
		{
 | 
						|
			size, err := m.Status.MarshalToSizedBuffer(dAtA[:i])
 | 
						|
			if err != nil {
 | 
						|
				return 0, err
 | 
						|
			}
 | 
						|
			i -= size
 | 
						|
			i = encodeVarintSandbox(dAtA, i, uint64(size))
 | 
						|
		}
 | 
						|
		i--
 | 
						|
		dAtA[i] = 0xa
 | 
						|
	}
 | 
						|
	return len(dAtA) - i, nil
 | 
						|
}
 | 
						|
 | 
						|
func encodeVarintSandbox(dAtA []byte, offset int, v uint64) int {
 | 
						|
	offset -= sovSandbox(v)
 | 
						|
	base := offset
 | 
						|
	for v >= 1<<7 {
 | 
						|
		dAtA[offset] = uint8(v&0x7f | 0x80)
 | 
						|
		v >>= 7
 | 
						|
		offset++
 | 
						|
	}
 | 
						|
	dAtA[offset] = uint8(v)
 | 
						|
	return base
 | 
						|
}
 | 
						|
func (m *StoreCreateRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = m.Sandbox.Size()
 | 
						|
	n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreCreateResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = m.Sandbox.Size()
 | 
						|
	n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreUpdateRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = m.Sandbox.Size()
 | 
						|
	n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	if len(m.Fields) > 0 {
 | 
						|
		for _, s := range m.Fields {
 | 
						|
			l = len(s)
 | 
						|
			n += 1 + l + sovSandbox(uint64(l))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreUpdateResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = m.Sandbox.Size()
 | 
						|
	n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreDeleteRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.SandboxID)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreDeleteResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreListRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.Filters) > 0 {
 | 
						|
		for _, s := range m.Filters {
 | 
						|
			l = len(s)
 | 
						|
			n += 1 + l + sovSandbox(uint64(l))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreListResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if len(m.List) > 0 {
 | 
						|
		for _, e := range m.List {
 | 
						|
			l = e.Size()
 | 
						|
			n += 1 + l + sovSandbox(uint64(l))
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreGetRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.SandboxID)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *StoreGetResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.Sandbox != nil {
 | 
						|
		l = m.Sandbox.Size()
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStartRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.SandboxID)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.Spec != nil {
 | 
						|
		l = m.Spec.Size()
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStartResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerShutdownRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.SandboxID)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerShutdownResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPauseRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.SandboxID)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPauseResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerResumeRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.SandboxID)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerResumeResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPingRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.SandboxID)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerPingResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStatusRequest) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	l = len(m.SandboxID)
 | 
						|
	if l > 0 {
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (m *ControllerStatusResponse) Size() (n int) {
 | 
						|
	if m == nil {
 | 
						|
		return 0
 | 
						|
	}
 | 
						|
	var l int
 | 
						|
	_ = l
 | 
						|
	if m.Status != nil {
 | 
						|
		l = m.Status.Size()
 | 
						|
		n += 1 + l + sovSandbox(uint64(l))
 | 
						|
	}
 | 
						|
	if m.XXX_unrecognized != nil {
 | 
						|
		n += len(m.XXX_unrecognized)
 | 
						|
	}
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func sovSandbox(x uint64) (n int) {
 | 
						|
	return (math_bits.Len64(x|1) + 6) / 7
 | 
						|
}
 | 
						|
func sozSandbox(x uint64) (n int) {
 | 
						|
	return sovSandbox(uint64((x << 1) ^ uint64((int64(x) >> 63))))
 | 
						|
}
 | 
						|
func (this *StoreCreateRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreCreateRequest{`,
 | 
						|
		`Sandbox:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Sandbox), "Sandbox", "types.Sandbox", 1), `&`, ``, 1) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreCreateResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreCreateResponse{`,
 | 
						|
		`Sandbox:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Sandbox), "Sandbox", "types.Sandbox", 1), `&`, ``, 1) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreUpdateRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreUpdateRequest{`,
 | 
						|
		`Sandbox:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Sandbox), "Sandbox", "types.Sandbox", 1), `&`, ``, 1) + `,`,
 | 
						|
		`Fields:` + fmt.Sprintf("%v", this.Fields) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreUpdateResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreUpdateResponse{`,
 | 
						|
		`Sandbox:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Sandbox), "Sandbox", "types.Sandbox", 1), `&`, ``, 1) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreDeleteRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreDeleteRequest{`,
 | 
						|
		`SandboxID:` + fmt.Sprintf("%v", this.SandboxID) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreDeleteResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreDeleteResponse{`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreListRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreListRequest{`,
 | 
						|
		`Filters:` + fmt.Sprintf("%v", this.Filters) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreListResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	repeatedStringForList := "[]Sandbox{"
 | 
						|
	for _, f := range this.List {
 | 
						|
		repeatedStringForList += fmt.Sprintf("%v", f) + ","
 | 
						|
	}
 | 
						|
	repeatedStringForList += "}"
 | 
						|
	s := strings.Join([]string{`&StoreListResponse{`,
 | 
						|
		`List:` + repeatedStringForList + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreGetRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreGetRequest{`,
 | 
						|
		`SandboxID:` + fmt.Sprintf("%v", this.SandboxID) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *StoreGetResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&StoreGetResponse{`,
 | 
						|
		`Sandbox:` + strings.Replace(fmt.Sprintf("%v", this.Sandbox), "Sandbox", "types.Sandbox", 1) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerStartRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerStartRequest{`,
 | 
						|
		`SandboxID:` + fmt.Sprintf("%v", this.SandboxID) + `,`,
 | 
						|
		`Spec:` + strings.Replace(fmt.Sprintf("%v", this.Spec), "Any", "types1.Any", 1) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerStartResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerStartResponse{`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerShutdownRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerShutdownRequest{`,
 | 
						|
		`SandboxID:` + fmt.Sprintf("%v", this.SandboxID) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerShutdownResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerShutdownResponse{`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerPauseRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerPauseRequest{`,
 | 
						|
		`SandboxID:` + fmt.Sprintf("%v", this.SandboxID) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerPauseResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerPauseResponse{`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerResumeRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerResumeRequest{`,
 | 
						|
		`SandboxID:` + fmt.Sprintf("%v", this.SandboxID) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerResumeResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerResumeResponse{`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerPingRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerPingRequest{`,
 | 
						|
		`SandboxID:` + fmt.Sprintf("%v", this.SandboxID) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerPingResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerPingResponse{`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerStatusRequest) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerStatusRequest{`,
 | 
						|
		`SandboxID:` + fmt.Sprintf("%v", this.SandboxID) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func (this *ControllerStatusResponse) String() string {
 | 
						|
	if this == nil {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	s := strings.Join([]string{`&ControllerStatusResponse{`,
 | 
						|
		`Status:` + strings.Replace(fmt.Sprintf("%v", this.Status), "Any", "types1.Any", 1) + `,`,
 | 
						|
		`XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`,
 | 
						|
		`}`,
 | 
						|
	}, "")
 | 
						|
	return s
 | 
						|
}
 | 
						|
func valueToStringSandbox(v interface{}) string {
 | 
						|
	rv := reflect.ValueOf(v)
 | 
						|
	if rv.IsNil() {
 | 
						|
		return "nil"
 | 
						|
	}
 | 
						|
	pv := reflect.Indirect(rv).Interface()
 | 
						|
	return fmt.Sprintf("*%v", pv)
 | 
						|
}
 | 
						|
func (m *StoreCreateRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreCreateRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreCreateRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Sandbox", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if err := m.Sandbox.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreCreateResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreCreateResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreCreateResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Sandbox", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if err := m.Sandbox.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreUpdateRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreUpdateRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreUpdateRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Sandbox", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if err := m.Sandbox.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		case 2:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Fields", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Fields = append(m.Fields, string(dAtA[iNdEx:postIndex]))
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreUpdateResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreUpdateResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreUpdateResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Sandbox", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if err := m.Sandbox.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreDeleteRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreDeleteRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreDeleteRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field SandboxID", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.SandboxID = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreDeleteResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreDeleteResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreDeleteResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreListRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreListRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreListRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Filters", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.Filters = append(m.Filters, string(dAtA[iNdEx:postIndex]))
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreListResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreListResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreListResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field List", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.List = append(m.List, types.Sandbox{})
 | 
						|
			if err := m.List[len(m.List)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreGetRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreGetRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreGetRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field SandboxID", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.SandboxID = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *StoreGetResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: StoreGetResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: StoreGetResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Sandbox", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if m.Sandbox == nil {
 | 
						|
				m.Sandbox = &types.Sandbox{}
 | 
						|
			}
 | 
						|
			if err := m.Sandbox.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerStartRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerStartRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerStartRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field SandboxID", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.SandboxID = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		case 4:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Spec", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if m.Spec == nil {
 | 
						|
				m.Spec = &types1.Any{}
 | 
						|
			}
 | 
						|
			if err := m.Spec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerStartResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerStartResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerStartResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerShutdownRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerShutdownRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerShutdownRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field SandboxID", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.SandboxID = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerShutdownResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerShutdownResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerShutdownResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerPauseRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerPauseRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerPauseRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field SandboxID", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.SandboxID = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerPauseResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerPauseResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerPauseResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerResumeRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerResumeRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerResumeRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field SandboxID", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.SandboxID = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerResumeResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerResumeResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerResumeResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerPingRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerPingRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerPingRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field SandboxID", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.SandboxID = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerPingResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerPingResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerPingResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerStatusRequest) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerStatusRequest: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerStatusRequest: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field SandboxID", wireType)
 | 
						|
			}
 | 
						|
			var stringLen uint64
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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 ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + intStringLen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.SandboxID = string(dAtA[iNdEx:postIndex])
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func (m *ControllerStatusResponse) 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 ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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: ControllerStatusResponse: wiretype end group for non-group")
 | 
						|
		}
 | 
						|
		if fieldNum <= 0 {
 | 
						|
			return fmt.Errorf("proto: ControllerStatusResponse: illegal tag %d (wire type %d)", fieldNum, wire)
 | 
						|
		}
 | 
						|
		switch fieldNum {
 | 
						|
		case 1:
 | 
						|
			if wireType != 2 {
 | 
						|
				return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
 | 
						|
			}
 | 
						|
			var msglen int
 | 
						|
			for shift := uint(0); ; shift += 7 {
 | 
						|
				if shift >= 64 {
 | 
						|
					return ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				if iNdEx >= l {
 | 
						|
					return io.ErrUnexpectedEOF
 | 
						|
				}
 | 
						|
				b := dAtA[iNdEx]
 | 
						|
				iNdEx++
 | 
						|
				msglen |= int(b&0x7F) << shift
 | 
						|
				if b < 0x80 {
 | 
						|
					break
 | 
						|
				}
 | 
						|
			}
 | 
						|
			if msglen < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			postIndex := iNdEx + msglen
 | 
						|
			if postIndex < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if postIndex > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			if m.Status == nil {
 | 
						|
				m.Status = &types1.Any{}
 | 
						|
			}
 | 
						|
			if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			iNdEx = postIndex
 | 
						|
		default:
 | 
						|
			iNdEx = preIndex
 | 
						|
			skippy, err := skipSandbox(dAtA[iNdEx:])
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			if (skippy < 0) || (iNdEx+skippy) < 0 {
 | 
						|
				return ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			if (iNdEx + skippy) > l {
 | 
						|
				return io.ErrUnexpectedEOF
 | 
						|
			}
 | 
						|
			m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
 | 
						|
			iNdEx += skippy
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if iNdEx > l {
 | 
						|
		return io.ErrUnexpectedEOF
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
func skipSandbox(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, ErrIntOverflowSandbox
 | 
						|
			}
 | 
						|
			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, ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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, ErrIntOverflowSandbox
 | 
						|
				}
 | 
						|
				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, ErrInvalidLengthSandbox
 | 
						|
			}
 | 
						|
			iNdEx += length
 | 
						|
		case 3:
 | 
						|
			depth++
 | 
						|
		case 4:
 | 
						|
			if depth == 0 {
 | 
						|
				return 0, ErrUnexpectedEndOfGroupSandbox
 | 
						|
			}
 | 
						|
			depth--
 | 
						|
		case 5:
 | 
						|
			iNdEx += 4
 | 
						|
		default:
 | 
						|
			return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
 | 
						|
		}
 | 
						|
		if iNdEx < 0 {
 | 
						|
			return 0, ErrInvalidLengthSandbox
 | 
						|
		}
 | 
						|
		if depth == 0 {
 | 
						|
			return iNdEx, nil
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return 0, io.ErrUnexpectedEOF
 | 
						|
}
 | 
						|
 | 
						|
var (
 | 
						|
	ErrInvalidLengthSandbox        = fmt.Errorf("proto: negative length found during unmarshaling")
 | 
						|
	ErrIntOverflowSandbox          = fmt.Errorf("proto: integer overflow")
 | 
						|
	ErrUnexpectedEndOfGroupSandbox = fmt.Errorf("proto: unexpected end of group")
 | 
						|
)
 |