/// <summary>Constructs a new Undelete request.</summary>
 public UndeleteRequest(Google.Apis.Services.IClientService service, Google.Apis.FirebaseRealtimeDatabase.v1beta.Data.UndeleteDatabaseInstanceRequest body, string name) : base(service)
 {
     Name = name;
     Body = body;
     InitParameters();
 }
 /// <summary>
 /// Restores a DatabaseInstance that was previously marked to be deleted. This may only be used on a
 /// DatabaseInstance in the DELETED state. Purged DatabaseInstance's may not be recovered.
 /// </summary>
 /// <param name="body">The body of the request.</param>
 /// <param name="name">
 /// The fully qualified resource name of the database instance, in the form:
 /// `projects/{project-number}/locations/{location-id}/instances/{database-id}`
 /// </param>
 public virtual UndeleteRequest Undelete(Google.Apis.FirebaseRealtimeDatabase.v1beta.Data.UndeleteDatabaseInstanceRequest body, string name)
 {
     return(new UndeleteRequest(service, body, name));
 }