mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-21 13:21:17 +00:00
152 lines
6.2 KiB
Go
152 lines
6.2 KiB
Go
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
|
// source: google/api/endpoint.proto
|
||
|
|
||
|
package serviceconfig // import "google.golang.org/genproto/googleapis/api/serviceconfig"
|
||
|
|
||
|
import proto "github.com/golang/protobuf/proto"
|
||
|
import fmt "fmt"
|
||
|
import math "math"
|
||
|
import _ "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.ProtoPackageIsVersion2 // please upgrade the proto package
|
||
|
|
||
|
// `Endpoint` describes a network endpoint that serves a set of APIs.
|
||
|
// A service may expose any number of endpoints, and all endpoints share the
|
||
|
// same service configuration, such as quota configuration and monitoring
|
||
|
// configuration.
|
||
|
//
|
||
|
// Example service configuration:
|
||
|
//
|
||
|
// name: library-example.googleapis.com
|
||
|
// endpoints:
|
||
|
// # Below entry makes 'google.example.library.v1.Library'
|
||
|
// # API be served from endpoint address library-example.googleapis.com.
|
||
|
// # It also allows HTTP OPTIONS calls to be passed to the backend, for
|
||
|
// # it to decide whether the subsequent cross-origin request is
|
||
|
// # allowed to proceed.
|
||
|
// - name: library-example.googleapis.com
|
||
|
// allow_cors: true
|
||
|
type Endpoint struct {
|
||
|
// The canonical name of this endpoint.
|
||
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||
|
// DEPRECATED: This field is no longer supported. Instead of using aliases,
|
||
|
// please specify multiple [google.api.Endpoint][google.api.Endpoint] for each
|
||
|
// of the intended aliases.
|
||
|
//
|
||
|
// Additional names that this endpoint will be hosted on.
|
||
|
Aliases []string `protobuf:"bytes,2,rep,name=aliases,proto3" json:"aliases,omitempty"` // Deprecated: Do not use.
|
||
|
// The list of features enabled on this endpoint.
|
||
|
Features []string `protobuf:"bytes,4,rep,name=features,proto3" json:"features,omitempty"`
|
||
|
// The specification of an Internet routable address of API frontend that will
|
||
|
// handle requests to this [API
|
||
|
// Endpoint](https://cloud.google.com/apis/design/glossary). It should be
|
||
|
// either a valid IPv4 address or a fully-qualified domain name. For example,
|
||
|
// "8.8.8.8" or "myservice.appspot.com".
|
||
|
Target string `protobuf:"bytes,101,opt,name=target,proto3" json:"target,omitempty"`
|
||
|
// Allowing
|
||
|
// [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka
|
||
|
// cross-domain traffic, would allow the backends served from this endpoint to
|
||
|
// receive and respond to HTTP OPTIONS requests. The response will be used by
|
||
|
// the browser to determine whether the subsequent cross-origin request is
|
||
|
// allowed to proceed.
|
||
|
AllowCors bool `protobuf:"varint,5,opt,name=allow_cors,json=allowCors,proto3" json:"allow_cors,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *Endpoint) Reset() { *m = Endpoint{} }
|
||
|
func (m *Endpoint) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Endpoint) ProtoMessage() {}
|
||
|
func (*Endpoint) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_endpoint_c85a41e377429c8c, []int{0}
|
||
|
}
|
||
|
func (m *Endpoint) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_Endpoint.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *Endpoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_Endpoint.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (dst *Endpoint) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_Endpoint.Merge(dst, src)
|
||
|
}
|
||
|
func (m *Endpoint) XXX_Size() int {
|
||
|
return xxx_messageInfo_Endpoint.Size(m)
|
||
|
}
|
||
|
func (m *Endpoint) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_Endpoint.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_Endpoint proto.InternalMessageInfo
|
||
|
|
||
|
func (m *Endpoint) GetName() string {
|
||
|
if m != nil {
|
||
|
return m.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
// Deprecated: Do not use.
|
||
|
func (m *Endpoint) GetAliases() []string {
|
||
|
if m != nil {
|
||
|
return m.Aliases
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *Endpoint) GetFeatures() []string {
|
||
|
if m != nil {
|
||
|
return m.Features
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *Endpoint) GetTarget() string {
|
||
|
if m != nil {
|
||
|
return m.Target
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Endpoint) GetAllowCors() bool {
|
||
|
if m != nil {
|
||
|
return m.AllowCors
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterType((*Endpoint)(nil), "google.api.Endpoint")
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("google/api/endpoint.proto", fileDescriptor_endpoint_c85a41e377429c8c) }
|
||
|
|
||
|
var fileDescriptor_endpoint_c85a41e377429c8c = []byte{
|
||
|
// 251 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x8f, 0xbf, 0x4e, 0xf4, 0x30,
|
||
|
0x10, 0xc4, 0xe5, 0x7c, 0xf9, 0x8e, 0x64, 0x25, 0x28, 0x5c, 0x20, 0x73, 0x3a, 0xa4, 0x88, 0x2a,
|
||
|
0x55, 0x52, 0x50, 0x52, 0x11, 0x74, 0x42, 0x74, 0x51, 0x4a, 0x1a, 0xb4, 0x84, 0x3d, 0xcb, 0x52,
|
||
|
0xce, 0x6b, 0xd9, 0x06, 0x1e, 0x83, 0x77, 0xe0, 0x49, 0xd1, 0x39, 0x39, 0xfe, 0x74, 0x9e, 0xfd,
|
||
|
0xcd, 0x58, 0x33, 0x70, 0xa1, 0x99, 0xf5, 0x44, 0x2d, 0x3a, 0xd3, 0x92, 0x7d, 0x71, 0x6c, 0x6c,
|
||
|
0x6c, 0x9c, 0xe7, 0xc8, 0x12, 0x66, 0xd4, 0xa0, 0x33, 0xeb, 0xcd, 0x2f, 0x1b, 0x5a, 0xcb, 0x11,
|
||
|
0xa3, 0x61, 0x1b, 0x66, 0xe7, 0xd5, 0x87, 0x80, 0x62, 0xbb, 0x84, 0xa5, 0x84, 0xdc, 0xe2, 0x9e,
|
||
|
0x94, 0xa8, 0x44, 0x5d, 0x0e, 0xe9, 0x2d, 0x37, 0x70, 0x82, 0x93, 0xc1, 0x40, 0x41, 0x65, 0xd5,
|
||
|
0xbf, 0xba, 0xec, 0x32, 0x25, 0x86, 0xe3, 0x49, 0xae, 0xa1, 0xd8, 0x11, 0xc6, 0x57, 0x4f, 0x41,
|
||
|
0xe5, 0x07, 0x3c, 0x7c, 0x6b, 0x79, 0x0e, 0xab, 0x88, 0x5e, 0x53, 0x54, 0x94, 0xfe, 0x5b, 0x94,
|
||
|
0xbc, 0x04, 0xc0, 0x69, 0xe2, 0xf7, 0xa7, 0x91, 0x7d, 0x50, 0xff, 0x2b, 0x51, 0x17, 0x43, 0x99,
|
||
|
0x2e, 0x77, 0xec, 0x43, 0xc7, 0x70, 0x36, 0xf2, 0xbe, 0xf9, 0x59, 0xd0, 0x9d, 0x1e, 0x0b, 0xf6,
|
||
|
0x87, 0xca, 0xbd, 0x78, 0xdc, 0x2e, 0x50, 0xf3, 0x84, 0x56, 0x37, 0xec, 0x75, 0xab, 0xc9, 0xa6,
|
||
|
0x41, 0xed, 0x8c, 0xd0, 0x99, 0x90, 0x16, 0x07, 0xf2, 0x6f, 0x66, 0xa4, 0x91, 0xed, 0xce, 0xe8,
|
||
|
0x9b, 0x3f, 0xea, 0x33, 0xcb, 0xef, 0x6f, 0xfb, 0x87, 0xe7, 0x55, 0x0a, 0x5e, 0x7f, 0x05, 0x00,
|
||
|
0x00, 0xff, 0xff, 0xec, 0x55, 0x37, 0x26, 0x50, 0x01, 0x00, 0x00,
|
||
|
}
|