Package io.grafeas.v1beta1
Interface BatchCreateNotesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchCreateNotesRequest
,BatchCreateNotesRequest.Builder
public interface BatchCreateNotesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsNotes(String key)
The notes to create.Map<String,Note>
getNotes()
Deprecated.int
getNotesCount()
The notes to create.Map<String,Note>
getNotesMap()
The notes to create.Note
getNotesOrDefault(String key, Note defaultValue)
The notes to create.Note
getNotesOrThrow(String key)
The notes to create.String
getParent()
The name of the project in the form of `projects/[PROJECT_ID]`, under which the notes are to be created.com.google.protobuf.ByteString
getParentBytes()
The name of the project in the form of `projects/[PROJECT_ID]`, under which the notes are 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 project in the form of `projects/[PROJECT_ID]`, under which the notes are to be created.
string parent = 1;
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
The name of the project in the form of `projects/[PROJECT_ID]`, under which the notes are to be created.
string parent = 1;
- Returns:
- The bytes for parent.
-
getNotesCount
int getNotesCount()
The notes to create.
map<string, .grafeas.v1beta1.Note> notes = 2;
-
containsNotes
boolean containsNotes(String key)
The notes to create.
map<string, .grafeas.v1beta1.Note> notes = 2;
-
getNotes
@Deprecated Map<String,Note> getNotes()
Deprecated.UsegetNotesMap()
instead.
-
getNotesMap
Map<String,Note> getNotesMap()
The notes to create.
map<string, .grafeas.v1beta1.Note> notes = 2;
-
getNotesOrDefault
Note getNotesOrDefault(String key, Note defaultValue)
The notes to create.
map<string, .grafeas.v1beta1.Note> notes = 2;
-
-