com.google.appengine.v1.ApplicationOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-appengine-v1 Show documentation
Show all versions of proto-google-appengine-v1 Show documentation
PROTO library for proto-google-appengine-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/appengine/v1/application.proto
package com.google.appengine.v1;
public interface ApplicationOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.appengine.v1.Application)
com.google.protobuf.MessageOrBuilder {
/**
*
* Full path to the Application resource in the API.
* Example: `apps/myapp`.
* @OutputOnly
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
* Full path to the Application resource in the API.
* Example: `apps/myapp`.
* @OutputOnly
*
*
* string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* 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`.
*
*
* string id = 2;
*/
java.lang.String getId();
/**
*
* 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`.
*
*
* string id = 2;
*/
com.google.protobuf.ByteString
getIdBytes();
/**
*
* HTTP path dispatch rules for requests to the application that do not
* explicitly target a service or version. Rules are order-dependent.
* @OutputOnly
*
*
* repeated .google.appengine.v1.UrlDispatchRule dispatch_rules = 3;
*/
java.util.List
getDispatchRulesList();
/**
*
* HTTP path dispatch rules for requests to the application that do not
* explicitly target a service or version. Rules are order-dependent.
* @OutputOnly
*
*
* repeated .google.appengine.v1.UrlDispatchRule dispatch_rules = 3;
*/
com.google.appengine.v1.UrlDispatchRule getDispatchRules(int index);
/**
*
* HTTP path dispatch rules for requests to the application that do not
* explicitly target a service or version. Rules are order-dependent.
* @OutputOnly
*
*
* repeated .google.appengine.v1.UrlDispatchRule dispatch_rules = 3;
*/
int getDispatchRulesCount();
/**
*
* HTTP path dispatch rules for requests to the application that do not
* explicitly target a service or version. Rules are order-dependent.
* @OutputOnly
*
*
* repeated .google.appengine.v1.UrlDispatchRule dispatch_rules = 3;
*/
java.util.List extends com.google.appengine.v1.UrlDispatchRuleOrBuilder>
getDispatchRulesOrBuilderList();
/**
*
* HTTP path dispatch rules for requests to the application that do not
* explicitly target a service or version. Rules are order-dependent.
* @OutputOnly
*
*
* repeated .google.appengine.v1.UrlDispatchRule dispatch_rules = 3;
*/
com.google.appengine.v1.UrlDispatchRuleOrBuilder getDispatchRulesOrBuilder(
int index);
/**
*
* Google Apps authentication domain that controls which users can access
* this application.
* Defaults to open access for any Google Account.
*
*
* string auth_domain = 6;
*/
java.lang.String getAuthDomain();
/**
*
* Google Apps authentication domain that controls which users can access
* this application.
* Defaults to open access for any Google Account.
*
*
* string auth_domain = 6;
*/
com.google.protobuf.ByteString
getAuthDomainBytes();
/**
*
* 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.
* Defaults to `us-central`.
* Options are:
* `us-central` - Central US
* `europe-west` - Western Europe
* `us-east1` - Eastern US
*
*
* string location_id = 7;
*/
java.lang.String getLocationId();
/**
*
* 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.
* Defaults to `us-central`.
* Options are:
* `us-central` - Central US
* `europe-west` - Western Europe
* `us-east1` - Eastern US
*
*
* string location_id = 7;
*/
com.google.protobuf.ByteString
getLocationIdBytes();
/**
*
* 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
*
*
* string code_bucket = 8;
*/
java.lang.String getCodeBucket();
/**
*
* 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
*
*
* string code_bucket = 8;
*/
com.google.protobuf.ByteString
getCodeBucketBytes();
/**
*
* Cookie expiration policy for this application.
* @OutputOnly
*
*
* .google.protobuf.Duration default_cookie_expiration = 9;
*/
boolean hasDefaultCookieExpiration();
/**
*
* Cookie expiration policy for this application.
* @OutputOnly
*
*
* .google.protobuf.Duration default_cookie_expiration = 9;
*/
com.google.protobuf.Duration getDefaultCookieExpiration();
/**
*
* Cookie expiration policy for this application.
* @OutputOnly
*
*
* .google.protobuf.Duration default_cookie_expiration = 9;
*/
com.google.protobuf.DurationOrBuilder getDefaultCookieExpirationOrBuilder();
/**
*
* Hostname used to reach this application, as resolved by App Engine.
* @OutputOnly
*
*
* string default_hostname = 11;
*/
java.lang.String getDefaultHostname();
/**
*
* Hostname used to reach this application, as resolved by App Engine.
* @OutputOnly
*
*
* string default_hostname = 11;
*/
com.google.protobuf.ByteString
getDefaultHostnameBytes();
/**
*
* Google Cloud Storage bucket that can be used by this application to store
* content.
* @OutputOnly
*
*
* string default_bucket = 12;
*/
java.lang.String getDefaultBucket();
/**
*
* Google Cloud Storage bucket that can be used by this application to store
* content.
* @OutputOnly
*
*
* string default_bucket = 12;
*/
com.google.protobuf.ByteString
getDefaultBucketBytes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy