1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. firebase
  5. AppleApp
Google Cloud v8.25.1 published on Wednesday, Apr 9, 2025 by Pulumi

gcp.firebase.AppleApp

Explore with Pulumi AI

Example Usage

Firebase Apple App Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const _default = new gcp.firebase.AppleApp("default", {
    project: "my-project-name",
    displayName: "Display Name Basic",
    bundleId: "apple.app.12345",
});
Copy
import pulumi
import pulumi_gcp as gcp

default = gcp.firebase.AppleApp("default",
    project="my-project-name",
    display_name="Display Name Basic",
    bundle_id="apple.app.12345")
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/firebase"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := firebase.NewAppleApp(ctx, "default", &firebase.AppleAppArgs{
			Project:     pulumi.String("my-project-name"),
			DisplayName: pulumi.String("Display Name Basic"),
			BundleId:    pulumi.String("apple.app.12345"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var @default = new Gcp.Firebase.AppleApp("default", new()
    {
        Project = "my-project-name",
        DisplayName = "Display Name Basic",
        BundleId = "apple.app.12345",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.firebase.AppleApp;
import com.pulumi.gcp.firebase.AppleAppArgs;
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 default_ = new AppleApp("default", AppleAppArgs.builder()
            .project("my-project-name")
            .displayName("Display Name Basic")
            .bundleId("apple.app.12345")
            .build());

    }
}
Copy
resources:
  default:
    type: gcp:firebase:AppleApp
    properties:
      project: my-project-name
      displayName: Display Name Basic
      bundleId: apple.app.12345
Copy

Firebase Apple App Full

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const apple = new gcp.projects.ApiKey("apple", {
    name: "api-key",
    displayName: "Display Name Full",
    project: "my-project-name",
    restrictions: {
        iosKeyRestrictions: {
            allowedBundleIds: ["apple.app.12345"],
        },
    },
});
const full = new gcp.firebase.AppleApp("full", {
    project: "my-project-name",
    displayName: "Display Name Full",
    bundleId: "apple.app.12345",
    appStoreId: "12345",
    teamId: "9987654321",
    apiKeyId: apple.uid,
});
Copy
import pulumi
import pulumi_gcp as gcp

apple = gcp.projects.ApiKey("apple",
    name="api-key",
    display_name="Display Name Full",
    project="my-project-name",
    restrictions={
        "ios_key_restrictions": {
            "allowed_bundle_ids": ["apple.app.12345"],
        },
    })
full = gcp.firebase.AppleApp("full",
    project="my-project-name",
    display_name="Display Name Full",
    bundle_id="apple.app.12345",
    app_store_id="12345",
    team_id="9987654321",
    api_key_id=apple.uid)
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/firebase"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/projects"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		apple, err := projects.NewApiKey(ctx, "apple", &projects.ApiKeyArgs{
			Name:        pulumi.String("api-key"),
			DisplayName: pulumi.String("Display Name Full"),
			Project:     pulumi.String("my-project-name"),
			Restrictions: &projects.ApiKeyRestrictionsArgs{
				IosKeyRestrictions: &projects.ApiKeyRestrictionsIosKeyRestrictionsArgs{
					AllowedBundleIds: pulumi.StringArray{
						pulumi.String("apple.app.12345"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = firebase.NewAppleApp(ctx, "full", &firebase.AppleAppArgs{
			Project:     pulumi.String("my-project-name"),
			DisplayName: pulumi.String("Display Name Full"),
			BundleId:    pulumi.String("apple.app.12345"),
			AppStoreId:  pulumi.String("12345"),
			TeamId:      pulumi.String("9987654321"),
			ApiKeyId:    apple.Uid,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var apple = new Gcp.Projects.ApiKey("apple", new()
    {
        Name = "api-key",
        DisplayName = "Display Name Full",
        Project = "my-project-name",
        Restrictions = new Gcp.Projects.Inputs.ApiKeyRestrictionsArgs
        {
            IosKeyRestrictions = new Gcp.Projects.Inputs.ApiKeyRestrictionsIosKeyRestrictionsArgs
            {
                AllowedBundleIds = new[]
                {
                    "apple.app.12345",
                },
            },
        },
    });

    var full = new Gcp.Firebase.AppleApp("full", new()
    {
        Project = "my-project-name",
        DisplayName = "Display Name Full",
        BundleId = "apple.app.12345",
        AppStoreId = "12345",
        TeamId = "9987654321",
        ApiKeyId = apple.Uid,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.projects.ApiKey;
import com.pulumi.gcp.projects.ApiKeyArgs;
import com.pulumi.gcp.projects.inputs.ApiKeyRestrictionsArgs;
import com.pulumi.gcp.projects.inputs.ApiKeyRestrictionsIosKeyRestrictionsArgs;
import com.pulumi.gcp.firebase.AppleApp;
import com.pulumi.gcp.firebase.AppleAppArgs;
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 apple = new ApiKey("apple", ApiKeyArgs.builder()
            .name("api-key")
            .displayName("Display Name Full")
            .project("my-project-name")
            .restrictions(ApiKeyRestrictionsArgs.builder()
                .iosKeyRestrictions(ApiKeyRestrictionsIosKeyRestrictionsArgs.builder()
                    .allowedBundleIds("apple.app.12345")
                    .build())
                .build())
            .build());

        var full = new AppleApp("full", AppleAppArgs.builder()
            .project("my-project-name")
            .displayName("Display Name Full")
            .bundleId("apple.app.12345")
            .appStoreId("12345")
            .teamId("9987654321")
            .apiKeyId(apple.uid())
            .build());

    }
}
Copy
resources:
  full:
    type: gcp:firebase:AppleApp
    properties:
      project: my-project-name
      displayName: Display Name Full
      bundleId: apple.app.12345
      appStoreId: '12345'
      teamId: '9987654321'
      apiKeyId: ${apple.uid}
  apple:
    type: gcp:projects:ApiKey
    properties:
      name: api-key
      displayName: Display Name Full
      project: my-project-name
      restrictions:
        iosKeyRestrictions:
          allowedBundleIds:
            - apple.app.12345
Copy

Create AppleApp Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AppleApp(name: string, args: AppleAppArgs, opts?: CustomResourceOptions);
@overload
def AppleApp(resource_name: str,
             args: AppleAppArgs,
             opts: Optional[ResourceOptions] = None)

@overload
def AppleApp(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             bundle_id: Optional[str] = None,
             display_name: Optional[str] = None,
             api_key_id: Optional[str] = None,
             app_store_id: Optional[str] = None,
             deletion_policy: Optional[str] = None,
             project: Optional[str] = None,
             team_id: Optional[str] = None)
func NewAppleApp(ctx *Context, name string, args AppleAppArgs, opts ...ResourceOption) (*AppleApp, error)
public AppleApp(string name, AppleAppArgs args, CustomResourceOptions? opts = null)
public AppleApp(String name, AppleAppArgs args)
public AppleApp(String name, AppleAppArgs args, CustomResourceOptions options)
type: gcp:firebase:AppleApp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AppleAppArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AppleAppArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AppleAppArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AppleAppArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AppleAppArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var appleAppResource = new Gcp.Firebase.AppleApp("appleAppResource", new()
{
    BundleId = "string",
    DisplayName = "string",
    ApiKeyId = "string",
    AppStoreId = "string",
    DeletionPolicy = "string",
    Project = "string",
    TeamId = "string",
});
Copy
example, err := firebase.NewAppleApp(ctx, "appleAppResource", &firebase.AppleAppArgs{
	BundleId:       pulumi.String("string"),
	DisplayName:    pulumi.String("string"),
	ApiKeyId:       pulumi.String("string"),
	AppStoreId:     pulumi.String("string"),
	DeletionPolicy: pulumi.String("string"),
	Project:        pulumi.String("string"),
	TeamId:         pulumi.String("string"),
})
Copy
var appleAppResource = new AppleApp("appleAppResource", AppleAppArgs.builder()
    .bundleId("string")
    .displayName("string")
    .apiKeyId("string")
    .appStoreId("string")
    .deletionPolicy("string")
    .project("string")
    .teamId("string")
    .build());
Copy
apple_app_resource = gcp.firebase.AppleApp("appleAppResource",
    bundle_id="string",
    display_name="string",
    api_key_id="string",
    app_store_id="string",
    deletion_policy="string",
    project="string",
    team_id="string")
Copy
const appleAppResource = new gcp.firebase.AppleApp("appleAppResource", {
    bundleId: "string",
    displayName: "string",
    apiKeyId: "string",
    appStoreId: "string",
    deletionPolicy: "string",
    project: "string",
    teamId: "string",
});
Copy
type: gcp:firebase:AppleApp
properties:
    apiKeyId: string
    appStoreId: string
    bundleId: string
    deletionPolicy: string
    displayName: string
    project: string
    teamId: string
Copy

AppleApp Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AppleApp resource accepts the following input properties:

BundleId
This property is required.
Changes to this property will trigger replacement.
string
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


DisplayName This property is required. string
The user-assigned display name of the App.
ApiKeyId string
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
AppStoreId string
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
DeletionPolicy string
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
TeamId string
The Apple Developer Team ID associated with the App in the App Store.
BundleId
This property is required.
Changes to this property will trigger replacement.
string
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


DisplayName This property is required. string
The user-assigned display name of the App.
ApiKeyId string
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
AppStoreId string
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
DeletionPolicy string
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
TeamId string
The Apple Developer Team ID associated with the App in the App Store.
bundleId
This property is required.
Changes to this property will trigger replacement.
String
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


displayName This property is required. String
The user-assigned display name of the App.
apiKeyId String
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
appStoreId String
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
deletionPolicy String
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
teamId String
The Apple Developer Team ID associated with the App in the App Store.
bundleId
This property is required.
Changes to this property will trigger replacement.
string
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


displayName This property is required. string
The user-assigned display name of the App.
apiKeyId string
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
appStoreId string
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
deletionPolicy string
project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
teamId string
The Apple Developer Team ID associated with the App in the App Store.
bundle_id
This property is required.
Changes to this property will trigger replacement.
str
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


display_name This property is required. str
The user-assigned display name of the App.
api_key_id str
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
app_store_id str
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
deletion_policy str
project Changes to this property will trigger replacement. str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
team_id str
The Apple Developer Team ID associated with the App in the App Store.
bundleId
This property is required.
Changes to this property will trigger replacement.
String
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


displayName This property is required. String
The user-assigned display name of the App.
apiKeyId String
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
appStoreId String
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
deletionPolicy String
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
teamId String
The Apple Developer Team ID associated with the App in the App Store.

Outputs

All input properties are implicitly available as output properties. Additionally, the AppleApp resource produces the following output properties:

AppId string
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.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
AppId string
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.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
appId String
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.
id String
The provider-assigned unique ID for this managed resource.
name String
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
appId string
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.
id string
The provider-assigned unique ID for this managed resource.
name string
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
app_id str
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.
id str
The provider-assigned unique ID for this managed resource.
name str
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
appId String
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.
id String
The provider-assigned unique ID for this managed resource.
name String
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId

Look up Existing AppleApp Resource

Get an existing AppleApp resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: AppleAppState, opts?: CustomResourceOptions): AppleApp
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        api_key_id: Optional[str] = None,
        app_id: Optional[str] = None,
        app_store_id: Optional[str] = None,
        bundle_id: Optional[str] = None,
        deletion_policy: Optional[str] = None,
        display_name: Optional[str] = None,
        name: Optional[str] = None,
        project: Optional[str] = None,
        team_id: Optional[str] = None) -> AppleApp
func GetAppleApp(ctx *Context, name string, id IDInput, state *AppleAppState, opts ...ResourceOption) (*AppleApp, error)
public static AppleApp Get(string name, Input<string> id, AppleAppState? state, CustomResourceOptions? opts = null)
public static AppleApp get(String name, Output<String> id, AppleAppState state, CustomResourceOptions options)
resources:  _:    type: gcp:firebase:AppleApp    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ApiKeyId string
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
AppId string
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.
AppStoreId string
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
BundleId Changes to this property will trigger replacement. string
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


DeletionPolicy string
DisplayName string
The user-assigned display name of the App.
Name string
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
TeamId string
The Apple Developer Team ID associated with the App in the App Store.
ApiKeyId string
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
AppId string
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.
AppStoreId string
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
BundleId Changes to this property will trigger replacement. string
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


DeletionPolicy string
DisplayName string
The user-assigned display name of the App.
Name string
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
TeamId string
The Apple Developer Team ID associated with the App in the App Store.
apiKeyId String
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
appId String
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.
appStoreId String
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
bundleId Changes to this property will trigger replacement. String
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


deletionPolicy String
displayName String
The user-assigned display name of the App.
name String
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
teamId String
The Apple Developer Team ID associated with the App in the App Store.
apiKeyId string
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
appId string
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.
appStoreId string
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
bundleId Changes to this property will trigger replacement. string
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


deletionPolicy string
displayName string
The user-assigned display name of the App.
name string
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
teamId string
The Apple Developer Team ID associated with the App in the App Store.
api_key_id str
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
app_id str
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.
app_store_id str
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
bundle_id Changes to this property will trigger replacement. str
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


deletion_policy str
display_name str
The user-assigned display name of the App.
name str
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
project Changes to this property will trigger replacement. str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
team_id str
The Apple Developer Team ID associated with the App in the App Store.
apiKeyId String
The globally unique, Google-assigned identifier (UID) for the Firebase API key associated with the AppleApp. If apiKeyId is not set during creation, then Firebase automatically associates an apiKeyId with the AppleApp. This auto-associated key may be an existing valid key or, if no valid key exists, a new one will be provisioned.
appId String
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.
appStoreId String
The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
bundleId Changes to this property will trigger replacement. String
The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.


deletionPolicy String
displayName String
The user-assigned display name of the App.
name String
The fully qualified resource name of the App, for example: projects/projectId/iosApps/appId
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
teamId String
The Apple Developer Team ID associated with the App in the App Store.

Import

AppleApp can be imported using any of these accepted formats:

  • {{project}} projects/{{project}}/iosApps/{{app_id}}

  • projects/{{project}}/iosApps/{{app_id}}

  • {{project}}/{{project}}/{{app_id}}

  • iosApps/{{app_id}}

  • {{app_id}}

When using the pulumi import command, AppleApp can be imported using one of the formats above. For example:

$ pulumi import gcp:firebase/appleApp:AppleApp default "{{project}} projects/{{project}}/iosApps/{{app_id}}"
Copy
$ pulumi import gcp:firebase/appleApp:AppleApp default projects/{{project}}/iosApps/{{app_id}}
Copy
$ pulumi import gcp:firebase/appleApp:AppleApp default {{project}}/{{project}}/{{app_id}}
Copy
$ pulumi import gcp:firebase/appleApp:AppleApp default iosApps/{{app_id}}
Copy
$ pulumi import gcp:firebase/appleApp:AppleApp default {{app_id}}
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.