Package com.google.cloud.datacatalog.v1
Interface CreateEntryGroupRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateEntryGroupRequest,CreateEntryGroupRequest.Builder
public interface CreateEntryGroupRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntryGroupgetEntryGroup()The entry group to create.StringgetEntryGroupId()Required.com.google.protobuf.ByteStringgetEntryGroupIdBytes()Required.EntryGroupOrBuildergetEntryGroupOrBuilder()The entry group to create.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.booleanhasEntryGroup()The entry group to create.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The names of the project and location that the new entry group belongs to. Note: The entry group itself and its child resources might not be stored in the location specified in its name.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The names of the project and location that the new entry group belongs to. Note: The entry group itself and its child resources might not be stored in the location specified in its name.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getEntryGroupId
String getEntryGroupId()
Required. The ID of the entry group to create. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and must start with a letter or underscore. The maximum size is 64 bytes when encoded in UTF-8.
string entry_group_id = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The entryGroupId.
-
getEntryGroupIdBytes
com.google.protobuf.ByteString getEntryGroupIdBytes()
Required. The ID of the entry group to create. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and must start with a letter or underscore. The maximum size is 64 bytes when encoded in UTF-8.
string entry_group_id = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for entryGroupId.
-
hasEntryGroup
boolean hasEntryGroup()
The entry group to create. Defaults to empty.
.google.cloud.datacatalog.v1.EntryGroup entry_group = 2;- Returns:
- Whether the entryGroup field is set.
-
getEntryGroup
EntryGroup getEntryGroup()
The entry group to create. Defaults to empty.
.google.cloud.datacatalog.v1.EntryGroup entry_group = 2;- Returns:
- The entryGroup.
-
getEntryGroupOrBuilder
EntryGroupOrBuilder getEntryGroupOrBuilder()
The entry group to create. Defaults to empty.
.google.cloud.datacatalog.v1.EntryGroup entry_group = 2;
-
-