Class: Google::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2Field

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/firestore_v1beta2/classes.rb,
generated/google/apis/firestore_v1beta2/representations.rb,
generated/google/apis/firestore_v1beta2/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleFirestoreAdminV1beta2Field

Returns a new instance of GoogleFirestoreAdminV1beta2Field.



197
198
199
# File 'generated/google/apis/firestore_v1beta2/classes.rb', line 197

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#index_configGoogle::Apis::FirestoreV1beta2::GoogleFirestoreAdminV1beta2IndexConfig

The index configuration for this field. Corresponds to the JSON property indexConfig



167
168
169
# File 'generated/google/apis/firestore_v1beta2/classes.rb', line 167

def index_config
  @index_config
end

#nameString

A field name of the form projects/project_id/databases/database_id/collectionGroups/collection_id /fields/field_path A field path may be a simple field name, e.g. `address` or a path to fields within map_value , e.g. `address.city`, or a special field path. The only valid special field is `*`, which represents any field. Field paths may be quoted using ` (backtick). The only character that needs to be escaped within a quoted field path is the backtick character itself, escaped using a backslash. Special characters in field paths that must be quoted include: `*`, `.`, (backtick),[,], as well as any ascii symbolic characters. Examples: (Note: Comments here are written in markdown syntax, so there is an additional layer of backticks to represent a code block) `address.city`represents a field namedaddress.city, not the map key cityin the fieldaddress. ``represents a field named, not any field. A specialFieldcontains the default indexing settings for all fields. This field's resource name is: projects/project_id/databases/database_id/collectionGroups/default/ fields/* Indexes defined on thisFieldwill be applied to all fields which do not have their ownFieldindex configuration. Corresponds to the JSON propertyname`

Returns:

  • (String)


195
196
197
# File 'generated/google/apis/firestore_v1beta2/classes.rb', line 195

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



202
203
204
205
# File 'generated/google/apis/firestore_v1beta2/classes.rb', line 202

def update!(**args)
  @index_config = args[:index_config] if args.key?(:index_config)
  @name = args[:name] if args.key?(:name)
end