Class: Google::Apis::DatastoreV1beta1::GoogleDatastoreAdminV1EntityFilter
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1beta1::GoogleDatastoreAdminV1EntityFilter
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datastore_v1beta1/classes.rb,
generated/google/apis/datastore_v1beta1/representations.rb,
generated/google/apis/datastore_v1beta1/representations.rb
Overview
Identifies a subset of entities in a project. This is specified as combinations of kinds and namespaces (either or both of which may be all, as described in the following examples). Example usage: Entire project: kinds=[], namespace_ids=[] Kinds Foo and Bar in all namespaces: kinds=['Foo', 'Bar'], namespace_ids=[] Kinds Foo and Bar only in the default namespace: kinds=['Foo', 'Bar'], namespace_ids=[''] Kinds Foo and Bar in both the default and Baz namespaces: kinds=['Foo', 'Bar'], namespace_ids=['', 'Baz'] The entire Baz namespace: kinds=[], namespace_ids=['Baz']
Instance Attribute Summary collapse
-
#kinds ⇒ Array<String>
If empty, then this represents all kinds.
-
#namespace_ids ⇒ Array<String>
An empty list represents all namespaces.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDatastoreAdminV1EntityFilter
constructor
A new instance of GoogleDatastoreAdminV1EntityFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDatastoreAdminV1EntityFilter
Returns a new instance of GoogleDatastoreAdminV1EntityFilter
102 103 104 |
# File 'generated/google/apis/datastore_v1beta1/classes.rb', line 102 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kinds ⇒ Array<String>
If empty, then this represents all kinds.
Corresponds to the JSON property kinds
90 91 92 |
# File 'generated/google/apis/datastore_v1beta1/classes.rb', line 90 def kinds @kinds end |
#namespace_ids ⇒ Array<String>
An empty list represents all namespaces. This is the preferred
usage for projects that don't use namespaces.
An empty string element represents the default namespace. This should be
used if the project has data in non-default namespaces, but doesn't want to
include them.
Each namespace in this list must be unique.
Corresponds to the JSON property namespaceIds
100 101 102 |
# File 'generated/google/apis/datastore_v1beta1/classes.rb', line 100 def namespace_ids @namespace_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
107 108 109 110 |
# File 'generated/google/apis/datastore_v1beta1/classes.rb', line 107 def update!(**args) @kinds = args[:kinds] if args.key?(:kinds) @namespace_ids = args[:namespace_ids] if args.key?(:namespace_ids) end |