Resource: Field
Represents a single field in the database.
Fields are grouped by their "Collection Group", which represent all collections in the database with the same ID.
JSON representation |
---|
{ "name": string, "indexConfig": { object ( |
Fields | |
---|---|
name |
Required. A field name of the form A field path may be a simple field name, e.g. Field paths may be quoted using Examples: (Note: Comments here are written in markdown syntax, so there is an additional layer of backticks to represent a code block) A special |
indexConfig |
The index configuration for this field. If unset, field indexing will revert to the configuration defined by the |
ttlConfig |
The TTL configuration for this |
IndexConfig
The index configuration for this field.
JSON representation |
---|
{
"indexes": [
{
object ( |
Fields | |
---|---|
indexes[] |
The indexes supported for this field. |
usesAncestorConfig |
Output only. When true, the |
ancestorField |
Output only. Specifies the resource name of the |
reverting |
Output only When true, the |
TtlConfig
The TTL (time-to-live) configuration for documents that have this Field
set.
Storing a timestamp value into a TTL-enabled field will be treated as the document's absolute expiration time. Timestamp values in the past indicate that the document is eligible for immediate expiration. Using any other data type or leaving the field absent will disable expiration for the individual document.
JSON representation |
---|
{
"state": enum ( |
Fields | |
---|---|
state |
Output only. The state of the TTL configuration. |
State
The state of applying the TTL configuration to all documents.
Enums | |
---|---|
STATE_UNSPECIFIED |
The state is unspecified or unknown. |
CREATING |
The TTL is being applied. There is an active long-running operation to track the change. Newly written documents will have TTLs applied as requested. Requested TTLs on existing documents are still being processed. When TTLs on all existing documents have been processed, the state will move to 'ACTIVE'. |
ACTIVE |
The TTL is active for all documents. |
NEEDS_REPAIR |
The TTL configuration could not be enabled for all existing documents. Newly written documents will continue to have their TTL applied. The LRO returned when last attempting to enable TTL for this Field has failed, and may have more details. |
Methods |
|
---|---|
|
Gets the metadata and configuration for a Field. |
|
Lists the field configuration and metadata for this database. |
|
Updates a field configuration. |