Package com.google.datastore.admin.v1
Interface CreateIndexRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateIndexRequest,CreateIndexRequest.Builder
public interface CreateIndexRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IndexgetIndex()The index to create.IndexOrBuildergetIndexOrBuilder()The index to create.StringgetProjectId()Project ID against which to make the request.com.google.protobuf.ByteStringgetProjectIdBytes()Project ID against which to make the request.booleanhasIndex()The index to create.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProjectId
String getProjectId()
Project ID against which to make the request.
string project_id = 1;- Returns:
- The projectId.
-
getProjectIdBytes
com.google.protobuf.ByteString getProjectIdBytes()
Project ID against which to make the request.
string project_id = 1;- Returns:
- The bytes for projectId.
-
hasIndex
boolean hasIndex()
The index to create. The name and state fields are output only and will be ignored. Single property indexes cannot be created or deleted.
.google.datastore.admin.v1.Index index = 3;- Returns:
- Whether the index field is set.
-
getIndex
Index getIndex()
The index to create. The name and state fields are output only and will be ignored. Single property indexes cannot be created or deleted.
.google.datastore.admin.v1.Index index = 3;- Returns:
- The index.
-
getIndexOrBuilder
IndexOrBuilder getIndexOrBuilder()
The index to create. The name and state fields are output only and will be ignored. Single property indexes cannot be created or deleted.
.google.datastore.admin.v1.Index index = 3;
-
-