appengine  v1
Properties | List of all members
Google.Apis.Appengine.v1.Data.Version Class Reference

A Version resource is a specific set of source code and configuration files that are deployed into a service. More...

Inheritance diagram for Google.Apis.Appengine.v1.Data.Version:
Google::Apis::Requests::IDirectResponseSchema

Properties

virtual ApiConfigHandler ApiConfig [get, set]
 Serving configuration for Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/).Only returned in GET requests if view=FULL is set. More...
 
virtual AutomaticScaling AutomaticScaling [get, set]
 Automatic scaling is based on request rate, response latencies, and other application metrics. More...
 
virtual BasicScaling BasicScaling [get, set]
 A service with basic scaling will create an instance when the application receives a request. The instance will be turned down when the app becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity. More...
 
virtual System.Collections.Generic.IDictionary< string, string > BetaSettings [get, set]
 Metadata settings that are supplied to this version to enable beta runtime features. More...
 
virtual object CreateTime [get, set]
 Time that this version was created. More...
 
virtual string CreatedBy [get, set]
 Email address of the user who created this version. More...
 
virtual object DefaultExpiration [get, set]
 Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding StaticFilesHandler (https://cloud.google.com/appengine/docs/admin- api/reference/rest/v1/apps.services.versions#StaticFilesHandler) does not specify its own expiration time.Only returned in GET requests if view=FULL is set. More...
 
virtual Deployment Deployment [get, set]
 Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set. More...
 
virtual System.Nullable< long > DiskUsageBytes [get, set]
 Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk. More...
 
virtual EndpointsApiService EndpointsApiService [get, set]
 Cloud Endpoints configuration.If endpoints_api_service is set, the Cloud Endpoints Extensible Service Proxy will be provided to serve the API implemented by the app. More...
 
virtual Entrypoint Entrypoint [get, set]
 The entrypoint for the application. More...
 
virtual string Env [get, set]
 App Engine execution environment for this version.Defaults to standard. More...
 
virtual System.Collections.Generic.IDictionary< string, string > EnvVariables [get, set]
 Environment variables available to the application.Only returned in GET requests if view=FULL is set. More...
 
virtual System.Collections.Generic.IList< ErrorHandlerErrorHandlers [get, set]
 Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set. More...
 
virtual System.Collections.Generic.IList< UrlMapHandlers [get, set]
 An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set. More...
 
virtual HealthCheck HealthCheck [get, set]
 Configures health checking for instances. Unhealthy instances are stopped and replaced with new instances. Only applicable in the App Engine flexible environment.Only returned in GET requests if view=FULL is set. More...
 
virtual string Id [get, set]
 Relative name of the version within the service. Example: v1. Version names can contain only lowercase letters, numbers, or hyphens. Reserved names: "default", "latest", and any name with the prefix "ah-". More...
 
virtual System.Collections.Generic.IList< string > InboundServices [get, set]
 Before an application can receive email or XMPP messages, the application must be configured to enable the service. More...
 
virtual string InstanceClass [get, set]
 Instance class that is used to run this version. Valid values are: AutomaticScaling: F1, F2, F4, F4_1G ManualScaling or BasicScaling: B1, B2, B4, B8, B4_1GDefaults to F1 for AutomaticScaling and B1 for ManualScaling or BasicScaling. More...
 
virtual System.Collections.Generic.IList< LibraryLibraries [get, set]
 Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set. More...
 
virtual LivenessCheck LivenessCheck [get, set]
 Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set. More...
 
virtual ManualScaling ManualScaling [get, set]
 A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. More...
 
virtual string Name [get, set]
 Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1. More...
 
virtual Network Network [get, set]
 Extra network settings. Only applicable in the App Engine flexible environment. More...
 
virtual string NobuildFilesRegex [get, set]
 Files that match this pattern will not be built into this version. Only applicable for Go runtimes.Only returned in GET requests if view=FULL is set. More...
 
virtual ReadinessCheck ReadinessCheck [get, set]
 Configures readiness health checking for instances. Unhealthy instances are not put into the backend traffic rotation.Only returned in GET requests if view=FULL is set. More...
 
virtual Resources Resources [get, set]
 Machine resources for this version. Only applicable in the App Engine flexible environment. More...
 
virtual string Runtime [get, set]
 Desired runtime. Example: python27. More...
 
virtual string RuntimeApiVersion [get, set]
 The version of the API in the given runtime environment. Please see the app.yaml reference for valid values at https://cloud.google.com/appengine/docs/standard//config/appref More...
 
virtual string RuntimeChannel [get, set]
 The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel. More...
 
virtual string RuntimeMainExecutablePath [get, set]
 The path or name of the app's main executable. More...
 
virtual string ServingStatus [get, set]
 Current serving status of this version. Only the versions with a SERVING status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an invalid value. Defaults to SERVING. More...
 
virtual System.Nullable< bool > Threadsafe [get, set]
 Whether multiple requests can be dispatched to this version at once. More...
 
virtual string VersionUrl [get, set]
 Serving URL for this version. Example: "https://myversion-dot-myservice-dot- myapp.appspot.com" More...
 
virtual System.Nullable< bool > Vm [get, set]
 Whether to deploy this version in a container on a virtual machine. More...
 
virtual VpcAccessConnector VpcAccessConnector [get, set]
 Enables VPC connectivity for standard apps. More...
 
virtual System.Collections.Generic.IList< string > Zones [get, set]
 The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. More...
 
virtual string ETag [get, set]
 The ETag of the item. More...
 
- Properties inherited from Google::Apis::Requests::IDirectResponseSchema
string ETag
 

Detailed Description

A Version resource is a specific set of source code and configuration files that are deployed into a service.

Property Documentation

◆ ApiConfig

virtual ApiConfigHandler Google.Apis.Appengine.v1.Data.Version.ApiConfig
getset

Serving configuration for Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/).Only returned in GET requests if view=FULL is set.

