firebase

package
v6.35.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 23, 2022 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type GetWebAppConfigArgs

type GetWebAppConfigArgs struct {
	// The ID of the project in which the resource belongs. If it
	// is not provided, the provider project is used.
	Project *string `pulumi:"project"`
	// the id of the firebase web app
	WebAppId string `pulumi:"webAppId"`
}

A collection of arguments for invoking getWebAppConfig.

type GetWebAppConfigOutputArgs

type GetWebAppConfigOutputArgs struct {
	// The ID of the project in which the resource belongs. If it
	// is not provided, the provider project is used.
	Project pulumi.StringPtrInput `pulumi:"project"`
	// the id of the firebase web app
	WebAppId pulumi.StringInput `pulumi:"webAppId"`
}

A collection of arguments for invoking getWebAppConfig.

func (GetWebAppConfigOutputArgs) ElementType

func (GetWebAppConfigOutputArgs) ElementType() reflect.Type

type GetWebAppConfigResult

type GetWebAppConfigResult struct {
	ApiKey      string `pulumi:"apiKey"`
	AuthDomain  string `pulumi:"authDomain"`
	DatabaseUrl string `pulumi:"databaseUrl"`
	// The provider-assigned unique ID for this managed resource.
	Id                string  `pulumi:"id"`
	LocationId        string  `pulumi:"locationId"`
	MeasurementId     string  `pulumi:"measurementId"`
	MessagingSenderId string  `pulumi:"messagingSenderId"`
	Project           *string `pulumi:"project"`
	StorageBucket     string  `pulumi:"storageBucket"`
	WebAppId          string  `pulumi:"webAppId"`
}

A collection of values returned by getWebAppConfig.

func GetWebAppConfig

func GetWebAppConfig(ctx *pulumi.Context, args *GetWebAppConfigArgs, opts ...pulumi.InvokeOption) (*GetWebAppConfigResult, error)

A Google Cloud Firebase web application configuration

To get more information about WebApp, see:

* [API documentation](https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/projects.webApps) * How-to Guides

type GetWebAppConfigResultOutput

type GetWebAppConfigResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getWebAppConfig.

func (GetWebAppConfigResultOutput) ApiKey

func (GetWebAppConfigResultOutput) AuthDomain

func (GetWebAppConfigResultOutput) DatabaseUrl

func (GetWebAppConfigResultOutput) ElementType

func (GetWebAppConfigResultOutput) Id

The provider-assigned unique ID for this managed resource.

func (GetWebAppConfigResultOutput) LocationId

func (GetWebAppConfigResultOutput) MeasurementId

func (GetWebAppConfigResultOutput) MessagingSenderId

func (o GetWebAppConfigResultOutput) MessagingSenderId() pulumi.StringOutput

func (GetWebAppConfigResultOutput) Project

func (GetWebAppConfigResultOutput) StorageBucket

func (GetWebAppConfigResultOutput) ToGetWebAppConfigResultOutput

func (o GetWebAppConfigResultOutput) ToGetWebAppConfigResultOutput() GetWebAppConfigResultOutput

func (GetWebAppConfigResultOutput) ToGetWebAppConfigResultOutputWithContext

func (o GetWebAppConfigResultOutput) ToGetWebAppConfigResultOutputWithContext(ctx context.Context) GetWebAppConfigResultOutput

func (GetWebAppConfigResultOutput) WebAppId

type LookupWebAppArgs

type LookupWebAppArgs struct {
	// The appIp of name of the Firebase webApp.
	AppId string `pulumi:"appId"`
}

A collection of arguments for invoking getWebApp.

type LookupWebAppOutputArgs

type LookupWebAppOutputArgs struct {
	// The appIp of name of the Firebase webApp.
	AppId pulumi.StringInput `pulumi:"appId"`
}

A collection of arguments for invoking getWebApp.

func (LookupWebAppOutputArgs) ElementType

func (LookupWebAppOutputArgs) ElementType() reflect.Type

