Class: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1IndexedProperty
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1::GoogleDatastoreAdminV1IndexedProperty
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datastore_v1/classes.rb,
generated/google/apis/datastore_v1/representations.rb,
generated/google/apis/datastore_v1/representations.rb
Overview
A property of an index.
Instance Attribute Summary collapse
-
#direction ⇒ String
The indexed property's direction.
-
#name ⇒ String
The property name to index.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDatastoreAdminV1IndexedProperty
constructor
A new instance of GoogleDatastoreAdminV1IndexedProperty.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDatastoreAdminV1IndexedProperty
Returns a new instance of GoogleDatastoreAdminV1IndexedProperty
793 794 795 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 793 def initialize(**args) update!(**args) end |
Instance Attribute Details
#direction ⇒ String
The indexed property's direction. Must not be DIRECTION_UNSPECIFIED.
Required.
Corresponds to the JSON property direction
785 786 787 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 785 def direction @direction end |
#name ⇒ String
The property name to index.
Required.
Corresponds to the JSON property name
791 792 793 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 791 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
798 799 800 801 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 798 def update!(**args) @direction = args[:direction] if args.key?(:direction) @name = args[:name] if args.key?(:name) end |