appengine

package
v0.0.0-...-456eabd Latest Latest
Warning

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

Go to latest
Published: Nov 5, 2011 License: BSD-3-Clause Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var BlobstoreServiceError_ErrorCode_name = map[int32]string{
	0: "OK",
	1: "INTERNAL_ERROR",
	2: "URL_TOO_LONG",
	3: "PERMISSION_DENIED",
	4: "BLOB_NOT_FOUND",
	5: "DATA_INDEX_OUT_OF_RANGE",
	6: "BLOB_FETCH_SIZE_TOO_LARGE",
	8: "ARGUMENT_OUT_OF_RANGE",
}
View Source
var BlobstoreServiceError_ErrorCode_value = map[string]int32{
	"OK":                        0,
	"INTERNAL_ERROR":            1,
	"URL_TOO_LONG":              2,
	"PERMISSION_DENIED":         3,
	"BLOB_NOT_FOUND":            4,
	"DATA_INDEX_OUT_OF_RANGE":   5,
	"BLOB_FETCH_SIZE_TOO_LARGE": 6,
	"ARGUMENT_OUT_OF_RANGE":     8,
}

Functions

This section is empty.

Types

type BlobstoreServiceError

type BlobstoreServiceError struct {
	XXX_unrecognized []byte `json:",omitempty"`
}

func (*BlobstoreServiceError) Error

func (this *BlobstoreServiceError) Error() string

func (*BlobstoreServiceError) Reset

func (this *BlobstoreServiceError) Reset()

type BlobstoreServiceError_ErrorCode

type BlobstoreServiceError_ErrorCode int32
const (
	BlobstoreServiceError_OK                        BlobstoreServiceError_ErrorCode = 0
	BlobstoreServiceError_INTERNAL_ERROR            BlobstoreServiceError_ErrorCode = 1
	BlobstoreServiceError_URL_TOO_LONG              BlobstoreServiceError_ErrorCode = 2
	BlobstoreServiceError_PERMISSION_DENIED         BlobstoreServiceError_ErrorCode = 3
	BlobstoreServiceError_BLOB_NOT_FOUND            BlobstoreServiceError_ErrorCode = 4
	BlobstoreServiceError_DATA_INDEX_OUT_OF_RANGE   BlobstoreServiceError_ErrorCode = 5
	BlobstoreServiceError_BLOB_FETCH_SIZE_TOO_LARGE BlobstoreServiceError_ErrorCode = 6
	BlobstoreServiceError_ARGUMENT_OUT_OF_RANGE     BlobstoreServiceError_ErrorCode = 8
)

func (BlobstoreServiceError_ErrorCode) String

type CloneBlobRequest

type CloneBlobRequest struct {
	BlobKey          []byte `protobuf:"bytes,1,req,name=blob_key" json:"blob_key,omitempty"`
	MimeType         []byte `protobuf:"bytes,2,req,name=mime_type" json:"mime_type,omitempty"`
	TargetAppId      []byte `protobuf:"bytes,3,req,name=target_app_id" json:"target_app_id,omitempty"`
	XXX_unrecognized []byte `json:",omitempty"`
}

func (*CloneBlobRequest) Reset

func (this *CloneBlobRequest) Reset()

func (*CloneBlobRequest) String

func (this *CloneBlobRequest) String() string

type CloneBlobResponse

type CloneBlobResponse struct {
	BlobKey          []byte `protobuf:"bytes,1,req,name=blob_key" json:"blob_key,omitempty"`
	XXX_unrecognized []byte `json:",omitempty"`
}

func (*CloneBlobResponse) Reset

func (this *CloneBlobResponse) Reset()

func (*CloneBlobResponse) String

func (this *CloneBlobResponse) String() string

type CreateUploadURLRequest

type CreateUploadURLRequest struct {
	SuccessPath               *string `protobuf:"bytes,1,req,name=success_path" json:"success_path,omitempty"`
	MaxUploadSizeBytes        *int64  `protobuf:"varint,2,opt,name=max_upload_size_bytes" json:"max_upload_size_bytes,omitempty"`
	MaxUploadSizePerBlobBytes *int64  `protobuf:"varint,3,opt,name=max_upload_size_per_blob_bytes" json:"max_upload_size_per_blob_bytes,omitempty"`
	XXX_unrecognized          []byte  `json:",omitempty"`
}

func (*CreateUploadURLRequest) Reset

func (this *CreateUploadURLRequest) Reset()

func (*CreateUploadURLRequest) String

func (this *CreateUploadURLRequest) String() string

type CreateUploadURLResponse

type CreateUploadURLResponse struct {
	Url              *string `protobuf:"bytes,1,req,name=url" json:"url,omitempty"`
	XXX_unrecognized []byte  `json:",omitempty"`
}

func (*CreateUploadURLResponse) Reset

func (this *CreateUploadURLResponse) Reset()

func (*CreateUploadURLResponse) String

func (this *CreateUploadURLResponse) String() string

type DecodeBlobKeyRequest

type DecodeBlobKeyRequest struct {
	BlobKey          []string `protobuf:"bytes,1,rep,name=blob_key" json:"blob_key,omitempty"`
	XXX_unrecognized []byte   `json:",omitempty"`
}

func (*DecodeBlobKeyRequest) Reset

func (this *DecodeBlobKeyRequest) Reset()

func (*DecodeBlobKeyRequest) String

func (this *DecodeBlobKeyRequest) String() string

type DecodeBlobKeyResponse

type DecodeBlobKeyResponse struct {
	Decoded          []string `protobuf:"bytes,1,rep,name=decoded" json:"decoded,omitempty"`
	XXX_unrecognized []byte   `json:",omitempty"`
}

func (*DecodeBlobKeyResponse) Reset

func (this *DecodeBlobKeyResponse) Reset()

func (*DecodeBlobKeyResponse) String

func (this *DecodeBlobKeyResponse) String() string

type DeleteBlobRequest

type DeleteBlobRequest struct {
	BlobKey          []string `protobuf:"bytes,1,rep,name=blob_key" json:"blob_key,omitempty"`
	XXX_unrecognized []byte   `json:",omitempty"`
}

func (*DeleteBlobRequest) Reset

func (this *DeleteBlobRequest) Reset()

func (*DeleteBlobRequest) String

func (this *DeleteBlobRequest) String() string

type FetchDataRequest

type FetchDataRequest struct {
	BlobKey          *string `protobuf:"bytes,1,req,name=blob_key" json:"blob_key,omitempty"`
	StartIndex       *int64  `protobuf:"varint,2,req,name=start_index" json:"start_index,omitempty"`
	EndIndex         *int64  `protobuf:"varint,3,req,name=end_index" json:"end_index,omitempty"`
	XXX_unrecognized []byte  `json:",omitempty"`
}

func (*FetchDataRequest) Reset

func (this *FetchDataRequest) Reset()

func (*FetchDataRequest) String

func (this *FetchDataRequest) String() string

type FetchDataResponse

type FetchDataResponse struct {
	Data             []byte `protobuf:"bytes,1000,req,name=data" json:"data,omitempty"`
	XXX_unrecognized []byte `json:",omitempty"`
}

func (*FetchDataResponse) Reset

func (this *FetchDataResponse) Reset()

func (*FetchDataResponse) String

func (this *FetchDataResponse) String() string

Jump to

Keyboard shortcuts

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