type LookupWebAppResult

type LookupWebAppResult struct {
	AppId       string `pulumi:"appId"`
	DisplayName string `pulumi:"displayName"`
	// The provider-assigned unique ID for this managed resource.
	Id      string `pulumi:"id"`
	Name    string `pulumi:"name"`
	Project string `pulumi:"project"`
}

A collection of values returned by getWebApp.

func LookupWebApp

func LookupWebApp(ctx *pulumi.Context, args *LookupWebAppArgs, opts ...pulumi.InvokeOption) (*LookupWebAppResult, error)

A Google Cloud Firebase web application instance

type LookupWebAppResultOutput

type LookupWebAppResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getWebApp.

func (LookupWebAppResultOutput) AppId

func (LookupWebAppResultOutput) DisplayName

func (LookupWebAppResultOutput) ElementType

func (LookupWebAppResultOutput) ElementType() reflect.Type

func (LookupWebAppResultOutput) Id

The provider-assigned unique ID for this managed resource.

func (LookupWebAppResultOutput) Name

func (LookupWebAppResultOutput) Project

func (LookupWebAppResultOutput) ToLookupWebAppResultOutput

func (o LookupWebAppResultOutput) ToLookupWebAppResultOutput() LookupWebAppResultOutput

func (LookupWebAppResultOutput) ToLookupWebAppResultOutputWithContext

func (o LookupWebAppResultOutput) ToLookupWebAppResultOutputWithContext(ctx context.Context) LookupWebAppResultOutput

type Project

type Project struct {
	pulumi.CustomResourceState

	// The GCP project display name
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringOutput `pulumi:"project"`
	// The number of the google project that firebase is enabled on.
	ProjectNumber pulumi.StringOutput `pulumi:"projectNumber"`
}

A Google Cloud Firebase instance. This enables Firebase resources on a given google project. Since a FirebaseProject is actually also a GCP Project, a FirebaseProject uses underlying GCP identifiers (most importantly, the projectId) as its own for easy interop with GCP APIs.

Once Firebase has been added to a Google Project it cannot be removed.

To get more information about Project, see:

* [API documentation](https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/projects) * How-to Guides

## Example Usage ### Firebase Project Basic

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/firebase"
"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		defaultProject, err := organizations.NewProject(ctx, "defaultProject", &organizations.ProjectArgs{
			ProjectId: pulumi.String("tf-test"),
			OrgId:     pulumi.String("123456789"),
		}, pulumi.Provider(google_beta))
		if err != nil {
			return err
		}
		_, err = firebase.NewProject(ctx, "defaultFirebase/projectProject", &firebase.ProjectArgs{
			Project: defaultProject.ProjectId,
		}, pulumi.Provider(google_beta))
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

Project can be imported using any of these accepted formats

```sh

$ pulumi import gcp:firebase/project:Project default projects/{{project}}

```

```sh

$ pulumi import gcp:firebase/project:Project default {{project}}

```

func GetProject

func GetProject(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ProjectState, opts ...pulumi.ResourceOption) (*Project, error)

GetProject gets an existing Project 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 NewProject

func NewProject(ctx *pulumi.Context,
	name string, args *ProjectArgs, opts ...pulumi.ResourceOption) (*Project, error)

NewProject registers a new resource with the given unique name, arguments, and options.

func (*Project) ElementType

func (*Project) ElementType() reflect.Type

func (*Project) ToProjectOutput

func (i *Project) ToProjectOutput() ProjectOutput

func (*Project) ToProjectOutputWithContext

func (i *Project) ToProjectOutputWithContext(ctx context.Context) ProjectOutput

type ProjectArgs

type ProjectArgs struct {
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
}

The set of arguments for constructing a Project resource.

func (ProjectArgs) ElementType

func (ProjectArgs) ElementType() reflect.Type

type ProjectArray

type ProjectArray []ProjectInput

func (ProjectArray) ElementType

func (ProjectArray) ElementType() reflect.Type

