1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. datacatalog
  5. EntryGroup
Google Cloud Classic v6.58.0 published on Tuesday, Jun 6, 2023 by Pulumi

gcp.datacatalog.EntryGroup

Explore with Pulumi AI

gcp logo
Google Cloud Classic v6.58.0 published on Tuesday, Jun 6, 2023 by Pulumi

    An EntryGroup resource represents a logical grouping of zero or more Data Catalog Entry resources.

    To get more information about EntryGroup, see:

    Example Usage

    Data Catalog Entry Group Basic

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var basicEntryGroup = new Gcp.DataCatalog.EntryGroup("basicEntryGroup", new()
        {
            EntryGroupId = "my_group",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/datacatalog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datacatalog.NewEntryGroup(ctx, "basicEntryGroup", &datacatalog.EntryGroupArgs{
    			EntryGroupId: pulumi.String("my_group"),
    		})
    		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.datacatalog.EntryGroup;
    import com.pulumi.gcp.datacatalog.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 basicEntryGroup = new EntryGroup("basicEntryGroup", EntryGroupArgs.builder()        
                .entryGroupId("my_group")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    basic_entry_group = gcp.datacatalog.EntryGroup("basicEntryGroup", entry_group_id="my_group")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const basicEntryGroup = new gcp.datacatalog.EntryGroup("basicEntryGroup", {entryGroupId: "my_group"});
    
    resources:
      basicEntryGroup:
        type: gcp:datacatalog:EntryGroup
        properties:
          entryGroupId: my_group
    

    Data Catalog Entry Group Full

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var basicEntryGroup = new Gcp.DataCatalog.EntryGroup("basicEntryGroup", new()
        {
            Description = "example entry group",
            DisplayName = "entry group",
            EntryGroupId = "my_group",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/datacatalog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datacatalog.NewEntryGroup(ctx, "basicEntryGroup", &datacatalog.EntryGroupArgs{
    			Description:  pulumi.String("example entry group"),
    			DisplayName:  pulumi.String("entry group"),
    			EntryGroupId: pulumi.String("my_group"),
    		})
    		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.datacatalog.EntryGroup;
    import com.pulumi.gcp.datacatalog.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 basicEntryGroup = new EntryGroup("basicEntryGroup", EntryGroupArgs.builder()        
                .description("example entry group")
                .displayName("entry group")
                .entryGroupId("my_group")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    basic_entry_group = gcp.datacatalog.EntryGroup("basicEntryGroup",
        description="example entry group",
        display_name="entry group",
        entry_group_id="my_group")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const basicEntryGroup = new gcp.datacatalog.EntryGroup("basicEntryGroup", {
        description: "example entry group",
        displayName: "entry group",
        entryGroupId: "my_group",
    });
    
    resources:
      basicEntryGroup:
        type: gcp:datacatalog:EntryGroup
        properties:
          description: example entry group
          displayName: entry group
          entryGroupId: my_group
    

    Create EntryGroup Resource

    new EntryGroup(name: string, args: EntryGroupArgs, opts?: CustomResourceOptions);
    @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,
                   project: Optional[str] = None,
                   region: Optional[str] = None)
    @overload
    def EntryGroup(resource_name: str,
                   args: EntryGroupArgs,
                   opts: Optional[ResourceOptions] = None)
    func NewEntryGroup(ctx *Context, name string, args EntryGroupArgs, opts ...ResourceOption) (*EntryGroup, error)
    public EntryGroup(string name, EntryGroupArgs args, CustomResourceOptions? opts = null)
    public EntryGroup(String name, EntryGroupArgs args)
    public EntryGroup(String name, EntryGroupArgs args, CustomResourceOptions options)
    
    type: gcp:datacatalog:EntryGroup
    properties: # The arguments to resource properties.
    options: # 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.
    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.

    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:

    EntryGroupId string

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    Description string

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    DisplayName string

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    Project string

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

    Region string

    EntryGroup location region.

    EntryGroupId string

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    Description string

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    DisplayName string

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    Project string

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

    Region string

    EntryGroup location region.

    entryGroupId String

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    description String

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    displayName String

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    project String

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

    region String

    EntryGroup location region.

    entryGroupId string

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    description string

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    displayName string

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    project string

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

    region string

    EntryGroup location region.

    entry_group_id str

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    description str

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    display_name str

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    project str

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

    region str

    EntryGroup location region.

    entryGroupId String

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    description String

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    displayName String

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    project String

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

    region String

    EntryGroup location region.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    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,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            entry_group_id: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            region: 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:
    Description string

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    DisplayName string

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    EntryGroupId string

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    Name string

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    Project string

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

    Region string

    EntryGroup location region.

    Description string

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    DisplayName string

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    EntryGroupId string

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    Name string

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    Project string

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

    Region string

    EntryGroup location region.

    description String

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    displayName String

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    entryGroupId String

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    name String

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    project String

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

    region String

    EntryGroup location region.

    description string

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    displayName string

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    entryGroupId string

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    name string

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    project string

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

    region string

    EntryGroup location region.

    description str

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    display_name str

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    entry_group_id str

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    name str

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    project str

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

    region str

    EntryGroup location region.

    description String

    Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.

    displayName String

    A short name to identify the entry group, for example, "analytics data - jan 2011".

    entryGroupId String

    The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.


    name String

    The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}

    project String

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

    region String

    EntryGroup location region.

    Import

    EntryGroup can be imported using any of these accepted formats

     $ pulumi import gcp:datacatalog/entryGroup:EntryGroup default {{name}}
    

    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 v6.58.0 published on Tuesday, Jun 6, 2023 by Pulumi