~hduran-8/+junk/caddylegacy

« back to all changes in this revision

Viewing changes to debian/gocode/src/google.golang.org/cloud/bigtable/internal/table_service_proto/bigtable_table_service_messages.pb.go

  • Committer: Horacio Durán
  • Date: 2016-10-14 14:33:43 UTC
  • Revision ID: horacio.duran@canonical.com-20161014143343-ytyhz5sx7d1cje4q
Added new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Code generated by protoc-gen-go.
2
 
// source: google.golang.org/cloud/bigtable/internal/table_service_proto/bigtable_table_service_messages.proto
3
 
// DO NOT EDIT!
4
 
 
5
 
/*
6
 
Package google_bigtable_admin_table_v1 is a generated protocol buffer package.
7
 
 
8
 
It is generated from these files:
9
 
        google.golang.org/cloud/bigtable/internal/table_service_proto/bigtable_table_service_messages.proto
10
 
        google.golang.org/cloud/bigtable/internal/table_service_proto/bigtable_table_service.proto
11
 
 
12
 
It has these top-level messages:
13
 
        CreateTableRequest
14
 
        ListTablesRequest
15
 
        ListTablesResponse
16
 
        GetTableRequest
17
 
        DeleteTableRequest
18
 
        RenameTableRequest
19
 
        CreateColumnFamilyRequest
20
 
        DeleteColumnFamilyRequest
21
 
*/
22
 
package google_bigtable_admin_table_v1
23
 
 
24
 
import proto "github.com/golang/protobuf/proto"
25
 
import fmt "fmt"
26
 
import math "math"
27
 
import google_bigtable_admin_table_v11 "google.golang.org/cloud/bigtable/internal/table_data_proto"
28
 
 
29
 
// Reference imports to suppress errors if they are not otherwise used.
30
 
var _ = proto.Marshal
31
 
var _ = fmt.Errorf
32
 
var _ = math.Inf
33
 
 
34
 
type CreateTableRequest struct {
35
 
        // The unique name of the cluster in which to create the new table.
36
 
        Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
37
 
        // The name by which the new table should be referred to within the cluster,
38
 
        // e.g. "foobar" rather than "<cluster_name>/tables/foobar".
39
 
        TableId string `protobuf:"bytes,2,opt,name=table_id" json:"table_id,omitempty"`
40
 
        // The Table to create. The `name` field of the Table and all of its
41
 
        // ColumnFamilies must be left blank, and will be populated in the response.
42
 
        Table *google_bigtable_admin_table_v11.Table `protobuf:"bytes,3,opt,name=table" json:"table,omitempty"`
43
 
        // The optional list of row keys that will be used to initially split the
44
 
        // table into several tablets (Tablets are similar to HBase regions).
45
 
        // Given two split keys, "s1" and "s2", three tablets will be created,
46
 
        // spanning the key ranges: [, s1), [s1, s2), [s2, ).
47
 
        //
48
 
        // Example:
49
 
        //  * Row keys := ["a", "apple", "custom", "customer_1", "customer_2",
50
 
        //                 "other", "zz"]
51
 
        //  * initial_split_keys := ["apple", "customer_1", "customer_2", "other"]
52
 
        //  * Key assignment:
53
 
        //    - Tablet 1 [, apple)                => {"a"}.
54
 
        //    - Tablet 2 [apple, customer_1)      => {"apple", "custom"}.
55
 
        //    - Tablet 3 [customer_1, customer_2) => {"customer_1"}.
56
 
        //    - Tablet 4 [customer_2, other)      => {"customer_2"}.
57
 
        //    - Tablet 5 [other, )                => {"other", "zz"}.
58
 
        InitialSplitKeys []string `protobuf:"bytes,4,rep,name=initial_split_keys" json:"initial_split_keys,omitempty"`
59
 
}
60
 
 
61
 
func (m *CreateTableRequest) Reset()                    { *m = CreateTableRequest{} }
62
 
