Class: Google::Apis::DatastoreV1beta3::ArrayValue
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1beta3::ArrayValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datastore_v1beta3/classes.rb,
generated/google/apis/datastore_v1beta3/representations.rb,
generated/google/apis/datastore_v1beta3/representations.rb
Overview
An array value.
Instance Attribute Summary collapse
-
#values ⇒ Array<Google::Apis::DatastoreV1beta3::Value>
Values in the array.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ArrayValue
constructor
A new instance of ArrayValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ArrayValue
Returns a new instance of ArrayValue.
75 76 77 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 75 def initialize(**args) update!(**args) end |
Instance Attribute Details
#values ⇒ Array<Google::Apis::DatastoreV1beta3::Value>
Values in the array. The order of values in an array is preserved as long as
all values have identical settings for 'exclude_from_indexes'.
Corresponds to the JSON property values
73 74 75 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 73 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
80 81 82 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 80 def update!(**args) @values = args[:values] if args.key?(:values) end |