All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.bigquery.kotlin.AppProfileArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.bigquery.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.bigquery.AppProfileArgs.builder
import com.pulumi.gcp.bigquery.kotlin.inputs.AppProfileSingleClusterRoutingArgs
import com.pulumi.gcp.bigquery.kotlin.inputs.AppProfileSingleClusterRoutingArgsBuilder
import com.pulumi.gcp.bigquery.kotlin.inputs.AppProfileStandardIsolationArgs
import com.pulumi.gcp.bigquery.kotlin.inputs.AppProfileStandardIsolationArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * App profile is a configuration object describing how Cloud Bigtable should treat traffic from a particular end user application.
 * To get more information about AppProfile, see:
 * * [API documentation](https://cloud.google.com/bigtable/docs/reference/admin/rest/v2/projects.instances.appProfiles)
 * ## Example Usage
 * ### Bigtable App Profile Anycluster
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const instance = new gcp.bigtable.Instance("instance", {
 *     name: "bt-instance",
 *     clusters: [
 *         {
 *             clusterId: "cluster-1",
 *             zone: "us-central1-a",
 *             numNodes: 3,
 *             storageType: "HDD",
 *         },
 *         {
 *             clusterId: "cluster-2",
 *             zone: "us-central1-b",
 *             numNodes: 3,
 *             storageType: "HDD",
 *         },
 *         {
 *             clusterId: "cluster-3",
 *             zone: "us-central1-c",
 *             numNodes: 3,
 *             storageType: "HDD",
 *         },
 *     ],
 *     deletionProtection: true,
 * });
 * const ap = new gcp.bigquery.AppProfile("ap", {
 *     instance: instance.name,
 *     appProfileId: "bt-profile",
 *     multiClusterRoutingUseAny: true,
 *     ignoreWarnings: true,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * instance = gcp.bigtable.Instance("instance",
 *     name="bt-instance",
 *     clusters=[
 *         gcp.bigtable.InstanceClusterArgs(
 *             cluster_id="cluster-1",
 *             zone="us-central1-a",
 *             num_nodes=3,
 *             storage_type="HDD",
 *         ),
 *         gcp.bigtable.InstanceClusterArgs(
 *             cluster_id="cluster-2",
 *             zone="us-central1-b",
 *             num_nodes=3,
 *             storage_type="HDD",
 *         ),
 *         gcp.bigtable.InstanceClusterArgs(
 *             cluster_id="cluster-3",
 *             zone="us-central1-c",
 *             num_nodes=3,
 *             storage_type="HDD",
 *         ),
 *     ],
 *     deletion_protection=True)
 * ap = gcp.bigquery.AppProfile("ap",
 *     instance=instance.name,
 *     app_profile_id="bt-profile",
 *     multi_cluster_routing_use_any=True,
 *     ignore_warnings=True)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var instance = new Gcp.BigTable.Instance("instance", new()
 *     {
 *         Name = "bt-instance",
 *         Clusters = new[]
 *         {
 *             new Gcp.BigTable.Inputs.InstanceClusterArgs
 *             {
 *                 ClusterId = "cluster-1",
 *                 Zone = "us-central1-a",
 *                 NumNodes = 3,
 *                 StorageType = "HDD",
 *             },
 *             new Gcp.BigTable.Inputs.InstanceClusterArgs
 *             {
 *                 ClusterId = "cluster-2",
 *                 Zone = "us-central1-b",
 *                 NumNodes = 3,
 *                 StorageType = "HDD",
 *             },
 *             new Gcp.BigTable.Inputs.InstanceClusterArgs
 *             {
 *                 ClusterId = "cluster-3",
 *                 Zone = "us-central1-c",
 *                 NumNodes = 3,
 *                 StorageType = "HDD",
 *             },
 *         },
 *         DeletionProtection = true,
 *     });
 *     var ap = new Gcp.BigQuery.AppProfile("ap", new()
 *     {
 *         Instance = instance.Name,
 *         AppProfileId = "bt-profile",
 *         MultiClusterRoutingUseAny = true,
 *         IgnoreWarnings = true,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		instance, err := bigtable.NewInstance(ctx, "instance", &bigtable.InstanceArgs{
 * 			Name: pulumi.String("bt-instance"),
 * 			Clusters: bigtable.InstanceClusterArray{
 * 				&bigtable.InstanceClusterArgs{
 * 					ClusterId:   pulumi.String("cluster-1"),
 * 					Zone:        pulumi.String("us-central1-a"),
 * 					NumNodes:    pulumi.Int(3),
 * 					StorageType: pulumi.String("HDD"),
 * 				},
 * 				&bigtable.InstanceClusterArgs{
 * 					ClusterId:   pulumi.String("cluster-2"),
 * 					Zone:        pulumi.String("us-central1-b"),
 * 					NumNodes:    pulumi.Int(3),
 * 					StorageType: pulumi.String("HDD"),
 * 				},
 * 				&bigtable.InstanceClusterArgs{
 * 					ClusterId:   pulumi.String("cluster-3"),
 * 					Zone:        pulumi.String("us-central1-c"),
 * 					NumNodes:    pulumi.Int(3),
 * 					StorageType: pulumi.String("HDD"),
 * 				},
 * 			},
 * 			DeletionProtection: pulumi.Bool(true),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = bigquery.NewAppProfile(ctx, "ap", &bigquery.AppProfileArgs{
 * 			Instance:                  instance.Name,
 * 			AppProfileId:              pulumi.String("bt-profile"),
 * 			MultiClusterRoutingUseAny: pulumi.Bool(true),
 * 			IgnoreWarnings:            pulumi.Bool(true),
 * 		})
 * 		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.bigtable.Instance;
 * import com.pulumi.gcp.bigtable.InstanceArgs;
 * import com.pulumi.gcp.bigtable.inputs.InstanceClusterArgs;
 * import com.pulumi.gcp.bigquery.AppProfile;
 * import com.pulumi.gcp.bigquery.AppProfileArgs;
 * 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 instance = new Instance("instance", InstanceArgs.builder()
 *             .name("bt-instance")
 *             .clusters(
 *                 InstanceClusterArgs.builder()
 *                     .clusterId("cluster-1")
 *                     .zone("us-central1-a")
 *                     .numNodes(3)
 *                     .storageType("HDD")
 *                     .build(),
 *                 InstanceClusterArgs.builder()
 *                     .clusterId("cluster-2")
 *                     .zone("us-central1-b")
 *                     .numNodes(3)
 *                     .storageType("HDD")
 *                     .build(),
 *                 InstanceClusterArgs.builder()
 *                     .clusterId("cluster-3")
 *                     .zone("us-central1-c")
 *                     .numNodes(3)
 *                     .storageType("HDD")
 *                     .build())
 *             .deletionProtection("true")
 *             .build());
 *         var ap = new AppProfile("ap", AppProfileArgs.builder()
 *             .instance(instance.name())
 *             .appProfileId("bt-profile")
 *             .multiClusterRoutingUseAny(true)
 *             .ignoreWarnings(true)
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   instance:
 *     type: gcp:bigtable:Instance
 *     properties:
 *       name: bt-instance
 *       clusters:
 *         - clusterId: cluster-1
 *           zone: us-central1-a
 *           numNodes: 3
 *           storageType: HDD
 *         - clusterId: cluster-2
 *           zone: us-central1-b
 *           numNodes: 3
 *           storageType: HDD
 *         - clusterId: cluster-3
 *           zone: us-central1-c
 *           numNodes: 3
 *           storageType: HDD
 *       deletionProtection: 'true'
 *   ap:
 *     type: gcp:bigquery:AppProfile
 *     properties:
 *       instance: ${instance.name}
 *       appProfileId: bt-profile
 *       multiClusterRoutingUseAny: true
 *       ignoreWarnings: true
 * ```
 * 
 * ### Bigtable App Profile Singlecluster
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const instance = new gcp.bigtable.Instance("instance", {
 *     name: "bt-instance",
 *     clusters: [{
 *         clusterId: "cluster-1",
 *         zone: "us-central1-b",
 *         numNodes: 3,
 *         storageType: "HDD",
 *     }],
 *     deletionProtection: true,
 * });
 * const ap = new gcp.bigquery.AppProfile("ap", {
 *     instance: instance.name,
 *     appProfileId: "bt-profile",
 *     singleClusterRouting: {
 *         clusterId: "cluster-1",
 *         allowTransactionalWrites: true,
 *     },
 *     ignoreWarnings: true,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * instance = gcp.bigtable.Instance("instance",
 *     name="bt-instance",
 *     clusters=[gcp.bigtable.InstanceClusterArgs(
 *         cluster_id="cluster-1",
 *         zone="us-central1-b",
 *         num_nodes=3,
 *         storage_type="HDD",
 *     )],
 *     deletion_protection=True)
 * ap = gcp.bigquery.AppProfile("ap",
 *     instance=instance.name,
 *     app_profile_id="bt-profile",
 *     single_cluster_routing=gcp.bigquery.AppProfileSingleClusterRoutingArgs(
 *         cluster_id="cluster-1",
 *         allow_transactional_writes=True,
 *     ),
 *     ignore_warnings=True)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var instance = new Gcp.BigTable.Instance("instance", new()
 *     {
 *         Name = "bt-instance",
 *         Clusters = new[]
 *         {
 *             new Gcp.BigTable.Inputs.InstanceClusterArgs
 *             {
 *                 ClusterId = "cluster-1",
 *                 Zone = "us-central1-b",
 *                 NumNodes = 3,
 *                 StorageType = "HDD",
 *             },
 *         },
 *         DeletionProtection = true,
 *     });
 *     var ap = new Gcp.BigQuery.AppProfile("ap", new()
 *     {
 *         Instance = instance.Name,
 *         AppProfileId = "bt-profile",
 *         SingleClusterRouting = new Gcp.BigQuery.Inputs.AppProfileSingleClusterRoutingArgs
 *         {
 *             ClusterId = "cluster-1",
 *             AllowTransactionalWrites = true,
 *         },
 *         IgnoreWarnings = true,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		instance, err := bigtable.NewInstance(ctx, "instance", &bigtable.InstanceArgs{
 * 			Name: pulumi.String("bt-instance"),
 * 			Clusters: bigtable.InstanceClusterArray{
 * 				&bigtable.InstanceClusterArgs{
 * 					ClusterId:   pulumi.String("cluster-1"),
 * 					Zone:        pulumi.String("us-central1-b"),
 * 					NumNodes:    pulumi.Int(3),
 * 					StorageType: pulumi.String("HDD"),
 * 				},
 * 			},
 * 			DeletionProtection: pulumi.Bool(true),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = bigquery.NewAppProfile(ctx, "ap", &bigquery.AppProfileArgs{
 * 			Instance:     instance.Name,
 * 			AppProfileId: pulumi.String("bt-profile"),
 * 			SingleClusterRouting: &bigquery.AppProfileSingleClusterRoutingArgs{
 * 				ClusterId:                pulumi.String("cluster-1"),
 * 				AllowTransactionalWrites: pulumi.Bool(true),
 * 			},
 * 			IgnoreWarnings: pulumi.Bool(true),
 * 		})
 * 		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.bigtable.Instance;
 * import com.pulumi.gcp.bigtable.InstanceArgs;
 * import com.pulumi.gcp.bigtable.inputs.InstanceClusterArgs;
 * import com.pulumi.gcp.bigquery.AppProfile;
 * import com.pulumi.gcp.bigquery.AppProfileArgs;
 * import com.pulumi.gcp.bigquery.inputs.AppProfileSingleClusterRoutingArgs;
 * 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 instance = new Instance("instance", InstanceArgs.builder()
 *             .name("bt-instance")
 *             .clusters(InstanceClusterArgs.builder()
 *                 .clusterId("cluster-1")
 *                 .zone("us-central1-b")
 *                 .numNodes(3)
 *                 .storageType("HDD")
 *                 .build())
 *             .deletionProtection("true")
 *             .build());
 *         var ap = new AppProfile("ap", AppProfileArgs.builder()
 *             .instance(instance.name())
 *             .appProfileId("bt-profile")
 *             .singleClusterRouting(AppProfileSingleClusterRoutingArgs.builder()
 *                 .clusterId("cluster-1")
 *                 .allowTransactionalWrites(true)
 *                 .build())
 *             .ignoreWarnings(true)
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   instance:
 *     type: gcp:bigtable:Instance
 *     properties:
 *       name: bt-instance
 *       clusters:
 *         - clusterId: cluster-1
 *           zone: us-central1-b
 *           numNodes: 3
 *           storageType: HDD
 *       deletionProtection: 'true'
 *   ap:
 *     type: gcp:bigquery:AppProfile
 *     properties:
 *       instance: ${instance.name}
 *       appProfileId: bt-profile
 *       singleClusterRouting:
 *         clusterId: cluster-1
 *         allowTransactionalWrites: true
 *       ignoreWarnings: true
 * ```
 * 
 * ### Bigtable App Profile Multicluster
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const instance = new gcp.bigtable.Instance("instance", {
 *     name: "bt-instance",
 *     clusters: [
 *         {
 *             clusterId: "cluster-1",
 *             zone: "us-central1-a",
 *             numNodes: 3,
 *             storageType: "HDD",
 *         },
 *         {
 *             clusterId: "cluster-2",
 *             zone: "us-central1-b",
 *             numNodes: 3,
 *             storageType: "HDD",
 *         },
 *         {
 *             clusterId: "cluster-3",
 *             zone: "us-central1-c",
 *             numNodes: 3,
 *             storageType: "HDD",
 *         },
 *     ],
 *     deletionProtection: true,
 * });
 * const ap = new gcp.bigquery.AppProfile("ap", {
 *     instance: instance.name,
 *     appProfileId: "bt-profile",
 *     multiClusterRoutingUseAny: true,
 *     multiClusterRoutingClusterIds: [
 *         "cluster-1",
 *         "cluster-2",
 *     ],
 *     ignoreWarnings: true,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * instance = gcp.bigtable.Instance("instance",
 *     name="bt-instance",
 *     clusters=[
 *         gcp.bigtable.InstanceClusterArgs(
 *             cluster_id="cluster-1",
 *             zone="us-central1-a",
 *             num_nodes=3,
 *             storage_type="HDD",
 *         ),
 *         gcp.bigtable.InstanceClusterArgs(
 *             cluster_id="cluster-2",
 *             zone="us-central1-b",
 *             num_nodes=3,
 *             storage_type="HDD",
 *         ),
 *         gcp.bigtable.InstanceClusterArgs(
 *             cluster_id="cluster-3",
 *             zone="us-central1-c",
 *             num_nodes=3,
 *             storage_type="HDD",
 *         ),
 *     ],
 *     deletion_protection=True)
 * ap = gcp.bigquery.AppProfile("ap",
 *     instance=instance.name,
 *     app_profile_id="bt-profile",
 *     multi_cluster_routing_use_any=True,
 *     multi_cluster_routing_cluster_ids=[
 *         "cluster-1",
 *         "cluster-2",
 *     ],
 *     ignore_warnings=True)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var instance = new Gcp.BigTable.Instance("instance", new()
 *     {
 *         Name = "bt-instance",
 *         Clusters = new[]
 *         {
 *             new Gcp.BigTable.Inputs.InstanceClusterArgs
 *             {
 *                 ClusterId = "cluster-1",
 *                 Zone = "us-central1-a",
 *                 NumNodes = 3,
 *                 StorageType = "HDD",
 *             },
 *             new Gcp.BigTable.Inputs.InstanceClusterArgs
 *             {
 *                 ClusterId = "cluster-2",
 *                 Zone = "us-central1-b",
 *                 NumNodes = 3,
 *                 StorageType = "HDD",
 *             },
 *             new Gcp.BigTable.Inputs.InstanceClusterArgs
 *             {
 *                 ClusterId = "cluster-3",
 *                 Zone = "us-central1-c",
 *                 NumNodes = 3,
 *                 StorageType = "HDD",
 *             },
 *         },
 *         DeletionProtection = true,
 *     });
 *     var ap = new Gcp.BigQuery.AppProfile("ap", new()
 *     {
 *         Instance = instance.Name,
 *         AppProfileId = "bt-profile",
 *         MultiClusterRoutingUseAny = true,
 *         MultiClusterRoutingClusterIds = new[]
 *         {
 *             "cluster-1",
 *             "cluster-2",
 *         },
 *         IgnoreWarnings = true,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		instance, err := bigtable.NewInstance(ctx, "instance", &bigtable.InstanceArgs{
 * 			Name: pulumi.String("bt-instance"),
 * 			Clusters: bigtable.InstanceClusterArray{
 * 				&bigtable.InstanceClusterArgs{
 * 					ClusterId:   pulumi.String("cluster-1"),
 * 					Zone:        pulumi.String("us-central1-a"),
 * 					NumNodes:    pulumi.Int(3),
 * 					StorageType: pulumi.String("HDD"),
 * 				},
 * 				&bigtable.InstanceClusterArgs{
 * 					ClusterId:   pulumi.String("cluster-2"),
 * 					Zone:        pulumi.String("us-central1-b"),
 * 					NumNodes:    pulumi.Int(3),
 * 					StorageType: pulumi.String("HDD"),
 * 				},
 * 				&bigtable.InstanceClusterArgs{
 * 					ClusterId:   pulumi.String("cluster-3"),
 * 					Zone:        pulumi.String("us-central1-c"),
 * 					NumNodes:    pulumi.Int(3),
 * 					StorageType: pulumi.String("HDD"),
 * 				},
 * 			},
 * 			DeletionProtection: pulumi.Bool(true),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = bigquery.NewAppProfile(ctx, "ap", &bigquery.AppProfileArgs{
 * 			Instance:                  instance.Name,
 * 			AppProfileId:              pulumi.String("bt-profile"),
 * 			MultiClusterRoutingUseAny: pulumi.Bool(true),
 * 			MultiClusterRoutingClusterIds: pulumi.StringArray{
 * 				pulumi.String("cluster-1"),
 * 				pulumi.String("cluster-2"),
 * 			},
 * 			IgnoreWarnings: pulumi.Bool(true),
 * 		})
 * 		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.bigtable.Instance;
 * import com.pulumi.gcp.bigtable.InstanceArgs;
 * import com.pulumi.gcp.bigtable.inputs.InstanceClusterArgs;
 * import com.pulumi.gcp.bigquery.AppProfile;
 * import com.pulumi.gcp.bigquery.AppProfileArgs;
 * 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 instance = new Instance("instance", InstanceArgs.builder()
 *             .name("bt-instance")
 *             .clusters(
 *                 InstanceClusterArgs.builder()
 *                     .clusterId("cluster-1")
 *                     .zone("us-central1-a")
 *                     .numNodes(3)
 *                     .storageType("HDD")
 *                     .build(),
 *                 InstanceClusterArgs.builder()
 *                     .clusterId("cluster-2")
 *                     .zone("us-central1-b")
 *                     .numNodes(3)
 *                     .storageType("HDD")
 *                     .build(),
 *                 InstanceClusterArgs.builder()
 *                     .clusterId("cluster-3")
 *                     .zone("us-central1-c")
 *                     .numNodes(3)
 *                     .storageType("HDD")
 *                     .build())
 *             .deletionProtection("true")
 *             .build());
 *         var ap = new AppProfile("ap", AppProfileArgs.builder()
 *             .instance(instance.name())
 *             .appProfileId("bt-profile")
 *             .multiClusterRoutingUseAny(true)
 *             .multiClusterRoutingClusterIds(
 *                 "cluster-1",
 *                 "cluster-2")
 *             .ignoreWarnings(true)
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   instance:
 *     type: gcp:bigtable:Instance
 *     properties:
 *       name: bt-instance
 *       clusters:
 *         - clusterId: cluster-1
 *           zone: us-central1-a
 *           numNodes: 3
 *           storageType: HDD
 *         - clusterId: cluster-2
 *           zone: us-central1-b
 *           numNodes: 3
 *           storageType: HDD
 *         - clusterId: cluster-3
 *           zone: us-central1-c
 *           numNodes: 3
 *           storageType: HDD
 *       deletionProtection: 'true'
 *   ap:
 *     type: gcp:bigquery:AppProfile
 *     properties:
 *       instance: ${instance.name}
 *       appProfileId: bt-profile
 *       multiClusterRoutingUseAny: true
 *       multiClusterRoutingClusterIds:
 *         - cluster-1
 *         - cluster-2
 *       ignoreWarnings: true
 * ```
 * 
 * ### Bigtable App Profile Priority
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const instance = new gcp.bigtable.Instance("instance", {
 *     name: "bt-instance",
 *     clusters: [{
 *         clusterId: "cluster-1",
 *         zone: "us-central1-b",
 *         numNodes: 3,
 *         storageType: "HDD",
 *     }],
 *     deletionProtection: true,
 * });
 * const ap = new gcp.bigquery.AppProfile("ap", {
 *     instance: instance.name,
 *     appProfileId: "bt-profile",
 *     singleClusterRouting: {
 *         clusterId: "cluster-1",
 *         allowTransactionalWrites: true,
 *     },
 *     standardIsolation: {
 *         priority: "PRIORITY_LOW",
 *     },
 *     ignoreWarnings: true,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * instance = gcp.bigtable.Instance("instance",
 *     name="bt-instance",
 *     clusters=[gcp.bigtable.InstanceClusterArgs(
 *         cluster_id="cluster-1",
 *         zone="us-central1-b",
 *         num_nodes=3,
 *         storage_type="HDD",
 *     )],
 *     deletion_protection=True)
 * ap = gcp.bigquery.AppProfile("ap",
 *     instance=instance.name,
 *     app_profile_id="bt-profile",
 *     single_cluster_routing=gcp.bigquery.AppProfileSingleClusterRoutingArgs(
 *         cluster_id="cluster-1",
 *         allow_transactional_writes=True,
 *     ),
 *     standard_isolation=gcp.bigquery.AppProfileStandardIsolationArgs(
 *         priority="PRIORITY_LOW",
 *     ),
 *     ignore_warnings=True)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var instance = new Gcp.BigTable.Instance("instance", new()
 *     {
 *         Name = "bt-instance",
 *         Clusters = new[]
 *         {
 *             new Gcp.BigTable.Inputs.InstanceClusterArgs
 *             {
 *                 ClusterId = "cluster-1",
 *                 Zone = "us-central1-b",
 *                 NumNodes = 3,
 *                 StorageType = "HDD",
 *             },
 *         },
 *         DeletionProtection = true,
 *     });
 *     var ap = new Gcp.BigQuery.AppProfile("ap", new()
 *     {
 *         Instance = instance.Name,
 *         AppProfileId = "bt-profile",
 *         SingleClusterRouting = new Gcp.BigQuery.Inputs.AppProfileSingleClusterRoutingArgs
 *         {
 *             ClusterId = "cluster-1",
 *             AllowTransactionalWrites = true,
 *         },
 *         StandardIsolation = new Gcp.BigQuery.Inputs.AppProfileStandardIsolationArgs
 *         {
 *             Priority = "PRIORITY_LOW",
 *         },
 *         IgnoreWarnings = true,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		instance, err := bigtable.NewInstance(ctx, "instance", &bigtable.InstanceArgs{
 * 			Name: pulumi.String("bt-instance"),
 * 			Clusters: bigtable.InstanceClusterArray{
 * 				&bigtable.InstanceClusterArgs{
 * 					ClusterId:   pulumi.String("cluster-1"),
 * 					Zone:        pulumi.String("us-central1-b"),
 * 					NumNodes:    pulumi.Int(3),
 * 					StorageType: pulumi.String("HDD"),
 * 				},
 * 			},
 * 			DeletionProtection: pulumi.Bool(true),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = bigquery.NewAppProfile(ctx, "ap", &bigquery.AppProfileArgs{
 * 			Instance:     instance.Name,
 * 			AppProfileId: pulumi.String("bt-profile"),
 * 			SingleClusterRouting: &bigquery.AppProfileSingleClusterRoutingArgs{
 * 				ClusterId:                pulumi.String("cluster-1"),
 * 				AllowTransactionalWrites: pulumi.Bool(true),
 * 			},
 * 			StandardIsolation: &bigquery.AppProfileStandardIsolationArgs{
 * 				Priority: pulumi.String("PRIORITY_LOW"),
 * 			},
 * 			IgnoreWarnings: pulumi.Bool(true),
 * 		})
 * 		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.bigtable.Instance;
 * import com.pulumi.gcp.bigtable.InstanceArgs;
 * import com.pulumi.gcp.bigtable.inputs.InstanceClusterArgs;
 * import com.pulumi.gcp.bigquery.AppProfile;
 * import com.pulumi.gcp.bigquery.AppProfileArgs;
 * import com.pulumi.gcp.bigquery.inputs.AppProfileSingleClusterRoutingArgs;
 * import com.pulumi.gcp.bigquery.inputs.AppProfileStandardIsolationArgs;
 * 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 instance = new Instance("instance", InstanceArgs.builder()
 *             .name("bt-instance")
 *             .clusters(InstanceClusterArgs.builder()
 *                 .clusterId("cluster-1")
 *                 .zone("us-central1-b")
 *                 .numNodes(3)
 *                 .storageType("HDD")
 *                 .build())
 *             .deletionProtection("true")
 *             .build());
 *         var ap = new AppProfile("ap", AppProfileArgs.builder()
 *             .instance(instance.name())
 *             .appProfileId("bt-profile")
 *             .singleClusterRouting(AppProfileSingleClusterRoutingArgs.builder()
 *                 .clusterId("cluster-1")
 *                 .allowTransactionalWrites(true)
 *                 .build())
 *             .standardIsolation(AppProfileStandardIsolationArgs.builder()
 *                 .priority("PRIORITY_LOW")
 *                 .build())
 *             .ignoreWarnings(true)
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   instance:
 *     type: gcp:bigtable:Instance
 *     properties:
 *       name: bt-instance
 *       clusters:
 *         - clusterId: cluster-1
 *           zone: us-central1-b
 *           numNodes: 3
 *           storageType: HDD
 *       deletionProtection: 'true'
 *   ap:
 *     type: gcp:bigquery:AppProfile
 *     properties:
 *       instance: ${instance.name}
 *       appProfileId: bt-profile
 *       singleClusterRouting:
 *         clusterId: cluster-1
 *         allowTransactionalWrites: true
 *       standardIsolation:
 *         priority: PRIORITY_LOW
 *       ignoreWarnings: true
 * ```
 * 
 * ## Import
 * AppProfile can be imported using any of these accepted formats:
 * * `projects/{{project}}/instances/{{instance}}/appProfiles/{{app_profile_id}}`
 * * `{{project}}/{{instance}}/{{app_profile_id}}`
 * * `{{instance}}/{{app_profile_id}}`
 * When using the `pulumi import` command, AppProfile can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:bigquery/appProfile:AppProfile default projects/{{project}}/instances/{{instance}}/appProfiles/{{app_profile_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:bigquery/appProfile:AppProfile default {{project}}/{{instance}}/{{app_profile_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:bigquery/appProfile:AppProfile default {{instance}}/{{app_profile_id}}
 * ```
 * @property appProfileId The unique name of the app profile in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`.
 * - - -
 * @property description Long form description of the use case for this app profile.
 * @property ignoreWarnings If true, ignore safety checks when deleting/updating the app profile.
 * @property instance The name of the instance to create the app profile within.
 * @property multiClusterRoutingClusterIds The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
 * clusters are eligible.
 * @property multiClusterRoutingUseAny If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
 * in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
 * consistency to improve availability.
 * @property project The ID of the project in which the resource belongs.
 * If it is not provided, the provider project is used.
 * @property singleClusterRouting Use a single-cluster routing policy.
 * Structure is documented below.
 * @property standardIsolation The standard options used for isolating this app profile's traffic from other use cases.
 * Structure is documented below.
 */
public data class AppProfileArgs(
    public val appProfileId: Output? = null,
    public val description: Output? = null,
    public val ignoreWarnings: Output? = null,
    public val instance: Output? = null,
    public val multiClusterRoutingClusterIds: Output>? = null,
    public val multiClusterRoutingUseAny: Output? = null,
    public val project: Output? = null,
    public val singleClusterRouting: Output? = null,
    public val standardIsolation: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.bigquery.AppProfileArgs =
        com.pulumi.gcp.bigquery.AppProfileArgs.builder()
            .appProfileId(appProfileId?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .ignoreWarnings(ignoreWarnings?.applyValue({ args0 -> args0 }))
            .instance(instance?.applyValue({ args0 -> args0 }))
            .multiClusterRoutingClusterIds(
                multiClusterRoutingClusterIds?.applyValue({ args0 ->
                    args0.map({ args0 -> args0 })
                }),
            )
            .multiClusterRoutingUseAny(multiClusterRoutingUseAny?.applyValue({ args0 -> args0 }))
            .project(project?.applyValue({ args0 -> args0 }))
            .singleClusterRouting(
                singleClusterRouting?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .standardIsolation(
                standardIsolation?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [AppProfileArgs].
 */
@PulumiTagMarker
public class AppProfileArgsBuilder internal constructor() {
    private var appProfileId: Output? = null

    private var description: Output? = null

    private var ignoreWarnings: Output? = null

    private var instance: Output? = null

    private var multiClusterRoutingClusterIds: Output>? = null

    private var multiClusterRoutingUseAny: Output? = null

    private var project: Output? = null

    private var singleClusterRouting: Output? = null

    private var standardIsolation: Output? = null

    /**
     * @param value The unique name of the app profile in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`.
     * - - -
     */
    @JvmName("gxkpvclvswjqkdqs")
    public suspend fun appProfileId(`value`: Output) {
        this.appProfileId = value
    }

    /**
     * @param value Long form description of the use case for this app profile.
     */
    @JvmName("eefpwfwohyynqcyn")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value If true, ignore safety checks when deleting/updating the app profile.
     */
    @JvmName("qllahonkkxhtdvhk")
    public suspend fun ignoreWarnings(`value`: Output) {
        this.ignoreWarnings = value
    }

    /**
     * @param value The name of the instance to create the app profile within.
     */
    @JvmName("gnbcrorgrgdthhmv")
    public suspend fun instance(`value`: Output) {
        this.instance = value
    }

    /**
     * @param value The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
     * clusters are eligible.
     */
    @JvmName("hpteloerbkmlmbec")
    public suspend fun multiClusterRoutingClusterIds(`value`: Output>) {
        this.multiClusterRoutingClusterIds = value
    }

    @JvmName("wobvnarbngctptax")
    public suspend fun multiClusterRoutingClusterIds(vararg values: Output) {
        this.multiClusterRoutingClusterIds = Output.all(values.asList())
    }

    /**
     * @param values The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
     * clusters are eligible.
     */
    @JvmName("lkeapacakhjmswti")
    public suspend fun multiClusterRoutingClusterIds(values: List>) {
        this.multiClusterRoutingClusterIds = Output.all(values)
    }

    /**
     * @param value If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
     * in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
     * consistency to improve availability.
     */
    @JvmName("rwoytfcpvukrrdpb")
    public suspend fun multiClusterRoutingUseAny(`value`: Output) {
        this.multiClusterRoutingUseAny = value
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("wgvvjpsvwsxjchyx")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value Use a single-cluster routing policy.
     * Structure is documented below.
     */
    @JvmName("mcsppxiagtmfyiqe")
    public suspend fun singleClusterRouting(`value`: Output) {
        this.singleClusterRouting = value
    }

    /**
     * @param value The standard options used for isolating this app profile's traffic from other use cases.
     * Structure is documented below.
     */
    @JvmName("aniufglnrkocnkkk")
    public suspend fun standardIsolation(`value`: Output) {
        this.standardIsolation = value
    }

    /**
     * @param value The unique name of the app profile in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`.
     * - - -
     */
    @JvmName("cskklxyfmsmfuxtr")
    public suspend fun appProfileId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.appProfileId = mapped
    }

    /**
     * @param value Long form description of the use case for this app profile.
     */
    @JvmName("mmgqoqwnvxiqwown")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value If true, ignore safety checks when deleting/updating the app profile.
     */
    @JvmName("nuiupuvfsijvcvpc")
    public suspend fun ignoreWarnings(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ignoreWarnings = mapped
    }

    /**
     * @param value The name of the instance to create the app profile within.
     */
    @JvmName("xjqnnqrqnyjbruda")
    public suspend fun instance(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.instance = mapped
    }

    /**
     * @param value The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
     * clusters are eligible.
     */
    @JvmName("klplubswqxygqxxl")
    public suspend fun multiClusterRoutingClusterIds(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.multiClusterRoutingClusterIds = mapped
    }

    /**
     * @param values The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
     * clusters are eligible.
     */
    @JvmName("rnqyxmbslgpjrqul")
    public suspend fun multiClusterRoutingClusterIds(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.multiClusterRoutingClusterIds = mapped
    }

    /**
     * @param value If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
     * in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
     * consistency to improve availability.
     */
    @JvmName("vodmeskkwhgdeaie")
    public suspend fun multiClusterRoutingUseAny(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.multiClusterRoutingUseAny = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("htgymdrswtdeswdg")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    /**
     * @param value Use a single-cluster routing policy.
     * Structure is documented below.
     */
    @JvmName("wvmjpkiqstbbbhlw")
    public suspend fun singleClusterRouting(`value`: AppProfileSingleClusterRoutingArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.singleClusterRouting = mapped
    }

    /**
     * @param argument Use a single-cluster routing policy.
     * Structure is documented below.
     */
    @JvmName("vblgmhyyqprfvnmr")
    public suspend fun singleClusterRouting(argument: suspend AppProfileSingleClusterRoutingArgsBuilder.() -> Unit) {
        val toBeMapped = AppProfileSingleClusterRoutingArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.singleClusterRouting = mapped
    }

    /**
     * @param value The standard options used for isolating this app profile's traffic from other use cases.
     * Structure is documented below.
     */
    @JvmName("pddvjudflfbghlsp")
    public suspend fun standardIsolation(`value`: AppProfileStandardIsolationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.standardIsolation = mapped
    }

    /**
     * @param argument The standard options used for isolating this app profile's traffic from other use cases.
     * Structure is documented below.
     */
    @JvmName("jhnlkirxxfsodtta")
    public suspend fun standardIsolation(argument: suspend AppProfileStandardIsolationArgsBuilder.() -> Unit) {
        val toBeMapped = AppProfileStandardIsolationArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.standardIsolation = mapped
    }

    internal fun build(): AppProfileArgs = AppProfileArgs(
        appProfileId = appProfileId,
        description = description,
        ignoreWarnings = ignoreWarnings,
        instance = instance,
        multiClusterRoutingClusterIds = multiClusterRoutingClusterIds,
        multiClusterRoutingUseAny = multiClusterRoutingUseAny,
        project = project,
        singleClusterRouting = singleClusterRouting,
        standardIsolation = standardIsolation,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy