com.pulumi.gcp.firebase.kotlin.AppleAppArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.firebase.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.firebase.AppleAppArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* ## Example Usage
* ### Firebase Apple App Basic
*
* ```typescript
* 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",
* });
* ```
* ```python
* 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")
* ```
* ```csharp
* 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",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/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
* })
* }
* ```
* ```java
* 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());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:firebase:AppleApp
* properties:
* project: my-project-name
* displayName: Display Name Basic
* bundleId: apple.app.12345
* ```
*
* ### Firebase Apple App Full
*
* ```typescript
* 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,
* });
* ```
* ```python
* 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=gcp.projects.ApiKeyRestrictionsArgs(
* ios_key_restrictions=gcp.projects.ApiKeyRestrictionsIosKeyRestrictionsArgs(
* 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)
* ```
* ```csharp
* 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,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/firebase"
* "github.com/pulumi/pulumi-gcp/sdk/v7/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
* })
* }
* ```
* ```java
* 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());
* }
* }
* ```
* ```yaml
* 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
* ```
*
* ## 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:
* ```sh
* $ pulumi import gcp:firebase/appleApp:AppleApp default {{project}} projects/{{project}}/iosApps/{{app_id}}
* ```
* ```sh
* $ pulumi import gcp:firebase/appleApp:AppleApp default projects/{{project}}/iosApps/{{app_id}}
* ```
* ```sh
* $ pulumi import gcp:firebase/appleApp:AppleApp default {{project}}/{{project}}/{{app_id}}
* ```
* ```sh
* $ pulumi import gcp:firebase/appleApp:AppleApp default iosApps/{{app_id}}
* ```
* ```sh
* $ pulumi import gcp:firebase/appleApp:AppleApp default {{app_id}}
* ```
* @property apiKeyId 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.
* @property appStoreId The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
* @property bundleId The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.
* - - -
* @property deletionPolicy
* @property displayName The user-assigned display name of the App.
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property teamId The Apple Developer Team ID associated with the App in the App Store.
*/
public data class AppleAppArgs(
public val apiKeyId: Output? = null,
public val appStoreId: Output? = null,
public val bundleId: Output? = null,
public val deletionPolicy: Output? = null,
public val displayName: Output? = null,
public val project: Output? = null,
public val teamId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.firebase.AppleAppArgs =
com.pulumi.gcp.firebase.AppleAppArgs.builder()
.apiKeyId(apiKeyId?.applyValue({ args0 -> args0 }))
.appStoreId(appStoreId?.applyValue({ args0 -> args0 }))
.bundleId(bundleId?.applyValue({ args0 -> args0 }))
.deletionPolicy(deletionPolicy?.applyValue({ args0 -> args0 }))
.displayName(displayName?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.teamId(teamId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AppleAppArgs].
*/
@PulumiTagMarker
public class AppleAppArgsBuilder internal constructor() {
private var apiKeyId: Output? = null
private var appStoreId: Output? = null
private var bundleId: Output? = null
private var deletionPolicy: Output? = null
private var displayName: Output? = null
private var project: Output? = null
private var teamId: Output? = null
/**
* @param value 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.
*/
@JvmName("mkwinnikpjqpsjyq")
public suspend fun apiKeyId(`value`: Output) {
this.apiKeyId = value
}
/**
* @param value The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
*/
@JvmName("xyaebatjfolnorxx")
public suspend fun appStoreId(`value`: Output) {
this.appStoreId = value
}
/**
* @param value The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.
* - - -
*/
@JvmName("krxyjpkikaoaghgh")
public suspend fun bundleId(`value`: Output) {
this.bundleId = value
}
/**
* @param value
*/
@JvmName("afyedrjcbuvulnbk")
public suspend fun deletionPolicy(`value`: Output) {
this.deletionPolicy = value
}
/**
* @param value The user-assigned display name of the App.
*/
@JvmName("utvwpqjtkxmkinfv")
public suspend fun displayName(`value`: Output) {
this.displayName = value
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("nawksdxwvnbkhrrc")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value The Apple Developer Team ID associated with the App in the App Store.
*/
@JvmName("hwvssqhigtmqsqqd")
public suspend fun teamId(`value`: Output) {
this.teamId = value
}
/**
* @param value 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.
*/
@JvmName("slheipjpnykditcv")
public suspend fun apiKeyId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.apiKeyId = mapped
}
/**
* @param value The automatically generated Apple ID assigned to the Apple app by Apple in the Apple App Store.
*/
@JvmName("nyrlfawqspcbflkf")
public suspend fun appStoreId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.appStoreId = mapped
}
/**
* @param value The canonical bundle ID of the Apple app as it would appear in the Apple AppStore.
* - - -
*/
@JvmName("geqwerixbewhaven")
public suspend fun bundleId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.bundleId = mapped
}
/**
* @param value
*/
@JvmName("dohxrlqxflhxegdo")
public suspend fun deletionPolicy(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.deletionPolicy = mapped
}
/**
* @param value The user-assigned display name of the App.
*/
@JvmName("defiqdniybokuilt")
public suspend fun displayName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.displayName = mapped
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("epjebylbvkmisodc")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value The Apple Developer Team ID associated with the App in the App Store.
*/
@JvmName("wfyatgojpvprqgce")
public suspend fun teamId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.teamId = mapped
}
internal fun build(): AppleAppArgs = AppleAppArgs(
apiKeyId = apiKeyId,
appStoreId = appStoreId,
bundleId = bundleId,
deletionPolicy = deletionPolicy,
displayName = displayName,
project = project,
teamId = teamId,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy