Class: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1ImportEntitiesMetadata

Inherits:
Object
  • Object
show all
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 ImportEntities operations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDatastoreAdminV1ImportEntitiesMetadata

Returns a new instance of GoogleDatastoreAdminV1ImportEntitiesMetadata.



837
838
839
# File 'lib/google/apis/datastore_v1/classes.rb', line 837

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#commonGoogle::Apis::DatastoreV1::GoogleDatastoreAdminV1CommonMetadata

Metadata common to all Datastore Admin operations. Corresponds to the JSON property common



807
808
809
# File 'lib/google/apis/datastore_v1/classes.rb', line 807

def common
  @common
end

#entity_filterGoogle::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



819
820
821
# File 'lib/google/apis/datastore_v1/classes.rb', line 819

def entity_filter
  @entity_filter
end

#input_urlString

The location of the import metadata file. This will be the same value as the google.datastore.admin.v1.ExportEntitiesResponse.output_url field. Corresponds to the JSON property inputUrl

Returns:

  • (String)


825
826
827
# File 'lib/google/apis/datastore_v1/classes.rb', line 825

def input_url
  @input_url
end

#progress_bytesGoogle::Apis::DatastoreV1::GoogleDatastoreAdminV1Progress

Measures the progress of a particular metric. Corresponds to the JSON property progressBytes



830
831
832
# File 'lib/google/apis/datastore_v1/classes.rb', line 830

def progress_bytes
  @progress_bytes
end

#progress_entitiesGoogle::Apis::DatastoreV1::GoogleDatastoreAdminV1Progress

Measures the progress of a particular metric. Corresponds to the JSON property progressEntities



835
836
837
# File 'lib/google/apis/datastore_v1/classes.rb', line 835

def progress_entities
  @progress_entities
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



842
843
844
845
846
847
848
# File 'lib/google/apis/datastore_v1/classes.rb', line 842

def update!(**args)
  @common = args[:common] if args.key?(:common)
  @entity_filter = args[:entity_filter] if args.key?(:entity_filter)
  @input_url = args[:input_url] if args.key?(:input_url)
  @progress_bytes = args[:progress_bytes] if args.key?(:progress_bytes)
  @progress_entities = args[:progress_entities] if args.key?(:progress_entities)
end