Class: Google::Cloud::Datastore::V1::Key::PathElement
- Inherits:
-
Object
- Object
- Google::Cloud::Datastore::V1::Key::PathElement
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/datastore/v1/entity.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 ⇒ ::Integer
The auto-allocated ID of the entity.
-
#kind ⇒ ::String
The kind of the entity.
-
#name ⇒ ::String
The name of the entity.
Instance Attribute Details
#id ⇒ ::Integer
Returns 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.
122 123 124 125 |
# File 'proto_docs/google/datastore/v1/entity.rb', line 122 class PathElement include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#kind ⇒ ::String
Returns 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<X>__
where <X>
is the base-64 encoding of the
bytes.
122 123 124 125 |
# File 'proto_docs/google/datastore/v1/entity.rb', line 122 class PathElement include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#name ⇒ ::String
Returns 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<X>__
where <X>
is the base-64 encoding of the
bytes.
122 123 124 125 |
# File 'proto_docs/google/datastore/v1/entity.rb', line 122 class PathElement include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |