Bumping k8s dependencies to 1.13
This commit is contained in:
163
vendor/google.golang.org/genproto/googleapis/appengine/v1/deploy.pb.go
generated
vendored
163
vendor/google.golang.org/genproto/googleapis/appengine/v1/deploy.pb.go
generated
vendored
@@ -3,33 +3,64 @@
|
||||
|
||||
package appengine
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
_ "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
|
||||
|
||||
// Code and application artifacts used to deploy a version to App Engine.
|
||||
type Deployment struct {
|
||||
// Manifest of the files stored in Google Cloud Storage that are included
|
||||
// as part of this version. All files must be readable using the
|
||||
// credentials supplied with this call.
|
||||
Files map[string]*FileInfo `protobuf:"bytes,1,rep,name=files" json:"files,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
||||
Files map[string]*FileInfo `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
// A Docker image that App Engine uses to run the version.
|
||||
// Only applicable for instances in App Engine flexible environment.
|
||||
Container *ContainerInfo `protobuf:"bytes,2,opt,name=container" json:"container,omitempty"`
|
||||
Container *ContainerInfo `protobuf:"bytes,2,opt,name=container,proto3" json:"container,omitempty"`
|
||||
// The zip file for this deployment, if this is a zip deployment.
|
||||
Zip *ZipInfo `protobuf:"bytes,3,opt,name=zip" json:"zip,omitempty"`
|
||||
Zip *ZipInfo `protobuf:"bytes,3,opt,name=zip,proto3" json:"zip,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Deployment) Reset() { *m = Deployment{} }
|
||||
func (m *Deployment) String() string { return proto.CompactTextString(m) }
|
||||
func (*Deployment) ProtoMessage() {}
|
||||
func (*Deployment) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{0} }
|
||||
func (m *Deployment) Reset() { *m = Deployment{} }
|
||||
func (m *Deployment) String() string { return proto.CompactTextString(m) }
|
||||
func (*Deployment) ProtoMessage() {}
|
||||
func (*Deployment) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_744f483f02f61d1c, []int{0}
|
||||
}
|
||||
|
||||
func (m *Deployment) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Deployment.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Deployment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Deployment.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Deployment) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Deployment.Merge(m, src)
|
||||
}
|
||||
func (m *Deployment) XXX_Size() int {
|
||||
return xxx_messageInfo_Deployment.Size(m)
|
||||
}
|
||||
func (m *Deployment) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Deployment.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Deployment proto.InternalMessageInfo
|
||||
|
||||
func (m *Deployment) GetFiles() map[string]*FileInfo {
|
||||
if m != nil {
|
||||
@@ -58,19 +89,42 @@ type FileInfo struct {
|
||||
// URL source to use to fetch this file. Must be a URL to a resource in
|
||||
// Google Cloud Storage in the form
|
||||
// 'http(s)://storage.googleapis.com/\<bucket\>/\<object\>'.
|
||||
SourceUrl string `protobuf:"bytes,1,opt,name=source_url,json=sourceUrl" json:"source_url,omitempty"`
|
||||
SourceUrl string `protobuf:"bytes,1,opt,name=source_url,json=sourceUrl,proto3" json:"source_url,omitempty"`
|
||||
// The SHA1 hash of the file, in hex.
|
||||
Sha1Sum string `protobuf:"bytes,2,opt,name=sha1_sum,json=sha1Sum" json:"sha1_sum,omitempty"`
|
||||
Sha1Sum string `protobuf:"bytes,2,opt,name=sha1_sum,json=sha1Sum,proto3" json:"sha1_sum,omitempty"`
|
||||
// The MIME type of the file.
|
||||
//
|
||||
// Defaults to the value from Google Cloud Storage.
|
||||
MimeType string `protobuf:"bytes,3,opt,name=mime_type,json=mimeType" json:"mime_type,omitempty"`
|
||||
MimeType string `protobuf:"bytes,3,opt,name=mime_type,json=mimeType,proto3" json:"mime_type,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *FileInfo) Reset() { *m = FileInfo{} }
|
||||
func (m *FileInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*FileInfo) ProtoMessage() {}
|
||||
func (*FileInfo) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{1} }
|
||||
func (m *FileInfo) Reset() { *m = FileInfo{} }
|
||||
func (m *FileInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*FileInfo) ProtoMessage() {}
|
||||
func (*FileInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_744f483f02f61d1c, []int{1}
|
||||
}
|
||||
|
||||
func (m *FileInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_FileInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *FileInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_FileInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *FileInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_FileInfo.Merge(m, src)
|
||||
}
|
||||
func (m *FileInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_FileInfo.Size(m)
|
||||
}
|
||||
func (m *FileInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_FileInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_FileInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *FileInfo) GetSourceUrl() string {
|
||||
if m != nil {
|
||||
@@ -99,13 +153,36 @@ type ContainerInfo struct {
|
||||
// URI to the hosted container image in a Docker repository. The URI must be
|
||||
// fully qualified and include a tag or digest.
|
||||
// Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
|
||||
Image string `protobuf:"bytes,1,opt,name=image" json:"image,omitempty"`
|
||||
Image string `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ContainerInfo) Reset() { *m = ContainerInfo{} }
|
||||
func (m *ContainerInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*ContainerInfo) ProtoMessage() {}
|
||||
func (*ContainerInfo) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{2} }
|
||||
func (m *ContainerInfo) Reset() { *m = ContainerInfo{} }
|
||||
func (m *ContainerInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*ContainerInfo) ProtoMessage() {}
|
||||
func (*ContainerInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_744f483f02f61d1c, []int{2}
|
||||
}
|
||||
|
||||
func (m *ContainerInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ContainerInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ContainerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ContainerInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ContainerInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ContainerInfo.Merge(m, src)
|
||||
}
|
||||
func (m *ContainerInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_ContainerInfo.Size(m)
|
||||
}
|
||||
func (m *ContainerInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ContainerInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ContainerInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *ContainerInfo) GetImage() string {
|
||||
if m != nil {
|
||||
@@ -118,17 +195,40 @@ type ZipInfo struct {
|
||||
// URL of the zip file to deploy from. Must be a URL to a resource in
|
||||
// Google Cloud Storage in the form
|
||||
// 'http(s)://storage.googleapis.com/\<bucket\>/\<object\>'.
|
||||
SourceUrl string `protobuf:"bytes,3,opt,name=source_url,json=sourceUrl" json:"source_url,omitempty"`
|
||||
SourceUrl string `protobuf:"bytes,3,opt,name=source_url,json=sourceUrl,proto3" json:"source_url,omitempty"`
|
||||
// An estimate of the number of files in a zip for a zip deployment.
|
||||
// If set, must be greater than or equal to the actual number of files.
|
||||
// Used for optimizing performance; if not provided, deployment may be slow.
|
||||
FilesCount int32 `protobuf:"varint,4,opt,name=files_count,json=filesCount" json:"files_count,omitempty"`
|
||||
FilesCount int32 `protobuf:"varint,4,opt,name=files_count,json=filesCount,proto3" json:"files_count,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ZipInfo) Reset() { *m = ZipInfo{} }
|
||||
func (m *ZipInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*ZipInfo) ProtoMessage() {}
|
||||
func (*ZipInfo) Descriptor() ([]byte, []int) { return fileDescriptor4, []int{3} }
|
||||
func (m *ZipInfo) Reset() { *m = ZipInfo{} }
|
||||
func (m *ZipInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*ZipInfo) ProtoMessage() {}
|
||||
func (*ZipInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_744f483f02f61d1c, []int{3}
|
||||
}
|
||||
|
||||
func (m *ZipInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ZipInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ZipInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ZipInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ZipInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ZipInfo.Merge(m, src)
|
||||
}
|
||||
func (m *ZipInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_ZipInfo.Size(m)
|
||||
}
|
||||
func (m *ZipInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ZipInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ZipInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *ZipInfo) GetSourceUrl() string {
|
||||
if m != nil {
|
||||
@@ -146,14 +246,15 @@ func (m *ZipInfo) GetFilesCount() int32 {
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*Deployment)(nil), "google.appengine.v1.Deployment")
|
||||
proto.RegisterMapType((map[string]*FileInfo)(nil), "google.appengine.v1.Deployment.FilesEntry")
|
||||
proto.RegisterType((*FileInfo)(nil), "google.appengine.v1.FileInfo")
|
||||
proto.RegisterType((*ContainerInfo)(nil), "google.appengine.v1.ContainerInfo")
|
||||
proto.RegisterType((*ZipInfo)(nil), "google.appengine.v1.ZipInfo")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("google/appengine/v1/deploy.proto", fileDescriptor4) }
|
||||
func init() { proto.RegisterFile("google/appengine/v1/deploy.proto", fileDescriptor_744f483f02f61d1c) }
|
||||
|
||||
var fileDescriptor4 = []byte{
|
||||
var fileDescriptor_744f483f02f61d1c = []byte{
|
||||
// 394 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0xd1, 0xab, 0xd3, 0x30,
|
||||
0x14, 0xc6, 0xe9, 0x6a, 0xbd, 0xeb, 0x29, 0x82, 0x44, 0xc1, 0x7a, 0xbd, 0x17, 0x4b, 0x41, 0x28,
|
||||
|
Reference in New Issue
Block a user