com.pulumi.gcp.dataplex.kotlin.EntryGroupArgs.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.dataplex.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.dataplex.EntryGroupArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* An Entry Group represents a logical grouping of one or more Entries.
* ## Example Usage
* ### Dataplex Entry Group Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const testEntryGroupBasic = new gcp.dataplex.EntryGroup("test_entry_group_basic", {
* entryGroupId: "entry-group-basic",
* project: "my-project-name",
* location: "us-central1",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* test_entry_group_basic = gcp.dataplex.EntryGroup("test_entry_group_basic",
* entry_group_id="entry-group-basic",
* project="my-project-name",
* location="us-central1")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var testEntryGroupBasic = new Gcp.DataPlex.EntryGroup("test_entry_group_basic", new()
* {
* EntryGroupId = "entry-group-basic",
* Project = "my-project-name",
* Location = "us-central1",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/dataplex"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := dataplex.NewEntryGroup(ctx, "test_entry_group_basic", &dataplex.EntryGroupArgs{
* EntryGroupId: pulumi.String("entry-group-basic"),
* Project: pulumi.String("my-project-name"),
* Location: pulumi.String("us-central1"),
* })
* 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.dataplex.EntryGroup;
* import com.pulumi.gcp.dataplex.EntryGroupArgs;
* 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 testEntryGroupBasic = new EntryGroup("testEntryGroupBasic", EntryGroupArgs.builder()
* .entryGroupId("entry-group-basic")
* .project("my-project-name")
* .location("us-central1")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* testEntryGroupBasic:
* type: gcp:dataplex:EntryGroup
* name: test_entry_group_basic
* properties:
* entryGroupId: entry-group-basic
* project: my-project-name
* location: us-central1
* ```
*
* ### Dataplex Entry Group Full
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const testEntryGroupFull = new gcp.dataplex.EntryGroup("test_entry_group_full", {
* entryGroupId: "entry-group-full",
* project: "my-project-name",
* location: "us-central1",
* labels: {
* tag: "test-tf",
* },
* displayName: "terraform entry group",
* description: "entry group created by Terraform",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* test_entry_group_full = gcp.dataplex.EntryGroup("test_entry_group_full",
* entry_group_id="entry-group-full",
* project="my-project-name",
* location="us-central1",
* labels={
* "tag": "test-tf",
* },
* display_name="terraform entry group",
* description="entry group created by Terraform")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var testEntryGroupFull = new Gcp.DataPlex.EntryGroup("test_entry_group_full", new()
* {
* EntryGroupId = "entry-group-full",
* Project = "my-project-name",
* Location = "us-central1",
* Labels =
* {
* { "tag", "test-tf" },
* },
* DisplayName = "terraform entry group",
* Description = "entry group created by Terraform",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/dataplex"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := dataplex.NewEntryGroup(ctx, "test_entry_group_full", &dataplex.EntryGroupArgs{
* EntryGroupId: pulumi.String("entry-group-full"),
* Project: pulumi.String("my-project-name"),
* Location: pulumi.String("us-central1"),
* Labels: pulumi.StringMap{
* "tag": pulumi.String("test-tf"),
* },
* DisplayName: pulumi.String("terraform entry group"),
* Description: pulumi.String("entry group created by Terraform"),
* })
* 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.dataplex.EntryGroup;
* import com.pulumi.gcp.dataplex.EntryGroupArgs;
* 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 testEntryGroupFull = new EntryGroup("testEntryGroupFull", EntryGroupArgs.builder()
* .entryGroupId("entry-group-full")
* .project("my-project-name")
* .location("us-central1")
* .labels(Map.of("tag", "test-tf"))
* .displayName("terraform entry group")
* .description("entry group created by Terraform")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* testEntryGroupFull:
* type: gcp:dataplex:EntryGroup
* name: test_entry_group_full
* properties:
* entryGroupId: entry-group-full
* project: my-project-name
* location: us-central1
* labels:
* tag: test-tf
* displayName: terraform entry group
* description: entry group created by Terraform
* ```
*
* ## Import
* EntryGroup can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/{{location}}/entryGroups/{{entry_group_id}}`
* * `{{project}}/{{location}}/{{entry_group_id}}`
* * `{{location}}/{{entry_group_id}}`
* When using the `pulumi import` command, EntryGroup can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:dataplex/entryGroup:EntryGroup default projects/{{project}}/locations/{{location}}/entryGroups/{{entry_group_id}}
* ```
* ```sh
* $ pulumi import gcp:dataplex/entryGroup:EntryGroup default {{project}}/{{location}}/{{entry_group_id}}
* ```
* ```sh
* $ pulumi import gcp:dataplex/entryGroup:EntryGroup default {{location}}/{{entry_group_id}}
* ```
* @property description Description of the EntryGroup.
* @property displayName User friendly display name.
* @property entryGroupId The entry group id of the entry group.
* @property labels User-defined labels for the EntryGroup.
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
* @property location The location where entry group will be created in.
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
public data class EntryGroupArgs(
public val description: Output? = null,
public val displayName: Output? = null,
public val entryGroupId: Output? = null,
public val labels: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy