Class StandardAppVersionState
Inherited Members
Namespace: Pulumi.Gcp.AppEngine
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class StandardAppVersionState : ResourceArgs
Constructors
View SourceStandardAppVersionState()
Declaration
public StandardAppVersionState()
Properties
View SourceAutomaticScaling
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> |
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> |
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> |
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> |
Entrypoint
The entrypoint for the application. Structure is documented below.
Declaration
public Input<StandardAppVersionEntrypointGetArgs> Entrypoint { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<StandardAppVersionEntrypointGetArgs> |
EnvVariables
Environment variables available to the application.
Declaration
public InputMap<string> EnvVariables { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
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> |
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> |
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> |
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> |
Name
Name of the library. Example "django".
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
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> |
Runtime
Desired runtime. Example python27.
Declaration
public Input<string> Runtime { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
Service
AppEngine service resource
Declaration
public Input<string> Service { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
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> |