Class: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1ImportEntitiesMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1ImportEntitiesMetadata
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/datastore_v1/classes.rb,
generated/google/apis/datastore_v1/representations.rb,
generated/google/apis/datastore_v1/representations.rb 
Overview
Metadata for ImportEntities operations.
Instance Attribute Summary collapse
- 
  
    
      #common  ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1CommonMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metadata common to all Datastore Admin operations.
 - 
  
    
      #entity_filter  ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1EntityFilter 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies a subset of entities in a project.
 - 
  
    
      #input_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The location of the import metadata file.
 - 
  
    
      #progress_bytes  ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1Progress 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Measures the progress of a particular metric.
 - 
  
    
      #progress_entities  ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1Progress 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Measures the progress of a particular metric.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleDatastoreAdminV1beta1ImportEntitiesMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleDatastoreAdminV1beta1ImportEntitiesMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDatastoreAdminV1beta1ImportEntitiesMetadata
Returns a new instance of GoogleDatastoreAdminV1beta1ImportEntitiesMetadata
      1073 1074 1075  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1073 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#common ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1CommonMetadata
Metadata common to all Datastore Admin operations.
Corresponds to the JSON property common
      1036 1037 1038  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1036 def common @common end  | 
  
#entity_filter ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1EntityFilter
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
      1054 1055 1056  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1054 def entity_filter @entity_filter end  | 
  
#input_url ⇒ String
The location of the import metadata file. This will be the same value as
the google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url
field.
Corresponds to the JSON property inputUrl
      1061 1062 1063  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1061 def input_url @input_url end  | 
  
#progress_bytes ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1Progress
Measures the progress of a particular metric.
Corresponds to the JSON property progressBytes
      1066 1067 1068  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1066 def progress_bytes @progress_bytes end  | 
  
#progress_entities ⇒ Google::Apis::DatastoreV1::GoogleDatastoreAdminV1beta1Progress
Measures the progress of a particular metric.
Corresponds to the JSON property progressEntities
      1071 1072 1073  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1071 def progress_entities @progress_entities end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1078 1079 1080 1081 1082 1083 1084  | 
    
      # File 'generated/google/apis/datastore_v1/classes.rb', line 1078 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  |