func (m *CreateTableRequest) String() string            { return proto.CompactTextString(m) }
63
 
func (*CreateTableRequest) ProtoMessage()               {}
64
 
func (*CreateTableRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
65
 
 
66
 
func (m *CreateTableRequest) GetTable() *google_bigtable_admin_table_v11.Table {
67
 
        if m != nil {
68
 
                return m.Table
69
 
        }
70
 
        return nil
71
 
}
72
 
 
73
 
type ListTablesRequest struct {
74
 
        // The unique name of the cluster for which tables should be listed.
75
 
        Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
76
 
}
77
 
 
78
 
func (m *ListTablesRequest) Reset()                    { *m = ListTablesRequest{} }
79
 
func (m *ListTablesRequest) String() string            { return proto.CompactTextString(m) }
80
 
func (*ListTablesRequest) ProtoMessage()               {}
81
 
func (*ListTablesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
82
 
 
83
 
type ListTablesResponse struct {
84
 
        // The tables present in the requested cluster.
85
 
        // At present, only the names of the tables are populated.
86
 
        Tables []*google_bigtable_admin_table_v11.Table `protobuf:"bytes,1,rep,name=tables" json:"tables,omitempty"`
87
 
}
88
 
 
89
 
func (m *ListTablesResponse) Reset()                    { *m = ListTablesResponse{} }
90
 
func (m *ListTablesResponse) String() string            { return proto.CompactTextString(m) }
91
 
func (*ListTablesResponse) ProtoMessage()               {}
92
 
func (*ListTablesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
93
 
 
94
 
func (m *ListTablesResponse) GetTables() []*google_bigtable_admin_table_v11.Table {
95
 
        if m != nil {
96
 
                return m.Tables
97
 
        }
98
 
        return nil
99
 
}
100
 
 
101
 
type GetTableRequest struct {
102
 
        // The unique name of the requested table.
103
 
        Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
104
 
}
105
 
 
106
 
func (m *GetTableRequest) Reset()                    { *m = GetTableRequest{} }
107
 
func (m *GetTableRequest) String() string            { return proto.CompactTextString(m) }
108
 
func (*GetTableRequest) ProtoMessage()               {}
109
 
func (*GetTableRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
110
 
 
111
 
type DeleteTableRequest struct {
112
 
        // The unique name of the table to be deleted.
113
 
        Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
114
 
}
115
 
 
116
 
func (m *DeleteTableRequest) Reset()                    { *m = DeleteTableRequest{} }
117
 
func (m *DeleteTableRequest) String() string            { return proto.CompactTextString(m) }
118
 
func (*DeleteTableRequest) ProtoMessage()               {}
119
 
func (*DeleteTableRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
120
 
 
121
 
type RenameTableRequest struct {
122
 
        // The current unique name of the table.
123
 
        Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
124
 
        // The new name by which the table should be referred to within its containing
125
 
        // cluster, e.g. "foobar" rather than "<cluster_name>/tables/foobar".
126
 
        NewId string `protobuf:"bytes,2,opt,name=new_id" json:"new_id,omitempty"`
127
 
}
128
 
 
129
 
func (m *RenameTableRequest) Reset()                    { *m = RenameTableRequest{} }
130
 
func (m *RenameTableRequest) String() string            { return proto.CompactTextString(m) }
131
 
func (*RenameTableRequest) ProtoMessage()               {}
132
 
func (*RenameTableRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
133
 
 
134
 
type CreateColumnFamilyRequest struct {
135
 
        // The unique name of the table in which to create the new column family.
136
 
        Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
137
 
        // The name by which the new column family should be referred to within the
138
 
        // table, e.g. "foobar" rather than "<table_name>/columnFamilies/foobar".
139
 
        ColumnFamilyId string `protobuf:"bytes,2,opt,name=column_family_id" json:"column_family_id,omitempty"`
140
 
        // The column family to create. The `name` field must be left blank.
141
 
        ColumnFamily *google_bigtable_admin_table_v11.ColumnFamily `protobuf:"bytes,3,opt,name=column_family" json:"column_family,omitempty"`
142
 
}
143
 
 
144
 
func (m *CreateColumnFamilyRequest) Reset()                    { *m = CreateColumnFamilyRequest{} }
145
 
func (m *CreateColumnFamilyRequest) String() string            { return proto.CompactTextString(m) }
146
 
func (*CreateColumnFamilyRequest) ProtoMessage()               {}
147
 
func (*CreateColumnFamilyRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
148
 
 
149
 
func (m *CreateColumnFamilyRequest) GetColumnFamily() *google_bigtable_admin_table_v11.ColumnFamily {
150
 
        if m != nil {
151
 
                return m.ColumnFamily
152
 
        }
153
 
        return nil
154
 
}
155
 
 
156
 
type DeleteColumnFamilyRequest struct {
157
 
        // The unique name of the column family to be deleted.
158
 
        Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
159
 
}
160
 
 
161
 
func (m *DeleteColumnFamilyRequest) Reset()                    { *m = DeleteColumnFamilyRequest{} }
162
 
func (m *DeleteColumnFamilyRequest) String() string            { return proto.CompactTextString(m) }
163
 
func (*DeleteColumnFamilyRequest) ProtoMessage()               {}
164
 
func (*DeleteColumnFamilyRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
165
 
 
166
 
func init() {
167
 
        proto.RegisterType((*CreateTableRequest)(nil), "google.bigtable.admin.table.v1.CreateTableRequest")
168
 
        proto.RegisterType((*ListTablesRequest)(nil), "google.bigtable.admin.table.v1.ListTablesRequest")
169
 
        proto.RegisterType((*ListTablesResponse)(nil), "google.bigtable.admin.table.v1.ListTablesResponse")
170
 
        proto.RegisterType((*GetTableRequest)(nil), "google.bigtable.admin.table.v1.GetTableRequest")
171
 
        proto.RegisterType((*DeleteTableRequest)(nil), "google.bigtable.admin.table.v1.DeleteTableRequest")
172
 
        proto.RegisterType((*RenameTableRequest)(nil), "google.bigtable.admin.table.v1.RenameTableRequest")
173
 
        proto.RegisterType((*CreateColumnFamilyRequest)(nil), "google.bigtable.admin.table.v1.CreateColumnFamilyRequest")
174
 
        proto.RegisterType((*DeleteColumnFamilyRequest)(nil), "google.bigtable.admin.table.v1.DeleteColumnFamilyRequest")
175
 
}
176
 
 
177
 
var fileDescriptor0 = []byte{
178
 
        // 368 bytes of a gzipped FileDescriptorProto
179
 
        0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x94, 0x52, 0x5d, 0x4f, 0x2a, 0x31,
180
 
        0x10, 0xcd, 0x5e, 0xb8, 0xe4, 0x32, 0xd7, 0x0f, 0xec, 0xd3, 0xc2, 0x83, 0x42, 0x13, 0x13, 0x4c,
181
 
        0xcc, 0x6e, 0x44, 0xfd, 0x03, 0x60, 0x34, 0x46, 0x4d, 0x08, 0xf2, 0xbe, 0x29, 0xbb, 0xe3, 0xa6,
182
 
        0xb1, 0xdb, 0xe2, 0xb6, 0x60, 0xf8, 0x03, 0xc6, 0x9f, 0x2d, 0xdb, 0x5d, 0x11, 0x12, 0x04, 0x7d,
183
 
        0xeb, 0xf4, 0x9c, 0x76, 0xce, 0x9c, 0x39, 0x10, 0xc6, 0x4a, 0xc5, 0x02, 0xbd, 0x58, 0x09, 0x26,
184
 
        0x63, 0x4f, 0xa5, 0xb1, 0x1f, 0x0a, 0x35, 0x89, 0xfc, 0x11, 0x8f, 0x0d, 0x1b, 0x09, 0xf4, 0xb9,
185
 
        0x34, 0x98, 0x4a, 0x26, 0x7c, 0x5b, 0x06, 0x1a, 0xd3, 0x29, 0x0f, 0x31, 0x18, 0xa7, 0xca, 0xa8,
186
 
        0x05, 0x2b, 0x58, 0x05, 0x13, 0xd4, 0x9a, 0xc5, 0xa8, 0x3d, 0xcb, 0x22, 0x87, 0x45, 0x93, 0x4f,
187
 
        0xb6, 0xc7, 0xa2, 0x84, 0x4b, 0x2f, 0x3f, 0x4f, 0xcf, 0x1a, 0xc3, 0xdf, 0x8a, 0x88, 0x98, 0x61,
188
 
        0xeb, 0x15, 0x64, 0x48, 0xde, 0x95, 0xbe, 0x39, 0x40, 0x7a, 0x29, 0x32, 0x83, 0xc3, 0x0c, 0x1a,
189
 
        0xe0, 0xcb, 0x04, 0xb5, 0x21, 0x3b, 0x50, 0x96, 0x2c, 0x41, 0xd7, 0x69, 0x3a, 0xed, 0x2a, 0xa9,
190
 
        0xc1, 0xbf, 0xfc, 0x21, 0x8f, 0xdc, 0x3f, 0xf6, 0xe6, 0x02, 0xfe, 0xda, 0x1b, 0xb7, 0x34, 0x2f,
191
 
        0xff, 0x77, 0x8e, 0xbd, 0xcd, 0xe2, 0x3d, 0xfb, 0x39, 0x69, 0x00, 0xe1, 0x92, 0x1b, 0xce, 0x44,
192
 
        0xa0, 0xc7, 0x82, 0x9b, 0xe0, 0x19, 0x67, 0xda, 0x2d, 0x37, 0x4b, 0xed, 0x2a, 0x6d, 0xc1, 0xc1,
193
 
        0x3d, 0xd7, 0xc6, 0x12, 0xf5, 0x5a, 0x19, 0xf4, 0x0e, 0xc8, 0x32, 0x45, 0x8f, 0x95, 0xd4, 0x48,
194
 
        0x2e, 0xa1, 0x62, 0xdb, 0xe8, 0x39, 0xab, 0xf4, 0x63, 0x2d, 0xf4, 0x08, 0xf6, 0x6f, 0xd0, 0x7c,
195
 
        0x3f, 0x34, 0xa5, 0x40, 0xae, 0x50, 0xe0, 0x26, 0x63, 0x68, 0x07, 0xc8, 0x00, 0xb3, 0x7a, 0x83,
196
 
        0x79, 0x7b, 0x50, 0x91, 0xf8, 0xba, 0xb0, 0x8e, 0xbe, 0x3b, 0x50, 0xcf, 0x1d, 0xef, 0x29, 0x31,
197
 
        0x49, 0xe4, 0x35, 0x4b, 0xb8, 0x98, 0xad, 0x7f, 0xeb, 0x42, 0x2d, 0xb4, 0xa4, 0xe0, 0xc9, 0xb2,
198
 
        0xbe, 0x16, 0xd0, 0x83, 0xdd, 0x15, 0xa4, 0x58, 0xc4, 0xe9, 0xb6, 0xe1, 0x97, 0x7b, 0xd2, 0x13,
199
 
        0xa8, 0xe7, 0x23, 0x6e, 0x55, 0xd2, 0xbd, 0x05, 0x1a, 0xaa, 0x64, 0xcb, 0xef, 0xdd, 0x56, 0xb7,
200
 
        0x00, 0xac, 0x1f, 0x8f, 0x79, 0xd0, 0x1f, 0x8a, 0x9c, 0xf7, 0xb3, 0xc0, 0xf5, 0x9d, 0x51, 0xc5,
201
 
        0x26, 0xef, 0xfc, 0x23, 0x00, 0x00, 0xff, 0xff, 0xe1, 0x1c, 0x6f, 0x09, 0x56, 0x03, 0x00, 0x00,
202
 
}