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 EntryGroup
getEntryGroup()
The entry group to create.String
getEntryGroupId()
Required.com.google.protobuf.ByteString
getEntryGroupIdBytes()
Required.EntryGroupOrBuilder
getEntryGroupOrBuilder()
The entry group to create.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
hasEntryGroup()
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 name of the project this entry group is in. Example: * projects/{project_id}/locations/{location} Note that this EntryGroup and its child resources may not actually be stored in the location in this name.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The name of the project this entry group is in. Example: * projects/{project_id}/locations/{location} Note that this EntryGroup and its child resources may not actually be stored in the location in this 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 begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.
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 begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.
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 an empty entry group.
.google.cloud.datacatalog.v1beta1.EntryGroup entry_group = 2;
- Returns:
- Whether the entryGroup field is set.
-
getEntryGroup
EntryGroup getEntryGroup()
The entry group to create. Defaults to an empty entry group.
.google.cloud.datacatalog.v1beta1.EntryGroup entry_group = 2;
- Returns:
- The entryGroup.
-
getEntryGroupOrBuilder
EntryGroupOrBuilder getEntryGroupOrBuilder()
The entry group to create. Defaults to an empty entry group.
.google.cloud.datacatalog.v1beta1.EntryGroup entry_group = 2;
-
-