func (ProjectArray) ToProjectArrayOutput

func (i ProjectArray) ToProjectArrayOutput() ProjectArrayOutput

func (ProjectArray) ToProjectArrayOutputWithContext

func (i ProjectArray) ToProjectArrayOutputWithContext(ctx context.Context) ProjectArrayOutput

type ProjectArrayInput

type ProjectArrayInput interface {
	pulumi.Input

	ToProjectArrayOutput() ProjectArrayOutput
	ToProjectArrayOutputWithContext(context.Context) ProjectArrayOutput
}

ProjectArrayInput is an input type that accepts ProjectArray and ProjectArrayOutput values. You can construct a concrete instance of `ProjectArrayInput` via:

ProjectArray{ ProjectArgs{...} }

type ProjectArrayOutput

type ProjectArrayOutput struct{ *pulumi.OutputState }

func (ProjectArrayOutput) ElementType

func (ProjectArrayOutput) ElementType() reflect.Type

func (ProjectArrayOutput) Index

func (ProjectArrayOutput) ToProjectArrayOutput

func (o ProjectArrayOutput) ToProjectArrayOutput() ProjectArrayOutput

func (ProjectArrayOutput) ToProjectArrayOutputWithContext

func (o ProjectArrayOutput) ToProjectArrayOutputWithContext(ctx context.Context) ProjectArrayOutput

type ProjectInput

type ProjectInput interface {
	pulumi.Input

	ToProjectOutput() ProjectOutput
	ToProjectOutputWithContext(ctx context.Context) ProjectOutput
}

type ProjectLocation

type ProjectLocation struct {
	pulumi.CustomResourceState

	// The ID of the default GCP resource location for the Project. The location must be one of the available GCP
	// resource locations.
	LocationId pulumi.StringOutput `pulumi:"locationId"`
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringOutput `pulumi:"project"`
}

Sets the default Google Cloud Platform (GCP) resource location for the specified FirebaseProject.

This method creates an App Engine application with a default Cloud Storage bucket, located in the specified locationId. This location must be one of the available GCP resource locations.

After the default GCP resource location is finalized, or if it was already set, it cannot be changed. The default GCP resource location for the specified FirebaseProject might already be set because either the GCP Project already has an App Engine application or defaultLocation.finalize was previously called with a specified locationId. Any new calls to defaultLocation.finalize with a different specified locationId will return a 409 error.

To get more information about ProjectLocation, see:

* [API documentation](https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/projects.defaultLocation/finalize) * How-to Guides

## Example Usage ### Firebase Project Location Basic

```go package main

import (

"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/firebase"
"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		defaultProject, err := organizations.NewProject(ctx, "defaultProject", &organizations.ProjectArgs{
			ProjectId: pulumi.String("tf-test"),
			OrgId:     pulumi.String("123456789"),
		}, pulumi.Provider(google_beta))
		if err != nil {
			return err
		}
		_, err = firebase.NewProject(ctx, "defaultFirebase/projectProject", &firebase.ProjectArgs{
			Project: defaultProject.ProjectId,
		}, pulumi.Provider(google_beta))
		if err != nil {
			return err
		}
		_, err = firebase.NewProjectLocation(ctx, "basic", &firebase.ProjectLocationArgs{
			Project:    defaultFirebase / projectProject.Project,
			LocationId: pulumi.String("us-central"),
		}, pulumi.Provider(google_beta))
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

ProjectLocation can be imported using any of these accepted formats

```sh

$ pulumi import gcp:firebase/projectLocation:ProjectLocation default projects/{{project}}

```

```sh

$ pulumi import gcp:firebase/projectLocation:ProjectLocation default {{project}}

