blob: 85a4a5b09f3698534ac26f251c33a1bc05a7aeda [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/spanner/v1/mutation.proto
package spanner
import (
fmt "fmt"
math "math"
proto "github.com/golang/protobuf/proto"
_struct "github.com/golang/protobuf/ptypes/struct"
_ "google.golang.org/genproto/googleapis/api/annotations"
)
// 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.ProtoPackageIsVersion3 // please upgrade the proto package
// A modification to one or more Cloud Spanner rows. Mutations can be
// applied to a Cloud Spanner database by sending them in a
// [Commit][google.spanner.v1.Spanner.Commit] call.
type Mutation struct {
// Required. The operation to perform.
//
// Types that are valid to be assigned to Operation:
// *Mutation_Insert
// *Mutation_Update
// *Mutation_InsertOrUpdate
// *Mutation_Replace
// *Mutation_Delete_
Operation isMutation_Operation `protobuf_oneof:"operation"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Mutation) Reset() { *m = Mutation{} }
func (m *Mutation) String() string { return proto.CompactTextString(m) }
func (*Mutation) ProtoMessage() {}
func (*Mutation) Descriptor() ([]byte, []int) {
return fileDescriptor_069356a524fd0232, []int{0}
}
func (m *Mutation) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Mutation.Unmarshal(m, b)
}
func (m *Mutation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Mutation.Marshal(b, m, deterministic)
}
func (m *Mutation) XXX_Merge(src proto.Message) {
xxx_messageInfo_Mutation.Merge(m, src)
}
func (m *Mutation) XXX_Size() int {
return xxx_messageInfo_Mutation.Size(m)
}
func (m *Mutation) XXX_DiscardUnknown() {
xxx_messageInfo_Mutation.DiscardUnknown(m)
}
var xxx_messageInfo_Mutation proto.InternalMessageInfo
type isMutation_Operation interface {
isMutation_Operation()
}
type Mutation_Insert struct {
Insert *Mutation_Write `protobuf:"bytes,1,opt,name=insert,proto3,oneof"`
}
type Mutation_Update struct {
Update *Mutation_Write `protobuf:"bytes,2,opt,name=update,proto3,oneof"`
}
type Mutation_InsertOrUpdate struct {
InsertOrUpdate *Mutation_Write `protobuf:"bytes,3,opt,name=insert_or_update,json=insertOrUpdate,proto3,oneof"`
}
type Mutation_Replace struct {
Replace *Mutation_Write `protobuf:"bytes,4,opt,name=replace,proto3,oneof"`
}
type Mutation_Delete_ struct {
Delete *Mutation_Delete `protobuf:"bytes,5,opt,name=delete,proto3,oneof"`
}
func (*Mutation_Insert) isMutation_Operation() {}
func (*Mutation_Update) isMutation_Operation() {}
func (*Mutation_InsertOrUpdate) isMutation_Operation() {}
func (*Mutation_Replace) isMutation_Operation() {}
func (*Mutation_Delete_) isMutation_Operation() {}
func (m *Mutation) GetOperation() isMutation_Operation {
if m != nil {
return m.Operation
}
return nil
}
func (m *Mutation) GetInsert() *Mutation_Write {
if x, ok := m.GetOperation().(*Mutation_Insert); ok {
return x.Insert
}
return nil
}
func (m *Mutation) GetUpdate() *Mutation_Write {
if x, ok := m.GetOperation().(*Mutation_Update); ok {
return x.Update
}
return nil
}
func (m *Mutation) GetInsertOrUpdate() *Mutation_Write {
if x, ok := m.GetOperation().(*Mutation_InsertOrUpdate); ok {
return x.InsertOrUpdate
}
return nil
}
func (m *Mutation) GetReplace() *Mutation_Write {
if x, ok := m.GetOperation().(*Mutation_Replace); ok {
return x.Replace
}
return nil
}
func (m *Mutation) GetDelete() *Mutation_Delete {
if x, ok := m.GetOperation().(*Mutation_Delete_); ok {
return x.Delete
}
return nil
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*Mutation) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*Mutation_Insert)(nil),
(*Mutation_Update)(nil),
(*Mutation_InsertOrUpdate)(nil),
(*Mutation_Replace)(nil),
(*Mutation_Delete_)(nil),
}
}
// Arguments to [insert][google.spanner.v1.Mutation.insert], [update][google.spanner.v1.Mutation.update], [insert_or_update][google.spanner.v1.Mutation.insert_or_update], and
// [replace][google.spanner.v1.Mutation.replace] operations.
type Mutation_Write struct {
// Required. The table whose rows will be written.
Table string `protobuf:"bytes,1,opt,name=table,proto3" json:"table,omitempty"`
// The names of the columns in [table][google.spanner.v1.Mutation.Write.table] to be written.
//
// The list of columns must contain enough columns to allow
// Cloud Spanner to derive values for all primary key columns in the
// row(s) to be modified.
Columns []string `protobuf:"bytes,2,rep,name=columns,proto3" json:"columns,omitempty"`
// The values to be written. `values` can contain more than one
// list of values. If it does, then multiple rows are written, one
// for each entry in `values`. Each list in `values` must have
// exactly as many entries as there are entries in [columns][google.spanner.v1.Mutation.Write.columns]
// above. Sending multiple lists is equivalent to sending multiple
// `Mutation`s, each containing one `values` entry and repeating
// [table][google.spanner.v1.Mutation.Write.table] and [columns][google.spanner.v1.Mutation.Write.columns]. Individual values in each list are
// encoded as described [here][google.spanner.v1.TypeCode].
Values []*_struct.ListValue `protobuf:"bytes,3,rep,name=values,proto3" json:"values,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Mutation_Write) Reset() { *m = Mutation_Write{} }
func (m *Mutation_Write) String() string { return proto.CompactTextString(m) }
func (*Mutation_Write) ProtoMessage() {}
func (*Mutation_Write) Descriptor() ([]byte, []int) {
return fileDescriptor_069356a524fd0232, []int{0, 0}
}
func (m *Mutation_Write) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Mutation_Write.Unmarshal(m, b)
}
func (m *Mutation_Write) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Mutation_Write.Marshal(b, m, deterministic)
}
func (m *Mutation_Write) XXX_Merge(src proto.Message) {
xxx_messageInfo_Mutation_Write.Merge(m, src)
}
func (m *Mutation_Write) XXX_Size() int {
return xxx_messageInfo_Mutation_Write.Size(m)
}
func (m *Mutation_Write) XXX_DiscardUnknown() {
xxx_messageInfo_Mutation_Write.DiscardUnknown(m)
}
var xxx_messageInfo_Mutation_Write proto.InternalMessageInfo
func (m *Mutation_Write) GetTable() string {
if m != nil {
return m.Table
}
return ""
}
func (m *Mutation_Write) GetColumns() []string {
if m != nil {
return m.Columns
}
return nil
}
func (m *Mutation_Write) GetValues() []*_struct.ListValue {
if m != nil {
return m.Values
}
return nil
}
// Arguments to [delete][google.spanner.v1.Mutation.delete] operations.
type Mutation_Delete struct {
// Required. The table whose rows will be deleted.
Table string `protobuf:"bytes,1,opt,name=table,proto3" json:"table,omitempty"`
// Required. The primary keys of the rows within [table][google.spanner.v1.Mutation.Delete.table] to delete. The
// primary keys must be specified in the order in which they appear in the
// `PRIMARY KEY()` clause of the table's equivalent DDL statement (the DDL
// statement used to create the table).
// Delete is idempotent. The transaction will succeed even if some or all
// rows do not exist.
KeySet *KeySet `protobuf:"bytes,2,opt,name=key_set,json=keySet,proto3" json:"key_set,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Mutation_Delete) Reset() { *m = Mutation_Delete{} }
func (m *Mutation_Delete) String() string { return proto.CompactTextString(m) }
func (*Mutation_Delete) ProtoMessage() {}
func (*Mutation_Delete) Descriptor() ([]byte, []int) {
return fileDescriptor_069356a524fd0232, []int{0, 1}
}
func (m *Mutation_Delete) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Mutation_Delete.Unmarshal(m, b)
}
func (m *Mutation_Delete) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Mutation_Delete.Marshal(b, m, deterministic)
}
func (m *Mutation_Delete) XXX_Merge(src proto.Message) {
xxx_messageInfo_Mutation_Delete.Merge(m, src)
}
func (m *Mutation_Delete) XXX_Size() int {
return xxx_messageInfo_Mutation_Delete.Size(m)
}
func (m *Mutation_Delete) XXX_DiscardUnknown() {
xxx_messageInfo_Mutation_Delete.DiscardUnknown(m)
}
var xxx_messageInfo_Mutation_Delete proto.InternalMessageInfo
func (m *Mutation_Delete) GetTable() string {
if m != nil {
return m.Table
}
return ""
}
func (m *Mutation_Delete) GetKeySet() *KeySet {
if m != nil {
return m.KeySet
}
return nil
}
func init() {
proto.RegisterType((*Mutation)(nil), "google.spanner.v1.Mutation")
proto.RegisterType((*Mutation_Write)(nil), "google.spanner.v1.Mutation.Write")
proto.RegisterType((*Mutation_Delete)(nil), "google.spanner.v1.Mutation.Delete")
}
func init() {
proto.RegisterFile("google/spanner/v1/mutation.proto", fileDescriptor_069356a524fd0232)
}
var fileDescriptor_069356a524fd0232 = []byte{
// 413 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0xd1, 0xea, 0xd3, 0x30,
0x18, 0xc5, 0xed, 0xba, 0x75, 0x2e, 0x43, 0xd1, 0xa2, 0x58, 0x8b, 0x17, 0x75, 0x57, 0xbb, 0x4a,
0x69, 0xbd, 0x11, 0xa6, 0x37, 0x53, 0x50, 0xd0, 0xe1, 0xe8, 0x70, 0x82, 0x0c, 0x46, 0xd6, 0x7d,
0x96, 0xd2, 0x2c, 0x29, 0x49, 0x3a, 0xd8, 0x8b, 0x78, 0xe9, 0x03, 0xf8, 0x28, 0x3e, 0x95, 0x34,
0x49, 0x65, 0x38, 0xfd, 0xb3, 0xff, 0xd5, 0x16, 0xce, 0xf9, 0x9d, 0xf3, 0x7d, 0x49, 0x51, 0x54,
0x70, 0x5e, 0x50, 0x88, 0x65, 0x4d, 0x18, 0x03, 0x11, 0x1f, 0x93, 0xf8, 0xd0, 0x28, 0xa2, 0x4a,
0xce, 0x70, 0x2d, 0xb8, 0xe2, 0xfe, 0x43, 0xe3, 0xc0, 0xd6, 0x81, 0x8f, 0x49, 0xf8, 0xcc, 0x42,
0xda, 0xb0, 0x6b, 0xbe, 0xc5, 0x52, 0x89, 0x26, 0x57, 0x06, 0xf8, 0xa3, 0x9e, 0x45, 0x56, 0x70,
0x92, 0x7f, 0xa9, 0xa4, 0x2e, 0x63, 0xc2, 0x18, 0x37, 0x5d, 0x56, 0x9d, 0xfc, 0xe8, 0xa3, 0xbb,
0x0b, 0xdb, 0xef, 0xcf, 0x90, 0x57, 0x32, 0x09, 0x42, 0x05, 0x4e, 0xe4, 0x4c, 0xc7, 0xe9, 0x73,
0x7c, 0x31, 0x0a, 0xee, 0xcc, 0xf8, 0x8b, 0x28, 0x15, 0xbc, 0xbf, 0x93, 0x59, 0xa4, 0x85, 0x9b,
0x7a, 0x4f, 0x14, 0x04, 0xbd, 0x5b, 0xc0, 0x06, 0xf1, 0x17, 0xe8, 0x81, 0x89, 0xd9, 0x72, 0xb1,
0xb5, 0x31, 0xee, 0xf5, 0x31, 0xf7, 0x0d, 0xfc, 0x49, 0x7c, 0x36, 0x71, 0xaf, 0xd1, 0x50, 0x40,
0x4d, 0x49, 0x0e, 0x41, 0xff, 0xfa, 0x94, 0x8e, 0xf1, 0x5f, 0x21, 0x6f, 0x0f, 0x14, 0x14, 0x04,
0x03, 0x4d, 0x4f, 0x6e, 0xa2, 0xdf, 0x6a, 0x67, 0xbb, 0x8b, 0x61, 0xc2, 0x0a, 0x0d, 0x74, 0xa2,
0xff, 0x08, 0x0d, 0x14, 0xd9, 0x51, 0xd0, 0xb7, 0x39, 0xca, 0xcc, 0xc1, 0x0f, 0xd0, 0x30, 0xe7,
0xb4, 0x39, 0x30, 0x19, 0xf4, 0x22, 0x77, 0x3a, 0xca, 0xba, 0xa3, 0x9f, 0x22, 0xef, 0x48, 0x68,
0x03, 0x32, 0x70, 0x23, 0x77, 0x3a, 0x4e, 0xc3, 0xae, 0xb6, 0x7b, 0x76, 0xfc, 0xb1, 0x94, 0x6a,
0xdd, 0x5a, 0x32, 0xeb, 0x0c, 0x33, 0xe4, 0x99, 0x01, 0xfe, 0xd3, 0x96, 0xa2, 0x61, 0x05, 0xa7,
0xad, 0x04, 0x65, 0x9f, 0xe5, 0xe9, 0x3f, 0x76, 0xf9, 0x00, 0xa7, 0x15, 0xa8, 0xcc, 0xab, 0xf4,
0xef, 0x7c, 0x8c, 0x46, 0xbc, 0x06, 0xa1, 0xd7, 0x9b, 0x7f, 0x77, 0xd0, 0xe3, 0x9c, 0x1f, 0x2e,
0xa9, 0xf9, 0xbd, 0xee, 0x0a, 0x96, 0xed, 0x78, 0x4b, 0xe7, 0xeb, 0x4b, 0xeb, 0x29, 0x38, 0x25,
0xac, 0xc0, 0x5c, 0x14, 0x71, 0x01, 0x4c, 0x0f, 0x1f, 0x1b, 0x89, 0xd4, 0xa5, 0x3c, 0xfb, 0x4c,
0x67, 0xf6, 0xef, 0xcf, 0xde, 0x93, 0x77, 0x06, 0x7d, 0x43, 0x79, 0xb3, 0xc7, 0x2b, 0x5b, 0xb2,
0x4e, 0x7e, 0x75, 0xca, 0x46, 0x2b, 0x1b, 0xab, 0x6c, 0xd6, 0xc9, 0xce, 0xd3, 0xc1, 0x2f, 0x7e,
0x07, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x08, 0xa5, 0x4b, 0x51, 0x03, 0x00, 0x00,
}