Bumping k8s dependencies to 1.13
This commit is contained in:
112
vendor/google.golang.org/genproto/googleapis/appengine/v1/application.pb.go
generated
vendored
112
vendor/google.golang.org/genproto/googleapis/appengine/v1/application.pb.go
generated
vendored
@@ -3,17 +3,25 @@
|
||||
|
||||
package appengine
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import google_protobuf1 "github.com/golang/protobuf/ptypes/duration"
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
duration "github.com/golang/protobuf/ptypes/duration"
|
||||
_ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// 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
|
||||
|
||||
// An Application resource contains the top-level configuration of an App
|
||||
// Engine application.
|
||||
type Application struct {
|
||||
@@ -21,22 +29,22 @@ type Application struct {
|
||||
// Example: `apps/myapp`.
|
||||
//
|
||||
// @OutputOnly
|
||||
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// Identifier of the Application resource. This identifier is equivalent
|
||||
// to the project ID of the Google Cloud Platform project where you want to
|
||||
// deploy your application.
|
||||
// Example: `myapp`.
|
||||
Id string `protobuf:"bytes,2,opt,name=id" json:"id,omitempty"`
|
||||
Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
|
||||
// HTTP path dispatch rules for requests to the application that do not
|
||||
// explicitly target a service or version. Rules are order-dependent.
|
||||
//
|
||||
// @OutputOnly
|
||||
DispatchRules []*UrlDispatchRule `protobuf:"bytes,3,rep,name=dispatch_rules,json=dispatchRules" json:"dispatch_rules,omitempty"`
|
||||
DispatchRules []*UrlDispatchRule `protobuf:"bytes,3,rep,name=dispatch_rules,json=dispatchRules,proto3" json:"dispatch_rules,omitempty"`
|
||||
// Google Apps authentication domain that controls which users can access
|
||||
// this application.
|
||||
//
|
||||
// Defaults to open access for any Google Account.
|
||||
AuthDomain string `protobuf:"bytes,6,opt,name=auth_domain,json=authDomain" json:"auth_domain,omitempty"`
|
||||
AuthDomain string `protobuf:"bytes,6,opt,name=auth_domain,json=authDomain,proto3" json:"auth_domain,omitempty"`
|
||||
// Location from which this application will be run. Application instances
|
||||
// will run out of data centers in the chosen location, which is also where
|
||||
// all of the application's end user content is stored.
|
||||
@@ -50,32 +58,55 @@ type Application struct {
|
||||
// `europe-west` - Western Europe
|
||||
//
|
||||
// `us-east1` - Eastern US
|
||||
LocationId string `protobuf:"bytes,7,opt,name=location_id,json=locationId" json:"location_id,omitempty"`
|
||||
LocationId string `protobuf:"bytes,7,opt,name=location_id,json=locationId,proto3" json:"location_id,omitempty"`
|
||||
// Google Cloud Storage bucket that can be used for storing files
|
||||
// associated with this application. This bucket is associated with the
|
||||
// application and can be used by the gcloud deployment commands.
|
||||
//
|
||||
// @OutputOnly
|
||||
CodeBucket string `protobuf:"bytes,8,opt,name=code_bucket,json=codeBucket" json:"code_bucket,omitempty"`
|
||||
CodeBucket string `protobuf:"bytes,8,opt,name=code_bucket,json=codeBucket,proto3" json:"code_bucket,omitempty"`
|
||||
// Cookie expiration policy for this application.
|
||||
//
|
||||
// @OutputOnly
|
||||
DefaultCookieExpiration *google_protobuf1.Duration `protobuf:"bytes,9,opt,name=default_cookie_expiration,json=defaultCookieExpiration" json:"default_cookie_expiration,omitempty"`
|
||||
DefaultCookieExpiration *duration.Duration `protobuf:"bytes,9,opt,name=default_cookie_expiration,json=defaultCookieExpiration,proto3" json:"default_cookie_expiration,omitempty"`
|
||||
// Hostname used to reach this application, as resolved by App Engine.
|
||||
//
|
||||
// @OutputOnly
|
||||
DefaultHostname string `protobuf:"bytes,11,opt,name=default_hostname,json=defaultHostname" json:"default_hostname,omitempty"`
|
||||
DefaultHostname string `protobuf:"bytes,11,opt,name=default_hostname,json=defaultHostname,proto3" json:"default_hostname,omitempty"`
|
||||
// Google Cloud Storage bucket that can be used by this application to store
|
||||
// content.
|
||||
//
|
||||
// @OutputOnly
|
||||
DefaultBucket string `protobuf:"bytes,12,opt,name=default_bucket,json=defaultBucket" json:"default_bucket,omitempty"`
|
||||
DefaultBucket string `protobuf:"bytes,12,opt,name=default_bucket,json=defaultBucket,proto3" json:"default_bucket,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Application) Reset() { *m = Application{} }
|
||||
func (m *Application) String() string { return proto.CompactTextString(m) }
|
||||
func (*Application) ProtoMessage() {}
|
||||
func (*Application) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{0} }
|
||||
func (m *Application) Reset() { *m = Application{} }
|
||||
func (m *Application) String() string { return proto.CompactTextString(m) }
|
||||
func (*Application) ProtoMessage() {}
|
||||
func (*Application) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_fd91fbd11f8d8d62, []int{0}
|
||||
}
|
||||
|
||||
func (m *Application) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Application.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Application) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Application.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Application) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Application.Merge(m, src)
|
||||
}
|
||||
func (m *Application) XXX_Size() int {
|
||||
return xxx_messageInfo_Application.Size(m)
|
||||
}
|
||||
func (m *Application) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Application.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Application proto.InternalMessageInfo
|
||||
|
||||
func (m *Application) GetName() string {
|
||||
if m != nil {
|
||||
@@ -119,7 +150,7 @@ func (m *Application) GetCodeBucket() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Application) GetDefaultCookieExpiration() *google_protobuf1.Duration {
|
||||
func (m *Application) GetDefaultCookieExpiration() *duration.Duration {
|
||||
if m != nil {
|
||||
return m.DefaultCookieExpiration
|
||||
}
|
||||
@@ -146,22 +177,45 @@ type UrlDispatchRule struct {
|
||||
// specified before a period: "`*.`".
|
||||
//
|
||||
// Defaults to matching all domains: "`*`".
|
||||
Domain string `protobuf:"bytes,1,opt,name=domain" json:"domain,omitempty"`
|
||||
Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
|
||||
// Pathname within the host. Must start with a "`/`". A
|
||||
// single "`*`" can be included at the end of the path. The sum
|
||||
// of the lengths of the domain and path may not exceed 100
|
||||
// characters.
|
||||
Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
|
||||
Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
|
||||
// Resource ID of a service in this application that should
|
||||
// serve the matched request. The service must already
|
||||
// exist. Example: `default`.
|
||||
Service string `protobuf:"bytes,3,opt,name=service" json:"service,omitempty"`
|
||||
Service string `protobuf:"bytes,3,opt,name=service,proto3" json:"service,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *UrlDispatchRule) Reset() { *m = UrlDispatchRule{} }
|
||||
func (m *UrlDispatchRule) String() string { return proto.CompactTextString(m) }
|
||||
func (*UrlDispatchRule) ProtoMessage() {}
|
||||
func (*UrlDispatchRule) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{1} }
|
||||
func (m *UrlDispatchRule) Reset() { *m = UrlDispatchRule{} }
|
||||
func (m *UrlDispatchRule) String() string { return proto.CompactTextString(m) }
|
||||
func (*UrlDispatchRule) ProtoMessage() {}
|
||||
func (*UrlDispatchRule) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_fd91fbd11f8d8d62, []int{1}
|
||||
}
|
||||
|
||||
func (m *UrlDispatchRule) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_UrlDispatchRule.Unmarshal(m, b)
|
||||
}
|
||||
func (m *UrlDispatchRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_UrlDispatchRule.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *UrlDispatchRule) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_UrlDispatchRule.Merge(m, src)
|
||||
}
|
||||
func (m *UrlDispatchRule) XXX_Size() int {
|
||||
return xxx_messageInfo_UrlDispatchRule.Size(m)
|
||||
}
|
||||
func (m *UrlDispatchRule) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_UrlDispatchRule.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_UrlDispatchRule proto.InternalMessageInfo
|
||||
|
||||
func (m *UrlDispatchRule) GetDomain() string {
|
||||
if m != nil {
|
||||
@@ -189,9 +243,11 @@ func init() {
|
||||
proto.RegisterType((*UrlDispatchRule)(nil), "google.appengine.v1.UrlDispatchRule")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("google/appengine/v1/application.proto", fileDescriptor2) }
|
||||
func init() {
|
||||
proto.RegisterFile("google/appengine/v1/application.proto", fileDescriptor_fd91fbd11f8d8d62)
|
||||
}
|
||||
|
||||
var fileDescriptor2 = []byte{
|
||||
var fileDescriptor_fd91fbd11f8d8d62 = []byte{
|
||||
// 409 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0x5f, 0x6b, 0xdb, 0x30,
|
||||
0x14, 0xc5, 0x71, 0x3c, 0x92, 0x45, 0x5e, 0xfe, 0xa0, 0xc1, 0xa2, 0x84, 0xb1, 0x85, 0xb0, 0x40,
|
||||
|
Reference in New Issue
Block a user