import * as pulumi from "@pulumi/pulumi"; /** * Requests the creation of a new IosApp in the specified FirebaseProject. The result of this call is an `Operation` which can be used to track the provisioning process. The `Operation` is automatically deleted after completion, so there is no need to call `DeleteOperation`. */ export declare class IosApp extends pulumi.CustomResource { /** * Get an existing IosApp 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): IosApp; /** * Returns true if the given object is an instance of IosApp. 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 IosApp; /** * Immutable. The globally unique, Firebase-assigned identifier for the `IosApp`. This identifier should be treated as an opaque token, as the data format is not specified. */ readonly appId: pulumi.Output; /** * The automatically generated Apple ID assigned to the iOS app by Apple in the iOS App Store. */ readonly appStoreId: pulumi.Output; /** * Immutable. The canonical bundle ID of the iOS app as it would appear in the iOS AppStore. */ readonly bundleId: pulumi.Output; /** * The user-assigned display name for the `IosApp`. */ readonly displayName: pulumi.Output; /** * The resource name of the IosApp, in the format: projects/PROJECT_IDENTIFIER /iosApps/APP_ID * PROJECT_IDENTIFIER: the parent Project's [`ProjectNumber`](../projects#FirebaseProject.FIELDS.project_number) ***(recommended)*** or its [`ProjectId`](../projects#FirebaseProject.FIELDS.project_id). Learn more about using project identifiers in Google's [AIP 2510 standard](https://google.aip.dev/cloud/2510). Note that the value for PROJECT_IDENTIFIER in any response body will be the `ProjectId`. * APP_ID: the globally unique, Firebase-assigned identifier for the App (see [`appId`](../projects.iosApps#IosApp.FIELDS.app_id)). */ readonly name: pulumi.Output; /** * Immutable. A user-assigned unique identifier of the parent FirebaseProject for the `IosApp`. */ readonly projectId: pulumi.Output; /** * Create a IosApp 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: IosAppArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a IosApp resource. */ export interface IosAppArgs { /** * Immutable. The globally unique, Firebase-assigned identifier for the `IosApp`. This identifier should be treated as an opaque token, as the data format is not specified. */ readonly appId?: pulumi.Input; /** * The automatically generated Apple ID assigned to the iOS app by Apple in the iOS App Store. */ readonly appStoreId?: pulumi.Input; /** * Immutable. The canonical bundle ID of the iOS app as it would appear in the iOS AppStore. */ readonly bundleId?: pulumi.Input; /** * The user-assigned display name for the `IosApp`. */ readonly displayName?: pulumi.Input; readonly iosAppsId: pulumi.Input; /** * The resource name of the IosApp, in the format: projects/PROJECT_IDENTIFIER /iosApps/APP_ID * PROJECT_IDENTIFIER: the parent Project's [`ProjectNumber`](../projects#FirebaseProject.FIELDS.project_number) ***(recommended)*** or its [`ProjectId`](../projects#FirebaseProject.FIELDS.project_id). Learn more about using project identifiers in Google's [AIP 2510 standard](https://google.aip.dev/cloud/2510). Note that the value for PROJECT_IDENTIFIER in any response body will be the `ProjectId`. * APP_ID: the globally unique, Firebase-assigned identifier for the App (see [`appId`](../projects.iosApps#IosApp.FIELDS.app_id)). */ readonly name?: pulumi.Input; /** * Immutable. A user-assigned unique identifier of the parent FirebaseProject for the `IosApp`. */ readonly projectId?: pulumi.Input; readonly projectsId: pulumi.Input; }