◆ AutomaticScaling

virtual AutomaticScaling Google.Apis.Appengine.v1.Data.Version.AutomaticScaling
getset

Automatic scaling is based on request rate, response latencies, and other application metrics.

◆ BasicScaling

virtual BasicScaling Google.Apis.Appengine.v1.Data.Version.BasicScaling
getset

A service with basic scaling will create an instance when the application receives a request. The instance will be turned down when the app becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity.

◆ BetaSettings

virtual System.Collections.Generic.IDictionary<string,string> Google.Apis.Appengine.v1.Data.Version.BetaSettings
getset

Metadata settings that are supplied to this version to enable beta runtime features.

◆ CreatedBy

virtual string Google.Apis.Appengine.v1.Data.Version.CreatedBy
getset

Email address of the user who created this version.

◆ CreateTime

virtual object Google.Apis.Appengine.v1.Data.Version.CreateTime
getset

Time that this version was created.

◆ DefaultExpiration

virtual object Google.Apis.Appengine.v1.Data.Version.DefaultExpiration
getset

Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding StaticFilesHandler (https://cloud.google.com/appengine/docs/admin- api/reference/rest/v1/apps.services.versions#StaticFilesHandler) does not specify its own expiration time.Only returned in GET requests if view=FULL is set.

◆ Deployment

virtual Deployment Google.Apis.Appengine.v1.Data.Version.Deployment
getset

Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.

◆ DiskUsageBytes

virtual System.Nullable<long> Google.Apis.Appengine.v1.Data.Version.DiskUsageBytes
getset

Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.

◆ EndpointsApiService

virtual EndpointsApiService Google.Apis.Appengine.v1.Data.Version.EndpointsApiService
getset

Cloud Endpoints configuration.If endpoints_api_service is set, the Cloud Endpoints Extensible Service Proxy will be provided to serve the API implemented by the app.

◆ Entrypoint

virtual Entrypoint Google.Apis.Appengine.v1.Data.Version.Entrypoint
getset

The entrypoint for the application.

◆ Env

virtual string Google.Apis.Appengine.v1.Data.Version.Env
getset

App Engine execution environment for this version.Defaults to standard.

◆ EnvVariables

virtual System.Collections.Generic.IDictionary<string,string> Google.Apis.Appengine.v1.Data.Version.EnvVariables
getset

Environment variables available to the application.Only returned in GET requests if view=FULL is set.

◆ ErrorHandlers

virtual System.Collections.Generic.IList<ErrorHandler> Google.Apis.Appengine.v1.Data.Version.ErrorHandlers
getset

Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.

◆ ETag

virtual string Google.Apis.Appengine.v1.Data.Version.ETag
getset

The ETag of the item.

◆ Handlers

virtual System.Collections.Generic.IList<UrlMap> Google.Apis.Appengine.v1.Data.Version.Handlers
getset

An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set.

◆ HealthCheck

virtual HealthCheck Google.Apis.Appengine.v1.Data.Version.HealthCheck
getset

Configures health checking for instances. Unhealthy instances are stopped and replaced with new instances. Only applicable in the App Engine flexible environment.Only returned in GET requests if view=FULL is set.

◆ Id

virtual string Google.Apis.Appengine.v1.Data.Version.Id
getset

Relative name of the version within the service. Example: v1. Version names can contain only lowercase letters, numbers, or hyphens. Reserved names: "default", "latest", and any name with the prefix "ah-".

◆ InboundServices

virtual System.Collections.Generic.IList<string> Google.Apis.Appengine.v1.Data.Version.InboundServices
getset

Before an application can receive email or XMPP messages, the application must be configured to enable the service.

◆ InstanceClass

virtual string Google.Apis.Appengine.v1.Data.Version.InstanceClass
getset

Instance class that is used to run this version. Valid values are: AutomaticScaling: F1, F2, F4, F4_1G ManualScaling or BasicScaling: B1, B2, B4, B8, B4_1GDefaults to F1 for AutomaticScaling and B1 for ManualScaling or BasicScaling.

◆ Libraries

virtual System.Collections.Generic.IList<Library> Google.Apis.Appengine.v1.Data.Version.Libraries
getset

Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.

◆ LivenessCheck

virtual LivenessCheck Google.Apis.Appengine.v1.Data.Version.LivenessCheck
getset

Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.

◆ ManualScaling

virtual ManualScaling Google.Apis.Appengine.v1.Data.Version.ManualScaling
getset

A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.

◆ Name

virtual string Google.Apis.Appengine.v1.Data.Version.Name
getset

Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.

◆ Network

virtual Network Google.Apis.Appengine.v1.Data.Version.Network
getset

Extra network settings. Only applicable in the App Engine flexible environment.

◆ NobuildFilesRegex

virtual string Google.Apis.Appengine.v1.Data.Version.NobuildFilesRegex
getset

Files that match this pattern will not be built into this version. Only applicable for Go runtimes.Only returned in GET requests if view=FULL is set.

◆ ReadinessCheck

virtual ReadinessCheck Google.Apis.Appengine.v1.Data.Version.ReadinessCheck
getset

Configures readiness health checking for instances. Unhealthy instances are not put into the backend traffic rotation.Only returned in GET requests if view=FULL is set.

◆ Resources

virtual Resources Google.Apis.Appengine.v1.Data.Version.Resources
getset

Machine resources for this version. Only applicable in the App Engine flexible environment.

◆ Runtime

virtual string Google.Apis.Appengine.v1.Data.Version.Runtime
getset

Desired runtime. Example: python27.

◆ RuntimeApiVersion

virtual string Google.Apis.Appengine.v1.Data.Version.RuntimeApiVersion
getset

The version of the API in the given runtime environment. Please see the app.yaml reference for valid values at https://cloud.google.com/appengine/docs/standard//config/appref

◆ RuntimeChannel

virtual string Google.Apis.Appengine.v1.Data.Version.RuntimeChannel
getset

The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.

◆ RuntimeMainExecutablePath

virtual string Google.Apis.Appengine.v1.Data.Version.RuntimeMainExecutablePath
getset

The path or name of the app's main executable.

◆ ServingStatus

virtual string Google.Apis.Appengine.v1.Data.Version.ServingStatus
getset

Current serving status of this version. Only the versions with a SERVING status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an invalid value. Defaults to SERVING.

◆ Threadsafe

virtual System.Nullable<bool> Google.Apis.Appengine.v1.Data.Version.Threadsafe
getset

Whether multiple requests can be dispatched to this version at once.

◆ VersionUrl

virtual string Google.Apis.Appengine.v1.Data.Version.VersionUrl
getset

Serving URL for this version. Example: "https://myversion-dot-myservice-dot- myapp.appspot.com"

◆ Vm

virtual System.Nullable<bool> Google.Apis.Appengine.v1.Data.Version.Vm
getset

Whether to deploy this version in a container on a virtual machine.

◆ VpcAccessConnector

virtual VpcAccessConnector Google.Apis.Appengine.v1.Data.Version.VpcAccessConnector
getset

Enables VPC connectivity for standard apps.

◆ Zones

virtual System.Collections.Generic.IList<string> Google.Apis.Appengine.v1.Data.Version.Zones
getset

The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.


The documentation for this class was generated from the following file: