1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. dataplex
  6. EntryGroup
Viewing docs for Google Cloud v9.24.0
published on Friday, May 22, 2026 by Pulumi
gcp logo
Viewing docs for Google Cloud v9.24.0
published on Friday, May 22, 2026 by Pulumi

    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")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/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
    	})
    }
    
    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 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.ArrayList;
    import java.util.Arrays;
    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
    
    Example coming soon!
    

    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")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/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
    	})
    }
    
    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 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.ArrayList;
    import java.util.Arrays;
    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
    
    Example coming soon!
    

    Create EntryGroup Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new EntryGroup(name: string, args?: EntryGroupArgs, opts?: CustomResourceOptions);
    @overload
    def EntryGroup(resource_name: str,
                   args: Optional[EntryGroupArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def EntryGroup(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   deletion_policy: Optional[str] = None,
                   description: Optional[str] = None,
                   display_name: Optional[str] = None,
                   entry_group_id: Optional[str] = None,
                   labels: Optional[Mapping[str, str]] = None,
                   location: Optional[str] = None,
                   project: Optional[str] = None)
    func NewEntryGroup(ctx *Context, name string, args *EntryGroupArgs, opts ...ResourceOption) (*EntryGroup, error)
    public EntryGroup(string name, EntryGroupArgs? args = null, CustomResourceOptions? opts = null)
    public EntryGroup(String name, EntryGroupArgs args)
    public EntryGroup(String name, EntryGroupArgs args, CustomResourceOptions options)
    
    type: gcp:dataplex:EntryGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "gcp_dataplex_entrygroup" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args EntryGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args EntryGroupArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args EntryGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EntryGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EntryGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var gcpEntryGroupResource = new Gcp.DataPlex.EntryGroup("gcpEntryGroupResource", new()
    {
        DeletionPolicy = "string",
        Description = "string",
        DisplayName = "string",
        EntryGroupId = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Location = "string",
        Project = "string",
    });
    
    example, err := dataplex.NewEntryGroup(ctx, "gcpEntryGroupResource", &dataplex.EntryGroupArgs{
    	DeletionPolicy: pulumi.String("string"),
    	Description:    pulumi.String("string"),
    	DisplayName:    pulumi.String("string"),
    	EntryGroupId:   pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Project:  pulumi.String("string"),
    })
    
    resource "gcp_dataplex_entrygroup" "gcpEntryGroupResource" {
      deletion_policy = "string"
      description     = "string"
      display_name    = "string"
      entry_group_id  = "string"
      labels = {
        "string" = "string"
      }
      location = "string"
      project  = "string"
    }
    
    var gcpEntryGroupResource = new com.pulumi.gcp.dataplex.EntryGroup("gcpEntryGroupResource", com.pulumi.gcp.dataplex.EntryGroupArgs.builder()
        .deletionPolicy("string")
        .description("string")
        .displayName("string")
        .entryGroupId("string")
        .labels(Map.of("string", "string"))
        .location("string")
        .project("string")
        .build());
    
    gcp_entry_group_resource = gcp.dataplex.EntryGroup("gcpEntryGroupResource",
        deletion_policy="string",
        description="string",
        display_name="string",
        entry_group_id="string",
        labels={
            "string": "string",
        },
        location="string",
        project="string")
    
    const gcpEntryGroupResource = new gcp.dataplex.EntryGroup("gcpEntryGroupResource", {
        deletionPolicy: "string",
        description: "string",
        displayName: "string",
        entryGroupId: "string",
        labels: {
            string: "string",
        },
        location: "string",
        project: "string",
    });
    
    type: gcp:dataplex:EntryGroup
    properties:
        deletionPolicy: string
        description: string
        displayName: string
        entryGroupId: string
        labels:
            string: string
        location: string
        project: string
    

    EntryGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The EntryGroup resource accepts the following input properties:

    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Description string
    Description of the EntryGroup.
    DisplayName string
    User friendly display name.
    EntryGroupId string
    The entry group id of the entry group.
    Labels Dictionary<string, string>

    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 effectiveLabels for all of the labels present on the resource.

    Location string
    The location where entry group will be created in.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Description string
    Description of the EntryGroup.
    DisplayName string
    User friendly display name.
    EntryGroupId string
    The entry group id of the entry group.
    Labels map[string]string

    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 effectiveLabels for all of the labels present on the resource.

    Location string
    The location where entry group will be created in.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    deletion_policy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description string
    Description of the EntryGroup.
    display_name string
    User friendly display name.
    entry_group_id string
    The entry group id of the entry group.
    labels map(string)

    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 effectiveLabels for all of the labels present on the resource.

    location string
    The location where entry group will be created in.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description String
    Description of the EntryGroup.
    displayName String
    User friendly display name.
    entryGroupId String
    The entry group id of the entry group.
    labels Map<String,String>

    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 effectiveLabels for all of the labels present on the resource.

    location String
    The location where entry group will be created in.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    deletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description string
    Description of the EntryGroup.
    displayName string
    User friendly display name.
    entryGroupId string
    The entry group id of the entry group.
    labels {[key: string]: string}

    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 effectiveLabels for all of the labels present on the resource.

    location string
    The location where entry group will be created in.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    deletion_policy str
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description str
    Description of the EntryGroup.
    display_name str
    User friendly display name.
    entry_group_id str
    The entry group id of the entry group.
    labels Mapping[str, str]

    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 effectiveLabels for all of the labels present on the resource.

    location str
    The location where entry group will be created in.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description String
    Description of the EntryGroup.
    displayName String
    User friendly display name.
    entryGroupId String
    The entry group id of the entry group.
    labels Map<String>

    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 effectiveLabels for all of the labels present on the resource.

    location String
    The location where entry group will be created in.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EntryGroup resource produces the following output properties:

    CreateTime string
    The time when the EntryGroup was created.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    TransferStatus string
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    Uid string
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    UpdateTime string
    The time when the EntryGroup was last updated.
    CreateTime string
    The time when the EntryGroup was created.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    TransferStatus string
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    Uid string
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    UpdateTime string
    The time when the EntryGroup was last updated.
    create_time string
    The time when the EntryGroup was created.
    effective_labels map(string)
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    pulumi_labels map(string)
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transfer_status string
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid string
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    update_time string
    The time when the EntryGroup was last updated.
    createTime String
    The time when the EntryGroup was created.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transferStatus String
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid String
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    updateTime String
    The time when the EntryGroup was last updated.
    createTime string
    The time when the EntryGroup was created.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transferStatus string
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid string
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    updateTime string
    The time when the EntryGroup was last updated.
    create_time str
    The time when the EntryGroup was created.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transfer_status str
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid str
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    update_time str
    The time when the EntryGroup was last updated.
    createTime String
    The time when the EntryGroup was created.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transferStatus String
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid String
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    updateTime String
    The time when the EntryGroup was last updated.

    Look up Existing EntryGroup Resource

    Get an existing EntryGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EntryGroupState, opts?: CustomResourceOptions): EntryGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            deletion_policy: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            entry_group_id: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            transfer_status: Optional[str] = None,
            uid: Optional[str] = None,
            update_time: Optional[str] = None) -> EntryGroup
    func GetEntryGroup(ctx *Context, name string, id IDInput, state *EntryGroupState, opts ...ResourceOption) (*EntryGroup, error)
    public static EntryGroup Get(string name, Input<string> id, EntryGroupState? state, CustomResourceOptions? opts = null)
    public static EntryGroup get(String name, Output<String> id, EntryGroupState state, CustomResourceOptions options)
    resources:  _:    type: gcp:dataplex:EntryGroup    get:      id: ${id}
    import {
      to = gcp_dataplex_entrygroup.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreateTime string
    The time when the EntryGroup was created.
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Description string
    Description of the EntryGroup.
    DisplayName string
    User friendly display name.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    EntryGroupId string
    The entry group id of the entry group.
    Labels Dictionary<string, string>

    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 effectiveLabels for all of the labels present on the resource.

    Location string
    The location where entry group will be created in.
    Name string
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    TransferStatus string
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    Uid string
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    UpdateTime string
    The time when the EntryGroup was last updated.
    CreateTime string
    The time when the EntryGroup was created.
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Description string
    Description of the EntryGroup.
    DisplayName string
    User friendly display name.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    EntryGroupId string
    The entry group id of the entry group.
    Labels map[string]string

    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 effectiveLabels for all of the labels present on the resource.

    Location string
    The location where entry group will be created in.
    Name string
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    TransferStatus string
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    Uid string
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    UpdateTime string
    The time when the EntryGroup was last updated.
    create_time string
    The time when the EntryGroup was created.
    deletion_policy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description string
    Description of the EntryGroup.
    display_name string
    User friendly display name.
    effective_labels map(string)
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    entry_group_id string
    The entry group id of the entry group.
    labels map(string)

    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 effectiveLabels for all of the labels present on the resource.

    location string
    The location where entry group will be created in.
    name string
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumi_labels map(string)
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transfer_status string
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid string
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    update_time string
    The time when the EntryGroup was last updated.
    createTime String
    The time when the EntryGroup was created.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description String
    Description of the EntryGroup.
    displayName String
    User friendly display name.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    entryGroupId String
    The entry group id of the entry group.
    labels Map<String,String>

    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 effectiveLabels for all of the labels present on the resource.

    location String
    The location where entry group will be created in.
    name String
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transferStatus String
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid String
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    updateTime String
    The time when the EntryGroup was last updated.
    createTime string
    The time when the EntryGroup was created.
    deletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description string
    Description of the EntryGroup.
    displayName string
    User friendly display name.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    entryGroupId string
    The entry group id of the entry group.
    labels {[key: string]: string}

    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 effectiveLabels for all of the labels present on the resource.

    location string
    The location where entry group will be created in.
    name string
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transferStatus string
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid string
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    updateTime string
    The time when the EntryGroup was last updated.
    create_time str
    The time when the EntryGroup was created.
    deletion_policy str
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description str
    Description of the EntryGroup.
    display_name str
    User friendly display name.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    entry_group_id str
    The entry group id of the entry group.
    labels Mapping[str, str]

    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 effectiveLabels for all of the labels present on the resource.

    location str
    The location where entry group will be created in.
    name str
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transfer_status str
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid str
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    update_time str
    The time when the EntryGroup was last updated.
    createTime String
    The time when the EntryGroup was created.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    description String
    Description of the EntryGroup.
    displayName String
    User friendly display name.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    entryGroupId String
    The entry group id of the entry group.
    labels Map<String>

    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 effectiveLabels for all of the labels present on the resource.

    location String
    The location where entry group will be created in.
    name String
    The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    transferStatus String
    Denotes the transfer status of the Entry Group. It is unspecified for Entry Group created from Dataplex API.
    uid String
    System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
    updateTime String
    The time when the EntryGroup was last updated.

    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}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Viewing docs for Google Cloud v9.24.0
    published on Friday, May 22, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial