FlexibleAppVersionArgs

data class FlexibleAppVersionArgs(val apiConfig: Output<FlexibleAppVersionApiConfigArgs>? = null, val automaticScaling: Output<FlexibleAppVersionAutomaticScalingArgs>? = null, val betaSettings: Output<Map<String, String>>? = null, val defaultExpiration: Output<String>? = null, val deleteServiceOnDestroy: Output<Boolean>? = null, val deployment: Output<FlexibleAppVersionDeploymentArgs>? = null, val endpointsApiService: Output<FlexibleAppVersionEndpointsApiServiceArgs>? = null, val entrypoint: Output<FlexibleAppVersionEntrypointArgs>? = null, val envVariables: Output<Map<String, String>>? = null, val handlers: Output<List<FlexibleAppVersionHandlerArgs>>? = null, val inboundServices: Output<List<String>>? = null, val instanceClass: Output<String>? = null, val livenessCheck: Output<FlexibleAppVersionLivenessCheckArgs>? = null, val manualScaling: Output<FlexibleAppVersionManualScalingArgs>? = null, val network: Output<FlexibleAppVersionNetworkArgs>? = null, val nobuildFilesRegex: Output<String>? = null, val noopOnDestroy: Output<Boolean>? = null, val project: Output<String>? = null, val readinessCheck: Output<FlexibleAppVersionReadinessCheckArgs>? = null, val resources: Output<FlexibleAppVersionResourcesArgs>? = null, val runtime: Output<String>? = null, val runtimeApiVersion: Output<String>? = null, val runtimeChannel: Output<String>? = null, val runtimeMainExecutablePath: Output<String>? = null, val service: Output<String>? = null, val serviceAccount: Output<String>? = null, val servingStatus: Output<String>? = null, val versionId: Output<String>? = null, val vpcAccessConnector: Output<FlexibleAppVersionVpcAccessConnectorArgs>? = null) : ConvertibleToJava<FlexibleAppVersionArgs>

Flexible App Version resource to create a new version of flexible GAE Application. Based on Google Compute Engine, the App Engine flexible environment automatically scales your app up and down while also balancing the load. Learn about the differences between the standard environment and the flexible environment at https://cloud.google.com/appengine/docs/the-appengine-environments.

Note: The App Engine flexible environment service account uses the member ID service-[YOUR_PROJECT_NUMBER]@gae-api-prod.google.com.iam.gserviceaccount.com It should have the App Engine Flexible Environment Service Agent role, which will be applied when the appengineflex.googleapis.com service is enabled. To get more information about FlexibleAppVersion, see:

Example Usage

