345 lines
12 KiB
Go
345 lines
12 KiB
Go
|
// Code generated by protoc-gen-go.
|
||
|
// source: src/google/protobuf/api.proto
|
||
|
// DO NOT EDIT!
|
||
|
|
||
|
/*
|
||
|
Package api is a generated protocol buffer package.
|
||
|
|
||
|
It is generated from these files:
|
||
|
src/google/protobuf/api.proto
|
||
|
|
||
|
It has these top-level messages:
|
||
|
Api
|
||
|
Method
|
||
|
Mixin
|
||
|
*/
|
||
|
package api
|
||
|
|
||
|
import proto "github.com/golang/protobuf/proto"
|
||
|
import fmt "fmt"
|
||
|
import math "math"
|
||
|
import google_protobuf "google.golang.org/genproto/protobuf/source_context"
|
||
|
import google_protobuf2 "google.golang.org/genproto/protobuf/ptype"
|
||
|
|
||
|
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
||
|
|
||
|
// Api is a light-weight descriptor for a protocol buffer service.
|
||
|
type Api struct {
|
||
|
// The fully qualified name of this api, including package name
|
||
|
// followed by the api's simple name.
|
||
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||
|
// The methods of this api, in unspecified order.
|
||
|
Methods []*Method `protobuf:"bytes,2,rep,name=methods" json:"methods,omitempty"`
|
||
|
// Any metadata attached to the API.
|
||
|
Options []*google_protobuf2.Option `protobuf:"bytes,3,rep,name=options" json:"options,omitempty"`
|
||
|
// A version string for this api. If specified, must have the form
|
||
|
// `major-version.minor-version`, as in `1.10`. If the minor version
|
||
|
// is omitted, it defaults to zero. If the entire version field is
|
||
|
// empty, the major version is derived from the package name, as
|
||
|
// outlined below. If the field is not empty, the version in the
|
||
|
// package name will be verified to be consistent with what is
|
||
|
// provided here.
|
||
|
//
|
||
|
// The versioning schema uses [semantic
|
||
|
// versioning](http://semver.org) where the major version number
|
||
|
// indicates a breaking change and the minor version an additive,
|
||
|
// non-breaking change. Both version numbers are signals to users
|
||
|
// what to expect from different versions, and should be carefully
|
||
|
// chosen based on the product plan.
|
||
|
//
|
||
|
// The major version is also reflected in the package name of the
|
||
|
// API, which must end in `v<major-version>`, as in
|
||
|
// `google.feature.v1`. For major versions 0 and 1, the suffix can
|
||
|
// be omitted. Zero major versions must only be used for
|
||
|
// experimental, none-GA apis.
|
||
|
//
|
||
|
//
|
||
|
Version string `protobuf:"bytes,4,opt,name=version" json:"version,omitempty"`
|
||
|
// Source context for the protocol buffer service represented by this
|
||
|
// message.
|
||
|
SourceContext *google_protobuf.SourceContext `protobuf:"bytes,5,opt,name=source_context,json=sourceContext" json:"source_context,omitempty"`
|
||
|
// Included APIs. See [Mixin][].
|
||
|
Mixins []*Mixin `protobuf:"bytes,6,rep,name=mixins" json:"mixins,omitempty"`
|
||
|
// The source syntax of the service.
|
||
|
Syntax google_protobuf2.Syntax `protobuf:"varint,7,opt,name=syntax,enum=google.protobuf.Syntax" json:"syntax,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *Api) Reset() { *m = Api{} }
|
||
|
func (m *Api) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Api) ProtoMessage() {}
|
||
|
func (*Api) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
||
|
|
||
|
func (m *Api) GetName() string {
|
||
|
if m != nil {
|
||
|
return m.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Api) GetMethods() []*Method {
|
||
|
if m != nil {
|
||
|
return m.Methods
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *Api) GetOptions() []*google_protobuf2.Option {
|
||
|
if m != nil {
|
||
|
return m.Options
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *Api) GetVersion() string {
|
||
|
if m != nil {
|
||
|
return m.Version
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Api) GetSourceContext() *google_protobuf.SourceContext {
|
||
|
if m != nil {
|
||
|
return m.SourceContext
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *Api) GetMixins() []*Mixin {
|
||
|
if m != nil {
|
||
|
return m.Mixins
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *Api) GetSyntax() google_protobuf2.Syntax {
|
||
|
if m != nil {
|
||
|
return m.Syntax
|
||
|
}
|
||
|
return google_protobuf2.Syntax_SYNTAX_PROTO2
|
||
|
}
|
||
|
|
||
|
// Method represents a method of an api.
|
||
|
type Method struct {
|
||
|
// The simple name of this method.
|
||
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||
|
// A URL of the input message type.
|
||
|
RequestTypeUrl string `protobuf:"bytes,2,opt,name=request_type_url,json=requestTypeUrl" json:"request_type_url,omitempty"`
|
||
|
// If true, the request is streamed.
|
||
|
RequestStreaming bool `protobuf:"varint,3,opt,name=request_streaming,json=requestStreaming" json:"request_streaming,omitempty"`
|
||
|
// The URL of the output message type.
|
||
|
ResponseTypeUrl string `protobuf:"bytes,4,opt,name=response_type_url,json=responseTypeUrl" json:"response_type_url,omitempty"`
|
||
|
// If true, the response is streamed.
|
||
|
ResponseStreaming bool `protobuf:"varint,5,opt,name=response_streaming,json=responseStreaming" json:"response_streaming,omitempty"`
|
||
|
// Any metadata attached to the method.
|
||
|
Options []*google_protobuf2.Option `protobuf:"bytes,6,rep,name=options" json:"options,omitempty"`
|
||
|
// The source syntax of this method.
|
||
|
Syntax google_protobuf2.Syntax `protobuf:"varint,7,opt,name=syntax,enum=google.protobuf.Syntax" json:"syntax,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *Method) Reset() { *m = Method{} }
|
||
|
func (m *Method) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Method) ProtoMessage() {}
|
||
|
func (*Method) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
||
|
|
||
|
func (m *Method) GetName() string {
|
||
|
if m != nil {
|
||
|
return m.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Method) GetRequestTypeUrl() string {
|
||
|
if m != nil {
|
||
|
return m.RequestTypeUrl
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Method) GetRequestStreaming() bool {
|
||
|
if m != nil {
|
||
|
return m.RequestStreaming
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (m *Method) GetResponseTypeUrl() string {
|
||
|
if m != nil {
|
||
|
return m.ResponseTypeUrl
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Method) GetResponseStreaming() bool {
|
||
|
if m != nil {
|
||
|
return m.ResponseStreaming
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (m *Method) GetOptions() []*google_protobuf2.Option {
|
||
|
if m != nil {
|
||
|
return m.Options
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *Method) GetSyntax() google_protobuf2.Syntax {
|
||
|
if m != nil {
|
||
|
return m.Syntax
|
||
|
}
|
||
|
return google_protobuf2.Syntax_SYNTAX_PROTO2
|
||
|
}
|
||
|
|
||
|
// Declares an API to be included in this API. The including API must
|
||
|
// redeclare all the methods from the included API, but documentation
|
||
|
// and options are inherited as follows:
|
||
|
//
|
||
|
// - If after comment and whitespace stripping, the documentation
|
||
|
// string of the redeclared method is empty, it will be inherited
|
||
|
// from the original method.
|
||
|
//
|
||
|
// - Each annotation belonging to the service config (http,
|
||
|
// visibility) which is not set in the redeclared method will be
|
||
|
// inherited.
|
||
|
//
|
||
|
// - If an http annotation is inherited, the path pattern will be
|
||
|
// modified as follows. Any version prefix will be replaced by the
|
||
|
// version of the including API plus the [root][] path if specified.
|
||
|
//
|
||
|
// Example of a simple mixin:
|
||
|
//
|
||
|
// package google.acl.v1;
|
||
|
// service AccessControl {
|
||
|
// // Get the underlying ACL object.
|
||
|
// rpc GetAcl(GetAclRequest) returns (Acl) {
|
||
|
// option (google.api.http).get = "/v1/{resource=**}:getAcl";
|
||
|
// }
|
||
|
// }
|
||
|
//
|
||
|
// package google.storage.v2;
|
||
|
// service Storage {
|
||
|
// rpc GetAcl(GetAclRequest) returns (Acl);
|
||
|
//
|
||
|
// // Get a data record.
|
||
|
// rpc GetData(GetDataRequest) returns (Data) {
|
||
|
// option (google.api.http).get = "/v2/{resource=**}";
|
||
|
// }
|
||
|
// }
|
||
|
//
|
||
|
// Example of a mixin configuration:
|
||
|
//
|
||
|
// apis:
|
||
|
// - name: google.storage.v2.Storage
|
||
|
// mixins:
|
||
|
// - name: google.acl.v1.AccessControl
|
||
|
//
|
||
|
// The mixin construct implies that all methods in `AccessControl` are
|
||
|
// also declared with same name and request/response types in
|
||
|
// `Storage`. A documentation generator or annotation processor will
|
||
|
// see the effective `Storage.GetAcl` method after inherting
|
||
|
// documentation and annotations as follows:
|
||
|
//
|
||
|
// service Storage {
|
||
|
// // Get the underlying ACL object.
|
||
|
// rpc GetAcl(GetAclRequest) returns (Acl) {
|
||
|
// option (google.api.http).get = "/v2/{resource=**}:getAcl";
|
||
|
// }
|
||
|
// ...
|
||
|
// }
|
||
|
//
|
||
|
// Note how the version in the path pattern changed from `v1` to `v2`.
|
||
|
//
|
||
|
// If the `root` field in the mixin is specified, it should be a
|
||
|
// relative path under which inherited HTTP paths are placed. Example:
|
||
|
//
|
||
|
// apis:
|
||
|
// - name: google.storage.v2.Storage
|
||
|
// mixins:
|
||
|
// - name: google.acl.v1.AccessControl
|
||
|
// root: acls
|
||
|
//
|
||
|
// This implies the following inherited HTTP annotation:
|
||
|
//
|
||
|
// service Storage {
|
||
|
// // Get the underlying ACL object.
|
||
|
// rpc GetAcl(GetAclRequest) returns (Acl) {
|
||
|
// option (google.api.http).get = "/v2/acls/{resource=**}:getAcl";
|
||
|
// }
|
||
|
// ...
|
||
|
// }
|
||
|
type Mixin struct {
|
||
|
// The fully qualified name of the API which is included.
|
||
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||
|
// If non-empty specifies a path under which inherited HTTP paths
|
||
|
// are rooted.
|
||
|
Root string `protobuf:"bytes,2,opt,name=root" json:"root,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *Mixin) Reset() { *m = Mixin{} }
|
||
|
func (m *Mixin) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Mixin) ProtoMessage() {}
|
||
|
func (*Mixin) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
||
|
|
||
|
func (m *Mixin) GetName() string {
|
||
|
if m != nil {
|
||
|
return m.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Mixin) GetRoot() string {
|
||
|
if m != nil {
|
||
|
return m.Root
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterType((*Api)(nil), "google.protobuf.Api")
|
||
|
proto.RegisterType((*Method)(nil), "google.protobuf.Method")
|
||
|
proto.RegisterType((*Mixin)(nil), "google.protobuf.Mixin")
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("src/google/protobuf/api.proto", fileDescriptor0) }
|
||
|
|
||
|
var fileDescriptor0 = []byte{
|
||
|
// 435 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x4f, 0x8b, 0xd3, 0x40,
|
||
|
0x18, 0xc6, 0x49, 0xd2, 0xa6, 0xeb, 0x2c, 0x76, 0x75, 0x04, 0x1d, 0x0a, 0x2e, 0x61, 0xf1, 0x10,
|
||
|
0x5c, 0x4c, 0x70, 0x3d, 0x7a, 0x6a, 0x45, 0x7a, 0x10, 0x31, 0xa4, 0x8a, 0xe0, 0xa5, 0xa4, 0x71,
|
||
|
0x8c, 0x03, 0xc9, 0xbc, 0xe3, 0xcc, 0x44, 0xdb, 0xaf, 0xe3, 0xd1, 0xa3, 0xdf, 0xc0, 0x6f, 0x26,
|
||
|
0x99, 0x64, 0xfa, 0x27, 0xad, 0xe0, 0xde, 0xe6, 0x9d, 0xe7, 0xf7, 0x3e, 0x79, 0xdf, 0x67, 0x08,
|
||
|
0x7a, 0xac, 0x64, 0x1e, 0x17, 0x00, 0x45, 0x49, 0x63, 0x21, 0x41, 0xc3, 0xaa, 0xfe, 0x12, 0x67,
|
||
|
0x82, 0x45, 0xa6, 0xc0, 0x17, 0xad, 0x14, 0x59, 0x69, 0xf2, 0xa4, 0xcf, 0x2a, 0xa8, 0x65, 0x4e,
|
||
|
0x97, 0x39, 0x70, 0x4d, 0xd7, 0xba, 0x05, 0x27, 0x93, 0x3e, 0xa5, 0x37, 0xa2, 0x33, 0xb9, 0xfa,
|
||
|
0xe3, 0x22, 0x6f, 0x2a, 0x18, 0xc6, 0x68, 0xc0, 0xb3, 0x8a, 0x12, 0x27, 0x70, 0xc2, 0x3b, 0xa9,
|
||
|
0x39, 0xe3, 0xe7, 0x68, 0x54, 0x51, 0xfd, 0x15, 0x3e, 0x2b, 0xe2, 0x06, 0x5e, 0x78, 0x7e, 0xf3,
|
||
|
0x28, 0xea, 0x0d, 0x10, 0xbd, 0x35, 0x7a, 0x6a, 0xb9, 0xa6, 0x05, 0x84, 0x66, 0xc0, 0x15, 0xf1,
|
||
|
0xfe, 0xd1, 0xf2, 0xce, 0xe8, 0xa9, 0xe5, 0x30, 0x41, 0xa3, 0xef, 0x54, 0x2a, 0x06, 0x9c, 0x0c,
|
||
|
0xcc, 0xc7, 0x6d, 0x89, 0x5f, 0xa3, 0xf1, 0xe1, 0x3e, 0x64, 0x18, 0x38, 0xe1, 0xf9, 0xcd, 0xe5,
|
||
|
0x91, 0xe7, 0xc2, 0x60, 0xaf, 0x5a, 0x2a, 0xbd, 0xab, 0xf6, 0x4b, 0x1c, 0x21, 0xbf, 0x62, 0x6b,
|
||
|
0xc6, 0x15, 0xf1, 0xcd, 0x48, 0x0f, 0x8f, 0xb7, 0x68, 0xe4, 0xb4, 0xa3, 0x70, 0x8c, 0x7c, 0xb5,
|
||
|
0xe1, 0x3a, 0x5b, 0x93, 0x51, 0xe0, 0x84, 0xe3, 0x13, 0x2b, 0x2c, 0x8c, 0x9c, 0x76, 0xd8, 0xd5,
|
||
|
0x6f, 0x17, 0xf9, 0x6d, 0x10, 0x27, 0x63, 0x0c, 0xd1, 0x3d, 0x49, 0xbf, 0xd5, 0x54, 0xe9, 0x65,
|
||
|
0x13, 0xfc, 0xb2, 0x96, 0x25, 0x71, 0x8d, 0x3e, 0xee, 0xee, 0xdf, 0x6f, 0x04, 0xfd, 0x20, 0x4b,
|
||
|
0x7c, 0x8d, 0xee, 0x5b, 0x52, 0x69, 0x49, 0xb3, 0x8a, 0xf1, 0x82, 0x78, 0x81, 0x13, 0x9e, 0xa5,
|
||
|
0xd6, 0x62, 0x61, 0xef, 0xf1, 0xd3, 0x06, 0x56, 0x02, 0xb8, 0xa2, 0x3b, 0xdf, 0x36, 0xc1, 0x0b,
|
||
|
0x2b, 0x58, 0xe3, 0x67, 0x08, 0x6f, 0xd9, 0x9d, 0xf3, 0xd0, 0x38, 0x6f, 0x5d, 0x76, 0xd6, 0x7b,
|
||
|
0xaf, 0xe8, 0xff, 0xe7, 0x2b, 0xde, 0x3a, 0xb4, 0x18, 0x0d, 0x4d, 0xec, 0x27, 0x23, 0xc3, 0x68,
|
||
|
0x20, 0x01, 0x74, 0x17, 0x93, 0x39, 0xcf, 0x6a, 0xf4, 0x20, 0x87, 0xaa, 0x6f, 0x3b, 0x3b, 0x9b,
|
||
|
0x0a, 0x96, 0x34, 0x45, 0xe2, 0x7c, 0xba, 0xee, 0xc4, 0x02, 0xca, 0x8c, 0x17, 0x11, 0xc8, 0x22,
|
||
|
0x2e, 0x28, 0x37, 0xe8, 0xc1, 0xef, 0xf4, 0x32, 0x13, 0xec, 0xa7, 0xeb, 0xcd, 0x93, 0xd9, 0x2f,
|
||
|
0xf7, 0x72, 0xde, 0xf6, 0x24, 0x76, 0xce, 0x8f, 0xb4, 0x2c, 0xdf, 0x70, 0xf8, 0xc1, 0x9b, 0xf0,
|
||
|
0xd4, 0xca, 0x37, 0x8d, 0x2f, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0xbc, 0x42, 0xe4, 0x4b, 0x9b,
|
||
|
0x03, 0x00, 0x00,
|
||
|
}
|