Documentation
¶
Index ¶
- type Application
- func (r *Application) AuthDomain() *pulumi.StringOutput
- func (r *Application) CodeBucket() *pulumi.StringOutput
- func (r *Application) DefaultBucket() *pulumi.StringOutput
- func (r *Application) DefaultHostname() *pulumi.StringOutput
- func (r *Application) FeatureSettings() *pulumi.Output
- func (r *Application) GcrDomain() *pulumi.StringOutput
- func (r *Application) ID() *pulumi.IDOutput
- func (r *Application) LocationId() *pulumi.StringOutput
- func (r *Application) Name() *pulumi.StringOutput
- func (r *Application) Project() *pulumi.StringOutput
- func (r *Application) ServingStatus() *pulumi.StringOutput
- func (r *Application) URN() *pulumi.URNOutput
- func (r *Application) UrlDispatchRules() *pulumi.ArrayOutput
- type ApplicationArgs
- type ApplicationState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Application ¶
type Application struct {
// contains filtered or unexported fields
}
Allows creation and management of an App Engine application.
> App Engine applications cannot be deleted once they're created; you have to delete the
entire project to delete the application. Terraform will report the application has been successfully deleted; this is a limitation of Terraform, and will go away in the future. Terraform is not able to delete App Engine applications.
func GetApplication ¶
func GetApplication(ctx *pulumi.Context, name string, id pulumi.ID, state *ApplicationState, opts ...pulumi.ResourceOpt) (*Application, error)
GetApplication gets an existing Application resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewApplication ¶
func NewApplication(ctx *pulumi.Context, name string, args *ApplicationArgs, opts ...pulumi.ResourceOpt) (*Application, error)
NewApplication registers a new resource with the given unique name, arguments, and options.
func (*Application) AuthDomain ¶
func (r *Application) AuthDomain() *pulumi.StringOutput
The domain to authenticate users with when using App Engine's User API.
func (*Application) CodeBucket ¶
func (r *Application) CodeBucket() *pulumi.StringOutput
The GCS bucket code is being stored in for this app.
func (*Application) DefaultBucket ¶
func (r *Application) DefaultBucket() *pulumi.StringOutput
The GCS bucket content is being stored in for this app.
func (*Application) DefaultHostname ¶
func (r *Application) DefaultHostname() *pulumi.StringOutput
The default hostname for this app.
func (*Application) FeatureSettings ¶
func (r *Application) FeatureSettings() *pulumi.Output
A block of optional settings to configure specific App Engine features:
func (*Application) GcrDomain ¶
func (r *Application) GcrDomain() *pulumi.StringOutput
The GCR domain used for storing managed Docker images for this app.
func (*Application) ID ¶
func (r *Application) ID() *pulumi.IDOutput
ID is this resource's unique identifier assigned by its provider.
func (*Application) LocationId ¶
func (r *Application) LocationId() *pulumi.StringOutput
The [location](https://cloud.google.com/appengine/docs/locations) to serve the app from.
func (*Application) Name ¶
func (r *Application) Name() *pulumi.StringOutput
Unique name of the app, usually `apps/{PROJECT_ID}`
func (*Application) Project ¶
func (r *Application) Project() *pulumi.StringOutput
func (*Application) ServingStatus ¶
func (r *Application) ServingStatus() *pulumi.StringOutput
The serving status of the app.
func (*Application) URN ¶
func (r *Application) URN() *pulumi.URNOutput
URN is this resource's unique name assigned by Pulumi.
func (*Application) UrlDispatchRules ¶
func (r *Application) UrlDispatchRules() *pulumi.ArrayOutput
A list of dispatch rule blocks. Each block has a `domain`, `path`, and `service` field.
type ApplicationArgs ¶
type ApplicationArgs struct { // The domain to authenticate users with when using App Engine's User API. AuthDomain interface{} // A block of optional settings to configure specific App Engine features: FeatureSettings interface{} // The [location](https://cloud.google.com/appengine/docs/locations) // to serve the app from. LocationId interface{} Project interface{} // The serving status of the app. ServingStatus interface{} }
The set of arguments for constructing a Application resource.
type ApplicationState ¶
type ApplicationState struct { // The domain to authenticate users with when using App Engine's User API. AuthDomain interface{} // The GCS bucket code is being stored in for this app. CodeBucket interface{} // The GCS bucket content is being stored in for this app. DefaultBucket interface{} // The default hostname for this app. DefaultHostname interface{} // A block of optional settings to configure specific App Engine features: FeatureSettings interface{} // The GCR domain used for storing managed Docker images for this app. GcrDomain interface{} // The [location](https://cloud.google.com/appengine/docs/locations) // to serve the app from. LocationId interface{} // Unique name of the app, usually `apps/{PROJECT_ID}` Name interface{} Project interface{} // The serving status of the app. ServingStatus interface{} // A list of dispatch rule blocks. Each block has a `domain`, `path`, and `service` field. UrlDispatchRules interface{} }
Input properties used for looking up and filtering Application resources.