Interface CreateTagRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateTagRequest,CreateTagRequest.Builder
public interface CreateTagRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetParent()The name of the parent resource where the tag will be created.com.google.protobuf.ByteStringgetParentBytes()The name of the parent resource where the tag will be created.TaggetTag()The tag to be created.StringgetTagId()The tag id to use for this repository.com.google.protobuf.ByteStringgetTagIdBytes()The tag id to use for this repository.TagOrBuildergetTagOrBuilder()The tag to be created.booleanhasTag()The tag to be created.-
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()
The name of the parent resource where the tag will be created.
string parent = 1;- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
The name of the parent resource where the tag will be created.
string parent = 1;- Returns:
- The bytes for parent.
-
getTagId
String getTagId()
The tag id to use for this repository.
string tag_id = 2;- Returns:
- The tagId.
-
getTagIdBytes
com.google.protobuf.ByteString getTagIdBytes()
The tag id to use for this repository.
string tag_id = 2;- Returns:
- The bytes for tagId.
-
hasTag
boolean hasTag()
The tag to be created.
.google.devtools.artifactregistry.v1beta2.Tag tag = 3;- Returns:
- Whether the tag field is set.
-
getTag
Tag getTag()
The tag to be created.
.google.devtools.artifactregistry.v1beta2.Tag tag = 3;- Returns:
- The tag.
-
getTagOrBuilder
TagOrBuilder getTagOrBuilder()
The tag to be created.
.google.devtools.artifactregistry.v1beta2.Tag tag = 3;
-
-