Show / Hide Table of Contents

Class StandardAppVersionState

Inheritance
System.Object
InputArgs
ResourceArgs
StandardAppVersionState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.AppEngine
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class StandardAppVersionState : ResourceArgs

Constructors

View Source

StandardAppVersionState()

Declaration
public StandardAppVersionState()

Properties

View Source

AutomaticScaling

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

Declaration
public Input<StandardAppVersionAutomaticScalingGetArgs> AutomaticScaling { get; set; }
Property Value
Type Description
Input<StandardAppVersionAutomaticScalingGetArgs>
View Source

BasicScaling

Basic scaling creates instances when your application receives requests. Each instance will be shut down when the application becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity. Structure is documented below.

Declaration
public Input<StandardAppVersionBasicScalingGetArgs> BasicScaling { get; set; }
Property Value
Type Description
Input<StandardAppVersionBasicScalingGetArgs>
View Source

DeleteServiceOnDestroy

If set to true, the service will be deleted if it is the last version.

Declaration
public Input<bool> DeleteServiceOnDestroy { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Deployment

Code and application artifacts that make up this version. Structure is documented below.

Declaration
public Input<StandardAppVersionDeploymentGetArgs> Deployment { get; set; }
Property Value
Type Description
Input<StandardAppVersionDeploymentGetArgs>
View Source

Entrypoint

The entrypoint for the application. Structure is documented below.

Declaration
public Input<StandardAppVersionEntrypointGetArgs> Entrypoint { get; set; }
Property Value
Type Description
Input<StandardAppVersionEntrypointGetArgs>
View Source

EnvVariables

Environment variables available to the application.

Declaration
public InputMap<string> EnvVariables { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Handlers

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. Structure is documented below.

Declaration
public InputList<StandardAppVersionHandlerGetArgs> Handlers { get; set; }
Property Value
Type Description
InputList<StandardAppVersionHandlerGetArgs>
View Source

InstanceClass

Instance class that is used to run this version. Valid values are AutomaticScaling: F1, F2, F4, F4_1G BasicScaling or ManualScaling: B1, B2, B4, B4_1G, B8 Defaults to F1 for AutomaticScaling and B2 for ManualScaling and BasicScaling. If no scaling is specified, AutomaticScaling is chosen.

Declaration
public Input<string> InstanceClass { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Libraries

Configuration for third-party Python runtime libraries that are required by the application. Structure is documented below.

Declaration
public InputList<StandardAppVersionLibraryGetArgs> Libraries { get; set; }
Property Value
Type Description
InputList<StandardAppVersionLibraryGetArgs>
View Source

ManualScaling

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

Declaration
public Input<StandardAppVersionManualScalingGetArgs> ManualScaling { get; set; }
Property Value
Type Description
Input<StandardAppVersionManualScalingGetArgs>
View Source

Name

Name of the library. Example "django".

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NoopOnDestroy

If set to true, the application version will not be deleted.

Declaration
public Input<bool> NoopOnDestroy { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Declaration
public Input<string> Project { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Runtime

Desired runtime. Example python27.

Declaration
public Input<string> Runtime { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RuntimeApiVersion

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

Declaration
public Input<string> RuntimeApiVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Service

AppEngine service resource

Declaration
public Input<string> Service { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Threadsafe

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

Declaration
public Input<bool> Threadsafe { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

VersionId

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

Declaration
public Input<string> VersionId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.