class Google::Apis::AppengineV1::Application

An Application resource contains the top-level configuration of an App Engine application.

Attributes

auth_domain[RW]

Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account. Corresponds to the JSON property `authDomain` @return [String]

code_bucket[RW]

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 Corresponds to the JSON property `codeBucket` @return [String]

database_type[RW]

The type of the Cloud Firestore or Cloud Datastore database associated with this application. Corresponds to the JSON property `databaseType` @return [String]

default_bucket[RW]

Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly Corresponds to the JSON property `defaultBucket` @return [String]

default_hostname[RW]

Hostname used to reach this application, as resolved by App Engine.@OutputOnly Corresponds to the JSON property `defaultHostname` @return [String]

dispatch_rules[RW]

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. Corresponds to the JSON property `dispatchRules` @return [Array<Google::Apis::AppengineV1::UrlDispatchRule>]

feature_settings[RW]

The feature specific settings to be used in the application. These define behaviors that are user configurable. Corresponds to the JSON property `featureSettings` @return [Google::Apis::AppengineV1::FeatureSettings]

gcr_domain[RW]

The Google Container Registry domain used for storing managed build docker images for this application. Corresponds to the JSON property `gcrDomain` @return [String]

iap[RW]

Identity-Aware Proxy Corresponds to the JSON property `iap` @return [Google::Apis::AppengineV1::IdentityAwareProxy]

id[RW]

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. Corresponds to the JSON property `id` @return [String]

location_id[RW]

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 (cloud.google.com/appengine/docs/locations). Corresponds to the JSON property `locationId` @return [String]

name[RW]

Full path to the Application resource in the API. Example: apps/myapp.@ OutputOnly Corresponds to the JSON property `name` @return [String]

service_account[RW]

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. Corresponds to the JSON property `serviceAccount` @return [String]

serving_status[RW]

Serving status of this application. Corresponds to the JSON property `servingStatus` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 186
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/appengine_v1/classes.rb, line 191
def update!(**args)
  @auth_domain = args[:auth_domain] if args.key?(:auth_domain)
  @code_bucket = args[:code_bucket] if args.key?(:code_bucket)
  @database_type = args[:database_type] if args.key?(:database_type)
  @default_bucket = args[:default_bucket] if args.key?(:default_bucket)
  @default_cookie_expiration = args[:default_cookie_expiration] if args.key?(:default_cookie_expiration)
  @default_hostname = args[:default_hostname] if args.key?(:default_hostname)
  @dispatch_rules = args[:dispatch_rules] if args.key?(:dispatch_rules)
  @feature_settings = args[:feature_settings] if args.key?(:feature_settings)
  @gcr_domain = args[:gcr_domain] if args.key?(:gcr_domain)
  @iap = args[:iap] if args.key?(:iap)
  @id = args[:id] if args.key?(:id)
  @location_id = args[:location_id] if args.key?(:location_id)
  @name = args[:name] if args.key?(:name)
  @service_account = args[:service_account] if args.key?(:service_account)
  @serving_status = args[:serving_status] if args.key?(:serving_status)
end