1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. dataplex
  5. EntryGroup
Google Cloud Classic v7.32.0 published on Tuesday, Jul 16, 2024 by Pulumi

gcp.dataplex.EntryGroup

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.32.0 published on Tuesday, Jul 16, 2024 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/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
    	})
    }
    
    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.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")
    
    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
    	})
    }
    
    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.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
    

    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,
                   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.
    
    

    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()
    {
        Description = "string",
        DisplayName = "string",
        EntryGroupId = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Location = "string",
        Project = "string",
    });
    
    example, err := dataplex.NewEntryGroup(ctx, "gcpEntryGroupResource", &dataplex.EntryGroupArgs{
    	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"),
    })
    
    var gcpEntryGroupResource = new EntryGroup("gcpEntryGroupResource", EntryGroupArgs.builder()
        .description("string")
        .displayName("string")
        .entryGroupId("string")
        .labels(Map.of("string", "string"))
        .location("string")
        .project("string")
        .build());
    
    gcp_entry_group_resource = gcp.dataplex.EntryGroup("gcpEntryGroupResource",
        description="string",
        display_name="string",
        entry_group_id="string",
        labels={
            "string": "string",
        },
        location="string",
        project="string")
    
    const gcpEntryGroupResource = new gcp.dataplex.EntryGroup("gcpEntryGroupResource", {
        description: "string",
        displayName: "string",
        entryGroupId: "string",
        labels: {
            string: "string",
        },
        location: "string",
        project: "string",
    });
    
    type: gcp:dataplex:EntryGroup
    properties:
        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

    The EntryGroup resource accepts the following input properties:

    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 effective_labels 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.
    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 effective_labels 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.
    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 effective_labels 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.
    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 effective_labels 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.
    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 effective_labels 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.
    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 effective_labels 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.
    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,
            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)
    Resource lookup is not supported in YAML
    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.
    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 effective_labels 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.
    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 effective_labels 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.
    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 effective_labels 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.
    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 effective_labels 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.
    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 effective_labels 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.
    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 effective_labels 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
    Google Cloud Classic v7.32.0 published on Tuesday, Jul 16, 2024 by Pulumi