EntryGroup

class EntryGroup : KotlinCustomResource

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

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());
}
}

Data Catalog Entry Group Full

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

EntryGroup can be imported using any of these accepted formats:

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

Properties

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

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

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

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

Link copied to clipboard
val entryGroupId: Output<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.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

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

Link copied to clipboard
val project: Output<String>

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

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val region: Output<String>

EntryGroup location region.

Link copied to clipboard
val urn: Output<String>