Class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1IndexField
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1::GoogleFirestoreAdminV1IndexField
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firestore_v1/classes.rb,
lib/google/apis/firestore_v1/representations.rb,
lib/google/apis/firestore_v1/representations.rb
Overview
A field in an index. The field_path describes which field is indexed, the value_mode describes how the field value is indexed.
Instance Attribute Summary collapse
-
#array_config ⇒ String
Indicates that this field supports operations on
array_values. -
#field_path ⇒ String
Can be name.
-
#order ⇒ String
Indicates that this field supports ordering by the specified order or comparing using =, !=, <, <=, >, >=.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirestoreAdminV1IndexField
constructor
A new instance of GoogleFirestoreAdminV1IndexField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirestoreAdminV1IndexField
Returns a new instance of GoogleFirestoreAdminV1IndexField.
1309 1310 1311 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 1309 def initialize(**args) update!(**args) end |
Instance Attribute Details
#array_config ⇒ String
Indicates that this field supports operations on array_values.
Corresponds to the JSON property arrayConfig
1295 1296 1297 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 1295 def array_config @array_config end |
#field_path ⇒ String
Can be name. For single field indexes, this must match the name of the
field or may be omitted.
Corresponds to the JSON property fieldPath
1301 1302 1303 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 1301 def field_path @field_path end |
#order ⇒ String
Indicates that this field supports ordering by the specified order or
comparing using =, !=, <, <=, >, >=.
Corresponds to the JSON property order
1307 1308 1309 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 1307 def order @order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1314 1315 1316 1317 1318 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 1314 def update!(**args) @array_config = args[:array_config] if args.key?(:array_config) @field_path = args[:field_path] if args.key?(:field_path) @order = args[:order] if args.key?(:order) end |