Class: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1ExportEntitiesMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1::GoogleDatastoreAdminV1ExportEntitiesMetadata
- 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
Metadata for ExportEntities operations.
Instance Attribute Summary collapse
-
#common ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1CommonMetadata
Metadata common to all Datastore Admin operations.
-
#entity_filter ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1EntityFilter
Identifies a subset of entities in a project.
-
#output_url_prefix ⇒ String
Location for the export metadata and data files.
-
#progress_bytes ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1Progress
Measures the progress of a particular metric.
-
#progress_entities ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1Progress
Measures the progress of a particular metric.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDatastoreAdminV1ExportEntitiesMetadata
constructor
A new instance of GoogleDatastoreAdminV1ExportEntitiesMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDatastoreAdminV1ExportEntitiesMetadata
Returns a new instance of GoogleDatastoreAdminV1ExportEntitiesMetadata.
869 870 871 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 869 def initialize(**args) update!(**args) end |
Instance Attribute Details
#common ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1CommonMetadata
Metadata common to all Datastore Admin operations.
Corresponds to the JSON property common
837 838 839 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 837 def common @common end |
#entity_filter ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1EntityFilter
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']
Corresponds to the JSON property entityFilter
849 850 851 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 849 def entity_filter @entity_filter end |
#output_url_prefix ⇒ String
Location for the export metadata and data files. This will be the same value
as the google.datastore.admin.v1.ExportEntitiesRequest.output_url_prefix field.
The final output location is provided in google.datastore.admin.v1.
ExportEntitiesResponse.output_url.
Corresponds to the JSON property outputUrlPrefix
857 858 859 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 857 def output_url_prefix @output_url_prefix end |
#progress_bytes ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1Progress
Measures the progress of a particular metric.
Corresponds to the JSON property progressBytes
862 863 864 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 862 def progress_bytes @progress_bytes end |
#progress_entities ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1Progress
Measures the progress of a particular metric.
Corresponds to the JSON property progressEntities
867 868 869 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 867 def progress_entities @progress_entities end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
874 875 876 877 878 879 880 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 874 def update!(**args) @common = args[:common] if args.key?(:common) @entity_filter = args[:entity_filter] if args.key?(:entity_filter) @output_url_prefix = args[:output_url_prefix] if args.key?(:output_url_prefix) @progress_bytes = args[:progress_bytes] if args.key?(:progress_bytes) @progress_entities = args[:progress_entities] if args.key?(:progress_entities) end |