Class: Google::Apis::DatastoreV1::PathElement
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1::PathElement
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastore_v1/classes.rb,
lib/google/apis/datastore_v1/representations.rb,
lib/google/apis/datastore_v1/representations.rb
Overview
A (kind, ID/name) pair used to construct a key path. If either name or ID is set, the element is complete. If neither is set, the element is incomplete.
Instance Attribute Summary collapse
-
#id ⇒ Fixnum
The auto-allocated ID of the entity.
-
#kind ⇒ String
The kind of the entity.
-
#name ⇒ String
The name of the entity.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PathElement
constructor
A new instance of PathElement.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PathElement
Returns a new instance of PathElement.
2024 2025 2026 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2024 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ Fixnum
The auto-allocated ID of the entity. Never equal to zero. Values less than
zero are discouraged and may not be supported in the future.
Corresponds to the JSON property id
2006 2007 2008 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2006 def id @id end |
#kind ⇒ String
The kind of the entity. A kind matching regex __.*__
is reserved/read-only.
A kind must not contain more than 1500 bytes when UTF-8 encoded. Cannot be ""
. Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are
encoded as __bytes__
where `is the base-64 encoding of the bytes.
Corresponds to the JSON property
kind`
2014 2015 2016 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2014 def kind @kind end |
#name ⇒ String
The name of the entity. A name matching regex __.*__
is reserved/read-only.
A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be ""
.
Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded
as __bytes__
where `is the base-64 encoding of the bytes.
Corresponds to the JSON property
name`
2022 2023 2024 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2022 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2029 2030 2031 2032 2033 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 2029 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) end |