/// <summary>Constructs a new Import request.</summary>
 public ImportRequest(Google.Apis.Services.IClientService service, Google.Apis.Datastore.v1beta1.Data.GoogleDatastoreAdminV1beta1ImportEntitiesRequest body, string projectId)
     : base(service)
 {
     ProjectId = projectId;
     Body      = body;
     InitParameters();
 }
 /// <summary>Imports entities into Google Cloud Datastore. Existing entities with the same key are overwritten.
 /// The import occurs in the background and its progress can be monitored and managed via the Operation resource
 /// that is created. If an ImportEntities operation is cancelled, it is possible that a subset of the data has
 /// already been imported to Cloud Datastore.</summary>
 /// <param name="body">The body of the request.</param>
 /// <param name="projectId">Project ID against which to make the request.</param>
 public virtual ImportRequest Import(Google.Apis.Datastore.v1beta1.Data.GoogleDatastoreAdminV1beta1ImportEntitiesRequest body, string projectId)
 {
     return(new ImportRequest(service, body, projectId));
 }