blob: 2352c2adb7627439f96446086d9dd4941fb0a59d [file] [edit]
// Copyright 2025 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.11
// protoc v6.33.2
// source: google/appengine/v1/application.proto
package appenginepb
import (
reflect "reflect"
sync "sync"
unsafe "unsafe"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
durationpb "google.golang.org/protobuf/types/known/durationpb"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type Application_ServingStatus int32
const (
// Serving status is unspecified.
Application_UNSPECIFIED Application_ServingStatus = 0
// Application is serving.
Application_SERVING Application_ServingStatus = 1
// Application has been disabled by the user.
Application_USER_DISABLED Application_ServingStatus = 2
// Application has been disabled by the system.
Application_SYSTEM_DISABLED Application_ServingStatus = 3
)
// Enum value maps for Application_ServingStatus.
var (
Application_ServingStatus_name = map[int32]string{
0: "UNSPECIFIED",
1: "SERVING",
2: "USER_DISABLED",
3: "SYSTEM_DISABLED",
}
Application_ServingStatus_value = map[string]int32{
"UNSPECIFIED": 0,
"SERVING": 1,
"USER_DISABLED": 2,
"SYSTEM_DISABLED": 3,
}
)
func (x Application_ServingStatus) Enum() *Application_ServingStatus {
p := new(Application_ServingStatus)
*p = x
return p
}
func (x Application_ServingStatus) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (Application_ServingStatus) Descriptor() protoreflect.EnumDescriptor {
return file_google_appengine_v1_application_proto_enumTypes[0].Descriptor()
}
func (Application_ServingStatus) Type() protoreflect.EnumType {
return &file_google_appengine_v1_application_proto_enumTypes[0]
}
func (x Application_ServingStatus) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use Application_ServingStatus.Descriptor instead.
func (Application_ServingStatus) EnumDescriptor() ([]byte, []int) {
return file_google_appengine_v1_application_proto_rawDescGZIP(), []int{0, 0}
}
type Application_DatabaseType int32
const (
// Database type is unspecified.
Application_DATABASE_TYPE_UNSPECIFIED Application_DatabaseType = 0
// Cloud Datastore
Application_CLOUD_DATASTORE Application_DatabaseType = 1
// Cloud Firestore Native
Application_CLOUD_FIRESTORE Application_DatabaseType = 2
// Cloud Firestore in Datastore Mode
Application_CLOUD_DATASTORE_COMPATIBILITY Application_DatabaseType = 3
)
// Enum value maps for Application_DatabaseType.
var (
Application_DatabaseType_name = map[int32]string{
0: "DATABASE_TYPE_UNSPECIFIED",
1: "CLOUD_DATASTORE",
2: "CLOUD_FIRESTORE",
3: "CLOUD_DATASTORE_COMPATIBILITY",
}
Application_DatabaseType_value = map[string]int32{
"DATABASE_TYPE_UNSPECIFIED": 0,
"CLOUD_DATASTORE": 1,
"CLOUD_FIRESTORE": 2,
"CLOUD_DATASTORE_COMPATIBILITY": 3,
}
)
func (x Application_DatabaseType) Enum() *Application_DatabaseType {
p := new(Application_DatabaseType)
*p = x
return p
}
func (x Application_DatabaseType) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (Application_DatabaseType) Descriptor() protoreflect.EnumDescriptor {
return file_google_appengine_v1_application_proto_enumTypes[1].Descriptor()
}
func (Application_DatabaseType) Type() protoreflect.EnumType {
return &file_google_appengine_v1_application_proto_enumTypes[1]
}
func (x Application_DatabaseType) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use Application_DatabaseType.Descriptor instead.
func (Application_DatabaseType) EnumDescriptor() ([]byte, []int) {
return file_google_appengine_v1_application_proto_rawDescGZIP(), []int{0, 1}
}
// An Application resource contains the top-level configuration of an App
// Engine application.
type Application struct {
state protoimpl.MessageState `protogen:"open.v1"`
// Full path to the Application resource in the API.
// Example: `apps/myapp`.
//
// @OutputOnly
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,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.
// Up to 20 dispatch rules can be supported.
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,proto3" json:"auth_domain,omitempty"`
// Location from which this application runs. Application instances
// run out of the data centers in the specified location, which is also where
// all of the application's end user content is stored.
//
// Defaults to `us-central`.
//
// View the list of
// [supported locations](https://cloud.google.com/appengine/docs/locations).
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,proto3" json:"code_bucket,omitempty"`
// Cookie expiration policy for this application.
DefaultCookieExpiration *durationpb.Duration `protobuf:"bytes,9,opt,name=default_cookie_expiration,json=defaultCookieExpiration,proto3" json:"default_cookie_expiration,omitempty"`
// Serving status of this application.
ServingStatus Application_ServingStatus `protobuf:"varint,10,opt,name=serving_status,json=servingStatus,proto3,enum=google.appengine.v1.Application_ServingStatus" json:"serving_status,omitempty"`
// Hostname used to reach this application, as resolved by App Engine.
//
// @OutputOnly
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,proto3" json:"default_bucket,omitempty"`
// The service account associated with the application.
// This is the app-level default identity. If no identity provided during
// create version, Admin API will fallback to this one.
ServiceAccount string `protobuf:"bytes,13,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
Iap *Application_IdentityAwareProxy `protobuf:"bytes,14,opt,name=iap,proto3" json:"iap,omitempty"`
// The Google Container Registry domain used for storing managed build docker
// images for this application.
GcrDomain string `protobuf:"bytes,16,opt,name=gcr_domain,json=gcrDomain,proto3" json:"gcr_domain,omitempty"`
// The type of the Cloud Firestore or Cloud Datastore database associated with
// this application.
DatabaseType Application_DatabaseType `protobuf:"varint,17,opt,name=database_type,json=databaseType,proto3,enum=google.appengine.v1.Application_DatabaseType" json:"database_type,omitempty"`
// The feature specific settings to be used in the application.
FeatureSettings *Application_FeatureSettings `protobuf:"bytes,18,opt,name=feature_settings,json=featureSettings,proto3" json:"feature_settings,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *Application) Reset() {
*x = Application{}
mi := &file_google_appengine_v1_application_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *Application) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Application) ProtoMessage() {}
func (x *Application) ProtoReflect() protoreflect.Message {
mi := &file_google_appengine_v1_application_proto_msgTypes[0]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Application.ProtoReflect.Descriptor instead.
func (*Application) Descriptor() ([]byte, []int) {
return file_google_appengine_v1_application_proto_rawDescGZIP(), []int{0}
}
func (x *Application) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *Application) GetId() string {
if x != nil {
return x.Id
}
return ""
}
func (x *Application) GetDispatchRules() []*UrlDispatchRule {
if x != nil {
return x.DispatchRules
}
return nil
}
func (x *Application) GetAuthDomain() string {
if x != nil {
return x.AuthDomain
}
return ""
}
func (x *Application) GetLocationId() string {
if x != nil {
return x.LocationId
}
return ""
}
func (x *Application) GetCodeBucket() string {
if x != nil {
return x.CodeBucket
}
return ""
}
func (x *Application) GetDefaultCookieExpiration() *durationpb.Duration {
if x != nil {
return x.DefaultCookieExpiration
}
return nil
}
func (x *Application) GetServingStatus() Application_ServingStatus {
if x != nil {
return x.ServingStatus
}
return Application_UNSPECIFIED
}
func (x *Application) GetDefaultHostname() string {
if x != nil {
return x.DefaultHostname
}
return ""
}
func (x *Application) GetDefaultBucket() string {
if x != nil {
return x.DefaultBucket
}
return ""
}
func (x *Application) GetServiceAccount() string {
if x != nil {
return x.ServiceAccount
}
return ""
}
func (x *Application) GetIap() *Application_IdentityAwareProxy {
if x != nil {
return x.Iap
}
return nil
}
func (x *Application) GetGcrDomain() string {
if x != nil {
return x.GcrDomain
}
return ""
}
func (x *Application) GetDatabaseType() Application_DatabaseType {
if x != nil {
return x.DatabaseType
}
return Application_DATABASE_TYPE_UNSPECIFIED
}
func (x *Application) GetFeatureSettings() *Application_FeatureSettings {
if x != nil {
return x.FeatureSettings
}
return nil
}
// Rules to match an HTTP request and dispatch that request to a service.
type UrlDispatchRule struct {
state protoimpl.MessageState `protogen:"open.v1"`
// Domain name to match against. The wildcard "`*`" is supported if
// specified before a period: "`*.`".
//
// Defaults to matching all domains: "`*`".
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,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,proto3" json:"service,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *UrlDispatchRule) Reset() {
*x = UrlDispatchRule{}
mi := &file_google_appengine_v1_application_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *UrlDispatchRule) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UrlDispatchRule) ProtoMessage() {}
func (x *UrlDispatchRule) ProtoReflect() protoreflect.Message {
mi := &file_google_appengine_v1_application_proto_msgTypes[1]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UrlDispatchRule.ProtoReflect.Descriptor instead.
func (*UrlDispatchRule) Descriptor() ([]byte, []int) {
return file_google_appengine_v1_application_proto_rawDescGZIP(), []int{1}
}
func (x *UrlDispatchRule) GetDomain() string {
if x != nil {
return x.Domain
}
return ""
}
func (x *UrlDispatchRule) GetPath() string {
if x != nil {
return x.Path
}
return ""
}
func (x *UrlDispatchRule) GetService() string {
if x != nil {
return x.Service
}
return ""
}
// Identity-Aware Proxy
type Application_IdentityAwareProxy struct {
state protoimpl.MessageState `protogen:"open.v1"`
// Whether the serving infrastructure will authenticate and
// authorize all incoming requests.
//
// If true, the `oauth2_client_id` and `oauth2_client_secret`
// fields must be non-empty.
Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
// OAuth2 client ID to use for the authentication flow.
Oauth2ClientId string `protobuf:"bytes,2,opt,name=oauth2_client_id,json=oauth2ClientId,proto3" json:"oauth2_client_id,omitempty"`
// OAuth2 client secret to use for the authentication flow.
//
// For security reasons, this value cannot be retrieved via the API.
// Instead, the SHA-256 hash of the value is returned in the
// `oauth2_client_secret_sha256` field.
//
// @InputOnly
Oauth2ClientSecret string `protobuf:"bytes,3,opt,name=oauth2_client_secret,json=oauth2ClientSecret,proto3" json:"oauth2_client_secret,omitempty"`
// Hex-encoded SHA-256 hash of the client secret.
//
// @OutputOnly
Oauth2ClientSecretSha256 string `protobuf:"bytes,4,opt,name=oauth2_client_secret_sha256,json=oauth2ClientSecretSha256,proto3" json:"oauth2_client_secret_sha256,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *Application_IdentityAwareProxy) Reset() {
*x = Application_IdentityAwareProxy{}
mi := &file_google_appengine_v1_application_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *Application_IdentityAwareProxy) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Application_IdentityAwareProxy) ProtoMessage() {}
func (x *Application_IdentityAwareProxy) ProtoReflect() protoreflect.Message {
mi := &file_google_appengine_v1_application_proto_msgTypes[2]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Application_IdentityAwareProxy.ProtoReflect.Descriptor instead.
func (*Application_IdentityAwareProxy) Descriptor() ([]byte, []int) {
return file_google_appengine_v1_application_proto_rawDescGZIP(), []int{0, 0}
}
func (x *Application_IdentityAwareProxy) GetEnabled() bool {
if x != nil {
return x.Enabled
}
return false
}
func (x *Application_IdentityAwareProxy) GetOauth2ClientId() string {
if x != nil {
return x.Oauth2ClientId
}
return ""
}
func (x *Application_IdentityAwareProxy) GetOauth2ClientSecret() string {
if x != nil {
return x.Oauth2ClientSecret
}
return ""
}
func (x *Application_IdentityAwareProxy) GetOauth2ClientSecretSha256() string {
if x != nil {
return x.Oauth2ClientSecretSha256
}
return ""
}
// The feature specific settings to be used in the application. These define
// behaviors that are user configurable.
type Application_FeatureSettings struct {
state protoimpl.MessageState `protogen:"open.v1"`
// Boolean value indicating if split health checks should be used instead
// of the legacy health checks. At an app.yaml level, this means defaulting
// to 'readiness_check' and 'liveness_check' values instead of
// 'health_check' ones. Once the legacy 'health_check' behavior is
// deprecated, and this value is always true, this setting can
// be removed.
SplitHealthChecks bool `protobuf:"varint,1,opt,name=split_health_checks,json=splitHealthChecks,proto3" json:"split_health_checks,omitempty"`
// If true, use [Container-Optimized OS](https://cloud.google.com/container-optimized-os/)
// base image for VMs, rather than a base Debian image.
UseContainerOptimizedOs bool `protobuf:"varint,2,opt,name=use_container_optimized_os,json=useContainerOptimizedOs,proto3" json:"use_container_optimized_os,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *Application_FeatureSettings) Reset() {
*x = Application_FeatureSettings{}
mi := &file_google_appengine_v1_application_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *Application_FeatureSettings) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Application_FeatureSettings) ProtoMessage() {}
func (x *Application_FeatureSettings) ProtoReflect() protoreflect.Message {
mi := &file_google_appengine_v1_application_proto_msgTypes[3]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Application_FeatureSettings.ProtoReflect.Descriptor instead.
func (*Application_FeatureSettings) Descriptor() ([]byte, []int) {
return file_google_appengine_v1_application_proto_rawDescGZIP(), []int{0, 1}
}
func (x *Application_FeatureSettings) GetSplitHealthChecks() bool {
if x != nil {
return x.SplitHealthChecks
}
return false
}
func (x *Application_FeatureSettings) GetUseContainerOptimizedOs() bool {
if x != nil {
return x.UseContainerOptimizedOs
}
return false
}
var File_google_appengine_v1_application_proto protoreflect.FileDescriptor
const file_google_appengine_v1_application_proto_rawDesc = "" +
"\n" +
"%google/appengine/v1/application.proto\x12\x13google.appengine.v1\x1a\x1egoogle/protobuf/duration.proto\"\xc0\n" +
"\n" +
"\vApplication\x12\x12\n" +
"\x04name\x18\x01 \x01(\tR\x04name\x12\x0e\n" +
"\x02id\x18\x02 \x01(\tR\x02id\x12K\n" +
"\x0edispatch_rules\x18\x03 \x03(\v2$.google.appengine.v1.UrlDispatchRuleR\rdispatchRules\x12\x1f\n" +
"\vauth_domain\x18\x06 \x01(\tR\n" +
"authDomain\x12\x1f\n" +
"\vlocation_id\x18\a \x01(\tR\n" +
"locationId\x12\x1f\n" +
"\vcode_bucket\x18\b \x01(\tR\n" +
"codeBucket\x12U\n" +
"\x19default_cookie_expiration\x18\t \x01(\v2\x19.google.protobuf.DurationR\x17defaultCookieExpiration\x12U\n" +
"\x0eserving_status\x18\n" +
" \x01(\x0e2..google.appengine.v1.Application.ServingStatusR\rservingStatus\x12)\n" +
"\x10default_hostname\x18\v \x01(\tR\x0fdefaultHostname\x12%\n" +
"\x0edefault_bucket\x18\f \x01(\tR\rdefaultBucket\x12'\n" +
"\x0fservice_account\x18\r \x01(\tR\x0eserviceAccount\x12E\n" +
"\x03iap\x18\x0e \x01(\v23.google.appengine.v1.Application.IdentityAwareProxyR\x03iap\x12\x1d\n" +
"\n" +
"gcr_domain\x18\x10 \x01(\tR\tgcrDomain\x12R\n" +
"\rdatabase_type\x18\x11 \x01(\x0e2-.google.appengine.v1.Application.DatabaseTypeR\fdatabaseType\x12[\n" +
"\x10feature_settings\x18\x12 \x01(\v20.google.appengine.v1.Application.FeatureSettingsR\x0ffeatureSettings\x1a\xc9\x01\n" +
"\x12IdentityAwareProxy\x12\x18\n" +
"\aenabled\x18\x01 \x01(\bR\aenabled\x12(\n" +
"\x10oauth2_client_id\x18\x02 \x01(\tR\x0eoauth2ClientId\x120\n" +
"\x14oauth2_client_secret\x18\x03 \x01(\tR\x12oauth2ClientSecret\x12=\n" +
"\x1boauth2_client_secret_sha256\x18\x04 \x01(\tR\x18oauth2ClientSecretSha256\x1a~\n" +
"\x0fFeatureSettings\x12.\n" +
"\x13split_health_checks\x18\x01 \x01(\bR\x11splitHealthChecks\x12;\n" +
"\x1ause_container_optimized_os\x18\x02 \x01(\bR\x17useContainerOptimizedOs\"U\n" +
"\rServingStatus\x12\x0f\n" +
"\vUNSPECIFIED\x10\x00\x12\v\n" +
"\aSERVING\x10\x01\x12\x11\n" +
"\rUSER_DISABLED\x10\x02\x12\x13\n" +
"\x0fSYSTEM_DISABLED\x10\x03\"z\n" +
"\fDatabaseType\x12\x1d\n" +
"\x19DATABASE_TYPE_UNSPECIFIED\x10\x00\x12\x13\n" +
"\x0fCLOUD_DATASTORE\x10\x01\x12\x13\n" +
"\x0fCLOUD_FIRESTORE\x10\x02\x12!\n" +
"\x1dCLOUD_DATASTORE_COMPATIBILITY\x10\x03\"W\n" +
"\x0fUrlDispatchRule\x12\x16\n" +
"\x06domain\x18\x01 \x01(\tR\x06domain\x12\x12\n" +
"\x04path\x18\x02 \x01(\tR\x04path\x12\x18\n" +
"\aservice\x18\x03 \x01(\tR\aserviceB\xc1\x01\n" +
"\x17com.google.appengine.v1B\x10ApplicationProtoP\x01Z;cloud.google.com/go/appengine/apiv1/appenginepb;appenginepb\xaa\x02\x19Google.Cloud.AppEngine.V1\xca\x02\x19Google\\Cloud\\AppEngine\\V1\xea\x02\x1cGoogle::Cloud::AppEngine::V1b\x06proto3"
var (
file_google_appengine_v1_application_proto_rawDescOnce sync.Once
file_google_appengine_v1_application_proto_rawDescData []byte
)
func file_google_appengine_v1_application_proto_rawDescGZIP() []byte {
file_google_appengine_v1_application_proto_rawDescOnce.Do(func() {
file_google_appengine_v1_application_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_appengine_v1_application_proto_rawDesc), len(file_google_appengine_v1_application_proto_rawDesc)))
})
return file_google_appengine_v1_application_proto_rawDescData
}
var file_google_appengine_v1_application_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
var file_google_appengine_v1_application_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
var file_google_appengine_v1_application_proto_goTypes = []any{
(Application_ServingStatus)(0), // 0: google.appengine.v1.Application.ServingStatus
(Application_DatabaseType)(0), // 1: google.appengine.v1.Application.DatabaseType
(*Application)(nil), // 2: google.appengine.v1.Application
(*UrlDispatchRule)(nil), // 3: google.appengine.v1.UrlDispatchRule
(*Application_IdentityAwareProxy)(nil), // 4: google.appengine.v1.Application.IdentityAwareProxy
(*Application_FeatureSettings)(nil), // 5: google.appengine.v1.Application.FeatureSettings
(*durationpb.Duration)(nil), // 6: google.protobuf.Duration
}
var file_google_appengine_v1_application_proto_depIdxs = []int32{
3, // 0: google.appengine.v1.Application.dispatch_rules:type_name -> google.appengine.v1.UrlDispatchRule
6, // 1: google.appengine.v1.Application.default_cookie_expiration:type_name -> google.protobuf.Duration
0, // 2: google.appengine.v1.Application.serving_status:type_name -> google.appengine.v1.Application.ServingStatus
4, // 3: google.appengine.v1.Application.iap:type_name -> google.appengine.v1.Application.IdentityAwareProxy
1, // 4: google.appengine.v1.Application.database_type:type_name -> google.appengine.v1.Application.DatabaseType
5, // 5: google.appengine.v1.Application.feature_settings:type_name -> google.appengine.v1.Application.FeatureSettings
6, // [6:6] is the sub-list for method output_type
6, // [6:6] is the sub-list for method input_type
6, // [6:6] is the sub-list for extension type_name
6, // [6:6] is the sub-list for extension extendee
0, // [0:6] is the sub-list for field type_name
}
func init() { file_google_appengine_v1_application_proto_init() }
func file_google_appengine_v1_application_proto_init() {
if File_google_appengine_v1_application_proto != nil {
return
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_appengine_v1_application_proto_rawDesc), len(file_google_appengine_v1_application_proto_rawDesc)),
NumEnums: 2,
NumMessages: 4,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_google_appengine_v1_application_proto_goTypes,
DependencyIndexes: file_google_appengine_v1_application_proto_depIdxs,
EnumInfos: file_google_appengine_v1_application_proto_enumTypes,
MessageInfos: file_google_appengine_v1_application_proto_msgTypes,
}.Build()
File_google_appengine_v1_application_proto = out.File
file_google_appengine_v1_application_proto_goTypes = nil
file_google_appengine_v1_application_proto_depIdxs = nil
}