AppleApp

Example Usage

Firebase Apple App Basic

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 com.pulumi.resources.CustomResourceOptions;
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(), CustomResourceOptions.builder()
.provider(google_beta)
.build());
}
}

Firebase Apple App Full

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 com.pulumi.resources.CustomResourceOptions;
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 full = new AppleApp("full", AppleAppArgs.builder()
.project("my-project-name")
.displayName("Display Name Full")
.bundleId("apple.app.12345")
.appStoreId("12345")
.teamId("9987654321")
.build(), CustomResourceOptions.builder()
.provider(google_beta)
.build());
}
}

Import

AppleApp can be imported using any of these accepted formats

$ pulumi import gcp:firebase/appleApp:AppleApp default projects/{{project}}/iosApps/{{appId}}
$ pulumi import gcp:firebase/appleApp:AppleApp default {{project}}/{{appId}}
$ pulumi import gcp:firebase/appleApp:AppleApp default iosApps/{{appId}}
$ pulumi import gcp:firebase/appleApp:AppleApp default {{appId}}

Properties

Link copied to clipboard
val appId: Output<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.

Link copied to clipboard
val appStoreId: Output<String>?

The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.

Link copied to clipboard
val bundleId: Output<String>?

The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.

Link copied to clipboard
val deletionPolicy: Output<String>?

(Optional) Set to 'ABANDON' to allow the AppleApp to be untracked from terraform state rather than deleted upon 'terraform destroy'. This is useful because the AppleApp may be serving traffic. Set to 'DELETE' to delete the AppleApp. Default to 'DELETE'.

Link copied to clipboard
val displayName: Output<String>

The user-assigned display name of the App.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

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

Link copied to clipboard
val project: Output<String>

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

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val teamId: Output<String>?

The Apple Developer Team ID associated with the App in the App Store.

Link copied to clipboard
val urn: Output<String>