public static Task Reset(vCloudClient client, ReferenceType adminOrgNetworkReference)
 {
     try
     {
         return(AdminOrgNetwork.ExecuteAction(client, adminOrgNetworkReference.href + "/action/reset", (string)null, (string)null, 202));
     }
     catch (Exception ex)
     {
         throw new VCloudException(ex.Message);
     }
 }
 public Task SyncSyslogServer()
 {
     try
     {
         return(AdminOrgNetwork.ExecuteAction(this.VcloudClient, this.Reference.href + "/action/syncSyslogServerSettings", (string)null, (string)null, 202));
     }
     catch (Exception ex)
     {
         throw new VCloudException(ex.Message);
     }
 }
 public Task Reset()
 {
     return(AdminOrgNetwork.ExecuteAction(this.VcloudClient, this.Reference.href + "/action/reset", (string)null, (string)null, 202));
 }