EntryGroupArgs

data class EntryGroupArgs(val description: Output<String>? = null, val displayName: Output<String>? = null, val entryGroupId: Output<String>? = null, val project: Output<String>? = null, val region: Output<String>? = null) : ConvertibleToJava<EntryGroupArgs>

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

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, displayName: Output<String>? = null, entryGroupId: Output<String>? = null, project: Output<String>? = null, region: Output<String>? = null)

Properties

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

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

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

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

Link copied to clipboard
val entryGroupId: Output<String>? = null

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 project: Output<String>? = null

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 region: Output<String>? = null

EntryGroup location region.

Functions

Link copied to clipboard
open override fun toJava(): EntryGroupArgs