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 can be a simple field name, e.g. Field paths can be quoted using Examples: 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.
A timestamp stored in a TTL-enabled field will be used to determine the expiration time of the document. The expiration time is the sum of the timestamp value and the expirationOffset.
For Enterprise edition databases, the timestamp value may alternatively be stored in an array value in the TTL-enabled field.
An expiration time in the past indicates 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. |
expirationOffset |
Optional. The offset, relative to the timestamp value from the TTL-enabled field, used to determine the document's expiration time.
If unset, defaults to 0, in which case the expiration time is the same as the timestamp value from the TTL-enabled field. A duration in seconds with up to nine fractional digits, ending with ' |
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. |