Entry Group
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 thepulumi 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}}
Properties
The time when the EntryGroup was created.
Description of the EntryGroup.
User friendly display name.
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
The entry group id of the entry group.
The combination of labels configured directly on the resource and default labels configured on the provider.
Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
The time when the EntryGroup was last updated.