```

func GetProjectLocation

func GetProjectLocation(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ProjectLocationState, opts ...pulumi.ResourceOption) (*ProjectLocation, error)

GetProjectLocation gets an existing ProjectLocation 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 NewProjectLocation

func NewProjectLocation(ctx *pulumi.Context,
	name string, args *ProjectLocationArgs, opts ...pulumi.ResourceOption) (*ProjectLocation, error)

NewProjectLocation registers a new resource with the given unique name, arguments, and options.

func (*ProjectLocation) ElementType

func (*ProjectLocation) ElementType() reflect.Type

func (*ProjectLocation) ToProjectLocationOutput

func (i *ProjectLocation) ToProjectLocationOutput() ProjectLocationOutput

func (*ProjectLocation) ToProjectLocationOutputWithContext

func (i *ProjectLocation) ToProjectLocationOutputWithContext(ctx context.Context) ProjectLocationOutput

type ProjectLocationArgs

type ProjectLocationArgs struct {
	// The ID of the default GCP resource location for the Project. The location must be one of the available GCP
	// resource locations.
	LocationId pulumi.StringInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
}

The set of arguments for constructing a ProjectLocation resource.

func (ProjectLocationArgs) ElementType

func (ProjectLocationArgs) ElementType() reflect.Type

type ProjectLocationArray

type ProjectLocationArray []ProjectLocationInput

func (ProjectLocationArray) ElementType

func (ProjectLocationArray) ElementType() reflect.Type

func (ProjectLocationArray) ToProjectLocationArrayOutput

func (i ProjectLocationArray) ToProjectLocationArrayOutput() ProjectLocationArrayOutput

func (ProjectLocationArray) ToProjectLocationArrayOutputWithContext

func (i ProjectLocationArray) ToProjectLocationArrayOutputWithContext(ctx context.Context) ProjectLocationArrayOutput

type ProjectLocationArrayInput

type ProjectLocationArrayInput interface {
	pulumi.Input

	ToProjectLocationArrayOutput() ProjectLocationArrayOutput
	ToProjectLocationArrayOutputWithContext(context.Context) ProjectLocationArrayOutput
}

ProjectLocationArrayInput is an input type that accepts ProjectLocationArray and ProjectLocationArrayOutput values. You can construct a concrete instance of `ProjectLocationArrayInput` via:

ProjectLocationArray{ ProjectLocationArgs{...} }

type ProjectLocationArrayOutput

type ProjectLocationArrayOutput struct{ *pulumi.OutputState }

func (ProjectLocationArrayOutput) ElementType

func (ProjectLocationArrayOutput) ElementType() reflect.Type

func (ProjectLocationArrayOutput) Index

func (ProjectLocationArrayOutput) ToProjectLocationArrayOutput

func (o ProjectLocationArrayOutput) ToProjectLocationArrayOutput() ProjectLocationArrayOutput

func (ProjectLocationArrayOutput) ToProjectLocationArrayOutputWithContext

func (o ProjectLocationArrayOutput) ToProjectLocationArrayOutputWithContext(ctx context.Context) ProjectLocationArrayOutput

type ProjectLocationInput

type ProjectLocationInput interface {
	pulumi.Input

	ToProjectLocationOutput() ProjectLocationOutput
	ToProjectLocationOutputWithContext(ctx context.Context) ProjectLocationOutput
}

type ProjectLocationMap

type ProjectLocationMap map[string]ProjectLocationInput

func (ProjectLocationMap) ElementType

func (ProjectLocationMap) ElementType() reflect.Type

func (ProjectLocationMap) ToProjectLocationMapOutput

func (i ProjectLocationMap) ToProjectLocationMapOutput() ProjectLocationMapOutput

func (ProjectLocationMap) ToProjectLocationMapOutputWithContext

func (i ProjectLocationMap) ToProjectLocationMapOutputWithContext(ctx context.Context) ProjectLocationMapOutput

type ProjectLocationMapInput

type ProjectLocationMapInput interface {
	pulumi.Input

	ToProjectLocationMapOutput() ProjectLocationMapOutput
	ToProjectLocationMapOutputWithContext(context.Context) ProjectLocationMapOutput
}

ProjectLocationMapInput is an input type that accepts ProjectLocationMap and ProjectLocationMapOutput values. You can construct a concrete instance of `ProjectLocationMapInput` via:

ProjectLocationMap{ "key": ProjectLocationArgs{...} }

type ProjectLocationMapOutput

type ProjectLocationMapOutput struct{ *pulumi.OutputState }

func (ProjectLocationMapOutput) ElementType

func (ProjectLocationMapOutput) ElementType() reflect.Type

func (ProjectLocationMapOutput) MapIndex

func (ProjectLocationMapOutput) ToProjectLocationMapOutput

func (o ProjectLocationMapOutput) ToProjectLocationMapOutput() ProjectLocationMapOutput

func (ProjectLocationMapOutput) ToProjectLocationMapOutputWithContext

func (o ProjectLocationMapOutput) ToProjectLocationMapOutputWithContext(ctx context.Context) ProjectLocationMapOutput

type ProjectLocationOutput

type ProjectLocationOutput struct{ *pulumi.OutputState }

func (ProjectLocationOutput) ElementType

func (ProjectLocationOutput) ElementType() reflect.Type

func (ProjectLocationOutput) LocationId added in v6.23.0

func (o ProjectLocationOutput) LocationId() pulumi.StringOutput

The ID of the default GCP resource location for the Project. The location must be one of the available GCP resource locations.

func (ProjectLocationOutput) Project added in v6.23.0

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

func (ProjectLocationOutput) ToProjectLocationOutput

func (o ProjectLocationOutput) ToProjectLocationOutput() ProjectLocationOutput

func (ProjectLocationOutput) ToProjectLocationOutputWithContext

func (o ProjectLocationOutput) ToProjectLocationOutputWithContext(ctx context.Context) ProjectLocationOutput

type ProjectLocationState

type ProjectLocationState struct {
	// The ID of the default GCP resource location for the Project. The location must be one of the available GCP
	// resource locations.
	LocationId pulumi.StringPtrInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
}

func (ProjectLocationState) ElementType

func (ProjectLocationState) ElementType() reflect.Type

type ProjectMap

type ProjectMap map[string]ProjectInput

func (ProjectMap) ElementType

func (ProjectMap) ElementType() reflect.Type

func (ProjectMap) ToProjectMapOutput

func (i ProjectMap) ToProjectMapOutput() ProjectMapOutput

func (ProjectMap) ToProjectMapOutputWithContext

func (i ProjectMap) ToProjectMapOutputWithContext(ctx context.Context) ProjectMapOutput

type ProjectMapInput

type ProjectMapInput interface {
	pulumi.Input

	ToProjectMapOutput() ProjectMapOutput
	ToProjectMapOutputWithContext(context.Context) ProjectMapOutput
}

ProjectMapInput is an input type that accepts ProjectMap and ProjectMapOutput values. You can construct a concrete instance of `ProjectMapInput` via:

ProjectMap{ "key": ProjectArgs{...} }

type ProjectMapOutput

type ProjectMapOutput struct{ *pulumi.OutputState }

func (ProjectMapOutput) ElementType

func (ProjectMapOutput) ElementType() reflect.Type

func (ProjectMapOutput) MapIndex

func (ProjectMapOutput) ToProjectMapOutput

func (o ProjectMapOutput) ToProjectMapOutput() ProjectMapOutput

func (ProjectMapOutput) ToProjectMapOutputWithContext

func (o ProjectMapOutput) ToProjectMapOutputWithContext(ctx context.Context) ProjectMapOutput

type ProjectOutput

type ProjectOutput struct{ *pulumi.OutputState }

func (ProjectOutput) DisplayName added in v6.23.0

func (o ProjectOutput) DisplayName() pulumi.StringOutput

The GCP project display name

func (ProjectOutput) ElementType

func (ProjectOutput) ElementType() reflect.Type

func (ProjectOutput) Project added in v6.23.0

func (o ProjectOutput) Project() pulumi.StringOutput

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

func (ProjectOutput) ProjectNumber added in v6.23.0

func (o ProjectOutput) ProjectNumber() pulumi.StringOutput

The number of the google project that firebase is enabled on.

func (ProjectOutput) ToProjectOutput

func (o ProjectOutput) ToProjectOutput() ProjectOutput

func (ProjectOutput) ToProjectOutputWithContext

func (o ProjectOutput) ToProjectOutputWithContext(ctx context.Context) ProjectOutput

type ProjectState

type ProjectState struct {
	// The GCP project display name
	DisplayName pulumi.StringPtrInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
	// The number of the google project that firebase is enabled on.
	ProjectNumber pulumi.StringPtrInput
}

func (ProjectState) ElementType

func (ProjectState) ElementType() reflect.Type

type WebApp

type WebApp struct {
	pulumi.CustomResourceState

	// Immutable. The globally unique, Firebase-assigned identifier of the App. This identifier should be treated as an opaque
	// token, as the data format is not specified.
	AppId pulumi.StringOutput `pulumi:"appId"`
	// The user-assigned display name of the App.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// The fully qualified resource name of the App, for example: projects/projectId/webApps/appId
	Name pulumi.StringOutput `pulumi:"name"`
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringOutput `pulumi:"project"`
}

A Google Cloud Firebase web application instance

To get more information about WebApp, see:

* [API documentation](https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/projects.webApps) * How-to Guides

## Example Usage

## Import

WebApp can be imported using any of these accepted formats

```sh

