public static interface Field.IndexConfigOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getAncestorField()
Output only.
|
com.google.protobuf.ByteString |
getAncestorFieldBytes()
Output only.
|
Index |
getIndexes(int index)
The indexes supported for this field.
|
int |
getIndexesCount()
The indexes supported for this field.
|
List<Index> |
getIndexesList()
The indexes supported for this field.
|
IndexOrBuilder |
getIndexesOrBuilder(int index)
The indexes supported for this field.
|
List<? extends IndexOrBuilder> |
getIndexesOrBuilderList()
The indexes supported for this field.
|
boolean |
getReverting()
Output only
When true, the `Field`'s index configuration is in the process of being
reverted.
|
boolean |
getUsesAncestorConfig()
Output only.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
List<Index> getIndexesList()
The indexes supported for this field.
repeated .google.firestore.admin.v1.Index indexes = 1;
Index getIndexes(int index)
The indexes supported for this field.
repeated .google.firestore.admin.v1.Index indexes = 1;
int getIndexesCount()
The indexes supported for this field.
repeated .google.firestore.admin.v1.Index indexes = 1;
List<? extends IndexOrBuilder> getIndexesOrBuilderList()
The indexes supported for this field.
repeated .google.firestore.admin.v1.Index indexes = 1;
IndexOrBuilder getIndexesOrBuilder(int index)
The indexes supported for this field.
repeated .google.firestore.admin.v1.Index indexes = 1;
boolean getUsesAncestorConfig()
Output only. When true, the `Field`'s index configuration is set from the configuration specified by the `ancestor_field`. When false, the `Field`'s index configuration is defined explicitly.
bool uses_ancestor_config = 2;
String getAncestorField()
Output only. Specifies the resource name of the `Field` from which this field's index configuration is set (when `uses_ancestor_config` is true), or from which it *would* be set if this field had no index configuration (when `uses_ancestor_config` is false).
string ancestor_field = 3;
com.google.protobuf.ByteString getAncestorFieldBytes()
Output only. Specifies the resource name of the `Field` from which this field's index configuration is set (when `uses_ancestor_config` is true), or from which it *would* be set if this field had no index configuration (when `uses_ancestor_config` is false).
string ancestor_field = 3;
boolean getReverting()
Output only When true, the `Field`'s index configuration is in the process of being reverted. Once complete, the index config will transition to the same state as the field specified by `ancestor_field`, at which point `uses_ancestor_config` will be `true` and `reverting` will be `false`.
bool reverting = 4;
Copyright © 2023 Google LLC. All rights reserved.