App Engine Flexible App Version

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.Project;
import com.pulumi.gcp.organizations.ProjectArgs;
import com.pulumi.gcp.appengine.Application;
import com.pulumi.gcp.appengine.ApplicationArgs;
import com.pulumi.gcp.projects.Service;
import com.pulumi.gcp.projects.ServiceArgs;
import com.pulumi.gcp.serviceAccount.Account;
import com.pulumi.gcp.serviceAccount.AccountArgs;
import com.pulumi.gcp.projects.IAMMember;
import com.pulumi.gcp.projects.IAMMemberArgs;
import com.pulumi.gcp.storage.Bucket;
import com.pulumi.gcp.storage.BucketArgs;
import com.pulumi.gcp.storage.BucketObject;
import com.pulumi.gcp.storage.BucketObjectArgs;
import com.pulumi.gcp.appengine.FlexibleAppVersion;
import com.pulumi.gcp.appengine.FlexibleAppVersionArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionEntrypointArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionDeploymentArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionDeploymentZipArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionLivenessCheckArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionReadinessCheckArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionHandlerArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionHandlerStaticFilesArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionAutomaticScalingArgs;
import com.pulumi.gcp.appengine.inputs.FlexibleAppVersionAutomaticScalingCpuUtilizationArgs;
import com.pulumi.asset.FileAsset;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var myProject = new Project("myProject", ProjectArgs.builder()
.projectId("appeng-flex")
.orgId("123456789")
.billingAccount("000000-0000000-0000000-000000")
.build());
var app = new Application("app", ApplicationArgs.builder()
.project(myProject.projectId())
.locationId("us-central")
.build());
var service = new Service("service", ServiceArgs.builder()
.project(myProject.projectId())
.service("appengineflex.googleapis.com")
.disableDependentServices(false)
.build());
var customServiceAccount = new Account("customServiceAccount", AccountArgs.builder()
.project(service.project())
.accountId("my-account")
.displayName("Custom Service Account")
.build());
var gaeApi = new IAMMember("gaeApi", IAMMemberArgs.builder()
.project(service.project())
.role("roles/compute.networkUser")
.member(customServiceAccount.email().applyValue(email -> String.format("serviceAccount:%s", email)))
.build());
var logsWriter = new IAMMember("logsWriter", IAMMemberArgs.builder()
.project(service.project())
.role("roles/logging.logWriter")
.member(customServiceAccount.email().applyValue(email -> String.format("serviceAccount:%s", email)))
.build());
var storageViewer = new IAMMember("storageViewer", IAMMemberArgs.builder()
.project(service.project())
.role("roles/storage.objectViewer")
.member(customServiceAccount.email().applyValue(email -> String.format("serviceAccount:%s", email)))
.build());
var bucket = new Bucket("bucket", BucketArgs.builder()
.project(myProject.projectId())
.location("US")
.build());
var object = new BucketObject("object", BucketObjectArgs.builder()
.bucket(bucket.name())
.source(new FileAsset("./test-fixtures/hello-world.zip"))
.build());
var myappV1 = new FlexibleAppVersion("myappV1", FlexibleAppVersionArgs.builder()
.versionId("v1")
.project(gaeApi.project())
.service("default")
.runtime("nodejs")
.entrypoint(FlexibleAppVersionEntrypointArgs.builder()
.shell("node ./app.js")
.build())
.deployment(FlexibleAppVersionDeploymentArgs.builder()
.zip(FlexibleAppVersionDeploymentZipArgs.builder()
.sourceUrl(Output.tuple(bucket.name(), object.name()).applyValue(values -> {
var bucketName = values.t1;
var objectName = values.t2;
return String.format("https://storage.googleapis.com/%s/%s", bucketName,objectName);
}))
.build())
.build())
.livenessCheck(FlexibleAppVersionLivenessCheckArgs.builder()
.path("/")
.build())
.readinessCheck(FlexibleAppVersionReadinessCheckArgs.builder()
.path("/")
.build())
.envVariables(Map.of("port", "8080"))
.handlers(FlexibleAppVersionHandlerArgs.builder()
.urlRegex(".*\\/my-path\\/*")
.securityLevel("SECURE_ALWAYS")
.login("LOGIN_REQUIRED")
.authFailAction("AUTH_FAIL_ACTION_REDIRECT")
.staticFiles(FlexibleAppVersionHandlerStaticFilesArgs.builder()
.path("my-other-path")
.uploadPathRegex(".*\\/my-path\\/*")
.build())
.build())
.automaticScaling(FlexibleAppVersionAutomaticScalingArgs.builder()
.coolDownPeriod("120s")
.cpuUtilization(FlexibleAppVersionAutomaticScalingCpuUtilizationArgs.builder()
.targetUtilization(0.5)
.build())
.build())
.noopOnDestroy(true)
.serviceAccount(customServiceAccount.email())
.build());
}
}

Import

FlexibleAppVersion can be imported using any of these accepted formats

$ pulumi import gcp:appengine/flexibleAppVersion:FlexibleAppVersion default apps/{{project}}/services/{{service}}/versions/{{version_id}}
$ pulumi import gcp:appengine/flexibleAppVersion:FlexibleAppVersion default {{project}}/{{service}}/{{version_id}}
$ pulumi import gcp:appengine/flexibleAppVersion:FlexibleAppVersion default {{service}}/{{version_id}}

Constructors