$ pulumi import gcp:firebase/webApp:WebApp default {{project}}/{{name}}

```

```sh

$ pulumi import gcp:firebase/webApp:WebApp default {{project}} {{name}}

```

```sh

$ pulumi import gcp:firebase/webApp:WebApp default {{name}}

```

func GetWebApp

func GetWebApp(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *WebAppState, opts ...pulumi.ResourceOption) (*WebApp, error)

GetWebApp gets an existing WebApp 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 NewWebApp

func NewWebApp(ctx *pulumi.Context,
	name string, args *WebAppArgs, opts ...pulumi.ResourceOption) (*WebApp, error)

NewWebApp registers a new resource with the given unique name, arguments, and options.

func (*WebApp) ElementType

func (*WebApp) ElementType() reflect.Type

func (*WebApp) ToWebAppOutput

func (i *WebApp) ToWebAppOutput() WebAppOutput

func (*WebApp) ToWebAppOutputWithContext

func (i *WebApp) ToWebAppOutputWithContext(ctx context.Context) WebAppOutput

type WebAppArgs

type WebAppArgs struct {
	// The user-assigned display name of the App.
	DisplayName pulumi.StringInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
}

The set of arguments for constructing a WebApp resource.

func (WebAppArgs) ElementType

func (WebAppArgs) ElementType() reflect.Type

type WebAppArray

type WebAppArray []WebAppInput

func (WebAppArray) ElementType

func (WebAppArray) ElementType() reflect.Type

func (WebAppArray) ToWebAppArrayOutput

func (i WebAppArray) ToWebAppArrayOutput() WebAppArrayOutput

func (WebAppArray) ToWebAppArrayOutputWithContext

func (i WebAppArray) ToWebAppArrayOutputWithContext(ctx context.Context) WebAppArrayOutput

type WebAppArrayInput

type WebAppArrayInput interface {
	pulumi.Input

	ToWebAppArrayOutput() WebAppArrayOutput
	ToWebAppArrayOutputWithContext(context.Context) WebAppArrayOutput
}

WebAppArrayInput is an input type that accepts WebAppArray and WebAppArrayOutput values. You can construct a concrete instance of `WebAppArrayInput` via:

WebAppArray{ WebAppArgs{...} }

type WebAppArrayOutput

type WebAppArrayOutput struct{ *pulumi.OutputState }

func (WebAppArrayOutput) ElementType

func (WebAppArrayOutput) ElementType() reflect.Type

func (WebAppArrayOutput) Index

func (WebAppArrayOutput) ToWebAppArrayOutput

func (o WebAppArrayOutput) ToWebAppArrayOutput() WebAppArrayOutput

func (WebAppArrayOutput) ToWebAppArrayOutputWithContext

func (o WebAppArrayOutput) ToWebAppArrayOutputWithContext(ctx context.Context) WebAppArrayOutput

type WebAppInput

type WebAppInput interface {
	pulumi.Input

	ToWebAppOutput() WebAppOutput
	ToWebAppOutputWithContext(ctx context.Context) WebAppOutput
}

type WebAppMap

type WebAppMap map[string]WebAppInput

func (WebAppMap) ElementType

func (WebAppMap) ElementType() reflect.Type

func (WebAppMap) ToWebAppMapOutput

func (i WebAppMap) ToWebAppMapOutput() WebAppMapOutput

func (WebAppMap) ToWebAppMapOutputWithContext

func (i WebAppMap) ToWebAppMapOutputWithContext(ctx context.Context) WebAppMapOutput

type WebAppMapInput

type WebAppMapInput interface {
	pulumi.Input

	ToWebAppMapOutput() WebAppMapOutput
	ToWebAppMapOutputWithContext(context.Context) WebAppMapOutput
}

WebAppMapInput is an input type that accepts WebAppMap and WebAppMapOutput values. You can construct a concrete instance of `WebAppMapInput` via:

WebAppMap{ "key": WebAppArgs{...} }

type WebAppMapOutput

type WebAppMapOutput struct{ *pulumi.OutputState }

func (WebAppMapOutput) ElementType

func (WebAppMapOutput) ElementType() reflect.Type

func (WebAppMapOutput) MapIndex

func (WebAppMapOutput) ToWebAppMapOutput

func (o WebAppMapOutput) ToWebAppMapOutput() WebAppMapOutput

func (WebAppMapOutput) ToWebAppMapOutputWithContext

func (o WebAppMapOutput) ToWebAppMapOutputWithContext(ctx context.Context) WebAppMapOutput

type WebAppOutput

type WebAppOutput struct{ *pulumi.OutputState }

func (WebAppOutput) AppId added in v6.23.0

func (o WebAppOutput) AppId() pulumi.StringOutput

Immutable. The globally unique, Firebase-assigned identifier of the App. This identifier should be treated as an opaque token, as the data format is not specified.

func (WebAppOutput) DisplayName added in v6.23.0

func (o WebAppOutput) DisplayName() pulumi.StringOutput

The user-assigned display name of the App.

func (WebAppOutput) ElementType

func (WebAppOutput) ElementType() reflect.Type

func (WebAppOutput) Name added in v6.23.0

func (o WebAppOutput) Name() pulumi.StringOutput

The fully qualified resource name of the App, for example: projects/projectId/webApps/appId

func (WebAppOutput) Project added in v6.23.0

func (o WebAppOutput) Project() pulumi.StringOutput

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

func (WebAppOutput) ToWebAppOutput

func (o WebAppOutput) ToWebAppOutput() WebAppOutput

func (WebAppOutput) ToWebAppOutputWithContext

func (o WebAppOutput) ToWebAppOutputWithContext(ctx context.Context) WebAppOutput

type WebAppState

type WebAppState struct {
	// Immutable. The globally unique, Firebase-assigned identifier of the App. This identifier should be treated as an opaque
	// token, as the data format is not specified.
	AppId pulumi.StringPtrInput
	// The user-assigned display name of the App.
	DisplayName pulumi.StringPtrInput
	// The fully qualified resource name of the App, for example: projects/projectId/webApps/appId
	Name pulumi.StringPtrInput
	// The ID of the project in which the resource belongs.
	// If it is not provided, the provider project is used.
	Project pulumi.StringPtrInput
}

func (WebAppState) ElementType

func (WebAppState) ElementType() reflect.Type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL