import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates an App Engine application for a Google Cloud Platform project. Required fields: id - The ID of the target Cloud Platform project. location - The region (https://cloud.google.com/appengine/docs/locations) where you want the App Engine application located.For more information about App Engine applications, see Managing Projects, Applications, and Billing (https://cloud.google.com/appengine/docs/standard/python/console/). * Auto-naming is currently not supported for this resource. * Note - this resource's API doesn't support deletion. When deleted, the resource will persist * on Google Cloud even though it will be deleted from Pulumi state. */ export declare class App extends pulumi.CustomResource { /** * Get an existing App resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): App; /** * Returns true if the given object is an instance of App. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is App; /** * Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account. */ readonly authDomain: pulumi.Output; /** * Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands. */ readonly codeBucket: pulumi.Output; /** * The type of the Cloud Firestore or Cloud Datastore database associated with this application. */ readonly databaseType: pulumi.Output; /** * Google Cloud Storage bucket that can be used by this application to store content. */ readonly defaultBucket: pulumi.Output; /** * Cookie expiration policy for this application. */ readonly defaultCookieExpiration: pulumi.Output; /** * Hostname used to reach this application, as resolved by App Engine. */ readonly defaultHostname: pulumi.Output; /** * HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported. */ readonly dispatchRules: pulumi.Output; /** * The feature specific settings to be used in the application. */ readonly featureSettings: pulumi.Output; /** * The Google Container Registry domain used for storing managed build docker images for this application. */ readonly gcrDomain: pulumi.Output; /** * Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest */ readonly generatedCustomerMetadata: pulumi.Output<{ [key: string]: string; }>; readonly iap: pulumi.Output; /** * Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations). */ readonly location: pulumi.Output; /** * Full path to the Application resource in the API. Example: apps/myapp. */ readonly name: pulumi.Output; /** * The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one. */ readonly serviceAccount: pulumi.Output; /** * Serving status of this application. */ readonly servingStatus: pulumi.Output; /** * Create a App resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: AppArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a App resource. */ export interface AppArgs { /** * Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account. */ authDomain?: pulumi.Input; /** * The type of the Cloud Firestore or Cloud Datastore database associated with this application. */ databaseType?: pulumi.Input; /** * Cookie expiration policy for this application. */ defaultCookieExpiration?: pulumi.Input; /** * HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported. */ dispatchRules?: pulumi.Input[]>; /** * The feature specific settings to be used in the application. */ featureSettings?: pulumi.Input; /** * Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest */ generatedCustomerMetadata?: pulumi.Input<{ [key: string]: pulumi.Input; }>; iap?: pulumi.Input; /** * Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp. */ id?: pulumi.Input; /** * Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations). */ location?: pulumi.Input; /** * The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one. */ serviceAccount?: pulumi.Input; /** * Serving status of this application. */ servingStatus?: pulumi.Input; }