Class: Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1Index

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

Overview

An index definition.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirestoreAdminV1beta1Index

Returns a new instance of GoogleFirestoreAdminV1beta1Index.



1313
1314
1315
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1313

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

Instance Attribute Details

#collection_idString

The collection ID to which this index applies. Required. Corresponds to the JSON property collectionId

Returns:

  • (String)


1296
1297
1298
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1296

def collection_id
  @collection_id
end

#fieldsArray<Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1IndexField>

The fields to index. Corresponds to the JSON property fields



1301
1302
1303
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1301

def fields
  @fields
end

#nameString

The resource name of the index. Output only. Corresponds to the JSON property name

Returns:

  • (String)


1306
1307
1308
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1306

def name
  @name
end

#stateString

The state of the index. Output only. Corresponds to the JSON property state

Returns:

  • (String)


1311
1312
1313
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1311

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1318
1319
1320
1321
1322
1323
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1318

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