google-native.appengine/v1.Version
Deploys code and resource files to a new version. Auto-naming is currently not supported for this resource.
Create Version Resource
new Version(name: string, args: VersionArgs, opts?: CustomResourceOptions);
@overload
def Version(resource_name: str,
opts: Optional[ResourceOptions] = None,
api_config: Optional[ApiConfigHandlerArgs] = None,
app_engine_apis: Optional[bool] = None,
app_id: Optional[str] = None,
automatic_scaling: Optional[AutomaticScalingArgs] = None,
basic_scaling: Optional[BasicScalingArgs] = None,
beta_settings: Optional[Mapping[str, str]] = None,
build_env_variables: Optional[Mapping[str, str]] = None,
default_expiration: Optional[str] = None,
deployment: Optional[DeploymentArgs] = None,
endpoints_api_service: Optional[EndpointsApiServiceArgs] = None,
entrypoint: Optional[EntrypointArgs] = None,
env: Optional[str] = None,
env_variables: Optional[Mapping[str, str]] = None,
error_handlers: Optional[Sequence[ErrorHandlerArgs]] = None,
handlers: Optional[Sequence[UrlMapArgs]] = None,
health_check: Optional[HealthCheckArgs] = None,
id: Optional[str] = None,
inbound_services: Optional[Sequence[VersionInboundServicesItem]] = None,
instance_class: Optional[str] = None,
libraries: Optional[Sequence[LibraryArgs]] = None,
liveness_check: Optional[LivenessCheckArgs] = None,
manual_scaling: Optional[ManualScalingArgs] = None,
network: Optional[NetworkArgs] = None,
nobuild_files_regex: Optional[str] = None,
readiness_check: Optional[ReadinessCheckArgs] = None,
resources: Optional[ResourcesArgs] = None,
runtime: Optional[str] = None,
runtime_api_version: Optional[str] = None,
runtime_channel: Optional[str] = None,
runtime_main_executable_path: Optional[str] = None,
service_account: Optional[str] = None,
service_id: Optional[str] = None,
serving_status: Optional[VersionServingStatus] = None,
threadsafe: Optional[bool] = None,
vm: Optional[bool] = None,
vpc_access_connector: Optional[VpcAccessConnectorArgs] = None,
zones: Optional[Sequence[str]] = None)
@overload
def Version(resource_name: str,
args: VersionArgs,
opts: Optional[ResourceOptions] = None)
func NewVersion(ctx *Context, name string, args VersionArgs, opts ...ResourceOption) (*Version, error)
public Version(string name, VersionArgs args, CustomResourceOptions? opts = null)
public Version(String name, VersionArgs args)
public Version(String name, VersionArgs args, CustomResourceOptions options)
type: google-native:appengine/v1:Version
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VersionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VersionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Version Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Version resource accepts the following input properties:
- App
Id string - Service
Id string - Api
Config Pulumi.Google Native. App Engine. V1. Inputs. Api Config Handler Args Serving configuration for Google Cloud Endpoints (https://cloud.google.com/endpoints).Only returned in GET requests if view=FULL is set.
- App
Engine boolApis Allows App Engine second generation runtimes to access the legacy bundled services.
- Automatic
Scaling Pulumi.Google Native. App Engine. V1. Inputs. Automatic Scaling Args Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic.
- Basic
Scaling Pulumi.Google Native. App Engine. V1. Inputs. Basic Scaling Args 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.
- Beta
Settings Dictionary<string, string> Metadata settings that are supplied to this version to enable beta runtime features.
- Build
Env Dictionary<string, string>Variables Environment variables available to the build environment.Only returned in GET requests if view=FULL is set.
- Default
Expiration string 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
Pulumi.
Google Native. App Engine. V1. Inputs. Deployment Args Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
- Endpoints
Api Pulumi.Service Google Native. App Engine. V1. Inputs. Endpoints Api Service Args 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
Pulumi.
Google Native. App Engine. V1. Inputs. Entrypoint Args The entrypoint for the application.
- Env string
App Engine execution environment for this version.Defaults to standard.
- Env
Variables Dictionary<string, string> Environment variables available to the application.Only returned in GET requests if view=FULL is set.
- Error
Handlers List<Pulumi.Google Native. App Engine. V1. Inputs. Error Handler Args> Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
- Handlers
List<Pulumi.
Google Native. App Engine. V1. Inputs. Url Map Args> 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.
- Health
Check Pulumi.Google Native. App Engine. V1. Inputs. Health Check Args 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 string
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-".
- Inbound
Services List<Pulumi.Google Native. App Engine. V1. Version Inbound Services Item> Before an application can receive email or XMPP messages, the application must be configured to enable the service.
- Instance
Class string 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
List<Pulumi.
Google Native. App Engine. V1. Inputs. Library Args> Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
- Liveness
Check Pulumi.Google Native. App Engine. V1. Inputs. Liveness Check Args Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
- Manual
Scaling Pulumi.Google Native. App Engine. V1. Inputs. Manual Scaling Args A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. Manually scaled versions are sometimes referred to as "backends".
- Network
Pulumi.
Google Native. App Engine. V1. Inputs. Network Args Extra network settings. Only applicable in the App Engine flexible environment.
- Nobuild
Files stringRegex 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.
- Readiness
Check Pulumi.Google Native. App Engine. V1. Inputs. Readiness Check Args 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
Pulumi.
Google Native. App Engine. V1. Inputs. Resources Args Machine resources for this version. Only applicable in the App Engine flexible environment.
- Runtime string
Desired runtime. Example: python27.
- Runtime
Api stringVersion 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
- Runtime
Channel string The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
- Runtime
Main stringExecutable Path The path or name of the app's main executable.
- Service
Account string The identity that the deployed version will run as. Admin API will use the App Engine Appspot service account as default if this field is neither provided in app.yaml file nor through CLI flag.
- Serving
Status Pulumi.Google Native. App Engine. V1. Version Serving Status 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 bool
Whether multiple requests can be dispatched to this version at once.
- Vm bool
Whether to deploy this version in a container on a virtual machine.
- Vpc
Access Pulumi.Connector Google Native. App Engine. V1. Inputs. Vpc Access Connector Args Enables VPC connectivity for standard apps.
- Zones List<string>
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
- App
Id string - Service
Id string - Api
Config ApiConfig Handler Args Serving configuration for Google Cloud Endpoints (https://cloud.google.com/endpoints).Only returned in GET requests if view=FULL is set.
- App
Engine boolApis Allows App Engine second generation runtimes to access the legacy bundled services.
- Automatic
Scaling AutomaticScaling Args Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic.
- Basic
Scaling BasicScaling Args 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.
- Beta
Settings map[string]string Metadata settings that are supplied to this version to enable beta runtime features.
- Build
Env map[string]stringVariables Environment variables available to the build environment.Only returned in GET requests if view=FULL is set.
- Default
Expiration string 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
Deployment
Args Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
- Endpoints
Api EndpointsService Api Service Args 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
Entrypoint
Args The entrypoint for the application.
- Env string
App Engine execution environment for this version.Defaults to standard.
- Env
Variables map[string]string Environment variables available to the application.Only returned in GET requests if view=FULL is set.
- Error
Handlers []ErrorHandler Args Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
- Handlers
[]Url
Map Args 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.
- Health
Check HealthCheck Args 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 string
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-".
- Inbound
Services []VersionInbound Services Item Before an application can receive email or XMPP messages, the application must be configured to enable the service.
- Instance
Class string 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
[]Library
Args Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
- Liveness
Check LivenessCheck Args Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
- Manual
Scaling ManualScaling Args A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. Manually scaled versions are sometimes referred to as "backends".
- Network
Network
Args Extra network settings. Only applicable in the App Engine flexible environment.
- Nobuild
Files stringRegex 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.
- Readiness
Check ReadinessCheck Args 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
Resources
Args Machine resources for this version. Only applicable in the App Engine flexible environment.
- Runtime string
Desired runtime. Example: python27.
- Runtime
Api stringVersion 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
- Runtime
Channel string The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
- Runtime
Main stringExecutable Path The path or name of the app's main executable.
- Service
Account string The identity that the deployed version will run as. Admin API will use the App Engine Appspot service account as default if this field is neither provided in app.yaml file nor through CLI flag.
- Serving
Status VersionServing Status 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 bool
Whether multiple requests can be dispatched to this version at once.
- Vm bool
Whether to deploy this version in a container on a virtual machine.
- Vpc
Access VpcConnector Access Connector Args Enables VPC connectivity for standard apps.
- Zones []string
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
- app
Id String - service
Id String - api
Config ApiConfig Handler Args Serving configuration for Google Cloud Endpoints (https://cloud.google.com/endpoints).Only returned in GET requests if view=FULL is set.
- app
Engine BooleanApis Allows App Engine second generation runtimes to access the legacy bundled services.
- automatic
Scaling AutomaticScaling Args Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic.
- basic
Scaling BasicScaling Args 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.
- beta
Settings Map<String,String> Metadata settings that are supplied to this version to enable beta runtime features.
- build
Env Map<String,String>Variables Environment variables available to the build environment.Only returned in GET requests if view=FULL is set.
- default
Expiration String 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
Deployment
Args Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
- endpoints
Api EndpointsService Api Service Args 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
Entrypoint
Args The entrypoint for the application.
- env String
App Engine execution environment for this version.Defaults to standard.
- env
Variables Map<String,String> Environment variables available to the application.Only returned in GET requests if view=FULL is set.
- error
Handlers List<ErrorHandler Args> Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
- handlers
List<Url
Map Args> 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.
- health
Check HealthCheck Args 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 String
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-".
- inbound
Services List<VersionInbound Services Item> Before an application can receive email or XMPP messages, the application must be configured to enable the service.
- instance
Class String 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
List<Library
Args> Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
- liveness
Check LivenessCheck Args Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
- manual
Scaling ManualScaling Args A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. Manually scaled versions are sometimes referred to as "backends".
- network
Network
Args Extra network settings. Only applicable in the App Engine flexible environment.
- nobuild
Files StringRegex 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.
- readiness
Check ReadinessCheck Args 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
Resources
Args Machine resources for this version. Only applicable in the App Engine flexible environment.
- runtime String
Desired runtime. Example: python27.
- runtime
Api StringVersion 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
- runtime
Channel String The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
- runtime
Main StringExecutable Path The path or name of the app's main executable.
- service
Account String The identity that the deployed version will run as. Admin API will use the App Engine Appspot service account as default if this field is neither provided in app.yaml file nor through CLI flag.
- serving
Status VersionServing Status 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 Boolean
Whether multiple requests can be dispatched to this version at once.
- vm Boolean
Whether to deploy this version in a container on a virtual machine.
- vpc
Access VpcConnector Access Connector Args Enables VPC connectivity for standard apps.
- zones List<String>
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
- app
Id string - service
Id string - api
Config ApiConfig Handler Args Serving configuration for Google Cloud Endpoints (https://cloud.google.com/endpoints).Only returned in GET requests if view=FULL is set.
- app
Engine booleanApis Allows App Engine second generation runtimes to access the legacy bundled services.
- automatic
Scaling AutomaticScaling Args Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic.
- basic
Scaling BasicScaling Args 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.
- beta
Settings {[key: string]: string} Metadata settings that are supplied to this version to enable beta runtime features.
- build
Env {[key: string]: string}Variables Environment variables available to the build environment.Only returned in GET requests if view=FULL is set.
- default
Expiration string 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
Deployment
Args Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
- endpoints
Api EndpointsService Api Service Args 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
Entrypoint
Args The entrypoint for the application.
- env string
App Engine execution environment for this version.Defaults to standard.
- env
Variables {[key: string]: string} Environment variables available to the application.Only returned in GET requests if view=FULL is set.
- error
Handlers ErrorHandler Args[] Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
- handlers
Url
Map Args[] 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.
- health
Check HealthCheck Args 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 string
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-".
- inbound
Services VersionInbound Services Item[] Before an application can receive email or XMPP messages, the application must be configured to enable the service.
- instance
Class string 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
Library
Args[] Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
- liveness
Check LivenessCheck Args Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
- manual
Scaling ManualScaling Args A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. Manually scaled versions are sometimes referred to as "backends".
- network
Network
Args Extra network settings. Only applicable in the App Engine flexible environment.
- nobuild
Files stringRegex 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.
- readiness
Check ReadinessCheck Args 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
Resources
Args Machine resources for this version. Only applicable in the App Engine flexible environment.
- runtime string
Desired runtime. Example: python27.
- runtime
Api stringVersion 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
- runtime
Channel string The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
- runtime
Main stringExecutable Path The path or name of the app's main executable.
- service
Account string The identity that the deployed version will run as. Admin API will use the App Engine Appspot service account as default if this field is neither provided in app.yaml file nor through CLI flag.
- serving
Status VersionServing Status 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 boolean
Whether multiple requests can be dispatched to this version at once.
- vm boolean
Whether to deploy this version in a container on a virtual machine.
- vpc
Access VpcConnector Access Connector Args Enables VPC connectivity for standard apps.
- zones string[]
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
- app_
id str - service_
id str - api_
config ApiConfig Handler Args Serving configuration for Google Cloud Endpoints (https://cloud.google.com/endpoints).Only returned in GET requests if view=FULL is set.
- app_
engine_ boolapis Allows App Engine second generation runtimes to access the legacy bundled services.
- automatic_
scaling AutomaticScaling Args Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic.
- basic_
scaling BasicScaling Args 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.
- beta_
settings Mapping[str, str] Metadata settings that are supplied to this version to enable beta runtime features.
- build_
env_ Mapping[str, str]variables Environment variables available to the build environment.Only returned in GET requests if view=FULL is set.
- default_
expiration str 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
Deployment
Args Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
- endpoints_
api_ Endpointsservice Api Service Args 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
Entrypoint
Args The entrypoint for the application.
- env str
App Engine execution environment for this version.Defaults to standard.
- env_
variables Mapping[str, str] Environment variables available to the application.Only returned in GET requests if view=FULL is set.
- error_
handlers Sequence[ErrorHandler Args] Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
- handlers
Sequence[Url
Map Args] 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.
- health_
check HealthCheck Args 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 str
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-".
- inbound_
services Sequence[VersionInbound Services Item] Before an application can receive email or XMPP messages, the application must be configured to enable the service.
- instance_
class str 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
Sequence[Library
Args] Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
- liveness_
check LivenessCheck Args Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
- manual_
scaling ManualScaling Args A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. Manually scaled versions are sometimes referred to as "backends".
- network
Network
Args Extra network settings. Only applicable in the App Engine flexible environment.
- nobuild_
files_ strregex 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.
- readiness_
check ReadinessCheck Args 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
Resources
Args Machine resources for this version. Only applicable in the App Engine flexible environment.
- runtime str
Desired runtime. Example: python27.
- runtime_
api_ strversion 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
- runtime_
channel str The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
- runtime_
main_ strexecutable_ path The path or name of the app's main executable.
- service_
account str The identity that the deployed version will run as. Admin API will use the App Engine Appspot service account as default if this field is neither provided in app.yaml file nor through CLI flag.
- serving_
status VersionServing Status 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 bool
Whether multiple requests can be dispatched to this version at once.
- vm bool
Whether to deploy this version in a container on a virtual machine.
- vpc_
access_ Vpcconnector Access Connector Args Enables VPC connectivity for standard apps.
- zones Sequence[str]
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
- app
Id String - service
Id String - api
Config Property Map Serving configuration for Google Cloud Endpoints (https://cloud.google.com/endpoints).Only returned in GET requests if view=FULL is set.
- app
Engine BooleanApis Allows App Engine second generation runtimes to access the legacy bundled services.
- automatic
Scaling Property Map Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic.
- basic
Scaling Property Map 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.
- beta
Settings Map<String> Metadata settings that are supplied to this version to enable beta runtime features.
- build
Env Map<String>Variables Environment variables available to the build environment.Only returned in GET requests if view=FULL is set.
- default
Expiration String 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 Property Map
Code and application artifacts that make up this version.Only returned in GET requests if view=FULL is set.
- endpoints
Api Property MapService 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 Property Map
The entrypoint for the application.
- env String
App Engine execution environment for this version.Defaults to standard.
- env
Variables Map<String> Environment variables available to the application.Only returned in GET requests if view=FULL is set.
- error
Handlers List<Property Map> Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
- handlers List<Property Map>
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.
- health
Check Property Map 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 String
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-".
- inbound
Services List<"INBOUND_SERVICE_UNSPECIFIED" | "INBOUND_SERVICE_MAIL" | "INBOUND_SERVICE_MAIL_BOUNCE" | "INBOUND_SERVICE_XMPP_ERROR" | "INBOUND_SERVICE_XMPP_MESSAGE" | "INBOUND_SERVICE_XMPP_SUBSCRIBE" | "INBOUND_SERVICE_XMPP_PRESENCE" | "INBOUND_SERVICE_CHANNEL_PRESENCE" | "INBOUND_SERVICE_WARMUP"> Before an application can receive email or XMPP messages, the application must be configured to enable the service.
- instance
Class String 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 List<Property Map>
Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set.
- liveness
Check Property Map Configures liveness health checking for instances. Unhealthy instances are stopped and replaced with new instancesOnly returned in GET requests if view=FULL is set.
- manual
Scaling Property Map A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time. Manually scaled versions are sometimes referred to as "backends".
- network Property Map
Extra network settings. Only applicable in the App Engine flexible environment.
- nobuild
Files StringRegex 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.
- readiness
Check Property Map 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 Property Map
Machine resources for this version. Only applicable in the App Engine flexible environment.
- runtime String
Desired runtime. Example: python27.
- runtime
Api StringVersion 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
- runtime
Channel String The channel of the runtime to use. Only available for some runtimes. Defaults to the default channel.
- runtime
Main StringExecutable Path The path or name of the app's main executable.
- service
Account String The identity that the deployed version will run as. Admin API will use the App Engine Appspot service account as default if this field is neither provided in app.yaml file nor through CLI flag.
- serving
Status "SERVING_STATUS_UNSPECIFIED" | "SERVING" | "STOPPED" 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 Boolean
Whether multiple requests can be dispatched to this version at once.
- vm Boolean
Whether to deploy this version in a container on a virtual machine.
- vpc
Access Property MapConnector Enables VPC connectivity for standard apps.
- zones List<String>
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.
Outputs
All input properties are implicitly available as output properties. Additionally, the Version resource produces the following output properties:
- Create
Time string Time that this version was created.
- Created
By string Email address of the user who created this version.
- Disk
Usage stringBytes Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.
- Version
Url string Serving URL for this version. Example: "https://myversion-dot-myservice-dot-myapp.appspot.com"
- Create
Time string Time that this version was created.
- Created
By string Email address of the user who created this version.
- Disk
Usage stringBytes Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.
- Version
Url string Serving URL for this version. Example: "https://myversion-dot-myservice-dot-myapp.appspot.com"
- create
Time String Time that this version was created.
- created
By String Email address of the user who created this version.
- disk
Usage StringBytes Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.
- id String
The provider-assigned unique ID for this managed resource.
- name String
Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.
- version
Url String Serving URL for this version. Example: "https://myversion-dot-myservice-dot-myapp.appspot.com"
- create
Time string Time that this version was created.
- created
By string Email address of the user who created this version.
- disk
Usage stringBytes Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.
- id string
The provider-assigned unique ID for this managed resource.
- name string
Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.
- version
Url string Serving URL for this version. Example: "https://myversion-dot-myservice-dot-myapp.appspot.com"
- create_
time str Time that this version was created.
- created_
by str Email address of the user who created this version.
- disk_
usage_ strbytes Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.
- id str
The provider-assigned unique ID for this managed resource.
- name str
Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.
- version_
url str Serving URL for this version. Example: "https://myversion-dot-myservice-dot-myapp.appspot.com"
- create
Time String Time that this version was created.
- created
By String Email address of the user who created this version.
- disk
Usage StringBytes Total size in bytes of all the files that are included in this version and currently hosted on the App Engine disk.
- id String
The provider-assigned unique ID for this managed resource.
- name String
Full path to the Version resource in the API. Example: apps/myapp/services/default/versions/v1.
- version
Url String Serving URL for this version. Example: "https://myversion-dot-myservice-dot-myapp.appspot.com"
Supporting Types
ApiConfigHandler
- Auth
Fail Pulumi.Action Google Native. App Engine. V1. Api Config Handler Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- Login
Pulumi.
Google Native. App Engine. V1. Api Config Handler Login Level of login required to access this resource. Defaults to optional.
- Script string
Path to the script from the application root directory.
- Security
Level Pulumi.Google Native. App Engine. V1. Api Config Handler Security Level Security (HTTPS) enforcement for this URL.
- Url string
URL to serve the endpoint at.
- Auth
Fail ApiAction Config Handler Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- Login
Api
Config Handler Login Level of login required to access this resource. Defaults to optional.
- Script string
Path to the script from the application root directory.
- Security
Level ApiConfig Handler Security Level Security (HTTPS) enforcement for this URL.
- Url string
URL to serve the endpoint at.
- auth
Fail ApiAction Config Handler Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- login
Api
Config Handler Login Level of login required to access this resource. Defaults to optional.
- script String
Path to the script from the application root directory.
- security
Level ApiConfig Handler Security Level Security (HTTPS) enforcement for this URL.
- url String
URL to serve the endpoint at.
- auth
Fail ApiAction Config Handler Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- login
Api
Config Handler Login Level of login required to access this resource. Defaults to optional.
- script string
Path to the script from the application root directory.
- security
Level ApiConfig Handler Security Level Security (HTTPS) enforcement for this URL.
- url string
URL to serve the endpoint at.
- auth_
fail_ Apiaction Config Handler Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- login
Api
Config Handler Login Level of login required to access this resource. Defaults to optional.
- script str
Path to the script from the application root directory.
- security_
level ApiConfig Handler Security Level Security (HTTPS) enforcement for this URL.
- url str
URL to serve the endpoint at.
- auth
Fail "AUTH_FAIL_ACTION_UNSPECIFIED" | "AUTH_FAIL_ACTION_REDIRECT" | "AUTH_FAIL_ACTION_UNAUTHORIZED"Action Action to take when users access resources that require authentication. Defaults to redirect.
- login "LOGIN_UNSPECIFIED" | "LOGIN_OPTIONAL" | "LOGIN_ADMIN" | "LOGIN_REQUIRED"
Level of login required to access this resource. Defaults to optional.
- script String
Path to the script from the application root directory.
- security
Level "SECURE_UNSPECIFIED" | "SECURE_DEFAULT" | "SECURE_NEVER" | "SECURE_OPTIONAL" | "SECURE_ALWAYS" Security (HTTPS) enforcement for this URL.
- url String
URL to serve the endpoint at.
ApiConfigHandlerAuthFailAction
- Auth
Fail Action Unspecified - AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- Auth
Fail Action Redirect - AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- Auth
Fail Action Unauthorized - AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- Api
Config Handler Auth Fail Action Auth Fail Action Unspecified - AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- Api
Config Handler Auth Fail Action Auth Fail Action Redirect - AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- Api
Config Handler Auth Fail Action Auth Fail Action Unauthorized - AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- Auth
Fail Action Unspecified - AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- Auth
Fail Action Redirect - AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- Auth
Fail Action Unauthorized - AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- Auth
Fail Action Unspecified - AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- Auth
Fail Action Redirect - AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- Auth
Fail Action Unauthorized - AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- AUTH_FAIL_ACTION_UNSPECIFIED
- AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- AUTH_FAIL_ACTION_REDIRECT
- AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- AUTH_FAIL_ACTION_UNAUTHORIZED
- AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- "AUTH_FAIL_ACTION_UNSPECIFIED"
- AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- "AUTH_FAIL_ACTION_REDIRECT"
- AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- "AUTH_FAIL_ACTION_UNAUTHORIZED"
- AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
ApiConfigHandlerLogin
- Login
Unspecified - LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- Login
Optional - LOGIN_OPTIONAL
Does not require that the user is signed in.
- Login
Admin - LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- Login
Required - LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- Api
Config Handler Login Login Unspecified - LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- Api
Config Handler Login Login Optional - LOGIN_OPTIONAL
Does not require that the user is signed in.
- Api
Config Handler Login Login Admin - LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- Api
Config Handler Login Login Required - LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- Login
Unspecified - LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- Login
Optional - LOGIN_OPTIONAL
Does not require that the user is signed in.
- Login
Admin - LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- Login
Required - LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- Login
Unspecified - LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- Login
Optional - LOGIN_OPTIONAL
Does not require that the user is signed in.
- Login
Admin - LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- Login
Required - LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- LOGIN_UNSPECIFIED
- LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- LOGIN_OPTIONAL
- LOGIN_OPTIONAL
Does not require that the user is signed in.
- LOGIN_ADMIN
- LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- LOGIN_REQUIRED
- LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- "LOGIN_UNSPECIFIED"
- LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- "LOGIN_OPTIONAL"
- LOGIN_OPTIONAL
Does not require that the user is signed in.
- "LOGIN_ADMIN"
- LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- "LOGIN_REQUIRED"
- LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
ApiConfigHandlerResponse
- Auth
Fail stringAction Action to take when users access resources that require authentication. Defaults to redirect.
- Login string
Level of login required to access this resource. Defaults to optional.
- Script string
Path to the script from the application root directory.
- Security
Level string Security (HTTPS) enforcement for this URL.
- Url string
URL to serve the endpoint at.
- Auth
Fail stringAction Action to take when users access resources that require authentication. Defaults to redirect.
- Login string
Level of login required to access this resource. Defaults to optional.
- Script string
Path to the script from the application root directory.
- Security
Level string Security (HTTPS) enforcement for this URL.
- Url string
URL to serve the endpoint at.
- auth
Fail StringAction Action to take when users access resources that require authentication. Defaults to redirect.
- login String
Level of login required to access this resource. Defaults to optional.
- script String
Path to the script from the application root directory.
- security
Level String Security (HTTPS) enforcement for this URL.
- url String
URL to serve the endpoint at.
- auth
Fail stringAction Action to take when users access resources that require authentication. Defaults to redirect.
- login string
Level of login required to access this resource. Defaults to optional.
- script string
Path to the script from the application root directory.
- security
Level string Security (HTTPS) enforcement for this URL.
- url string
URL to serve the endpoint at.
- auth_
fail_ straction Action to take when users access resources that require authentication. Defaults to redirect.
- login str
Level of login required to access this resource. Defaults to optional.
- script str
Path to the script from the application root directory.
- security_
level str Security (HTTPS) enforcement for this URL.
- url str
URL to serve the endpoint at.
- auth
Fail StringAction Action to take when users access resources that require authentication. Defaults to redirect.
- login String
Level of login required to access this resource. Defaults to optional.
- script String
Path to the script from the application root directory.
- security
Level String Security (HTTPS) enforcement for this URL.
- url String
URL to serve the endpoint at.
ApiConfigHandlerSecurityLevel
- Secure
Unspecified - SECURE_UNSPECIFIED
Not specified.
- Secure
Default - SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- Secure
Never - SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- Secure
Optional - SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- Secure
Always - SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- Api
Config Handler Security Level Secure Unspecified - SECURE_UNSPECIFIED
Not specified.
- Api
Config Handler Security Level Secure Default - SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- Api
Config Handler Security Level Secure Never - SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- Api
Config Handler Security Level Secure Optional - SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- Api
Config Handler Security Level Secure Always - SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- Secure
Unspecified - SECURE_UNSPECIFIED
Not specified.
- Secure
Default - SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- Secure
Never - SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- Secure
Optional - SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- Secure
Always - SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- Secure
Unspecified - SECURE_UNSPECIFIED
Not specified.
- Secure
Default - SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- Secure
Never - SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- Secure
Optional - SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- Secure
Always - SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- SECURE_UNSPECIFIED
- SECURE_UNSPECIFIED
Not specified.
- SECURE_DEFAULT
- SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- SECURE_NEVER
- SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- SECURE_OPTIONAL
- SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- SECURE_ALWAYS
- SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- "SECURE_UNSPECIFIED"
- SECURE_UNSPECIFIED
Not specified.
- "SECURE_DEFAULT"
- SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- "SECURE_NEVER"
- SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- "SECURE_OPTIONAL"
- SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- "SECURE_ALWAYS"
- SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
ApiEndpointHandler
- Script
Path string Path to the script from the application root directory.
- Script
Path string Path to the script from the application root directory.
- script
Path String Path to the script from the application root directory.
- script
Path string Path to the script from the application root directory.
- script_
path str Path to the script from the application root directory.
- script
Path String Path to the script from the application root directory.
ApiEndpointHandlerResponse
- Script
Path string Path to the script from the application root directory.
- Script
Path string Path to the script from the application root directory.
- script
Path String Path to the script from the application root directory.
- script
Path string Path to the script from the application root directory.
- script_
path str Path to the script from the application root directory.
- script
Path String Path to the script from the application root directory.
AutomaticScaling
- Cool
Down stringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- Cpu
Utilization Pulumi.Google Native. App Engine. V1. Inputs. Cpu Utilization Target scaling by CPU usage.
- Disk
Utilization Pulumi.Google Native. App Engine. V1. Inputs. Disk Utilization Target scaling by disk usage.
- Max
Concurrent intRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- Max
Idle intInstances Maximum number of idle instances that should be maintained for this version.
- Max
Pending stringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- Max
Total intInstances Maximum number of instances that should be started to handle requests for this version.
- Min
Idle intInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- Min
Pending stringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- Min
Total intInstances Minimum number of running instances that should be maintained for this version.
- Network
Utilization Pulumi.Google Native. App Engine. V1. Inputs. Network Utilization Target scaling by network usage.
- Request
Utilization Pulumi.Google Native. App Engine. V1. Inputs. Request Utilization Target scaling by request utilization.
- Standard
Scheduler Pulumi.Settings Google Native. App Engine. V1. Inputs. Standard Scheduler Settings Scheduler settings for standard environment.
- Cool
Down stringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- Cpu
Utilization CpuUtilization Target scaling by CPU usage.
- Disk
Utilization DiskUtilization Target scaling by disk usage.
- Max
Concurrent intRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- Max
Idle intInstances Maximum number of idle instances that should be maintained for this version.
- Max
Pending stringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- Max
Total intInstances Maximum number of instances that should be started to handle requests for this version.
- Min
Idle intInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- Min
Pending stringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- Min
Total intInstances Minimum number of running instances that should be maintained for this version.
- Network
Utilization NetworkUtilization Target scaling by network usage.
- Request
Utilization RequestUtilization Target scaling by request utilization.
- Standard
Scheduler StandardSettings Scheduler Settings Scheduler settings for standard environment.
- cool
Down StringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- cpu
Utilization CpuUtilization Target scaling by CPU usage.
- disk
Utilization DiskUtilization Target scaling by disk usage.
- max
Concurrent IntegerRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- max
Idle IntegerInstances Maximum number of idle instances that should be maintained for this version.
- max
Pending StringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- max
Total IntegerInstances Maximum number of instances that should be started to handle requests for this version.
- min
Idle IntegerInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- min
Pending StringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- min
Total IntegerInstances Minimum number of running instances that should be maintained for this version.
- network
Utilization NetworkUtilization Target scaling by network usage.
- request
Utilization RequestUtilization Target scaling by request utilization.
- standard
Scheduler StandardSettings Scheduler Settings Scheduler settings for standard environment.
- cool
Down stringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- cpu
Utilization CpuUtilization Target scaling by CPU usage.
- disk
Utilization DiskUtilization Target scaling by disk usage.
- max
Concurrent numberRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- max
Idle numberInstances Maximum number of idle instances that should be maintained for this version.
- max
Pending stringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- max
Total numberInstances Maximum number of instances that should be started to handle requests for this version.
- min
Idle numberInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- min
Pending stringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- min
Total numberInstances Minimum number of running instances that should be maintained for this version.
- network
Utilization NetworkUtilization Target scaling by network usage.
- request
Utilization RequestUtilization Target scaling by request utilization.
- standard
Scheduler StandardSettings Scheduler Settings Scheduler settings for standard environment.
- cool_
down_ strperiod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- cpu_
utilization CpuUtilization Target scaling by CPU usage.
- disk_
utilization DiskUtilization Target scaling by disk usage.
- max_
concurrent_ intrequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- max_
idle_ intinstances Maximum number of idle instances that should be maintained for this version.
- max_
pending_ strlatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- max_
total_ intinstances Maximum number of instances that should be started to handle requests for this version.
- min_
idle_ intinstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- min_
pending_ strlatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- min_
total_ intinstances Minimum number of running instances that should be maintained for this version.
- network_
utilization NetworkUtilization Target scaling by network usage.
- request_
utilization RequestUtilization Target scaling by request utilization.
- standard_
scheduler_ Standardsettings Scheduler Settings Scheduler settings for standard environment.
- cool
Down StringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- cpu
Utilization Property Map Target scaling by CPU usage.
- disk
Utilization Property Map Target scaling by disk usage.
- max
Concurrent NumberRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- max
Idle NumberInstances Maximum number of idle instances that should be maintained for this version.
- max
Pending StringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- max
Total NumberInstances Maximum number of instances that should be started to handle requests for this version.
- min
Idle NumberInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- min
Pending StringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- min
Total NumberInstances Minimum number of running instances that should be maintained for this version.
- network
Utilization Property Map Target scaling by network usage.
- request
Utilization Property Map Target scaling by request utilization.
- standard
Scheduler Property MapSettings Scheduler settings for standard environment.
AutomaticScalingResponse
- Cool
Down stringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- Cpu
Utilization Pulumi.Google Native. App Engine. V1. Inputs. Cpu Utilization Response Target scaling by CPU usage.
- Disk
Utilization Pulumi.Google Native. App Engine. V1. Inputs. Disk Utilization Response Target scaling by disk usage.
- Max
Concurrent intRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- Max
Idle intInstances Maximum number of idle instances that should be maintained for this version.
- Max
Pending stringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- Max
Total intInstances Maximum number of instances that should be started to handle requests for this version.
- Min
Idle intInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- Min
Pending stringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- Min
Total intInstances Minimum number of running instances that should be maintained for this version.
- Network
Utilization Pulumi.Google Native. App Engine. V1. Inputs. Network Utilization Response Target scaling by network usage.
- Request
Utilization Pulumi.Google Native. App Engine. V1. Inputs. Request Utilization Response Target scaling by request utilization.
- Standard
Scheduler Pulumi.Settings Google Native. App Engine. V1. Inputs. Standard Scheduler Settings Response Scheduler settings for standard environment.
- Cool
Down stringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- Cpu
Utilization CpuUtilization Response Target scaling by CPU usage.
- Disk
Utilization DiskUtilization Response Target scaling by disk usage.
- Max
Concurrent intRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- Max
Idle intInstances Maximum number of idle instances that should be maintained for this version.
- Max
Pending stringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- Max
Total intInstances Maximum number of instances that should be started to handle requests for this version.
- Min
Idle intInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- Min
Pending stringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- Min
Total intInstances Minimum number of running instances that should be maintained for this version.
- Network
Utilization NetworkUtilization Response Target scaling by network usage.
- Request
Utilization RequestUtilization Response Target scaling by request utilization.
- Standard
Scheduler StandardSettings Scheduler Settings Response Scheduler settings for standard environment.
- cool
Down StringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- cpu
Utilization CpuUtilization Response Target scaling by CPU usage.
- disk
Utilization DiskUtilization Response Target scaling by disk usage.
- max
Concurrent IntegerRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- max
Idle IntegerInstances Maximum number of idle instances that should be maintained for this version.
- max
Pending StringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- max
Total IntegerInstances Maximum number of instances that should be started to handle requests for this version.
- min
Idle IntegerInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- min
Pending StringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- min
Total IntegerInstances Minimum number of running instances that should be maintained for this version.
- network
Utilization NetworkUtilization Response Target scaling by network usage.
- request
Utilization RequestUtilization Response Target scaling by request utilization.
- standard
Scheduler StandardSettings Scheduler Settings Response Scheduler settings for standard environment.
- cool
Down stringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- cpu
Utilization CpuUtilization Response Target scaling by CPU usage.
- disk
Utilization DiskUtilization Response Target scaling by disk usage.
- max
Concurrent numberRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- max
Idle numberInstances Maximum number of idle instances that should be maintained for this version.
- max
Pending stringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- max
Total numberInstances Maximum number of instances that should be started to handle requests for this version.
- min
Idle numberInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- min
Pending stringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- min
Total numberInstances Minimum number of running instances that should be maintained for this version.
- network
Utilization NetworkUtilization Response Target scaling by network usage.
- request
Utilization RequestUtilization Response Target scaling by request utilization.
- standard
Scheduler StandardSettings Scheduler Settings Response Scheduler settings for standard environment.
- cool_
down_ strperiod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- cpu_
utilization CpuUtilization Response Target scaling by CPU usage.
- disk_
utilization DiskUtilization Response Target scaling by disk usage.
- max_
concurrent_ intrequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- max_
idle_ intinstances Maximum number of idle instances that should be maintained for this version.
- max_
pending_ strlatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- max_
total_ intinstances Maximum number of instances that should be started to handle requests for this version.
- min_
idle_ intinstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- min_
pending_ strlatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- min_
total_ intinstances Minimum number of running instances that should be maintained for this version.
- network_
utilization NetworkUtilization Response Target scaling by network usage.
- request_
utilization RequestUtilization Response Target scaling by request utilization.
- standard_
scheduler_ Standardsettings Scheduler Settings Response Scheduler settings for standard environment.
- cool
Down StringPeriod The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
- cpu
Utilization Property Map Target scaling by CPU usage.
- disk
Utilization Property Map Target scaling by disk usage.
- max
Concurrent NumberRequests Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.
- max
Idle NumberInstances Maximum number of idle instances that should be maintained for this version.
- max
Pending StringLatency Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
- max
Total NumberInstances Maximum number of instances that should be started to handle requests for this version.
- min
Idle NumberInstances Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
- min
Pending StringLatency Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
- min
Total NumberInstances Minimum number of running instances that should be maintained for this version.
- network
Utilization Property Map Target scaling by network usage.
- request
Utilization Property Map Target scaling by request utilization.
- standard
Scheduler Property MapSettings Scheduler settings for standard environment.
BasicScaling
- Idle
Timeout string Duration of time after the last request that an instance must wait before the instance is shut down.
- Max
Instances int Maximum number of instances to create for this version.
- Idle
Timeout string Duration of time after the last request that an instance must wait before the instance is shut down.
- Max
Instances int Maximum number of instances to create for this version.
- idle
Timeout String Duration of time after the last request that an instance must wait before the instance is shut down.
- max
Instances Integer Maximum number of instances to create for this version.
- idle
Timeout string Duration of time after the last request that an instance must wait before the instance is shut down.
- max
Instances number Maximum number of instances to create for this version.
- idle_
timeout str Duration of time after the last request that an instance must wait before the instance is shut down.
- max_
instances int Maximum number of instances to create for this version.
- idle
Timeout String Duration of time after the last request that an instance must wait before the instance is shut down.
- max
Instances Number Maximum number of instances to create for this version.
BasicScalingResponse
- Idle
Timeout string Duration of time after the last request that an instance must wait before the instance is shut down.
- Max
Instances int Maximum number of instances to create for this version.
- Idle
Timeout string Duration of time after the last request that an instance must wait before the instance is shut down.
- Max
Instances int Maximum number of instances to create for this version.
- idle
Timeout String Duration of time after the last request that an instance must wait before the instance is shut down.
- max
Instances Integer Maximum number of instances to create for this version.
- idle
Timeout string Duration of time after the last request that an instance must wait before the instance is shut down.
- max
Instances number Maximum number of instances to create for this version.
- idle_
timeout str Duration of time after the last request that an instance must wait before the instance is shut down.
- max_
instances int Maximum number of instances to create for this version.
- idle
Timeout String Duration of time after the last request that an instance must wait before the instance is shut down.
- max
Instances Number Maximum number of instances to create for this version.
CloudBuildOptions
- App
Yaml stringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- Cloud
Build stringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- App
Yaml stringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- Cloud
Build stringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- app
Yaml StringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- cloud
Build StringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- app
Yaml stringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- cloud
Build stringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- app_
yaml_ strpath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- cloud_
build_ strtimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- app
Yaml StringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- cloud
Build StringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
CloudBuildOptionsResponse
- App
Yaml stringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- Cloud
Build stringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- App
Yaml stringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- Cloud
Build stringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- app
Yaml StringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- cloud
Build StringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- app
Yaml stringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- cloud
Build stringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- app_
yaml_ strpath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- cloud_
build_ strtimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
- app
Yaml StringPath Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.
- cloud
Build StringTimeout The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.
ContainerInfo
- Image string
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- Image string
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- image String
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- image string
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- image str
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- image String
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
ContainerInfoResponse
- Image string
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- Image string
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- image String
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- image string
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- image str
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
- image String
URI to the hosted container image in Google Container Registry. The URI must be fully qualified and include a tag or digest. Examples: "gcr.io/my-project/image:tag" or "gcr.io/my-project/image@digest"
CpuUtilization
- Aggregation
Window stringLength Period of time over which CPU utilization is calculated.
- Target
Utilization double Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- Aggregation
Window stringLength Period of time over which CPU utilization is calculated.
- Target
Utilization float64 Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- aggregation
Window StringLength Period of time over which CPU utilization is calculated.
- target
Utilization Double Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- aggregation
Window stringLength Period of time over which CPU utilization is calculated.
- target
Utilization number Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- aggregation_
window_ strlength Period of time over which CPU utilization is calculated.
- target_
utilization float Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- aggregation
Window StringLength Period of time over which CPU utilization is calculated.
- target
Utilization Number Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
CpuUtilizationResponse
- Aggregation
Window stringLength Period of time over which CPU utilization is calculated.
- Target
Utilization double Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- Aggregation
Window stringLength Period of time over which CPU utilization is calculated.
- Target
Utilization float64 Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- aggregation
Window StringLength Period of time over which CPU utilization is calculated.
- target
Utilization Double Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- aggregation
Window stringLength Period of time over which CPU utilization is calculated.
- target
Utilization number Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- aggregation_
window_ strlength Period of time over which CPU utilization is calculated.
- target_
utilization float Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
- aggregation
Window StringLength Period of time over which CPU utilization is calculated.
- target
Utilization Number Target CPU utilization ratio to maintain when scaling. Must be between 0 and 1.
Deployment
- Cloud
Build Pulumi.Options Google Native. App Engine. V1. Inputs. Cloud Build Options Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- Container
Pulumi.
Google Native. App Engine. V1. Inputs. Container Info The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- Files Dictionary<string, string>
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- Zip
Pulumi.
Google Native. App Engine. V1. Inputs. Zip Info The zip file for this deployment, if this is a zip deployment.
- Cloud
Build CloudOptions Build Options Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- Container
Container
Info The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- Files map[string]string
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- Zip
Zip
Info The zip file for this deployment, if this is a zip deployment.
- cloud
Build CloudOptions Build Options Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- container
Container
Info The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- files Map<String,String>
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- zip
Zip
Info The zip file for this deployment, if this is a zip deployment.
- cloud
Build CloudOptions Build Options Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- container
Container
Info The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- files {[key: string]: string}
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- zip
Zip
Info The zip file for this deployment, if this is a zip deployment.
- cloud_
build_ Cloudoptions Build Options Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- container
Container
Info The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- files Mapping[str, str]
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- zip
Zip
Info The zip file for this deployment, if this is a zip deployment.
- cloud
Build Property MapOptions Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- container Property Map
The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- files Map<String>
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- zip Property Map
The zip file for this deployment, if this is a zip deployment.
DeploymentResponse
- Cloud
Build Pulumi.Options Google Native. App Engine. V1. Inputs. Cloud Build Options Response Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- Container
Pulumi.
Google Native. App Engine. V1. Inputs. Container Info Response The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- Files Dictionary<string, string>
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- Zip
Pulumi.
Google Native. App Engine. V1. Inputs. Zip Info Response The zip file for this deployment, if this is a zip deployment.
- Cloud
Build CloudOptions Build Options Response Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- Container
Container
Info Response The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- Files map[string]string
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- Zip
Zip
Info Response The zip file for this deployment, if this is a zip deployment.
- cloud
Build CloudOptions Build Options Response Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- container
Container
Info Response The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- files Map<String,String>
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- zip
Zip
Info Response The zip file for this deployment, if this is a zip deployment.
- cloud
Build CloudOptions Build Options Response Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- container
Container
Info Response The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- files {[key: string]: string}
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- zip
Zip
Info Response The zip file for this deployment, if this is a zip deployment.
- cloud_
build_ Cloudoptions Build Options Response Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- container
Container
Info Response The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- files Mapping[str, str]
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- zip
Zip
Info Response The zip file for this deployment, if this is a zip deployment.
- cloud
Build Property MapOptions Options for any Google Cloud Build builds created as a part of this deployment.These options will only be used if a new build is created, such as when deploying to the App Engine flexible environment using files or zip.
- container Property Map
The Docker image for the container that runs the version. Only applicable for instances running in the App Engine flexible environment.
- files Map<String>
Manifest of the files stored in Google Cloud Storage that are included as part of this version. All files must be readable using the credentials supplied with this call.
- zip Property Map
The zip file for this deployment, if this is a zip deployment.
DiskUtilization
- Target
Read intBytes Per Second Target bytes read per second.
- Target
Read intOps Per Second Target ops read per seconds.
- Target
Write intBytes Per Second Target bytes written per second.
- Target
Write intOps Per Second Target ops written per second.
- Target
Read intBytes Per Second Target bytes read per second.
- Target
Read intOps Per Second Target ops read per seconds.
- Target
Write intBytes Per Second Target bytes written per second.
- Target
Write intOps Per Second Target ops written per second.
- target
Read IntegerBytes Per Second Target bytes read per second.
- target
Read IntegerOps Per Second Target ops read per seconds.
- target
Write IntegerBytes Per Second Target bytes written per second.
- target
Write IntegerOps Per Second Target ops written per second.
- target
Read numberBytes Per Second Target bytes read per second.
- target
Read numberOps Per Second Target ops read per seconds.
- target
Write numberBytes Per Second Target bytes written per second.
- target
Write numberOps Per Second Target ops written per second.
- target_
read_ intbytes_ per_ second Target bytes read per second.
- target_
read_ intops_ per_ second Target ops read per seconds.
- target_
write_ intbytes_ per_ second Target bytes written per second.
- target_
write_ intops_ per_ second Target ops written per second.
- target
Read NumberBytes Per Second Target bytes read per second.
- target
Read NumberOps Per Second Target ops read per seconds.
- target
Write NumberBytes Per Second Target bytes written per second.
- target
Write NumberOps Per Second Target ops written per second.
DiskUtilizationResponse
- Target
Read intBytes Per Second Target bytes read per second.
- Target
Read intOps Per Second Target ops read per seconds.
- Target
Write intBytes Per Second Target bytes written per second.
- Target
Write intOps Per Second Target ops written per second.
- Target
Read intBytes Per Second Target bytes read per second.
- Target
Read intOps Per Second Target ops read per seconds.
- Target
Write intBytes Per Second Target bytes written per second.
- Target
Write intOps Per Second Target ops written per second.
- target
Read IntegerBytes Per Second Target bytes read per second.
- target
Read IntegerOps Per Second Target ops read per seconds.
- target
Write IntegerBytes Per Second Target bytes written per second.
- target
Write IntegerOps Per Second Target ops written per second.
- target
Read numberBytes Per Second Target bytes read per second.
- target
Read numberOps Per Second Target ops read per seconds.
- target
Write numberBytes Per Second Target bytes written per second.
- target
Write numberOps Per Second Target ops written per second.
- target_
read_ intbytes_ per_ second Target bytes read per second.
- target_
read_ intops_ per_ second Target ops read per seconds.
- target_
write_ intbytes_ per_ second Target bytes written per second.
- target_
write_ intops_ per_ second Target ops written per second.
- target
Read NumberBytes Per Second Target bytes read per second.
- target
Read NumberOps Per Second Target ops read per seconds.
- target
Write NumberBytes Per Second Target bytes written per second.
- target
Write NumberOps Per Second Target ops written per second.
EndpointsApiService
- Config
Id string Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- Disable
Trace boolSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- Name string
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- Rollout
Strategy Pulumi.Google Native. App Engine. V1. Endpoints Api Service Rollout Strategy Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- Config
Id string Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- Disable
Trace boolSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- Name string
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- Rollout
Strategy EndpointsApi Service Rollout Strategy Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- config
Id String Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- disable
Trace BooleanSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- name String
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- rollout
Strategy EndpointsApi Service Rollout Strategy Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- config
Id string Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- disable
Trace booleanSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- name string
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- rollout
Strategy EndpointsApi Service Rollout Strategy Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- config_
id str Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- disable_
trace_ boolsampling Enable or disable trace sampling. By default, this is set to false for enabled.
- name str
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- rollout_
strategy EndpointsApi Service Rollout Strategy Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- config
Id String Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- disable
Trace BooleanSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- name String
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- rollout
Strategy "UNSPECIFIED_ROLLOUT_STRATEGY" | "FIXED" | "MANAGED" Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
EndpointsApiServiceResponse
- Config
Id string Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- Disable
Trace boolSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- Name string
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- Rollout
Strategy string Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- Config
Id string Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- Disable
Trace boolSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- Name string
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- Rollout
Strategy string Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- config
Id String Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- disable
Trace BooleanSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- name String
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- rollout
Strategy String Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- config
Id string Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- disable
Trace booleanSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- name string
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- rollout
Strategy string Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- config_
id str Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- disable_
trace_ boolsampling Enable or disable trace sampling. By default, this is set to false for enabled.
- name str
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- rollout_
strategy str Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
- config
Id String Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.
- disable
Trace BooleanSampling Enable or disable trace sampling. By default, this is set to false for enabled.
- name String
Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"
- rollout
Strategy String Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
EndpointsApiServiceRolloutStrategy
- Unspecified
Rollout Strategy - UNSPECIFIED_ROLLOUT_STRATEGY
Not specified. Defaults to FIXED.
- Fixed
- FIXED
Endpoints service configuration ID will be fixed to the configuration ID specified by config_id.
- Managed
- MANAGED
Endpoints service configuration ID will be updated with each rollout.
- Endpoints
Api Service Rollout Strategy Unspecified Rollout Strategy - UNSPECIFIED_ROLLOUT_STRATEGY
Not specified. Defaults to FIXED.
- Endpoints
Api Service Rollout Strategy Fixed - FIXED
Endpoints service configuration ID will be fixed to the configuration ID specified by config_id.
- Endpoints
Api Service Rollout Strategy Managed - MANAGED
Endpoints service configuration ID will be updated with each rollout.
- Unspecified
Rollout Strategy - UNSPECIFIED_ROLLOUT_STRATEGY
Not specified. Defaults to FIXED.
- Fixed
- FIXED
Endpoints service configuration ID will be fixed to the configuration ID specified by config_id.
- Managed
- MANAGED
Endpoints service configuration ID will be updated with each rollout.
- Unspecified
Rollout Strategy - UNSPECIFIED_ROLLOUT_STRATEGY
Not specified. Defaults to FIXED.
- Fixed
- FIXED
Endpoints service configuration ID will be fixed to the configuration ID specified by config_id.
- Managed
- MANAGED
Endpoints service configuration ID will be updated with each rollout.
- UNSPECIFIED_ROLLOUT_STRATEGY
- UNSPECIFIED_ROLLOUT_STRATEGY
Not specified. Defaults to FIXED.
- FIXED
- FIXED
Endpoints service configuration ID will be fixed to the configuration ID specified by config_id.
- MANAGED
- MANAGED
Endpoints service configuration ID will be updated with each rollout.
- "UNSPECIFIED_ROLLOUT_STRATEGY"
- UNSPECIFIED_ROLLOUT_STRATEGY
Not specified. Defaults to FIXED.
- "FIXED"
- FIXED
Endpoints service configuration ID will be fixed to the configuration ID specified by config_id.
- "MANAGED"
- MANAGED
Endpoints service configuration ID will be updated with each rollout.
Entrypoint
- Shell string
The format should be a shell command that can be fed to bash -c.
- Shell string
The format should be a shell command that can be fed to bash -c.
- shell String
The format should be a shell command that can be fed to bash -c.
- shell string
The format should be a shell command that can be fed to bash -c.
- shell str
The format should be a shell command that can be fed to bash -c.
- shell String
The format should be a shell command that can be fed to bash -c.
EntrypointResponse
- Shell string
The format should be a shell command that can be fed to bash -c.
- Shell string
The format should be a shell command that can be fed to bash -c.
- shell String
The format should be a shell command that can be fed to bash -c.
- shell string
The format should be a shell command that can be fed to bash -c.
- shell str
The format should be a shell command that can be fed to bash -c.
- shell String
The format should be a shell command that can be fed to bash -c.
ErrorHandler
- Error
Code Pulumi.Google Native. App Engine. V1. Error Handler Error Code Error condition this handler applies to.
- Mime
Type string MIME type of file. Defaults to text/html.
- Static
File string Static file content to be served for this error.
- Error
Code ErrorHandler Error Code Error condition this handler applies to.
- Mime
Type string MIME type of file. Defaults to text/html.
- Static
File string Static file content to be served for this error.
- error
Code ErrorHandler Error Code Error condition this handler applies to.
- mime
Type String MIME type of file. Defaults to text/html.
- static
File String Static file content to be served for this error.
- error
Code ErrorHandler Error Code Error condition this handler applies to.
- mime
Type string MIME type of file. Defaults to text/html.
- static
File string Static file content to be served for this error.
- error_
code ErrorHandler Error Code Error condition this handler applies to.
- mime_
type str MIME type of file. Defaults to text/html.
- static_
file str Static file content to be served for this error.
- error
Code "ERROR_CODE_UNSPECIFIED" | "ERROR_CODE_DEFAULT" | "ERROR_CODE_OVER_QUOTA" | "ERROR_CODE_DOS_API_DENIAL" | "ERROR_CODE_TIMEOUT" Error condition this handler applies to.
- mime
Type String MIME type of file. Defaults to text/html.
- static
File String Static file content to be served for this error.
ErrorHandlerErrorCode
- Error
Code Unspecified - ERROR_CODE_UNSPECIFIED
Not specified. ERROR_CODE_DEFAULT is assumed.
- Error
Code Default - ERROR_CODE_DEFAULT
All other error types.
- Error
Code Over Quota - ERROR_CODE_OVER_QUOTA
Application has exceeded a resource quota.
- Error
Code Dos Api Denial - ERROR_CODE_DOS_API_DENIAL
Client blocked by the application's Denial of Service protection configuration.
- Error
Code Timeout - ERROR_CODE_TIMEOUT
Deadline reached before the application responds.
- Error
Handler Error Code Error Code Unspecified - ERROR_CODE_UNSPECIFIED
Not specified. ERROR_CODE_DEFAULT is assumed.
- Error
Handler Error Code Error Code Default - ERROR_CODE_DEFAULT
All other error types.
- Error
Handler Error Code Error Code Over Quota - ERROR_CODE_OVER_QUOTA
Application has exceeded a resource quota.
- Error
Handler Error Code Error Code Dos Api Denial - ERROR_CODE_DOS_API_DENIAL
Client blocked by the application's Denial of Service protection configuration.
- Error
Handler Error Code Error Code Timeout - ERROR_CODE_TIMEOUT
Deadline reached before the application responds.
- Error
Code Unspecified - ERROR_CODE_UNSPECIFIED
Not specified. ERROR_CODE_DEFAULT is assumed.
- Error
Code Default - ERROR_CODE_DEFAULT
All other error types.
- Error
Code Over Quota - ERROR_CODE_OVER_QUOTA
Application has exceeded a resource quota.
- Error
Code Dos Api Denial - ERROR_CODE_DOS_API_DENIAL
Client blocked by the application's Denial of Service protection configuration.
- Error
Code Timeout - ERROR_CODE_TIMEOUT
Deadline reached before the application responds.
- Error
Code Unspecified - ERROR_CODE_UNSPECIFIED
Not specified. ERROR_CODE_DEFAULT is assumed.
- Error
Code Default - ERROR_CODE_DEFAULT
All other error types.
- Error
Code Over Quota - ERROR_CODE_OVER_QUOTA
Application has exceeded a resource quota.
- Error
Code Dos Api Denial - ERROR_CODE_DOS_API_DENIAL
Client blocked by the application's Denial of Service protection configuration.
- Error
Code Timeout - ERROR_CODE_TIMEOUT
Deadline reached before the application responds.
- ERROR_CODE_UNSPECIFIED
- ERROR_CODE_UNSPECIFIED
Not specified. ERROR_CODE_DEFAULT is assumed.
- ERROR_CODE_DEFAULT
- ERROR_CODE_DEFAULT
All other error types.
- ERROR_CODE_OVER_QUOTA
- ERROR_CODE_OVER_QUOTA
Application has exceeded a resource quota.
- ERROR_CODE_DOS_API_DENIAL
- ERROR_CODE_DOS_API_DENIAL
Client blocked by the application's Denial of Service protection configuration.
- ERROR_CODE_TIMEOUT
- ERROR_CODE_TIMEOUT
Deadline reached before the application responds.
- "ERROR_CODE_UNSPECIFIED"
- ERROR_CODE_UNSPECIFIED
Not specified. ERROR_CODE_DEFAULT is assumed.
- "ERROR_CODE_DEFAULT"
- ERROR_CODE_DEFAULT
All other error types.
- "ERROR_CODE_OVER_QUOTA"
- ERROR_CODE_OVER_QUOTA
Application has exceeded a resource quota.
- "ERROR_CODE_DOS_API_DENIAL"
- ERROR_CODE_DOS_API_DENIAL
Client blocked by the application's Denial of Service protection configuration.
- "ERROR_CODE_TIMEOUT"
- ERROR_CODE_TIMEOUT
Deadline reached before the application responds.
ErrorHandlerResponse
- Error
Code string Error condition this handler applies to.
- Mime
Type string MIME type of file. Defaults to text/html.
- Static
File string Static file content to be served for this error.
- Error
Code string Error condition this handler applies to.
- Mime
Type string MIME type of file. Defaults to text/html.
- Static
File string Static file content to be served for this error.
- error
Code String Error condition this handler applies to.
- mime
Type String MIME type of file. Defaults to text/html.
- static
File String Static file content to be served for this error.
- error
Code string Error condition this handler applies to.
- mime
Type string MIME type of file. Defaults to text/html.
- static
File string Static file content to be served for this error.
- error_
code str Error condition this handler applies to.
- mime_
type str MIME type of file. Defaults to text/html.
- static_
file str Static file content to be served for this error.
- error
Code String Error condition this handler applies to.
- mime
Type String MIME type of file. Defaults to text/html.
- static
File String Static file content to be served for this error.
HealthCheck
- Check
Interval string Interval between health checks.
- Disable
Health boolCheck Whether to explicitly disable health checks for this instance.
- Healthy
Threshold int Number of consecutive successful health checks required before receiving traffic.
- Host string
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- Restart
Threshold int Number of consecutive failed health checks required before an instance is restarted.
- Timeout string
Time before the health check is considered failed.
- Unhealthy
Threshold int Number of consecutive failed health checks required before removing traffic.
- Check
Interval string Interval between health checks.
- Disable
Health boolCheck Whether to explicitly disable health checks for this instance.
- Healthy
Threshold int Number of consecutive successful health checks required before receiving traffic.
- Host string
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- Restart
Threshold int Number of consecutive failed health checks required before an instance is restarted.
- Timeout string
Time before the health check is considered failed.
- Unhealthy
Threshold int Number of consecutive failed health checks required before removing traffic.
- check
Interval String Interval between health checks.
- disable
Health BooleanCheck Whether to explicitly disable health checks for this instance.
- healthy
Threshold Integer Number of consecutive successful health checks required before receiving traffic.
- host String
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- restart
Threshold Integer Number of consecutive failed health checks required before an instance is restarted.
- timeout String
Time before the health check is considered failed.
- unhealthy
Threshold Integer Number of consecutive failed health checks required before removing traffic.
- check
Interval string Interval between health checks.
- disable
Health booleanCheck Whether to explicitly disable health checks for this instance.
- healthy
Threshold number Number of consecutive successful health checks required before receiving traffic.
- host string
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- restart
Threshold number Number of consecutive failed health checks required before an instance is restarted.
- timeout string
Time before the health check is considered failed.
- unhealthy
Threshold number Number of consecutive failed health checks required before removing traffic.
- check_
interval str Interval between health checks.
- disable_
health_ boolcheck Whether to explicitly disable health checks for this instance.
- healthy_
threshold int Number of consecutive successful health checks required before receiving traffic.
- host str
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- restart_
threshold int Number of consecutive failed health checks required before an instance is restarted.
- timeout str
Time before the health check is considered failed.
- unhealthy_
threshold int Number of consecutive failed health checks required before removing traffic.
- check
Interval String Interval between health checks.
- disable
Health BooleanCheck Whether to explicitly disable health checks for this instance.
- healthy
Threshold Number Number of consecutive successful health checks required before receiving traffic.
- host String
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- restart
Threshold Number Number of consecutive failed health checks required before an instance is restarted.
- timeout String
Time before the health check is considered failed.
- unhealthy
Threshold Number Number of consecutive failed health checks required before removing traffic.
HealthCheckResponse
- Check
Interval string Interval between health checks.
- Disable
Health boolCheck Whether to explicitly disable health checks for this instance.
- Healthy
Threshold int Number of consecutive successful health checks required before receiving traffic.
- Host string
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- Restart
Threshold int Number of consecutive failed health checks required before an instance is restarted.
- Timeout string
Time before the health check is considered failed.
- Unhealthy
Threshold int Number of consecutive failed health checks required before removing traffic.
- Check
Interval string Interval between health checks.
- Disable
Health boolCheck Whether to explicitly disable health checks for this instance.
- Healthy
Threshold int Number of consecutive successful health checks required before receiving traffic.
- Host string
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- Restart
Threshold int Number of consecutive failed health checks required before an instance is restarted.
- Timeout string
Time before the health check is considered failed.
- Unhealthy
Threshold int Number of consecutive failed health checks required before removing traffic.
- check
Interval String Interval between health checks.
- disable
Health BooleanCheck Whether to explicitly disable health checks for this instance.
- healthy
Threshold Integer Number of consecutive successful health checks required before receiving traffic.
- host String
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- restart
Threshold Integer Number of consecutive failed health checks required before an instance is restarted.
- timeout String
Time before the health check is considered failed.
- unhealthy
Threshold Integer Number of consecutive failed health checks required before removing traffic.
- check
Interval string Interval between health checks.
- disable
Health booleanCheck Whether to explicitly disable health checks for this instance.
- healthy
Threshold number Number of consecutive successful health checks required before receiving traffic.
- host string
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- restart
Threshold number Number of consecutive failed health checks required before an instance is restarted.
- timeout string
Time before the health check is considered failed.
- unhealthy
Threshold number Number of consecutive failed health checks required before removing traffic.
- check_
interval str Interval between health checks.
- disable_
health_ boolcheck Whether to explicitly disable health checks for this instance.
- healthy_
threshold int Number of consecutive successful health checks required before receiving traffic.
- host str
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- restart_
threshold int Number of consecutive failed health checks required before an instance is restarted.
- timeout str
Time before the health check is considered failed.
- unhealthy_
threshold int Number of consecutive failed health checks required before removing traffic.
- check
Interval String Interval between health checks.
- disable
Health BooleanCheck Whether to explicitly disable health checks for this instance.
- healthy
Threshold Number Number of consecutive successful health checks required before receiving traffic.
- host String
Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"
- restart
Threshold Number Number of consecutive failed health checks required before an instance is restarted.
- timeout String
Time before the health check is considered failed.
- unhealthy
Threshold Number Number of consecutive failed health checks required before removing traffic.
Library
LibraryResponse
LivenessCheck
- Check
Interval string Interval between health checks.
- Failure
Threshold int Number of consecutive failed checks required before considering the VM unhealthy.
- Host string
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- Initial
Delay string The initial delay before starting to execute the checks.
- Path string
The request path.
- Success
Threshold int Number of consecutive successful checks required before considering the VM healthy.
- Timeout string
Time before the check is considered failed.
- Check
Interval string Interval between health checks.
- Failure
Threshold int Number of consecutive failed checks required before considering the VM unhealthy.
- Host string
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- Initial
Delay string The initial delay before starting to execute the checks.
- Path string
The request path.
- Success
Threshold int Number of consecutive successful checks required before considering the VM healthy.
- Timeout string
Time before the check is considered failed.
- check
Interval String Interval between health checks.
- failure
Threshold Integer Number of consecutive failed checks required before considering the VM unhealthy.
- host String
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- initial
Delay String The initial delay before starting to execute the checks.
- path String
The request path.
- success
Threshold Integer Number of consecutive successful checks required before considering the VM healthy.
- timeout String
Time before the check is considered failed.
- check
Interval string Interval between health checks.
- failure
Threshold number Number of consecutive failed checks required before considering the VM unhealthy.
- host string
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- initial
Delay string The initial delay before starting to execute the checks.
- path string
The request path.
- success
Threshold number Number of consecutive successful checks required before considering the VM healthy.
- timeout string
Time before the check is considered failed.
- check_
interval str Interval between health checks.
- failure_
threshold int Number of consecutive failed checks required before considering the VM unhealthy.
- host str
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- initial_
delay str The initial delay before starting to execute the checks.
- path str
The request path.
- success_
threshold int Number of consecutive successful checks required before considering the VM healthy.
- timeout str
Time before the check is considered failed.
- check
Interval String Interval between health checks.
- failure
Threshold Number Number of consecutive failed checks required before considering the VM unhealthy.
- host String
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- initial
Delay String The initial delay before starting to execute the checks.
- path String
The request path.
- success
Threshold Number Number of consecutive successful checks required before considering the VM healthy.
- timeout String
Time before the check is considered failed.
LivenessCheckResponse
- Check
Interval string Interval between health checks.
- Failure
Threshold int Number of consecutive failed checks required before considering the VM unhealthy.
- Host string
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- Initial
Delay string The initial delay before starting to execute the checks.
- Path string
The request path.
- Success
Threshold int Number of consecutive successful checks required before considering the VM healthy.
- Timeout string
Time before the check is considered failed.
- Check
Interval string Interval between health checks.
- Failure
Threshold int Number of consecutive failed checks required before considering the VM unhealthy.
- Host string
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- Initial
Delay string The initial delay before starting to execute the checks.
- Path string
The request path.
- Success
Threshold int Number of consecutive successful checks required before considering the VM healthy.
- Timeout string
Time before the check is considered failed.
- check
Interval String Interval between health checks.
- failure
Threshold Integer Number of consecutive failed checks required before considering the VM unhealthy.
- host String
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- initial
Delay String The initial delay before starting to execute the checks.
- path String
The request path.
- success
Threshold Integer Number of consecutive successful checks required before considering the VM healthy.
- timeout String
Time before the check is considered failed.
- check
Interval string Interval between health checks.
- failure
Threshold number Number of consecutive failed checks required before considering the VM unhealthy.
- host string
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- initial
Delay string The initial delay before starting to execute the checks.
- path string
The request path.
- success
Threshold number Number of consecutive successful checks required before considering the VM healthy.
- timeout string
Time before the check is considered failed.
- check_
interval str Interval between health checks.
- failure_
threshold int Number of consecutive failed checks required before considering the VM unhealthy.
- host str
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- initial_
delay str The initial delay before starting to execute the checks.
- path str
The request path.
- success_
threshold int Number of consecutive successful checks required before considering the VM healthy.
- timeout str
Time before the check is considered failed.
- check
Interval String Interval between health checks.
- failure
Threshold Number Number of consecutive failed checks required before considering the VM unhealthy.
- host String
Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"
- initial
Delay String The initial delay before starting to execute the checks.
- path String
The request path.
- success
Threshold Number Number of consecutive successful checks required before considering the VM healthy.
- timeout String
Time before the check is considered failed.
ManualScaling
- Instances int
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- Instances int
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- instances Integer
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- instances number
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- instances int
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- instances Number
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
ManualScalingResponse
- Instances int
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- Instances int
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- instances Integer
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- instances number
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- instances int
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
- instances Number
Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function.
Network
- Forwarded
Ports List<string> List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- Instance
Ip Pulumi.Mode Google Native. App Engine. V1. Network Instance Ip Mode The IP mode for instances. Only applicable in the App Engine flexible environment.
- Instance
Tag string Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- Name string
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- Session
Affinity bool Enable session affinity. Only applicable in the App Engine flexible environment.
- Subnetwork
Name string Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- Forwarded
Ports []string List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- Instance
Ip NetworkMode Instance Ip Mode The IP mode for instances. Only applicable in the App Engine flexible environment.
- Instance
Tag string Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- Name string
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- Session
Affinity bool Enable session affinity. Only applicable in the App Engine flexible environment.
- Subnetwork
Name string Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- forwarded
Ports List<String> List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- instance
Ip NetworkMode Instance Ip Mode The IP mode for instances. Only applicable in the App Engine flexible environment.
- instance
Tag String Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- name String
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- session
Affinity Boolean Enable session affinity. Only applicable in the App Engine flexible environment.
- subnetwork
Name String Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- forwarded
Ports string[] List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- instance
Ip NetworkMode Instance Ip Mode The IP mode for instances. Only applicable in the App Engine flexible environment.
- instance
Tag string Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- name string
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- session
Affinity boolean Enable session affinity. Only applicable in the App Engine flexible environment.
- subnetwork
Name string Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- forwarded_
ports Sequence[str] List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- instance_
ip_ Networkmode Instance Ip Mode The IP mode for instances. Only applicable in the App Engine flexible environment.
- instance_
tag str Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- name str
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- session_
affinity bool Enable session affinity. Only applicable in the App Engine flexible environment.
- subnetwork_
name str Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- forwarded
Ports List<String> List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- instance
Ip "INSTANCE_IP_MODE_UNSPECIFIED" | "EXTERNAL" | "INTERNAL"Mode The IP mode for instances. Only applicable in the App Engine flexible environment.
- instance
Tag String Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- name String
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- session
Affinity Boolean Enable session affinity. Only applicable in the App Engine flexible environment.
- subnetwork
Name String Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
NetworkInstanceIpMode
- Instance
Ip Mode Unspecified - INSTANCE_IP_MODE_UNSPECIFIED
Unspecified is treated as EXTERNAL.
- External
- EXTERNAL
Instances are created with both internal and external IP addresses.
- Internal
- INTERNAL
Instances are created with internal IP addresses only.
- Network
Instance Ip Mode Instance Ip Mode Unspecified - INSTANCE_IP_MODE_UNSPECIFIED
Unspecified is treated as EXTERNAL.
- Network
Instance Ip Mode External - EXTERNAL
Instances are created with both internal and external IP addresses.
- Network
Instance Ip Mode Internal - INTERNAL
Instances are created with internal IP addresses only.
- Instance
Ip Mode Unspecified - INSTANCE_IP_MODE_UNSPECIFIED
Unspecified is treated as EXTERNAL.
- External
- EXTERNAL
Instances are created with both internal and external IP addresses.
- Internal
- INTERNAL
Instances are created with internal IP addresses only.
- Instance
Ip Mode Unspecified - INSTANCE_IP_MODE_UNSPECIFIED
Unspecified is treated as EXTERNAL.
- External
- EXTERNAL
Instances are created with both internal and external IP addresses.
- Internal
- INTERNAL
Instances are created with internal IP addresses only.
- INSTANCE_IP_MODE_UNSPECIFIED
- INSTANCE_IP_MODE_UNSPECIFIED
Unspecified is treated as EXTERNAL.
- EXTERNAL
- EXTERNAL
Instances are created with both internal and external IP addresses.
- INTERNAL
- INTERNAL
Instances are created with internal IP addresses only.
- "INSTANCE_IP_MODE_UNSPECIFIED"
- INSTANCE_IP_MODE_UNSPECIFIED
Unspecified is treated as EXTERNAL.
- "EXTERNAL"
- EXTERNAL
Instances are created with both internal and external IP addresses.
- "INTERNAL"
- INTERNAL
Instances are created with internal IP addresses only.
NetworkResponse
- Forwarded
Ports List<string> List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- Instance
Ip stringMode The IP mode for instances. Only applicable in the App Engine flexible environment.
- Instance
Tag string Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- Name string
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- Session
Affinity bool Enable session affinity. Only applicable in the App Engine flexible environment.
- Subnetwork
Name string Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- Forwarded
Ports []string List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- Instance
Ip stringMode The IP mode for instances. Only applicable in the App Engine flexible environment.
- Instance
Tag string Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- Name string
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- Session
Affinity bool Enable session affinity. Only applicable in the App Engine flexible environment.
- Subnetwork
Name string Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- forwarded
Ports List<String> List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- instance
Ip StringMode The IP mode for instances. Only applicable in the App Engine flexible environment.
- instance
Tag String Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- name String
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- session
Affinity Boolean Enable session affinity. Only applicable in the App Engine flexible environment.
- subnetwork
Name String Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- forwarded
Ports string[] List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- instance
Ip stringMode The IP mode for instances. Only applicable in the App Engine flexible environment.
- instance
Tag string Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- name string
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- session
Affinity boolean Enable session affinity. Only applicable in the App Engine flexible environment.
- subnetwork
Name string Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- forwarded_
ports Sequence[str] List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- instance_
ip_ strmode The IP mode for instances. Only applicable in the App Engine flexible environment.
- instance_
tag str Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- name str
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- session_
affinity bool Enable session affinity. Only applicable in the App Engine flexible environment.
- subnetwork_
name str Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
- forwarded
Ports List<String> List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment.
- instance
Ip StringMode The IP mode for instances. Only applicable in the App Engine flexible environment.
- instance
Tag String Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment.
- name String
Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default.
- session
Affinity Boolean Enable session affinity. Only applicable in the App Engine flexible environment.
- subnetwork
Name String Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.If a subnetwork name is specified, a network name will also be required unless it is for the default network. If the network that the instance is being created in is a Legacy network, then the IP address is allocated from the IPv4Range. If the network that the instance is being created in is an auto Subnet Mode Network, then only network name should be specified (not the subnetwork_name) and the IP address is created from the IPCidrRange of the subnetwork that exists in that zone for that network. If the network that the instance is being created in is a custom Subnet Mode Network, then the subnetwork_name must be specified and the IP address is created from the IPCidrRange of the subnetwork.If specified, the subnetwork must exist in the same region as the App Engine flexible environment application.
NetworkUtilization
- Target
Received intBytes Per Second Target bytes received per second.
- Target
Received intPackets Per Second Target packets received per second.
- Target
Sent intBytes Per Second Target bytes sent per second.
- Target
Sent intPackets Per Second Target packets sent per second.
- Target
Received intBytes Per Second Target bytes received per second.
- Target
Received intPackets Per Second Target packets received per second.
- Target
Sent intBytes Per Second Target bytes sent per second.
- Target
Sent intPackets Per Second Target packets sent per second.
- target
Received IntegerBytes Per Second Target bytes received per second.
- target
Received IntegerPackets Per Second Target packets received per second.
- target
Sent IntegerBytes Per Second Target bytes sent per second.
- target
Sent IntegerPackets Per Second Target packets sent per second.
- target
Received numberBytes Per Second Target bytes received per second.
- target
Received numberPackets Per Second Target packets received per second.
- target
Sent numberBytes Per Second Target bytes sent per second.
- target
Sent numberPackets Per Second Target packets sent per second.
- target_
received_ intbytes_ per_ second Target bytes received per second.
- target_
received_ intpackets_ per_ second Target packets received per second.
- target_
sent_ intbytes_ per_ second Target bytes sent per second.
- target_
sent_ intpackets_ per_ second Target packets sent per second.
- target
Received NumberBytes Per Second Target bytes received per second.
- target
Received NumberPackets Per Second Target packets received per second.
- target
Sent NumberBytes Per Second Target bytes sent per second.
- target
Sent NumberPackets Per Second Target packets sent per second.
NetworkUtilizationResponse
- Target
Received intBytes Per Second Target bytes received per second.
- Target
Received intPackets Per Second Target packets received per second.
- Target
Sent intBytes Per Second Target bytes sent per second.
- Target
Sent intPackets Per Second Target packets sent per second.
- Target
Received intBytes Per Second Target bytes received per second.
- Target
Received intPackets Per Second Target packets received per second.
- Target
Sent intBytes Per Second Target bytes sent per second.
- Target
Sent intPackets Per Second Target packets sent per second.
- target
Received IntegerBytes Per Second Target bytes received per second.
- target
Received IntegerPackets Per Second Target packets received per second.
- target
Sent IntegerBytes Per Second Target bytes sent per second.
- target
Sent IntegerPackets Per Second Target packets sent per second.
- target
Received numberBytes Per Second Target bytes received per second.
- target
Received numberPackets Per Second Target packets received per second.
- target
Sent numberBytes Per Second Target bytes sent per second.
- target
Sent numberPackets Per Second Target packets sent per second.
- target_
received_ intbytes_ per_ second Target bytes received per second.
- target_
received_ intpackets_ per_ second Target packets received per second.
- target_
sent_ intbytes_ per_ second Target bytes sent per second.
- target_
sent_ intpackets_ per_ second Target packets sent per second.
- target
Received NumberBytes Per Second Target bytes received per second.
- target
Received NumberPackets Per Second Target packets received per second.
- target
Sent NumberBytes Per Second Target bytes sent per second.
- target
Sent NumberPackets Per Second Target packets sent per second.
ReadinessCheck
- App
Start stringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- Check
Interval string Interval between health checks.
- Failure
Threshold int Number of consecutive failed checks required before removing traffic.
- Host string
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- Path string
The request path.
- Success
Threshold int Number of consecutive successful checks required before receiving traffic.
- Timeout string
Time before the check is considered failed.
- App
Start stringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- Check
Interval string Interval between health checks.
- Failure
Threshold int Number of consecutive failed checks required before removing traffic.
- Host string
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- Path string
The request path.
- Success
Threshold int Number of consecutive successful checks required before receiving traffic.
- Timeout string
Time before the check is considered failed.
- app
Start StringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- check
Interval String Interval between health checks.
- failure
Threshold Integer Number of consecutive failed checks required before removing traffic.
- host String
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- path String
The request path.
- success
Threshold Integer Number of consecutive successful checks required before receiving traffic.
- timeout String
Time before the check is considered failed.
- app
Start stringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- check
Interval string Interval between health checks.
- failure
Threshold number Number of consecutive failed checks required before removing traffic.
- host string
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- path string
The request path.
- success
Threshold number Number of consecutive successful checks required before receiving traffic.
- timeout string
Time before the check is considered failed.
- app_
start_ strtimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- check_
interval str Interval between health checks.
- failure_
threshold int Number of consecutive failed checks required before removing traffic.
- host str
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- path str
The request path.
- success_
threshold int Number of consecutive successful checks required before receiving traffic.
- timeout str
Time before the check is considered failed.
- app
Start StringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- check
Interval String Interval between health checks.
- failure
Threshold Number Number of consecutive failed checks required before removing traffic.
- host String
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- path String
The request path.
- success
Threshold Number Number of consecutive successful checks required before receiving traffic.
- timeout String
Time before the check is considered failed.
ReadinessCheckResponse
- App
Start stringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- Check
Interval string Interval between health checks.
- Failure
Threshold int Number of consecutive failed checks required before removing traffic.
- Host string
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- Path string
The request path.
- Success
Threshold int Number of consecutive successful checks required before receiving traffic.
- Timeout string
Time before the check is considered failed.
- App
Start stringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- Check
Interval string Interval between health checks.
- Failure
Threshold int Number of consecutive failed checks required before removing traffic.
- Host string
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- Path string
The request path.
- Success
Threshold int Number of consecutive successful checks required before receiving traffic.
- Timeout string
Time before the check is considered failed.
- app
Start StringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- check
Interval String Interval between health checks.
- failure
Threshold Integer Number of consecutive failed checks required before removing traffic.
- host String
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- path String
The request path.
- success
Threshold Integer Number of consecutive successful checks required before receiving traffic.
- timeout String
Time before the check is considered failed.
- app
Start stringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- check
Interval string Interval between health checks.
- failure
Threshold number Number of consecutive failed checks required before removing traffic.
- host string
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- path string
The request path.
- success
Threshold number Number of consecutive successful checks required before receiving traffic.
- timeout string
Time before the check is considered failed.
- app_
start_ strtimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- check_
interval str Interval between health checks.
- failure_
threshold int Number of consecutive failed checks required before removing traffic.
- host str
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- path str
The request path.
- success_
threshold int Number of consecutive successful checks required before receiving traffic.
- timeout str
Time before the check is considered failed.
- app
Start StringTimeout A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
- check
Interval String Interval between health checks.
- failure
Threshold Number Number of consecutive failed checks required before removing traffic.
- host String
Host header to send when performing a HTTP Readiness check. Example: "myapp.appspot.com"
- path String
The request path.
- success
Threshold Number Number of consecutive successful checks required before receiving traffic.
- timeout String
Time before the check is considered failed.
RequestUtilization
- Target
Concurrent intRequests Target number of concurrent requests.
- Target
Request intCount Per Second Target requests per second.
- Target
Concurrent intRequests Target number of concurrent requests.
- Target
Request intCount Per Second Target requests per second.
- target
Concurrent IntegerRequests Target number of concurrent requests.
- target
Request IntegerCount Per Second Target requests per second.
- target
Concurrent numberRequests Target number of concurrent requests.
- target
Request numberCount Per Second Target requests per second.
- target_
concurrent_ intrequests Target number of concurrent requests.
- target_
request_ intcount_ per_ second Target requests per second.
- target
Concurrent NumberRequests Target number of concurrent requests.
- target
Request NumberCount Per Second Target requests per second.
RequestUtilizationResponse
- Target
Concurrent intRequests Target number of concurrent requests.
- Target
Request intCount Per Second Target requests per second.
- Target
Concurrent intRequests Target number of concurrent requests.
- Target
Request intCount Per Second Target requests per second.
- target
Concurrent IntegerRequests Target number of concurrent requests.
- target
Request IntegerCount Per Second Target requests per second.
- target
Concurrent numberRequests Target number of concurrent requests.
- target
Request numberCount Per Second Target requests per second.
- target_
concurrent_ intrequests Target number of concurrent requests.
- target_
request_ intcount_ per_ second Target requests per second.
- target
Concurrent NumberRequests Target number of concurrent requests.
- target
Request NumberCount Per Second Target requests per second.
Resources
- Cpu double
Number of CPU cores needed.
- Disk
Gb double Disk size (GB) needed.
- Kms
Key stringReference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- Memory
Gb double Memory (GB) needed.
- Volumes
List<Pulumi.
Google Native. App Engine. V1. Inputs. Volume> User specified volumes.
- cpu Double
Number of CPU cores needed.
- disk
Gb Double Disk size (GB) needed.
- kms
Key StringReference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- memory
Gb Double Memory (GB) needed.
- volumes List<Volume>
User specified volumes.
- cpu float
Number of CPU cores needed.
- disk_
gb float Disk size (GB) needed.
- kms_
key_ strreference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- memory_
gb float Memory (GB) needed.
- volumes Sequence[Volume]
User specified volumes.
- cpu Number
Number of CPU cores needed.
- disk
Gb Number Disk size (GB) needed.
- kms
Key StringReference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- memory
Gb Number Memory (GB) needed.
- volumes List<Property Map>
User specified volumes.
ResourcesResponse
- Cpu double
Number of CPU cores needed.
- Disk
Gb double Disk size (GB) needed.
- Kms
Key stringReference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- Memory
Gb double Memory (GB) needed.
- Volumes
List<Pulumi.
Google Native. App Engine. V1. Inputs. Volume Response> User specified volumes.
- Cpu float64
Number of CPU cores needed.
- Disk
Gb float64 Disk size (GB) needed.
- Kms
Key stringReference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- Memory
Gb float64 Memory (GB) needed.
- Volumes
[]Volume
Response User specified volumes.
- cpu Double
Number of CPU cores needed.
- disk
Gb Double Disk size (GB) needed.
- kms
Key StringReference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- memory
Gb Double Memory (GB) needed.
- volumes
List<Volume
Response> User specified volumes.
- cpu number
Number of CPU cores needed.
- disk
Gb number Disk size (GB) needed.
- kms
Key stringReference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- memory
Gb number Memory (GB) needed.
- volumes
Volume
Response[] User specified volumes.
- cpu float
Number of CPU cores needed.
- disk_
gb float Disk size (GB) needed.
- kms_
key_ strreference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- memory_
gb float Memory (GB) needed.
- volumes
Sequence[Volume
Response] User specified volumes.
- cpu Number
Number of CPU cores needed.
- disk
Gb Number Disk size (GB) needed.
- kms
Key StringReference The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk
- memory
Gb Number Memory (GB) needed.
- volumes List<Property Map>
User specified volumes.
ScriptHandler
- Script
Path string Path to the script from the application root directory.
- Script
Path string Path to the script from the application root directory.
- script
Path String Path to the script from the application root directory.
- script
Path string Path to the script from the application root directory.
- script_
path str Path to the script from the application root directory.
- script
Path String Path to the script from the application root directory.
ScriptHandlerResponse
- Script
Path string Path to the script from the application root directory.
- Script
Path string Path to the script from the application root directory.
- script
Path String Path to the script from the application root directory.
- script
Path string Path to the script from the application root directory.
- script_
path str Path to the script from the application root directory.
- script
Path String Path to the script from the application root directory.
StandardSchedulerSettings
- Max
Instances int Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- Min
Instances int Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- Target
Cpu doubleUtilization Target CPU utilization ratio to maintain when scaling.
- Target
Throughput doubleUtilization Target throughput utilization ratio to maintain when scaling
- Max
Instances int Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- Min
Instances int Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- Target
Cpu float64Utilization Target CPU utilization ratio to maintain when scaling.
- Target
Throughput float64Utilization Target throughput utilization ratio to maintain when scaling
- max
Instances Integer Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- min
Instances Integer Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- target
Cpu DoubleUtilization Target CPU utilization ratio to maintain when scaling.
- target
Throughput DoubleUtilization Target throughput utilization ratio to maintain when scaling
- max
Instances number Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- min
Instances number Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- target
Cpu numberUtilization Target CPU utilization ratio to maintain when scaling.
- target
Throughput numberUtilization Target throughput utilization ratio to maintain when scaling
- max_
instances int Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- min_
instances int Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- target_
cpu_ floatutilization Target CPU utilization ratio to maintain when scaling.
- target_
throughput_ floatutilization Target throughput utilization ratio to maintain when scaling
- max
Instances Number Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- min
Instances Number Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- target
Cpu NumberUtilization Target CPU utilization ratio to maintain when scaling.
- target
Throughput NumberUtilization Target throughput utilization ratio to maintain when scaling
StandardSchedulerSettingsResponse
- Max
Instances int Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- Min
Instances int Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- Target
Cpu doubleUtilization Target CPU utilization ratio to maintain when scaling.
- Target
Throughput doubleUtilization Target throughput utilization ratio to maintain when scaling
- Max
Instances int Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- Min
Instances int Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- Target
Cpu float64Utilization Target CPU utilization ratio to maintain when scaling.
- Target
Throughput float64Utilization Target throughput utilization ratio to maintain when scaling
- max
Instances Integer Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- min
Instances Integer Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- target
Cpu DoubleUtilization Target CPU utilization ratio to maintain when scaling.
- target
Throughput DoubleUtilization Target throughput utilization ratio to maintain when scaling
- max
Instances number Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- min
Instances number Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- target
Cpu numberUtilization Target CPU utilization ratio to maintain when scaling.
- target
Throughput numberUtilization Target throughput utilization ratio to maintain when scaling
- max_
instances int Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- min_
instances int Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- target_
cpu_ floatutilization Target CPU utilization ratio to maintain when scaling.
- target_
throughput_ floatutilization Target throughput utilization ratio to maintain when scaling
- max
Instances Number Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
- min
Instances Number Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
- target
Cpu NumberUtilization Target CPU utilization ratio to maintain when scaling.
- target
Throughput NumberUtilization Target throughput utilization ratio to maintain when scaling
StaticFilesHandler
- Application
Readable bool Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- Expiration string
Time a static file served by this handler should be cached by web proxies and browsers.
- Http
Headers Dictionary<string, string> HTTP headers to use for all responses from these URLs.
- Mime
Type string MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- Path string
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- Require
Matching boolFile Whether this handler should match the request if the file referenced by the handler does not exist.
- Upload
Path stringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
- Application
Readable bool Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- Expiration string
Time a static file served by this handler should be cached by web proxies and browsers.
- Http
Headers map[string]string HTTP headers to use for all responses from these URLs.
- Mime
Type string MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- Path string
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- Require
Matching boolFile Whether this handler should match the request if the file referenced by the handler does not exist.
- Upload
Path stringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
- application
Readable Boolean Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- expiration String
Time a static file served by this handler should be cached by web proxies and browsers.
- http
Headers Map<String,String> HTTP headers to use for all responses from these URLs.
- mime
Type String MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- path String
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- require
Matching BooleanFile Whether this handler should match the request if the file referenced by the handler does not exist.
- upload
Path StringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
- application
Readable boolean Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- expiration string
Time a static file served by this handler should be cached by web proxies and browsers.
- http
Headers {[key: string]: string} HTTP headers to use for all responses from these URLs.
- mime
Type string MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- path string
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- require
Matching booleanFile Whether this handler should match the request if the file referenced by the handler does not exist.
- upload
Path stringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
- application_
readable bool Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- expiration str
Time a static file served by this handler should be cached by web proxies and browsers.
- http_
headers Mapping[str, str] HTTP headers to use for all responses from these URLs.
- mime_
type str MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- path str
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- require_
matching_ boolfile Whether this handler should match the request if the file referenced by the handler does not exist.
- upload_
path_ strregex Regular expression that matches the file paths for all files that should be referenced by this handler.
- application
Readable Boolean Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- expiration String
Time a static file served by this handler should be cached by web proxies and browsers.
- http
Headers Map<String> HTTP headers to use for all responses from these URLs.
- mime
Type String MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- path String
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- require
Matching BooleanFile Whether this handler should match the request if the file referenced by the handler does not exist.
- upload
Path StringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
StaticFilesHandlerResponse
- Application
Readable bool Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- Expiration string
Time a static file served by this handler should be cached by web proxies and browsers.
- Http
Headers Dictionary<string, string> HTTP headers to use for all responses from these URLs.
- Mime
Type string MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- Path string
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- Require
Matching boolFile Whether this handler should match the request if the file referenced by the handler does not exist.
- Upload
Path stringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
- Application
Readable bool Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- Expiration string
Time a static file served by this handler should be cached by web proxies and browsers.
- Http
Headers map[string]string HTTP headers to use for all responses from these URLs.
- Mime
Type string MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- Path string
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- Require
Matching boolFile Whether this handler should match the request if the file referenced by the handler does not exist.
- Upload
Path stringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
- application
Readable Boolean Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- expiration String
Time a static file served by this handler should be cached by web proxies and browsers.
- http
Headers Map<String,String> HTTP headers to use for all responses from these URLs.
- mime
Type String MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- path String
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- require
Matching BooleanFile Whether this handler should match the request if the file referenced by the handler does not exist.
- upload
Path StringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
- application
Readable boolean Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- expiration string
Time a static file served by this handler should be cached by web proxies and browsers.
- http
Headers {[key: string]: string} HTTP headers to use for all responses from these URLs.
- mime
Type string MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- path string
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- require
Matching booleanFile Whether this handler should match the request if the file referenced by the handler does not exist.
- upload
Path stringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
- application_
readable bool Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- expiration str
Time a static file served by this handler should be cached by web proxies and browsers.
- http_
headers Mapping[str, str] HTTP headers to use for all responses from these URLs.
- mime_
type str MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- path str
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- require_
matching_ boolfile Whether this handler should match the request if the file referenced by the handler does not exist.
- upload_
path_ strregex Regular expression that matches the file paths for all files that should be referenced by this handler.
- application
Readable Boolean Whether files should also be uploaded as code data. By default, files declared in static file handlers are uploaded as static data and are only served to end users; they cannot be read by the application. If enabled, uploads are charged against both your code and static data storage resource quotas.
- expiration String
Time a static file served by this handler should be cached by web proxies and browsers.
- http
Headers Map<String> HTTP headers to use for all responses from these URLs.
- mime
Type String MIME type used to serve all files served by this handler.Defaults to file-specific MIME types, which are derived from each file's filename extension.
- path String
Path to the static files matched by the URL pattern, from the application root directory. The path can refer to text matched in groupings in the URL pattern.
- require
Matching BooleanFile Whether this handler should match the request if the file referenced by the handler does not exist.
- upload
Path StringRegex Regular expression that matches the file paths for all files that should be referenced by this handler.
UrlMap
- Api
Endpoint Pulumi.Google Native. App Engine. V1. Inputs. Api Endpoint Handler Uses API Endpoints to handle requests.
- Auth
Fail Pulumi.Action Google Native. App Engine. V1. Url Map Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- Login
Pulumi.
Google Native. App Engine. V1. Url Map Login Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- Redirect
Http Pulumi.Response Code Google Native. App Engine. V1. Url Map Redirect Http Response Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- Script
Pulumi.
Google Native. App Engine. V1. Inputs. Script Handler Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- Security
Level Pulumi.Google Native. App Engine. V1. Url Map Security Level Security (HTTPS) enforcement for this URL.
- Static
Files Pulumi.Google Native. App Engine. V1. Inputs. Static Files Handler Returns the contents of a file, such as an image, as the response.
- Url
Regex string URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- Api
Endpoint ApiEndpoint Handler Uses API Endpoints to handle requests.
- Auth
Fail UrlAction Map Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- Login
Url
Map Login Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- Redirect
Http UrlResponse Code Map Redirect Http Response Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- Script
Script
Handler Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- Security
Level UrlMap Security Level Security (HTTPS) enforcement for this URL.
- Static
Files StaticFiles Handler Returns the contents of a file, such as an image, as the response.
- Url
Regex string URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- api
Endpoint ApiEndpoint Handler Uses API Endpoints to handle requests.
- auth
Fail UrlAction Map Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- login
Url
Map Login Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- redirect
Http UrlResponse Code Map Redirect Http Response Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- script
Script
Handler Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- security
Level UrlMap Security Level Security (HTTPS) enforcement for this URL.
- static
Files StaticFiles Handler Returns the contents of a file, such as an image, as the response.
- url
Regex String URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- api
Endpoint ApiEndpoint Handler Uses API Endpoints to handle requests.
- auth
Fail UrlAction Map Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- login
Url
Map Login Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- redirect
Http UrlResponse Code Map Redirect Http Response Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- script
Script
Handler Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- security
Level UrlMap Security Level Security (HTTPS) enforcement for this URL.
- static
Files StaticFiles Handler Returns the contents of a file, such as an image, as the response.
- url
Regex string URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- api_
endpoint ApiEndpoint Handler Uses API Endpoints to handle requests.
- auth_
fail_ Urlaction Map Auth Fail Action Action to take when users access resources that require authentication. Defaults to redirect.
- login
Url
Map Login Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- redirect_
http_ Urlresponse_ code Map Redirect Http Response Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- script
Script
Handler Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- security_
level UrlMap Security Level Security (HTTPS) enforcement for this URL.
- static_
files StaticFiles Handler Returns the contents of a file, such as an image, as the response.
- url_
regex str URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- api
Endpoint Property Map Uses API Endpoints to handle requests.
- auth
Fail "AUTH_FAIL_ACTION_UNSPECIFIED" | "AUTH_FAIL_ACTION_REDIRECT" | "AUTH_FAIL_ACTION_UNAUTHORIZED"Action Action to take when users access resources that require authentication. Defaults to redirect.
- login "LOGIN_UNSPECIFIED" | "LOGIN_OPTIONAL" | "LOGIN_ADMIN" | "LOGIN_REQUIRED"
Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- redirect
Http "REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED" | "REDIRECT_HTTP_RESPONSE_CODE_301" | "REDIRECT_HTTP_RESPONSE_CODE_302" | "REDIRECT_HTTP_RESPONSE_CODE_303" | "REDIRECT_HTTP_RESPONSE_CODE_307"Response Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- script Property Map
Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- security
Level "SECURE_UNSPECIFIED" | "SECURE_DEFAULT" | "SECURE_NEVER" | "SECURE_OPTIONAL" | "SECURE_ALWAYS" Security (HTTPS) enforcement for this URL.
- static
Files Property Map Returns the contents of a file, such as an image, as the response.
- url
Regex String URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
UrlMapAuthFailAction
- Auth
Fail Action Unspecified - AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- Auth
Fail Action Redirect - AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- Auth
Fail Action Unauthorized - AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- Url
Map Auth Fail Action Auth Fail Action Unspecified - AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- Url
Map Auth Fail Action Auth Fail Action Redirect - AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- Url
Map Auth Fail Action Auth Fail Action Unauthorized - AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- Auth
Fail Action Unspecified - AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- Auth
Fail Action Redirect - AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- Auth
Fail Action Unauthorized - AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- Auth
Fail Action Unspecified - AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- Auth
Fail Action Redirect - AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- Auth
Fail Action Unauthorized - AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- AUTH_FAIL_ACTION_UNSPECIFIED
- AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- AUTH_FAIL_ACTION_REDIRECT
- AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- AUTH_FAIL_ACTION_UNAUTHORIZED
- AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
- "AUTH_FAIL_ACTION_UNSPECIFIED"
- AUTH_FAIL_ACTION_UNSPECIFIED
Not specified. AUTH_FAIL_ACTION_REDIRECT is assumed.
- "AUTH_FAIL_ACTION_REDIRECT"
- AUTH_FAIL_ACTION_REDIRECT
Redirects user to "accounts.google.com". The user is redirected back to the application URL after signing in or creating an account.
- "AUTH_FAIL_ACTION_UNAUTHORIZED"
- AUTH_FAIL_ACTION_UNAUTHORIZED
Rejects request with a 401 HTTP status code and an error message.
UrlMapLogin
- Login
Unspecified - LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- Login
Optional - LOGIN_OPTIONAL
Does not require that the user is signed in.
- Login
Admin - LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- Login
Required - LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- Url
Map Login Login Unspecified - LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- Url
Map Login Login Optional - LOGIN_OPTIONAL
Does not require that the user is signed in.
- Url
Map Login Login Admin - LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- Url
Map Login Login Required - LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- Login
Unspecified - LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- Login
Optional - LOGIN_OPTIONAL
Does not require that the user is signed in.
- Login
Admin - LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- Login
Required - LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- Login
Unspecified - LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- Login
Optional - LOGIN_OPTIONAL
Does not require that the user is signed in.
- Login
Admin - LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- Login
Required - LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- LOGIN_UNSPECIFIED
- LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- LOGIN_OPTIONAL
- LOGIN_OPTIONAL
Does not require that the user is signed in.
- LOGIN_ADMIN
- LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- LOGIN_REQUIRED
- LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
- "LOGIN_UNSPECIFIED"
- LOGIN_UNSPECIFIED
Not specified. LOGIN_OPTIONAL is assumed.
- "LOGIN_OPTIONAL"
- LOGIN_OPTIONAL
Does not require that the user is signed in.
- "LOGIN_ADMIN"
- LOGIN_ADMIN
If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.
- "LOGIN_REQUIRED"
- LOGIN_REQUIRED
If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.
UrlMapRedirectHttpResponseCode
- Redirect
Http Response Code Unspecified - REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED
Not specified. 302 is assumed.
- Redirect
Http Response Code301 - REDIRECT_HTTP_RESPONSE_CODE_301
301 Moved Permanently code.
- Redirect
Http Response Code302 - REDIRECT_HTTP_RESPONSE_CODE_302
302 Moved Temporarily code.
- Redirect
Http Response Code303 - REDIRECT_HTTP_RESPONSE_CODE_303
303 See Other code.
- Redirect
Http Response Code307 - REDIRECT_HTTP_RESPONSE_CODE_307
307 Temporary Redirect code.
- Url
Map Redirect Http Response Code Redirect Http Response Code Unspecified - REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED
Not specified. 302 is assumed.
- Url
Map Redirect Http Response Code Redirect Http Response Code301 - REDIRECT_HTTP_RESPONSE_CODE_301
301 Moved Permanently code.
- Url
Map Redirect Http Response Code Redirect Http Response Code302 - REDIRECT_HTTP_RESPONSE_CODE_302
302 Moved Temporarily code.
- Url
Map Redirect Http Response Code Redirect Http Response Code303 - REDIRECT_HTTP_RESPONSE_CODE_303
303 See Other code.
- Url
Map Redirect Http Response Code Redirect Http Response Code307 - REDIRECT_HTTP_RESPONSE_CODE_307
307 Temporary Redirect code.
- Redirect
Http Response Code Unspecified - REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED
Not specified. 302 is assumed.
- Redirect
Http Response Code301 - REDIRECT_HTTP_RESPONSE_CODE_301
301 Moved Permanently code.
- Redirect
Http Response Code302 - REDIRECT_HTTP_RESPONSE_CODE_302
302 Moved Temporarily code.
- Redirect
Http Response Code303 - REDIRECT_HTTP_RESPONSE_CODE_303
303 See Other code.
- Redirect
Http Response Code307 - REDIRECT_HTTP_RESPONSE_CODE_307
307 Temporary Redirect code.
- Redirect
Http Response Code Unspecified - REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED
Not specified. 302 is assumed.
- Redirect
Http Response Code301 - REDIRECT_HTTP_RESPONSE_CODE_301
301 Moved Permanently code.
- Redirect
Http Response Code302 - REDIRECT_HTTP_RESPONSE_CODE_302
302 Moved Temporarily code.
- Redirect
Http Response Code303 - REDIRECT_HTTP_RESPONSE_CODE_303
303 See Other code.
- Redirect
Http Response Code307 - REDIRECT_HTTP_RESPONSE_CODE_307
307 Temporary Redirect code.
- REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED
- REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED
Not specified. 302 is assumed.
- REDIRECT_HTTP_RESPONSE_CODE301
- REDIRECT_HTTP_RESPONSE_CODE_301
301 Moved Permanently code.
- REDIRECT_HTTP_RESPONSE_CODE302
- REDIRECT_HTTP_RESPONSE_CODE_302
302 Moved Temporarily code.
- REDIRECT_HTTP_RESPONSE_CODE303
- REDIRECT_HTTP_RESPONSE_CODE_303
303 See Other code.
- REDIRECT_HTTP_RESPONSE_CODE307
- REDIRECT_HTTP_RESPONSE_CODE_307
307 Temporary Redirect code.
- "REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED"
- REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED
Not specified. 302 is assumed.
- "REDIRECT_HTTP_RESPONSE_CODE_301"
- REDIRECT_HTTP_RESPONSE_CODE_301
301 Moved Permanently code.
- "REDIRECT_HTTP_RESPONSE_CODE_302"
- REDIRECT_HTTP_RESPONSE_CODE_302
302 Moved Temporarily code.
- "REDIRECT_HTTP_RESPONSE_CODE_303"
- REDIRECT_HTTP_RESPONSE_CODE_303
303 See Other code.
- "REDIRECT_HTTP_RESPONSE_CODE_307"
- REDIRECT_HTTP_RESPONSE_CODE_307
307 Temporary Redirect code.
UrlMapResponse
- Api
Endpoint Pulumi.Google Native. App Engine. V1. Inputs. Api Endpoint Handler Response Uses API Endpoints to handle requests.
- Auth
Fail stringAction Action to take when users access resources that require authentication. Defaults to redirect.
- Login string
Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- Redirect
Http stringResponse Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- Script
Pulumi.
Google Native. App Engine. V1. Inputs. Script Handler Response Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- Security
Level string Security (HTTPS) enforcement for this URL.
- Static
Files Pulumi.Google Native. App Engine. V1. Inputs. Static Files Handler Response Returns the contents of a file, such as an image, as the response.
- Url
Regex string URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- Api
Endpoint ApiEndpoint Handler Response Uses API Endpoints to handle requests.
- Auth
Fail stringAction Action to take when users access resources that require authentication. Defaults to redirect.
- Login string
Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- Redirect
Http stringResponse Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- Script
Script
Handler Response Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- Security
Level string Security (HTTPS) enforcement for this URL.
- Static
Files StaticFiles Handler Response Returns the contents of a file, such as an image, as the response.
- Url
Regex string URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- api
Endpoint ApiEndpoint Handler Response Uses API Endpoints to handle requests.
- auth
Fail StringAction Action to take when users access resources that require authentication. Defaults to redirect.
- login String
Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- redirect
Http StringResponse Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- script
Script
Handler Response Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- security
Level String Security (HTTPS) enforcement for this URL.
- static
Files StaticFiles Handler Response Returns the contents of a file, such as an image, as the response.
- url
Regex String URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- api
Endpoint ApiEndpoint Handler Response Uses API Endpoints to handle requests.
- auth
Fail stringAction Action to take when users access resources that require authentication. Defaults to redirect.
- login string
Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- redirect
Http stringResponse Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- script
Script
Handler Response Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- security
Level string Security (HTTPS) enforcement for this URL.
- static
Files StaticFiles Handler Response Returns the contents of a file, such as an image, as the response.
- url
Regex string URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- api_
endpoint ApiEndpoint Handler Response Uses API Endpoints to handle requests.
- auth_
fail_ straction Action to take when users access resources that require authentication. Defaults to redirect.
- login str
Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- redirect_
http_ strresponse_ code 30x code to use when performing redirects for the secure field. Defaults to 302.
- script
Script
Handler Response Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- security_
level str Security (HTTPS) enforcement for this URL.
- static_
files StaticFiles Handler Response Returns the contents of a file, such as an image, as the response.
- url_
regex str URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
- api
Endpoint Property Map Uses API Endpoints to handle requests.
- auth
Fail StringAction Action to take when users access resources that require authentication. Defaults to redirect.
- login String
Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment.
- redirect
Http StringResponse Code 30x code to use when performing redirects for the secure field. Defaults to 302.
- script Property Map
Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto".
- security
Level String Security (HTTPS) enforcement for this URL.
- static
Files Property Map Returns the contents of a file, such as an image, as the response.
- url
Regex String URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.
UrlMapSecurityLevel
- Secure
Unspecified - SECURE_UNSPECIFIED
Not specified.
- Secure
Default - SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- Secure
Never - SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- Secure
Optional - SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- Secure
Always - SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- Url
Map Security Level Secure Unspecified - SECURE_UNSPECIFIED
Not specified.
- Url
Map Security Level Secure Default - SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- Url
Map Security Level Secure Never - SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- Url
Map Security Level Secure Optional - SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- Url
Map Security Level Secure Always - SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- Secure
Unspecified - SECURE_UNSPECIFIED
Not specified.
- Secure
Default - SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- Secure
Never - SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- Secure
Optional - SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- Secure
Always - SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- Secure
Unspecified - SECURE_UNSPECIFIED
Not specified.
- Secure
Default - SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- Secure
Never - SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- Secure
Optional - SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- Secure
Always - SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- SECURE_UNSPECIFIED
- SECURE_UNSPECIFIED
Not specified.
- SECURE_DEFAULT
- SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- SECURE_NEVER
- SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- SECURE_OPTIONAL
- SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- SECURE_ALWAYS
- SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
- "SECURE_UNSPECIFIED"
- SECURE_UNSPECIFIED
Not specified.
- "SECURE_DEFAULT"
- SECURE_DEFAULT
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used, and respond accordingly.
- "SECURE_NEVER"
- SECURE_NEVER
Requests for a URL that match this handler that use HTTPS are automatically redirected to the HTTP equivalent URL.
- "SECURE_OPTIONAL"
- SECURE_OPTIONAL
Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.
- "SECURE_ALWAYS"
- SECURE_ALWAYS
Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.
VersionInboundServicesItem
- Inbound
Service Unspecified - INBOUND_SERVICE_UNSPECIFIED
Not specified.
- Inbound
Service Mail - INBOUND_SERVICE_MAIL
Allows an application to receive mail.
- Inbound
Service Mail Bounce - INBOUND_SERVICE_MAIL_BOUNCE
Allows an application to receive email-bound notifications.
- Inbound
Service Xmpp Error - INBOUND_SERVICE_XMPP_ERROR
Allows an application to receive error stanzas.
- Inbound
Service Xmpp Message - INBOUND_SERVICE_XMPP_MESSAGE
Allows an application to receive instant messages.
- Inbound
Service Xmpp Subscribe - INBOUND_SERVICE_XMPP_SUBSCRIBE
Allows an application to receive user subscription POSTs.
- Inbound
Service Xmpp Presence - INBOUND_SERVICE_XMPP_PRESENCE
Allows an application to receive a user's chat presence.
- Inbound
Service Channel Presence - INBOUND_SERVICE_CHANNEL_PRESENCE
Registers an application for notifications when a client connects or disconnects from a channel.
- Inbound
Service Warmup - INBOUND_SERVICE_WARMUP
Enables warmup requests.
- Version
Inbound Services Item Inbound Service Unspecified - INBOUND_SERVICE_UNSPECIFIED
Not specified.
- Version
Inbound Services Item Inbound Service Mail - INBOUND_SERVICE_MAIL
Allows an application to receive mail.
- Version
Inbound Services Item Inbound Service Mail Bounce - INBOUND_SERVICE_MAIL_BOUNCE
Allows an application to receive email-bound notifications.
- Version
Inbound Services Item Inbound Service Xmpp Error - INBOUND_SERVICE_XMPP_ERROR
Allows an application to receive error stanzas.
- Version
Inbound Services Item Inbound Service Xmpp Message - INBOUND_SERVICE_XMPP_MESSAGE
Allows an application to receive instant messages.
- Version
Inbound Services Item Inbound Service Xmpp Subscribe - INBOUND_SERVICE_XMPP_SUBSCRIBE
Allows an application to receive user subscription POSTs.
- Version
Inbound Services Item Inbound Service Xmpp Presence - INBOUND_SERVICE_XMPP_PRESENCE
Allows an application to receive a user's chat presence.
- Version
Inbound Services Item Inbound Service Channel Presence - INBOUND_SERVICE_CHANNEL_PRESENCE
Registers an application for notifications when a client connects or disconnects from a channel.
- Version
Inbound Services Item Inbound Service Warmup - INBOUND_SERVICE_WARMUP
Enables warmup requests.
- Inbound
Service Unspecified - INBOUND_SERVICE_UNSPECIFIED
Not specified.
- Inbound
Service Mail - INBOUND_SERVICE_MAIL
Allows an application to receive mail.
- Inbound
Service Mail Bounce - INBOUND_SERVICE_MAIL_BOUNCE
Allows an application to receive email-bound notifications.
- Inbound
Service Xmpp Error - INBOUND_SERVICE_XMPP_ERROR
Allows an application to receive error stanzas.
- Inbound
Service Xmpp Message - INBOUND_SERVICE_XMPP_MESSAGE
Allows an application to receive instant messages.
- Inbound
Service Xmpp Subscribe - INBOUND_SERVICE_XMPP_SUBSCRIBE
Allows an application to receive user subscription POSTs.
- Inbound
Service Xmpp Presence - INBOUND_SERVICE_XMPP_PRESENCE
Allows an application to receive a user's chat presence.
- Inbound
Service Channel Presence - INBOUND_SERVICE_CHANNEL_PRESENCE
Registers an application for notifications when a client connects or disconnects from a channel.
- Inbound
Service Warmup - INBOUND_SERVICE_WARMUP
Enables warmup requests.
- Inbound
Service Unspecified - INBOUND_SERVICE_UNSPECIFIED
Not specified.
- Inbound
Service Mail - INBOUND_SERVICE_MAIL
Allows an application to receive mail.
- Inbound
Service Mail Bounce - INBOUND_SERVICE_MAIL_BOUNCE
Allows an application to receive email-bound notifications.
- Inbound
Service Xmpp Error - INBOUND_SERVICE_XMPP_ERROR
Allows an application to receive error stanzas.
- Inbound
Service Xmpp Message - INBOUND_SERVICE_XMPP_MESSAGE
Allows an application to receive instant messages.
- Inbound
Service Xmpp Subscribe - INBOUND_SERVICE_XMPP_SUBSCRIBE
Allows an application to receive user subscription POSTs.
- Inbound
Service Xmpp Presence - INBOUND_SERVICE_XMPP_PRESENCE
Allows an application to receive a user's chat presence.
- Inbound
Service Channel Presence - INBOUND_SERVICE_CHANNEL_PRESENCE
Registers an application for notifications when a client connects or disconnects from a channel.
- Inbound
Service Warmup - INBOUND_SERVICE_WARMUP
Enables warmup requests.
- INBOUND_SERVICE_UNSPECIFIED
- INBOUND_SERVICE_UNSPECIFIED
Not specified.
- INBOUND_SERVICE_MAIL
- INBOUND_SERVICE_MAIL
Allows an application to receive mail.
- INBOUND_SERVICE_MAIL_BOUNCE
- INBOUND_SERVICE_MAIL_BOUNCE
Allows an application to receive email-bound notifications.
- INBOUND_SERVICE_XMPP_ERROR
- INBOUND_SERVICE_XMPP_ERROR
Allows an application to receive error stanzas.
- INBOUND_SERVICE_XMPP_MESSAGE
- INBOUND_SERVICE_XMPP_MESSAGE
Allows an application to receive instant messages.
- INBOUND_SERVICE_XMPP_SUBSCRIBE
- INBOUND_SERVICE_XMPP_SUBSCRIBE
Allows an application to receive user subscription POSTs.
- INBOUND_SERVICE_XMPP_PRESENCE
- INBOUND_SERVICE_XMPP_PRESENCE
Allows an application to receive a user's chat presence.
- INBOUND_SERVICE_CHANNEL_PRESENCE
- INBOUND_SERVICE_CHANNEL_PRESENCE
Registers an application for notifications when a client connects or disconnects from a channel.
- INBOUND_SERVICE_WARMUP
- INBOUND_SERVICE_WARMUP
Enables warmup requests.
- "INBOUND_SERVICE_UNSPECIFIED"
- INBOUND_SERVICE_UNSPECIFIED
Not specified.
- "INBOUND_SERVICE_MAIL"
- INBOUND_SERVICE_MAIL
Allows an application to receive mail.
- "INBOUND_SERVICE_MAIL_BOUNCE"
- INBOUND_SERVICE_MAIL_BOUNCE
Allows an application to receive email-bound notifications.
- "INBOUND_SERVICE_XMPP_ERROR"
- INBOUND_SERVICE_XMPP_ERROR
Allows an application to receive error stanzas.
- "INBOUND_SERVICE_XMPP_MESSAGE"
- INBOUND_SERVICE_XMPP_MESSAGE
Allows an application to receive instant messages.
- "INBOUND_SERVICE_XMPP_SUBSCRIBE"
- INBOUND_SERVICE_XMPP_SUBSCRIBE
Allows an application to receive user subscription POSTs.
- "INBOUND_SERVICE_XMPP_PRESENCE"
- INBOUND_SERVICE_XMPP_PRESENCE
Allows an application to receive a user's chat presence.
- "INBOUND_SERVICE_CHANNEL_PRESENCE"
- INBOUND_SERVICE_CHANNEL_PRESENCE
Registers an application for notifications when a client connects or disconnects from a channel.
- "INBOUND_SERVICE_WARMUP"
- INBOUND_SERVICE_WARMUP
Enables warmup requests.
VersionServingStatus
- Serving
Status Unspecified - SERVING_STATUS_UNSPECIFIED
Not specified.
- Serving
- SERVING
Currently serving. Instances are created according to the scaling settings of the version.
- Stopped
- STOPPED
Disabled. No instances will be created and the scaling settings are ignored until the state of the version changes to SERVING.
- Version
Serving Status Serving Status Unspecified - SERVING_STATUS_UNSPECIFIED
Not specified.
- Version
Serving Status Serving - SERVING
Currently serving. Instances are created according to the scaling settings of the version.
- Version
Serving Status Stopped - STOPPED
Disabled. No instances will be created and the scaling settings are ignored until the state of the version changes to SERVING.
- Serving
Status Unspecified - SERVING_STATUS_UNSPECIFIED
Not specified.
- Serving
- SERVING
Currently serving. Instances are created according to the scaling settings of the version.
- Stopped
- STOPPED
Disabled. No instances will be created and the scaling settings are ignored until the state of the version changes to SERVING.
- Serving
Status Unspecified - SERVING_STATUS_UNSPECIFIED
Not specified.
- Serving
- SERVING
Currently serving. Instances are created according to the scaling settings of the version.
- Stopped
- STOPPED
Disabled. No instances will be created and the scaling settings are ignored until the state of the version changes to SERVING.
- SERVING_STATUS_UNSPECIFIED
- SERVING_STATUS_UNSPECIFIED
Not specified.
- SERVING
- SERVING
Currently serving. Instances are created according to the scaling settings of the version.
- STOPPED
- STOPPED
Disabled. No instances will be created and the scaling settings are ignored until the state of the version changes to SERVING.
- "SERVING_STATUS_UNSPECIFIED"
- SERVING_STATUS_UNSPECIFIED
Not specified.
- "SERVING"
- SERVING
Currently serving. Instances are created according to the scaling settings of the version.
- "STOPPED"
- STOPPED
Disabled. No instances will be created and the scaling settings are ignored until the state of the version changes to SERVING.
Volume
- Name string
Unique name for the volume.
- Size
Gb double Volume size in gigabytes.
- Volume
Type string Underlying volume type, e.g. 'tmpfs'.
- Name string
Unique name for the volume.
- Size
Gb float64 Volume size in gigabytes.
- Volume
Type string Underlying volume type, e.g. 'tmpfs'.
- name String
Unique name for the volume.
- size
Gb Double Volume size in gigabytes.
- volume
Type String Underlying volume type, e.g. 'tmpfs'.
- name string
Unique name for the volume.
- size
Gb number Volume size in gigabytes.
- volume
Type string Underlying volume type, e.g. 'tmpfs'.
- name str
Unique name for the volume.
- size_
gb float Volume size in gigabytes.
- volume_
type str Underlying volume type, e.g. 'tmpfs'.
- name String
Unique name for the volume.
- size
Gb Number Volume size in gigabytes.
- volume
Type String Underlying volume type, e.g. 'tmpfs'.
VolumeResponse
- Name string
Unique name for the volume.
- Size
Gb double Volume size in gigabytes.
- Volume
Type string Underlying volume type, e.g. 'tmpfs'.
- Name string
Unique name for the volume.
- Size
Gb float64 Volume size in gigabytes.
- Volume
Type string Underlying volume type, e.g. 'tmpfs'.
- name String
Unique name for the volume.
- size
Gb Double Volume size in gigabytes.
- volume
Type String Underlying volume type, e.g. 'tmpfs'.
- name string
Unique name for the volume.
- size
Gb number Volume size in gigabytes.
- volume
Type string Underlying volume type, e.g. 'tmpfs'.
- name str
Unique name for the volume.
- size_
gb float Volume size in gigabytes.
- volume_
type str Underlying volume type, e.g. 'tmpfs'.
- name String
Unique name for the volume.
- size
Gb Number Volume size in gigabytes.
- volume
Type String Underlying volume type, e.g. 'tmpfs'.
VpcAccessConnector
- Egress
Setting Pulumi.Google Native. App Engine. V1. Vpc Access Connector Egress Setting The egress setting for the connector, controlling what traffic is diverted through it.
- Name string
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- Egress
Setting VpcAccess Connector Egress Setting The egress setting for the connector, controlling what traffic is diverted through it.
- Name string
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- egress
Setting VpcAccess Connector Egress Setting The egress setting for the connector, controlling what traffic is diverted through it.
- name String
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- egress
Setting VpcAccess Connector Egress Setting The egress setting for the connector, controlling what traffic is diverted through it.
- name string
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- egress_
setting VpcAccess Connector Egress Setting The egress setting for the connector, controlling what traffic is diverted through it.
- name str
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- egress
Setting "EGRESS_SETTING_UNSPECIFIED" | "ALL_TRAFFIC" | "PRIVATE_IP_RANGES" The egress setting for the connector, controlling what traffic is diverted through it.
- name String
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
VpcAccessConnectorEgressSetting
- Egress
Setting Unspecified - EGRESS_SETTING_UNSPECIFIED
- All
Traffic - ALL_TRAFFIC
Force the use of VPC Access for all egress traffic from the function.
- Private
Ip Ranges - PRIVATE_IP_RANGES
Use the VPC Access Connector for private IP space from RFC1918.
- Vpc
Access Connector Egress Setting Egress Setting Unspecified - EGRESS_SETTING_UNSPECIFIED
- Vpc
Access Connector Egress Setting All Traffic - ALL_TRAFFIC
Force the use of VPC Access for all egress traffic from the function.
- Vpc
Access Connector Egress Setting Private Ip Ranges - PRIVATE_IP_RANGES
Use the VPC Access Connector for private IP space from RFC1918.
- Egress
Setting Unspecified - EGRESS_SETTING_UNSPECIFIED
- All
Traffic - ALL_TRAFFIC
Force the use of VPC Access for all egress traffic from the function.
- Private
Ip Ranges - PRIVATE_IP_RANGES
Use the VPC Access Connector for private IP space from RFC1918.
- Egress
Setting Unspecified - EGRESS_SETTING_UNSPECIFIED
- All
Traffic - ALL_TRAFFIC
Force the use of VPC Access for all egress traffic from the function.
- Private
Ip Ranges - PRIVATE_IP_RANGES
Use the VPC Access Connector for private IP space from RFC1918.
- EGRESS_SETTING_UNSPECIFIED
- EGRESS_SETTING_UNSPECIFIED
- ALL_TRAFFIC
- ALL_TRAFFIC
Force the use of VPC Access for all egress traffic from the function.
- PRIVATE_IP_RANGES
- PRIVATE_IP_RANGES
Use the VPC Access Connector for private IP space from RFC1918.
- "EGRESS_SETTING_UNSPECIFIED"
- EGRESS_SETTING_UNSPECIFIED
- "ALL_TRAFFIC"
- ALL_TRAFFIC
Force the use of VPC Access for all egress traffic from the function.
- "PRIVATE_IP_RANGES"
- PRIVATE_IP_RANGES
Use the VPC Access Connector for private IP space from RFC1918.
VpcAccessConnectorResponse
- Egress
Setting string The egress setting for the connector, controlling what traffic is diverted through it.
- Name string
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- Egress
Setting string The egress setting for the connector, controlling what traffic is diverted through it.
- Name string
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- egress
Setting String The egress setting for the connector, controlling what traffic is diverted through it.
- name String
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- egress
Setting string The egress setting for the connector, controlling what traffic is diverted through it.
- name string
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- egress_
setting str The egress setting for the connector, controlling what traffic is diverted through it.
- name str
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
- egress
Setting String The egress setting for the connector, controlling what traffic is diverted through it.
- name String
Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1.
ZipInfo
- Files
Count int An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- Source
Url string URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- Files
Count int An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- Source
Url string URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- files
Count Integer An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- source
Url String URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- files
Count number An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- source
Url string URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- files_
count int An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- source_
url str URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- files
Count Number An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- source
Url String URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
ZipInfoResponse
- Files
Count int An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- Source
Url string URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- Files
Count int An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- Source
Url string URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- files
Count Integer An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- source
Url String URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- files
Count number An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- source
Url string URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- files_
count int An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- source_
url str URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
- files
Count Number An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.
- source
Url String URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0