EntryGroupArgs

data class EntryGroupArgs(val description: Output<String>? = null, val displayName: Output<String>? = null, val entryGroupId: Output<String>? = null, val labels: Output<Map<String, String>>? = null, val location: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<EntryGroupArgs>

An Entry Group represents a logical grouping of one or more Entries.

Example Usage

Dataplex Entry Group Basic

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",
});
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")
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",
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/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
})
}
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());
}
}
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

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",
});
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")
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",
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/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
})
}
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());
}
}
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:

$ pulumi import gcp:dataplex/entryGroup:EntryGroup default projects/{{project}}/locations/{{location}}/entryGroups/{{entry_group_id}}
$ pulumi import gcp:dataplex/entryGroup:EntryGroup default {{project}}/{{location}}/{{entry_group_id}}
$ pulumi import gcp:dataplex/entryGroup:EntryGroup default {{location}}/{{entry_group_id}}

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, displayName: Output<String>? = null, entryGroupId: Output<String>? = null, labels: Output<Map<String, String>>? = null, location: Output<String>? = null, project: Output<String>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

Description of the EntryGroup.

Link copied to clipboard
val displayName: Output<String>? = null

User friendly display name.

Link copied to clipboard
val entryGroupId: Output<String>? = null

The entry group id of the entry group.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

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.

Link copied to clipboard
val location: Output<String>? = null

The location where entry group will be created in.

Link copied to clipboard
val project: Output<String>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): EntryGroupArgs