Link copied to clipboard
constructor(apiConfig: Output<FlexibleAppVersionApiConfigArgs>? = null, automaticScaling: Output<FlexibleAppVersionAutomaticScalingArgs>? = null, betaSettings: Output<Map<String, String>>? = null, defaultExpiration: Output<String>? = null, deleteServiceOnDestroy: Output<Boolean>? = null, deployment: Output<FlexibleAppVersionDeploymentArgs>? = null, endpointsApiService: Output<FlexibleAppVersionEndpointsApiServiceArgs>? = null, entrypoint: Output<FlexibleAppVersionEntrypointArgs>? = null, envVariables: Output<Map<String, String>>? = null, handlers: Output<List<FlexibleAppVersionHandlerArgs>>? = null, inboundServices: Output<List<String>>? = null, instanceClass: Output<String>? = null, livenessCheck: Output<FlexibleAppVersionLivenessCheckArgs>? = null, manualScaling: Output<FlexibleAppVersionManualScalingArgs>? = null, network: Output<FlexibleAppVersionNetworkArgs>? = null, nobuildFilesRegex: Output<String>? = null, noopOnDestroy: Output<Boolean>? = null, project: Output<String>? = null, readinessCheck: Output<FlexibleAppVersionReadinessCheckArgs>? = null, resources: Output<FlexibleAppVersionResourcesArgs>? = null, runtime: Output<String>? = null, runtimeApiVersion: Output<String>? = null, runtimeChannel: Output<String>? = null, runtimeMainExecutablePath: Output<String>? = null, service: Output<String>? = null, serviceAccount: Output<String>? = null, servingStatus: Output<String>? = null, versionId: Output<String>? = null, vpcAccessConnector: Output<FlexibleAppVersionVpcAccessConnectorArgs>? = null)

Properties

Link copied to clipboard

Serving configuration for Google Cloud Endpoints. Structure is documented below.

Link copied to clipboard

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

Link copied to clipboard
val betaSettings: Output<Map<String, String>>? = null

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

Link copied to clipboard
val defaultExpiration: Output<String>? = null

Duration that static files should be cached by web proxies and browsers. Only applicable if the corresponding StaticFilesHandler does not specify its own expiration time.

Link copied to clipboard
val deleteServiceOnDestroy: Output<Boolean>? = null

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

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

The entrypoint for the application. Structure is documented below.

Link copied to clipboard
val envVariables: Output<Map<String, String>>? = null

Environment variables available to the application. As these are not returned in the API request, the provider will not detect any changes made outside of the config.

Link copied to clipboard

An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted. Structure is documented below.

Link copied to clipboard
val inboundServices: Output<List<String>>? = null

A list of the types of messages that this application is able to receive. Each value may be one of: 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.

Link copied to clipboard
val instanceClass: Output<String>? = null

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

Link copied to clipboard

Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Structure is documented below.

Link copied to clipboard

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

Link copied to clipboard

Extra network settings Structure is documented below.

Link copied to clipboard
val nobuildFilesRegex: Output<String>? = null

Files that match this pattern will not be built into this version. Only applicable for Go runtimes.

Link copied to clipboard
val noopOnDestroy: Output<Boolean>? = null

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

Link copied to clipboard
val project: Output<String>? = null

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

Link copied to clipboard

Configures readiness health checking for instances. Unhealthy instances are not put into the backend traffic rotation. Structure is documented below.

Link copied to clipboard

Machine resources for a version. Structure is documented below.

Link copied to clipboard
val runtime: Output<String>? = null

Desired runtime. Example python27.

Link copied to clipboard
val runtimeApiVersion: Output<String>? = null

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/<language>/config/appref
Substitute <language> with python, java, php, ruby, go or nodejs.

Link copied to clipboard
val runtimeChannel: Output<String>? = null

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

Link copied to clipboard
val runtimeMainExecutablePath: Output<String>? = null

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

Link copied to clipboard
val service: Output<String>? = null

AppEngine service resource. Can contain numbers, letters, and hyphens.

Link copied to clipboard
val serviceAccount: Output<String>? = null

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.

Link copied to clipboard
val servingStatus: Output<String>? = null

Current serving status of this version. Only the versions with a SERVING status create instances and can be billed. Default value is SERVING. Possible values are: SERVING, STOPPED.

Link copied to clipboard
val versionId: Output<String>? = null

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

Link copied to clipboard

Enables VPC connectivity for standard apps. Structure is documented below. //

Functions

Link copied to clipboard
open override fun toJava(): FlexibleAppVersionArgs