http://git-wip-us.apache.org/repos/asf/airavata/blob/b0f6744e/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php index 18bfcf5..1c9f9a2 100644 --- a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php +++ b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/lib/Airavata/API/Airavata.php @@ -3428,6 +3428,81 @@ interface AiravataIf { */ public function deleteGatewayStoragePreference(\Airavata\Model\Security\AuthzToken $authzToken, $gatewayID, $storageId); /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @return \Airavata\Model\AppCatalog\AccountProvisioning\SSHAccountProvisioner[] + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function getSSHAccountProvisioners(\Airavata\Model\Security\AuthzToken $authzToken); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $provisionerName + * @return \Airavata\Model\AppCatalog\AccountProvisioning\SSHAccountProvisionerConfigParam[] + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function getSSHAccountProvisionerConfigParams(\Airavata\Model\Security\AuthzToken $authzToken, $provisionerName); + /** + * Check if user has an SSH account on the given compute resource. This + * method will only work if the compute resource has an SSHAccountProvisioner configured for it. + * + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $computeResourceId + * @param string $userId + * @return bool + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function doesUserHaveSSHAccount(\Airavata\Model\Security\AuthzToken $authzToken, $computeResourceId, $userId); + /** + * Setup and return a UserComputeResourcePreference object for this user to SSH into the given compute resource with + * the given SSH credential. This method will only work if the compute resource has an SSHAccountProvisioner + * configured for it. The returned UserComputeResourcePreference object is not saved; it is up to the client to + * call addUserComputeResourcePreference to persist it. + * + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $computeResourceId + * @param string $username + * @param string $airavataCredStoreToken + * @return \Airavata\Model\AppCatalog\UserResourceProfile\UserComputeResourcePreference User specific preferences for a Computer Resource + * + * computeResourceId: + * Corelate the preference to a compute resource. + * + * + * loginUserName: + * If turned true, Airavata will override the preferences of better alternatives exist. + * + * + * preferredBatchQueue: + * Gateways can choose a defualt batch queue based on average job dimention, reservations or other metrics. + * + * scratchLocation: + * Path to the local scratch space on a HPC cluster. Typically used to create working directory for job execution. + * + * allocationProjectNumber: + * Typically used on HPC machines to charge computing usage to a account number. For instance, on XSEDE once an + * allocation is approved, an allocation number is assigned. Before passing this number with job submittions, the + * account to be used has to be added to the allocation. + * + * resourceSpecificCredentialStoreToken: + * Resource specific credential store token. If this token is specified, then it is superceeded by the gateway's + * default credential store. + * + * + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function setupUserComputeResourcePreferencesForSSH(\Airavata\Model\Security\AuthzToken $authzToken, $computeResourceId, $username, $airavataCredStoreToken); + /** * Register User Resource Profile. * * @param UserResourceProfile @@ -12720,6 +12795,264 @@ class AiravataClient implements \Airavata\API\AiravataIf { throw new \Exception("deleteGatewayStoragePreference failed: unknown result"); } + public function getSSHAccountProvisioners(\Airavata\Model\Security\AuthzToken $authzToken) + { + $this->send_getSSHAccountProvisioners($authzToken); + return $this->recv_getSSHAccountProvisioners(); + } + + public function send_getSSHAccountProvisioners(\Airavata\Model\Security\AuthzToken $authzToken) + { + $args = new \Airavata\API\Airavata_getSSHAccountProvisioners_args(); + $args->authzToken = $authzToken; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'getSSHAccountProvisioners', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('getSSHAccountProvisioners', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } + + public function recv_getSSHAccountProvisioners() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_getSSHAccountProvisioners_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; + + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; + } + $result = new \Airavata\API\Airavata_getSSHAccountProvisioners_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); + } + if ($result->success !== null) { + return $result->success; + } + if ($result->ire !== null) { + throw $result->ire; + } + if ($result->ace !== null) { + throw $result->ace; + } + if ($result->ase !== null) { + throw $result->ase; + } + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("getSSHAccountProvisioners failed: unknown result"); + } + + public function getSSHAccountProvisionerConfigParams(\Airavata\Model\Security\AuthzToken $authzToken, $provisionerName) + { + $this->send_getSSHAccountProvisionerConfigParams($authzToken, $provisionerName); + return $this->recv_getSSHAccountProvisionerConfigParams(); + } + + public function send_getSSHAccountProvisionerConfigParams(\Airavata\Model\Security\AuthzToken $authzToken, $provisionerName) + { + $args = new \Airavata\API\Airavata_getSSHAccountProvisionerConfigParams_args(); + $args->authzToken = $authzToken; + $args->provisionerName = $provisionerName; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'getSSHAccountProvisionerConfigParams', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('getSSHAccountProvisionerConfigParams', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } + + public function recv_getSSHAccountProvisionerConfigParams() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_getSSHAccountProvisionerConfigParams_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; + + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; + } + $result = new \Airavata\API\Airavata_getSSHAccountProvisionerConfigParams_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); + } + if ($result->success !== null) { + return $result->success; + } + if ($result->ire !== null) { + throw $result->ire; + } + if ($result->ace !== null) { + throw $result->ace; + } + if ($result->ase !== null) { + throw $result->ase; + } + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("getSSHAccountProvisionerConfigParams failed: unknown result"); + } + + public function doesUserHaveSSHAccount(\Airavata\Model\Security\AuthzToken $authzToken, $computeResourceId, $userId) + { + $this->send_doesUserHaveSSHAccount($authzToken, $computeResourceId, $userId); + return $this->recv_doesUserHaveSSHAccount(); + } + + public function send_doesUserHaveSSHAccount(\Airavata\Model\Security\AuthzToken $authzToken, $computeResourceId, $userId) + { + $args = new \Airavata\API\Airavata_doesUserHaveSSHAccount_args(); + $args->authzToken = $authzToken; + $args->computeResourceId = $computeResourceId; + $args->userId = $userId; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'doesUserHaveSSHAccount', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('doesUserHaveSSHAccount', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } + + public function recv_doesUserHaveSSHAccount() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_doesUserHaveSSHAccount_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; + + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; + } + $result = new \Airavata\API\Airavata_doesUserHaveSSHAccount_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); + } + if ($result->success !== null) { + return $result->success; + } + if ($result->ire !== null) { + throw $result->ire; + } + if ($result->ace !== null) { + throw $result->ace; + } + if ($result->ase !== null) { + throw $result->ase; + } + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("doesUserHaveSSHAccount failed: unknown result"); + } + + public function setupUserComputeResourcePreferencesForSSH(\Airavata\Model\Security\AuthzToken $authzToken, $computeResourceId, $username, $airavataCredStoreToken) + { + $this->send_setupUserComputeResourcePreferencesForSSH($authzToken, $computeResourceId, $username, $airavataCredStoreToken); + return $this->recv_setupUserComputeResourcePreferencesForSSH(); + } + + public function send_setupUserComputeResourcePreferencesForSSH(\Airavata\Model\Security\AuthzToken $authzToken, $computeResourceId, $username, $airavataCredStoreToken) + { + $args = new \Airavata\API\Airavata_setupUserComputeResourcePreferencesForSSH_args(); + $args->authzToken = $authzToken; + $args->computeResourceId = $computeResourceId; + $args->username = $username; + $args->airavataCredStoreToken = $airavataCredStoreToken; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'setupUserComputeResourcePreferencesForSSH', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('setupUserComputeResourcePreferencesForSSH', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } + + public function recv_setupUserComputeResourcePreferencesForSSH() + { + $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary'); + if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\Airavata\API\Airavata_setupUserComputeResourcePreferencesForSSH_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; + + $this->input_->readMessageBegin($fname, $mtype, $rseqid); + if ($mtype == TMessageType::EXCEPTION) { + $x = new TApplicationException(); + $x->read($this->input_); + $this->input_->readMessageEnd(); + throw $x; + } + $result = new \Airavata\API\Airavata_setupUserComputeResourcePreferencesForSSH_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); + } + if ($result->success !== null) { + return $result->success; + } + if ($result->ire !== null) { + throw $result->ire; + } + if ($result->ace !== null) { + throw $result->ace; + } + if ($result->ase !== null) { + throw $result->ase; + } + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("setupUserComputeResourcePreferencesForSSH failed: unknown result"); + } + public function registerUserResourceProfile(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\AppCatalog\UserResourceProfile\UserResourceProfile $userResourceProfile) { $this->send_registerUserResourceProfile($authzToken, $userResourceProfile); @@ -22792,7 +23125,1210 @@ class Airavata_deleteProject_args { break; case 2: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->projectId); + $xfer += $input->readString($this->projectId); + } else { + $xfer += $input->skip($ftype); + } + break; + default: + $xfer += $input->skip($ftype); + break; + } + $xfer += $input->readFieldEnd(); + } + $xfer += $input->readStructEnd(); + return $xfer; + } + + public function write($output) { + $xfer = 0; + $xfer += $output->writeStructBegin('Airavata_deleteProject_args'); + if ($this->authzToken !== null) { + if (!is_object($this->authzToken)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('authzToken', TType::STRUCT, 1); + $xfer += $this->authzToken->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->projectId !== null) { + $xfer += $output->writeFieldBegin('projectId', TType::STRING, 2); + $xfer += $output->writeString($this->projectId); + $xfer += $output->writeFieldEnd(); + } + $xfer += $output->writeFieldStop(); + $xfer += $output->writeStructEnd(); + return $xfer; + } + +} + +class Airavata_deleteProject_result { + static $_TSPEC; + + /** + * @var bool + */ + public $success = null; + /** + * @var \Airavata\API\Error\InvalidRequestException + */ + public $ire = null; + /** + * @var \Airavata\API\Error\AiravataClientException + */ + public $ace = null; + /** + * @var \Airavata\API\Error\AiravataSystemException + */ + public $ase = null; + /** + * @var \Airavata\API\Error\ProjectNotFoundException + */ + public $pnfe = null; + /** + * @var \Airavata\API\Error\AuthorizationException + */ + public $ae = null; + + public function __construct($vals=null) { + if (!isset(self::$_TSPEC)) { + self::$_TSPEC = array( + 0 => array( + 'var' => 'success', + 'type' => TType::BOOL, + ), + 1 => array( + 'var' => 'ire', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\InvalidRequestException', + ), + 2 => array( + 'var' => 'ace', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AiravataClientException', + ), + 3 => array( + 'var' => 'ase', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AiravataSystemException', + ), + 4 => array( + 'var' => 'pnfe', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\ProjectNotFoundException', + ), + 5 => array( + 'var' => 'ae', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AuthorizationException', + ), + ); + } + if (is_array($vals)) { + if (isset($vals['success'])) { + $this->success = $vals['success']; + } + if (isset($vals['ire'])) { + $this->ire = $vals['ire']; + } + if (isset($vals['ace'])) { + $this->ace = $vals['ace']; + } + if (isset($vals['ase'])) { + $this->ase = $vals['ase']; + } + if (isset($vals['pnfe'])) { + $this->pnfe = $vals['pnfe']; + } + if (isset($vals['ae'])) { + $this->ae = $vals['ae']; + } + } + } + + public function getName() { + return 'Airavata_deleteProject_result'; + } + + public function read($input) + { + $xfer = 0; + $fname = null; + $ftype = 0; + $fid = 0; + $xfer += $input->readStructBegin($fname); + while (true) + { + $xfer += $input->readFieldBegin($fname, $ftype, $fid); + if ($ftype == TType::STOP) { + break; + } + switch ($fid) + { + case 0: + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); + } else { + $xfer += $input->skip($ftype); + } + break; + case 1: + if ($ftype == TType::STRUCT) { + $this->ire = new \Airavata\API\Error\InvalidRequestException(); + $xfer += $this->ire->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 2: + if ($ftype == TType::STRUCT) { + $this->ace = new \Airavata\API\Error\AiravataClientException(); + $xfer += $this->ace->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRUCT) { + $this->ase = new \Airavata\API\Error\AiravataSystemException(); + $xfer += $this->ase->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 4: + if ($ftype == TType::STRUCT) { + $this->pnfe = new \Airavata\API\Error\ProjectNotFoundException(); + $xfer += $this->pnfe->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 5: + if ($ftype == TType::STRUCT) { + $this->ae = new \Airavata\API\Error\AuthorizationException(); + $xfer += $this->ae->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + default: + $xfer += $input->skip($ftype); + break; + } + $xfer += $input->readFieldEnd(); + } + $xfer += $input->readStructEnd(); + return $xfer; + } + + public function write($output) { + $xfer = 0; + $xfer += $output->writeStructBegin('Airavata_deleteProject_result'); + if ($this->success !== null) { + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); + $xfer += $output->writeFieldEnd(); + } + if ($this->ire !== null) { + $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); + $xfer += $this->ire->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ace !== null) { + $xfer += $output->writeFieldBegin('ace', TType::STRUCT, 2); + $xfer += $this->ace->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ase !== null) { + $xfer += $output->writeFieldBegin('ase', TType::STRUCT, 3); + $xfer += $this->ase->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->pnfe !== null) { + $xfer += $output->writeFieldBegin('pnfe', TType::STRUCT, 4); + $xfer += $this->pnfe->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ae !== null) { + $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 5); + $xfer += $this->ae->write($output); + $xfer += $output->writeFieldEnd(); + } + $xfer += $output->writeFieldStop(); + $xfer += $output->writeStructEnd(); + return $xfer; + } + +} + +class Airavata_getUserProjects_args { + static $_TSPEC; + + /** + * @var \Airavata\Model\Security\AuthzToken + */ + public $authzToken = null; + /** + * @var string + */ + public $gatewayId = null; + /** + * @var string + */ + public $userName = null; + /** + * @var int + */ + public $limit = null; + /** + * @var int + */ + public $offset = null; + + public function __construct($vals=null) { + if (!isset(self::$_TSPEC)) { + self::$_TSPEC = array( + 1 => array( + 'var' => 'authzToken', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Security\AuthzToken', + ), + 2 => array( + 'var' => 'gatewayId', + 'type' => TType::STRING, + ), + 3 => array( + 'var' => 'userName', + 'type' => TType::STRING, + ), + 4 => array( + 'var' => 'limit', + 'type' => TType::I32, + ), + 5 => array( + 'var' => 'offset', + 'type' => TType::I32, + ), + ); + } + if (is_array($vals)) { + if (isset($vals['authzToken'])) { + $this->authzToken = $vals['authzToken']; + } + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; + } + if (isset($vals['userName'])) { + $this->userName = $vals['userName']; + } + if (isset($vals['limit'])) { + $this->limit = $vals['limit']; + } + if (isset($vals['offset'])) { + $this->offset = $vals['offset']; + } + } + } + + public function getName() { + return 'Airavata_getUserProjects_args'; + } + + public function read($input) + { + $xfer = 0; + $fname = null; + $ftype = 0; + $fid = 0; + $xfer += $input->readStructBegin($fname); + while (true) + { + $xfer += $input->readFieldBegin($fname, $ftype, $fid); + if ($ftype == TType::STOP) { + break; + } + switch ($fid) + { + case 1: + if ($ftype == TType::STRUCT) { + $this->authzToken = new \Airavata\Model\Security\AuthzToken(); + $xfer += $this->authzToken->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 2: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->userName); + } else { + $xfer += $input->skip($ftype); + } + break; + case 4: + if ($ftype == TType::I32) { + $xfer += $input->readI32($this->limit); + } else { + $xfer += $input->skip($ftype); + } + break; + case 5: + if ($ftype == TType::I32) { + $xfer += $input->readI32($this->offset); + } else { + $xfer += $input->skip($ftype); + } + break; + default: + $xfer += $input->skip($ftype); + break; + } + $xfer += $input->readFieldEnd(); + } + $xfer += $input->readStructEnd(); + return $xfer; + } + + public function write($output) { + $xfer = 0; + $xfer += $output->writeStructBegin('Airavata_getUserProjects_args'); + if ($this->authzToken !== null) { + if (!is_object($this->authzToken)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('authzToken', TType::STRUCT, 1); + $xfer += $this->authzToken->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->gatewayId !== null) { + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); + $xfer += $output->writeString($this->gatewayId); + $xfer += $output->writeFieldEnd(); + } + if ($this->userName !== null) { + $xfer += $output->writeFieldBegin('userName', TType::STRING, 3); + $xfer += $output->writeString($this->userName); + $xfer += $output->writeFieldEnd(); + } + if ($this->limit !== null) { + $xfer += $output->writeFieldBegin('limit', TType::I32, 4); + $xfer += $output->writeI32($this->limit); + $xfer += $output->writeFieldEnd(); + } + if ($this->offset !== null) { + $xfer += $output->writeFieldBegin('offset', TType::I32, 5); + $xfer += $output->writeI32($this->offset); + $xfer += $output->writeFieldEnd(); + } + $xfer += $output->writeFieldStop(); + $xfer += $output->writeStructEnd(); + return $xfer; + } + +} + +class Airavata_getUserProjects_result { + static $_TSPEC; + + /** + * @var \Airavata\Model\Workspace\Project[] + */ + public $success = null; + /** + * @var \Airavata\API\Error\InvalidRequestException + */ + public $ire = null; + /** + * @var \Airavata\API\Error\AiravataClientException + */ + public $ace = null; + /** + * @var \Airavata\API\Error\AiravataSystemException + */ + public $ase = null; + /** + * @var \Airavata\API\Error\AuthorizationException + */ + public $ae = null; + + public function __construct($vals=null) { + if (!isset(self::$_TSPEC)) { + self::$_TSPEC = array( + 0 => array( + 'var' => 'success', + 'type' => TType::LST, + 'etype' => TType::STRUCT, + 'elem' => array( + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Project', + ), + ), + 1 => array( + 'var' => 'ire', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\InvalidRequestException', + ), + 2 => array( + 'var' => 'ace', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AiravataClientException', + ), + 3 => array( + 'var' => 'ase', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AiravataSystemException', + ), + 4 => array( + 'var' => 'ae', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AuthorizationException', + ), + ); + } + if (is_array($vals)) { + if (isset($vals['success'])) { + $this->success = $vals['success']; + } + if (isset($vals['ire'])) { + $this->ire = $vals['ire']; + } + if (isset($vals['ace'])) { + $this->ace = $vals['ace']; + } + if (isset($vals['ase'])) { + $this->ase = $vals['ase']; + } + if (isset($vals['ae'])) { + $this->ae = $vals['ae']; + } + } + } + + public function getName() { + return 'Airavata_getUserProjects_result'; + } + + public function read($input) + { + $xfer = 0; + $fname = null; + $ftype = 0; + $fid = 0; + $xfer += $input->readStructBegin($fname); + while (true) + { + $xfer += $input->readFieldBegin($fname, $ftype, $fid); + if ($ftype == TType::STOP) { + break; + } + switch ($fid) + { + case 0: + if ($ftype == TType::LST) { + $this->success = array(); + $_size53 = 0; + $_etype56 = 0; + $xfer += $input->readListBegin($_etype56, $_size53); + for ($_i57 = 0; $_i57 < $_size53; ++$_i57) + { + $elem58 = null; + $elem58 = new \Airavata\Model\Workspace\Project(); + $xfer += $elem58->read($input); + $this->success []= $elem58; + } + $xfer += $input->readListEnd(); + } else { + $xfer += $input->skip($ftype); + } + break; + case 1: + if ($ftype == TType::STRUCT) { + $this->ire = new \Airavata\API\Error\InvalidRequestException(); + $xfer += $this->ire->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 2: + if ($ftype == TType::STRUCT) { + $this->ace = new \Airavata\API\Error\AiravataClientException(); + $xfer += $this->ace->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRUCT) { + $this->ase = new \Airavata\API\Error\AiravataSystemException(); + $xfer += $this->ase->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 4: + if ($ftype == TType::STRUCT) { + $this->ae = new \Airavata\API\Error\AuthorizationException(); + $xfer += $this->ae->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + default: + $xfer += $input->skip($ftype); + break; + } + $xfer += $input->readFieldEnd(); + } + $xfer += $input->readStructEnd(); + return $xfer; + } + + public function write($output) { + $xfer = 0; + $xfer += $output->writeStructBegin('Airavata_getUserProjects_result'); + if ($this->success !== null) { + if (!is_array($this->success)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('success', TType::LST, 0); + { + $output->writeListBegin(TType::STRUCT, count($this->success)); + { + foreach ($this->success as $iter59) + { + $xfer += $iter59->write($output); + } + } + $output->writeListEnd(); + } + $xfer += $output->writeFieldEnd(); + } + if ($this->ire !== null) { + $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); + $xfer += $this->ire->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ace !== null) { + $xfer += $output->writeFieldBegin('ace', TType::STRUCT, 2); + $xfer += $this->ace->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ase !== null) { + $xfer += $output->writeFieldBegin('ase', TType::STRUCT, 3); + $xfer += $this->ase->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ae !== null) { + $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 4); + $xfer += $this->ae->write($output); + $xfer += $output->writeFieldEnd(); + } + $xfer += $output->writeFieldStop(); + $xfer += $output->writeStructEnd(); + return $xfer; + } + +} + +class Airavata_searchProjects_args { + static $_TSPEC; + + /** + * @var \Airavata\Model\Security\AuthzToken + */ + public $authzToken = null; + /** + * @var string + */ + public $gatewayId = null; + /** + * @var string + */ + public $userName = null; + /** + * @var array + */ + public $filters = null; + /** + * @var int + */ + public $limit = null; + /** + * @var int + */ + public $offset = null; + + public function __construct($vals=null) { + if (!isset(self::$_TSPEC)) { + self::$_TSPEC = array( + 1 => array( + 'var' => 'authzToken', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Security\AuthzToken', + ), + 2 => array( + 'var' => 'gatewayId', + 'type' => TType::STRING, + ), + 3 => array( + 'var' => 'userName', + 'type' => TType::STRING, + ), + 4 => array( + 'var' => 'filters', + 'type' => TType::MAP, + 'ktype' => TType::I32, + 'vtype' => TType::STRING, + 'key' => array( + 'type' => TType::I32, + ), + 'val' => array( + 'type' => TType::STRING, + ), + ), + 5 => array( + 'var' => 'limit', + 'type' => TType::I32, + ), + 6 => array( + 'var' => 'offset', + 'type' => TType::I32, + ), + ); + } + if (is_array($vals)) { + if (isset($vals['authzToken'])) { + $this->authzToken = $vals['authzToken']; + } + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; + } + if (isset($vals['userName'])) { + $this->userName = $vals['userName']; + } + if (isset($vals['filters'])) { + $this->filters = $vals['filters']; + } + if (isset($vals['limit'])) { + $this->limit = $vals['limit']; + } + if (isset($vals['offset'])) { + $this->offset = $vals['offset']; + } + } + } + + public function getName() { + return 'Airavata_searchProjects_args'; + } + + public function read($input) + { + $xfer = 0; + $fname = null; + $ftype = 0; + $fid = 0; + $xfer += $input->readStructBegin($fname); + while (true) + { + $xfer += $input->readFieldBegin($fname, $ftype, $fid); + if ($ftype == TType::STOP) { + break; + } + switch ($fid) + { + case 1: + if ($ftype == TType::STRUCT) { + $this->authzToken = new \Airavata\Model\Security\AuthzToken(); + $xfer += $this->authzToken->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 2: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->userName); + } else { + $xfer += $input->skip($ftype); + } + break; + case 4: + if ($ftype == TType::MAP) { + $this->filters = array(); + $_size60 = 0; + $_ktype61 = 0; + $_vtype62 = 0; + $xfer += $input->readMapBegin($_ktype61, $_vtype62, $_size60); + for ($_i64 = 0; $_i64 < $_size60; ++$_i64) + { + $key65 = 0; + $val66 = ''; + $xfer += $input->readI32($key65); + $xfer += $input->readString($val66); + $this->filters[$key65] = $val66; + } + $xfer += $input->readMapEnd(); + } else { + $xfer += $input->skip($ftype); + } + break; + case 5: + if ($ftype == TType::I32) { + $xfer += $input->readI32($this->limit); + } else { + $xfer += $input->skip($ftype); + } + break; + case 6: + if ($ftype == TType::I32) { + $xfer += $input->readI32($this->offset); + } else { + $xfer += $input->skip($ftype); + } + break; + default: + $xfer += $input->skip($ftype); + break; + } + $xfer += $input->readFieldEnd(); + } + $xfer += $input->readStructEnd(); + return $xfer; + } + + public function write($output) { + $xfer = 0; + $xfer += $output->writeStructBegin('Airavata_searchProjects_args'); + if ($this->authzToken !== null) { + if (!is_object($this->authzToken)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('authzToken', TType::STRUCT, 1); + $xfer += $this->authzToken->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->gatewayId !== null) { + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); + $xfer += $output->writeString($this->gatewayId); + $xfer += $output->writeFieldEnd(); + } + if ($this->userName !== null) { + $xfer += $output->writeFieldBegin('userName', TType::STRING, 3); + $xfer += $output->writeString($this->userName); + $xfer += $output->writeFieldEnd(); + } + if ($this->filters !== null) { + if (!is_array($this->filters)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('filters', TType::MAP, 4); + { + $output->writeMapBegin(TType::I32, TType::STRING, count($this->filters)); + { + foreach ($this->filters as $kiter67 => $viter68) + { + $xfer += $output->writeI32($kiter67); + $xfer += $output->writeString($viter68); + } + } + $output->writeMapEnd(); + } + $xfer += $output->writeFieldEnd(); + } + if ($this->limit !== null) { + $xfer += $output->writeFieldBegin('limit', TType::I32, 5); + $xfer += $output->writeI32($this->limit); + $xfer += $output->writeFieldEnd(); + } + if ($this->offset !== null) { + $xfer += $output->writeFieldBegin('offset', TType::I32, 6); + $xfer += $output->writeI32($this->offset); + $xfer += $output->writeFieldEnd(); + } + $xfer += $output->writeFieldStop(); + $xfer += $output->writeStructEnd(); + return $xfer; + } + +} + +class Airavata_searchProjects_result { + static $_TSPEC; + + /** + * @var \Airavata\Model\Workspace\Project[] + */ + public $success = null; + /** + * @var \Airavata\API\Error\InvalidRequestException + */ + public $ire = null; + /** + * @var \Airavata\API\Error\AiravataClientException + */ + public $ace = null; + /** + * @var \Airavata\API\Error\AiravataSystemException + */ + public $ase = null; + /** + * @var \Airavata\API\Error\AuthorizationException + */ + public $ae = null; + + public function __construct($vals=null) { + if (!isset(self::$_TSPEC)) { + self::$_TSPEC = array( + 0 => array( + 'var' => 'success', + 'type' => TType::LST, + 'etype' => TType::STRUCT, + 'elem' => array( + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Project', + ), + ), + 1 => array( + 'var' => 'ire', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\InvalidRequestException', + ), + 2 => array( + 'var' => 'ace', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AiravataClientException', + ), + 3 => array( + 'var' => 'ase', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AiravataSystemException', + ), + 4 => array( + 'var' => 'ae', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AuthorizationException', + ), + ); + } + if (is_array($vals)) { + if (isset($vals['success'])) { + $this->success = $vals['success']; + } + if (isset($vals['ire'])) { + $this->ire = $vals['ire']; + } + if (isset($vals['ace'])) { + $this->ace = $vals['ace']; + } + if (isset($vals['ase'])) { + $this->ase = $vals['ase']; + } + if (isset($vals['ae'])) { + $this->ae = $vals['ae']; + } + } + } + + public function getName() { + return 'Airavata_searchProjects_result'; + } + + public function read($input) + { + $xfer = 0; + $fname = null; + $ftype = 0; + $fid = 0; + $xfer += $input->readStructBegin($fname); + while (true) + { + $xfer += $input->readFieldBegin($fname, $ftype, $fid); + if ($ftype == TType::STOP) { + break; + } + switch ($fid) + { + case 0: + if ($ftype == TType::LST) { + $this->success = array(); + $_size69 = 0; + $_etype72 = 0; + $xfer += $input->readListBegin($_etype72, $_size69); + for ($_i73 = 0; $_i73 < $_size69; ++$_i73) + { + $elem74 = null; + $elem74 = new \Airavata\Model\Workspace\Project(); + $xfer += $elem74->read($input); + $this->success []= $elem74; + } + $xfer += $input->readListEnd(); + } else { + $xfer += $input->skip($ftype); + } + break; + case 1: + if ($ftype == TType::STRUCT) { + $this->ire = new \Airavata\API\Error\InvalidRequestException(); + $xfer += $this->ire->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 2: + if ($ftype == TType::STRUCT) { + $this->ace = new \Airavata\API\Error\AiravataClientException(); + $xfer += $this->ace->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRUCT) { + $this->ase = new \Airavata\API\Error\AiravataSystemException(); + $xfer += $this->ase->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 4: + if ($ftype == TType::STRUCT) { + $this->ae = new \Airavata\API\Error\AuthorizationException(); + $xfer += $this->ae->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + default: + $xfer += $input->skip($ftype); + break; + } + $xfer += $input->readFieldEnd(); + } + $xfer += $input->readStructEnd(); + return $xfer; + } + + public function write($output) { + $xfer = 0; + $xfer += $output->writeStructBegin('Airavata_searchProjects_result'); + if ($this->success !== null) { + if (!is_array($this->success)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('success', TType::LST, 0); + { + $output->writeListBegin(TType::STRUCT, count($this->success)); + { + foreach ($this->success as $iter75) + { + $xfer += $iter75->write($output); + } + } + $output->writeListEnd(); + } + $xfer += $output->writeFieldEnd(); + } + if ($this->ire !== null) { + $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); + $xfer += $this->ire->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ace !== null) { + $xfer += $output->writeFieldBegin('ace', TType::STRUCT, 2); + $xfer += $this->ace->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ase !== null) { + $xfer += $output->writeFieldBegin('ase', TType::STRUCT, 3); + $xfer += $this->ase->write($output); + $xfer += $output->writeFieldEnd(); + } + if ($this->ae !== null) { + $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 4); + $xfer += $this->ae->write($output); + $xfer += $output->writeFieldEnd(); + } + $xfer += $output->writeFieldStop(); + $xfer += $output->writeStructEnd(); + return $xfer; + } + +} + +class Airavata_searchExperiments_args { + static $_TSPEC; + + /** + * @var \Airavata\Model\Security\AuthzToken + */ + public $authzToken = null; + /** + * @var string + */ + public $gatewayId = null; + /** + * @var string + */ + public $userName = null; + /** + * @var array + */ + public $filters = null; + /** + * @var int + */ + public $limit = null; + /** + * @var int + */ + public $offset = null; + + public function __construct($vals=null) { + if (!isset(self::$_TSPEC)) { + self::$_TSPEC = array( + 1 => array( + 'var' => 'authzToken', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Security\AuthzToken', + ), + 2 => array( + 'var' => 'gatewayId', + 'type' => TType::STRING, + ), + 3 => array( + 'var' => 'userName', + 'type' => TType::STRING, + ), + 4 => array( + 'var' => 'filters', + 'type' => TType::MAP, + 'ktype' => TType::I32, + 'vtype' => TType::STRING, + 'key' => array( + 'type' => TType::I32, + ), + 'val' => array( + 'type' => TType::STRING, + ), + ), + 5 => array( + 'var' => 'limit', + 'type' => TType::I32, + ), + 6 => array( + 'var' => 'offset', + 'type' => TType::I32, + ), + ); + } + if (is_array($vals)) { + if (isset($vals['authzToken'])) { + $this->authzToken = $vals['authzToken']; + } + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; + } + if (isset($vals['userName'])) { + $this->userName = $vals['userName']; + } + if (isset($vals['filters'])) { + $this->filters = $vals['filters']; + } + if (isset($vals['limit'])) { + $this->limit = $vals['limit']; + } + if (isset($vals['offset'])) { + $this->offset = $vals['offset']; + } + } + } + + public function getName() { + return 'Airavata_searchExperiments_args'; + } + + public function read($input) + { + $xfer = 0; + $fname = null; + $ftype = 0; + $fid = 0; + $xfer += $input->readStructBegin($fname); + while (true) + { + $xfer += $input->readFieldBegin($fname, $ftype, $fid); + if ($ftype == TType::STOP) { + break; + } + switch ($fid) + { + case 1: + if ($ftype == TType::STRUCT) { + $this->authzToken = new \Airavata\Model\Security\AuthzToken(); + $xfer += $this->authzToken->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 2: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->userName); + } else { + $xfer += $input->skip($ftype); + } + break; + case 4: + if ($ftype == TType::MAP) { + $this->filters = array(); + $_size76 = 0; + $_ktype77 = 0; + $_vtype78 = 0; + $xfer += $input->readMapBegin($_ktype77, $_vtype78, $_size76); + for ($_i80 = 0; $_i80 < $_size76; ++$_i80) + { + $key81 = 0; + $val82 = ''; + $xfer += $input->readI32($key81); + $xfer += $input->readString($val82); + $this->filters[$key81] = $val82; + } + $xfer += $input->readMapEnd(); + } else { + $xfer += $input->skip($ftype); + } + break; + case 5: + if ($ftype == TType::I32) { + $xfer += $input->readI32($this->limit); + } else { + $xfer += $input->skip($ftype); + } + break; + case 6: + if ($ftype == TType::I32) { + $xfer += $input->readI32($this->offset); } else { $xfer += $input->skip($ftype); } @@ -22809,7 +24345,7 @@ class Airavata_deleteProject_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteProject_args'); + $xfer += $output->writeStructBegin('Airavata_searchExperiments_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -22818,9 +24354,42 @@ class Airavata_deleteProject_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->projectId !== null) { - $xfer += $output->writeFieldBegin('projectId', TType::STRING, 2); - $xfer += $output->writeString($this->projectId); + if ($this->gatewayId !== null) { + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); + $xfer += $output->writeString($this->gatewayId); + $xfer += $output->writeFieldEnd(); + } + if ($this->userName !== null) { + $xfer += $output->writeFieldBegin('userName', TType::STRING, 3); + $xfer += $output->writeString($this->userName); + $xfer += $output->writeFieldEnd(); + } + if ($this->filters !== null) { + if (!is_array($this->filters)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('filters', TType::MAP, 4); + { + $output->writeMapBegin(TType::I32, TType::STRING, count($this->filters)); + { + foreach ($this->filters as $kiter83 => $viter84) + { + $xfer += $output->writeI32($kiter83); + $xfer += $output->writeString($viter84); + } + } + $output->writeMapEnd(); + } + $xfer += $output->writeFieldEnd(); + } + if ($this->limit !== null) { + $xfer += $output->writeFieldBegin('limit', TType::I32, 5); + $xfer += $output->writeI32($this->limit); + $xfer += $output->writeFieldEnd(); + } + if ($this->offset !== null) { + $xfer += $output->writeFieldBegin('offset', TType::I32, 6); + $xfer += $output->writeI32($this->offset); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -22830,11 +24399,11 @@ class Airavata_deleteProject_args { } -class Airavata_deleteProject_result { +class Airavata_searchExperiments_result { static $_TSPEC; /** - * @var bool + * @var \Airavata\Model\Experiment\ExperimentSummaryModel[] */ public $success = null; /** @@ -22850,10 +24419,6 @@ class Airavata_deleteProject_result { */ public $ase = null; /** - * @var \Airavata\API\Error\ProjectNotFoundException - */ - public $pnfe = null; - /** * @var \Airavata\API\Error\AuthorizationException */ public $ae = null; @@ -22863,7 +24428,12 @@ class Airavata_deleteProject_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::LST, + 'etype' => TType::STRUCT, + 'elem' => array( + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Experiment\ExperimentSummaryModel', + ), ), 1 => array( 'var' => 'ire', @@ -22881,11 +24451,6 @@ class Airavata_deleteProject_result { 'class' => '\Airavata\API\Error\AiravataSystemException', ), 4 => array( - 'var' => 'pnfe', - 'type' => TType::STRUCT, - 'class' => '\Airavata\API\Error\ProjectNotFoundException', - ), - 5 => array( 'var' => 'ae', 'type' => TType::STRUCT, 'class' => '\Airavata\API\Error\AuthorizationException', @@ -22905,9 +24470,6 @@ class Airavata_deleteProject_result { if (isset($vals['ase'])) { $this->ase = $vals['ase']; } - if (isset($vals['pnfe'])) { - $this->pnfe = $vals['pnfe']; - } if (isset($vals['ae'])) { $this->ae = $vals['ae']; } @@ -22915,7 +24477,7 @@ class Airavata_deleteProject_result { } public function getName() { - return 'Airavata_deleteProject_result'; + return 'Airavata_searchExperiments_result'; } public function read($input) @@ -22934,8 +24496,19 @@ class Airavata_deleteProject_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::LST) { + $this->success = array(); + $_size85 = 0; + $_etype88 = 0; + $xfer += $input->readListBegin($_etype88, $_size85); + for ($_i89 = 0; $_i89 < $_size85; ++$_i89) + { + $elem90 = null; + $elem90 = new \Airavata\Model\Experiment\ExperimentSummaryModel(); + $xfer += $elem90->read($input); + $this->success []= $elem90; + } + $xfer += $input->readListEnd(); } else { $xfer += $input->skip($ftype); } @@ -22966,14 +24539,6 @@ class Airavata_deleteProject_result { break; case 4: if ($ftype == TType::STRUCT) { - $this->pnfe = new \Airavata\API\Error\ProjectNotFoundException(); - $xfer += $this->pnfe->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; - case 5: - if ($ftype == TType::STRUCT) { $this->ae = new \Airavata\API\Error\AuthorizationException(); $xfer += $this->ae->read($input); } else { @@ -22992,10 +24557,22 @@ class Airavata_deleteProject_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteProject_result'); + $xfer += $output->writeStructBegin('Airavata_searchExperiments_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); - $xfer += $output->writeBool($this->success); + if (!is_array($this->success)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('success', TType::LST, 0); + { + $output->writeListBegin(TType::STRUCT, count($this->success)); + { + foreach ($this->success as $iter91) + { + $xfer += $iter91->write($output); + } + } + $output->writeListEnd(); + } $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -23013,13 +24590,8 @@ class Airavata_deleteProject_result { $xfer += $this->ase->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->pnfe !== null) { - $xfer += $output->writeFieldBegin('pnfe', TType::STRUCT, 4); - $xfer += $this->pnfe->write($output); - $xfer += $output->writeFieldEnd(); - } if ($this->ae !== null) { - $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 5); + $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 4); $xfer += $this->ae->write($output); $xfer += $output->writeFieldEnd(); } @@ -23030,7 +24602,7 @@ class Airavata_deleteProject_result { } -class Airavata_getUserProjects_args { +class Airavata_getExperimentStatistics_args { static $_TSPEC; /** @@ -23042,17 +24614,25 @@ class Airavata_getUserProjects_args { */ public $gatewayId = null; /** + * @var int + */ + public $fromTime = null; + /** + * @var int + */ + public $toTime = null; + /** * @var string */ public $userName = null; /** - * @var int + * @var string */ - public $limit = null; + public $applicationName = null; /** - * @var int + * @var string */ - public $offset = null; + public $resourceHostName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -23067,16 +24647,24 @@ class Airavata_getUserProjects_args { 'type' => TType::STRING, ), 3 => array( - 'var' => 'userName', - 'type' => TType::STRING, + 'var' => 'fromTime', + 'type' => TType::I64, ), 4 => array( - 'var' => 'limit', - 'type' => TType::I32, + 'var' => 'toTime', + 'type' => TType::I64, ), 5 => array( - 'var' => 'offset', - 'type' => TType::I32, + 'var' => 'userName', + 'type' => TType::STRING, + ), + 6 => array( + 'var' => 'applicationName', + 'type' => TType::STRING, + ), + 7 => array( + 'var' => 'resourceHostName', + 'type' => TType::STRING, ), ); } @@ -23087,20 +24675,26 @@ class Airavata_getUserProjects_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } + if (isset($vals['fromTime'])) { + $this->fromTime = $vals['fromTime']; + } + if (isset($vals['toTime'])) { + $this->toTime = $vals['toTime']; + } if (isset($vals['userName'])) { $this->userName = $vals['userName']; } - if (isset($vals['limit'])) { - $this->limit = $vals['limit']; + if (isset($vals['applicationName'])) { + $this->applicationName = $vals['applicationName']; } - if (isset($vals['offset'])) { - $this->offset = $vals['offset']; + if (isset($vals['resourceHostName'])) { + $this->resourceHostName = $vals['resourceHostName']; } } } public function getName() { - return 'Airavata_getUserProjects_args'; + return 'Airavata_getExperimentStatistics_args'; } public function read($input) @@ -23134,22 +24728,36 @@ class Airavata_getUserProjects_args { } break; case 3: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->userName); + if ($ftype == TType::I64) { + $xfer += $input->readI64($this->fromTime); } else { $xfer += $input->skip($ftype); } break; case 4: - if ($ftype == TType::I32) { - $xfer += $input->readI32($this->limit); + if ($ftype == TType::I64) { + $xfer += $input->readI64($this->toTime); } else { $xfer += $input->skip($ftype); } break; case 5: - if ($ftype == TType::I32) { - $xfer += $input->readI32($this->offset); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->userName); + } else { + $xfer += $input->skip($ftype); + } + break; + case 6: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->applicationName); + } else { + $xfer += $input->skip($ftype); + } + break; + case 7: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->resourceHostName); } else { $xfer += $input->skip($ftype); } @@ -23166,7 +24774,7 @@ class Airavata_getUserProjects_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getUserProjects_args'); + $xfer += $output->writeStructBegin('Airavata_getExperimentStatistics_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -23180,19 +24788,29 @@ class Airavata_getUserProjects_args { $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } + if ($this->fromTime !== null) { + $xfer += $output->writeFieldBegin('fromTime', TType::I64, 3); + $xfer += $output->writeI64($this->fromTime); + $xfer += $output->writeFieldEnd(); + } + if ($this->toTime !== null) { + $xfer += $output->writeFieldBegin('toTime', TType::I64, 4); + $xfer += $output->writeI64($this->toTime); + $xfer += $output->writeFieldEnd(); + } if ($this->userName !== null) { - $xfer += $output->writeFieldBegin('userName', TType::STRING, 3); + $xfer += $output->writeFieldBegin('userName', TType::STRING, 5); $xfer += $output->writeString($this->userName); $xfer += $output->writeFieldEnd(); } - if ($this->limit !== null) { - $xfer += $output->writeFieldBegin('limit', TType::I32, 4); - $xfer += $output->writeI32($this->limit); + if ($this->applicationName !== null) { + $xfer += $output->writeFieldBegin('applicationName', TType::STRING, 6); + $xfer += $output->writeString($this->applicationName); $xfer += $output->writeFieldEnd(); } - if ($this->offset !== null) { - $xfer += $output->writeFieldBegin('offset', TType::I32, 5); - $xfer += $output->writeI32($this->offset); + if ($this->resourceHostName !== null) { + $xfer += $output->writeFieldBegin('resourceHostName', TType::STRING, 7); + $xfer += $output->writeString($this->resourceHostName); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -23202,11 +24820,11 @@ class Airavata_getUserProjects_args { } -class Airavata_getUserProjects_result { +class Airavata_getExperimentStatistics_result { static $_TSPEC; /** - * @var \Airavata\Model\Workspace\Project[] + * @var \Airavata\Model\Experiment\ExperimentStatistics */ public $success = null; /** @@ -23231,12 +24849,8 @@ class Airavata_getUserProjects_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::LST, - 'etype' => TType::STRUCT, - 'elem' => array( - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Project', - ), + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Experiment\ExperimentStatistics', ), 1 => array( 'var' => 'ire', @@ -23280,7 +24894,7 @@ class Airavata_getUserProjects_result { } public function getName() { - return 'Airavata_getUserProjects_result'; + return 'Airavata_getExperimentStatistics_result'; } public function read($input) @@ -23299,19 +24913,9 @@ class Airavata_getUserProjects_result { switch ($fid) { case 0: - if ($ftype == TType::LST) { - $this->success = array(); - $_size53 = 0; - $_etype56 = 0; - $xfer += $input->readListBegin($_etype56, $_size53); - for ($_i57 = 0; $_i57 < $_size53; ++$_i57) - { - $elem58 = null; - $elem58 = new \Airavata\Model\Workspace\Project(); - $xfer += $elem58->read($input); - $this->success []= $elem58; - } - $xfer += $input->readListEnd(); + if ($ftype == TType::STRUCT) { + $this->success = new \Airavata\Model\Experiment\ExperimentStatistics(); + $xfer += $this->success->read($input); } else { $xfer += $input->skip($ftype); } @@ -23360,22 +24964,13 @@ class Airavata_getUserProjects_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getUserProjects_result'); + $xfer += $output->writeStructBegin('Airavata_getExperimentStatistics_result'); if ($this->success !== null) { - if (!is_array($this->success)) { + if (!is_object($this->success)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); } - $xfer += $output->writeFieldBegin('success', TType::LST, 0); - { - $output->writeListBegin(TType::STRUCT, count($this->success)); - { - foreach ($this->success as $iter59) - { - $xfer += $iter59->write($output); - } - } - $output->writeListEnd(); - } + $xfer += $output->writeFieldBegin('success', TType::STRUCT, 0); + $xfer += $this->success->write($output); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -23405,7 +25000,7 @@ class Airavata_getUserProjects_result { } -class Airavata_searchProjects_args { +class Airavata_getExperimentsInProject_args { static $_TSPEC; /** @@ -23415,15 +25010,7 @@ class Airavata_searchProjects_args { /** * @var string */ - public $gatewayId = null; - /** - * @var string - */ - public $userName = null; - /** - * @var array - */ - public $filters = null; + public $projectId = null; /** * @var int */ @@ -23442,30 +25029,14 @@ class Airavata_searchProjects_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'gatewayId', + 'var' => 'projectId', 'type' => TType::STRING, ), 3 => array( - 'var' => 'userName', - 'type' => TType::STRING, - ), - 4 => array( - 'var' => 'filters', - 'type' => TType::MAP, - 'ktype' => TType::I32, - 'vtype' => TType::STRING, - 'key' => array( - 'type' => TType::I32, - ), - 'val' => array( - 'type' => TType::STRING, - ), - ), - 5 => array( 'var' => 'limit', 'type' => TType::I32, ), - 6 => array( + 4 => array( 'var' => 'offset', 'type' => TType::I32, ), @@ -23475,14 +25046,8 @@ class Airavata_searchProjects_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gatewayId'])) { - $this->gatewayId = $vals['gatewayId']; - } - if (isset($vals['userName'])) { - $this->userName = $vals['userName']; - } - if (isset($vals['filters'])) { - $this->filters = $vals['filters']; + if (isset($vals['projectId'])) { + $this->projectId = $vals['projectId']; } if (isset($vals['limit'])) { $this->limit = $vals['limit']; @@ -23494,7 +25059,7 @@ class Airavata_searchProjects_args { } public function getName() { - return 'Airavata_searchProjects_args'; + return 'Airavata_getExperimentsInProject_args'; } public function read($input) @@ -23522,46 +25087,19 @@ class Airavata_searchProjects_args { break; case 2: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); + $xfer += $input->readString($this->projectId); } else { $xfer += $input->skip($ftype); } break; case 3: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->userName); - } else { - $xfer += $input->skip($ftype); - } - break; - case 4: - if ($ftype == TType::MAP) { - $this->filters = array(); - $_size60 = 0; - $_ktype61 = 0; - $_vtype62 = 0; - $xfer += $input->readMapBegin($_ktype61, $_vtype62, $_size60); - for ($_i64 = 0; $_i64 < $_size60; ++$_i64) - { - $key65 = 0; - $val66 = ''; - $xfer += $input->readI32($key65); - $xfer += $input->readString($val66); - $this->filters[$key65] = $val66; - } - $xfer += $input->readMapEnd(); - } else { - $xfer += $input->skip($ftype); - } - break; - case 5: if ($ftype == TType::I32) { $xfer += $input->readI32($this->limit); } else { $xfer += $input->skip($ftype); } break; - case 6: + case 4: if ($ftype == TType::I32) { $xfer += $input->readI32($this->offset); } else { @@ -23580,7 +25118,7 @@ class Airavata_searchProjects_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_searchProjects_args'); + $xfer += $output->writeStructBegin('Airavata_getExperimentsInProject_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -23589,41 +25127,18 @@ class Airavata_searchProjects_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->gatewayId !== null) { - $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); - $xfer += $output->writeString($this->gatewayId); - $xfer += $output->writeFieldEnd(); - } - if ($this->userName !== null) { - $xfer += $output->writeFieldBegin('userName', TType::STRING, 3); - $xfer += $output->writeString($this->userName); - $xfer += $output->writeFieldEnd(); - } - if ($this->filters !== null) { - if (!is_array($this->filters)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('filters', TType::MAP, 4); - { - $output->writeMapBegin(TType::I32, TType::STRING, count($this->filters)); - { - foreach ($this->filters as $kiter67 => $viter68) - { - $xfer += $output->writeI32($kiter67); - $xfer += $output->writeString($viter68); - } - } - $output->writeMapEnd(); - } + if ($this->projectId !== null) { + $xfer += $output->writeFieldBegin('projectId', TType::STRING, 2); + $xfer += $output->writeString($this->projectId); $xfer += $output->writeFieldEnd(); } if ($this->limit !== null) { - $xfer += $output->writeFieldBegin('limit', TType::I32, 5); + $xfer += $output->writeFieldBegin('limit', TType::I32, 3); $xfer += $output->writeI32($this->limit); $xfer += $output->writeFieldEnd(); } if ($this->offset !== null) { - $xfer += $output->writeFieldBegin('offset', TType::I32, 6); + $xfer += $output->writeFieldBegin('offset', TType::I32, 4); $xfer += $output->writeI32($this->offset); $xfer += $output->writeFieldEnd(); } @@ -23634,11 +25149,11 @@ class Airavata_searchProjects_args { } -class Airavata_searchProjects_result { +class Airavata_getExperimentsInProject_result { static $_TSPEC; /** - * @var \Airavata\Model\Workspace\Project[] + * @var \Airavata\Model\Experiment\ExperimentModel[] */ public $success = null; /** @@ -23654,6 +25169,10 @@ class Airavata_searchProjects_result { */ public $ase = null; /** + * @var \Airavata\API\Error\ProjectNotFoundException + */ + public $pnfe = null; + /** * @var \Airavata\API\Error\AuthorizationException */ public $ae = null; @@ -23667,7 +25186,7 @@ class Airavata_searchProjects_result { 'etype' => TType::STRUCT, 'elem' => array( 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Project', + 'class' => '\Airavata\Model\Experiment\ExperimentModel', ), ), 1 => array( @@ -23686,6 +25205,11 @@ class Airavata_searchProjects_result { 'class' => '\Airavata\API\Error\AiravataSystemException', ), 4 => array( + 'var' => 'pnfe', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\ProjectNotFoundException', + ), + 5 => array( 'var' => 'ae', 'type' => TType::STRUCT, 'class' => '\Airavata\API\Error\AuthorizationException', @@ -23705,6 +25229,9 @@ class Airavata_searchProjects_result { if (isset($vals['ase'])) { $this->ase = $vals['ase']; } + if (isset($vals['pnfe'])) { + $this->pnfe = $vals['pnfe']; + } if (isset($vals['ae'])) { $this->ae = $vals['ae']; } @@ -23712,7 +25239,7 @@ class Airavata_searchProjects_result { } public function getName() { - return 'Airavata_searchProjects_result'; + return 'Airavata_getExperimentsInProject_result'; } public function read($input) @@ -23733,15 +25260,15 @@ class Airavata_searchProjects_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size69 = 0; - $_etype72 = 0; - $xfer += $input->readListBegin($_etype72, $_size69); - for ($_i73 = 0; $_i73 < $_size69; ++$_i73) + $_size92 = 0; + $_etype95 = 0; + $xfer += $input->readListBegin($_etype95, $_size92); + for ($_i96 = 0; $_i96 < $_size92; ++$_i96) { - $elem74 = null; - $elem74 = new \Airavata\Model\Workspace\Project(); - $xfer += $elem74->read($input); - $this->success []= $elem74; + $elem97 = null; + $elem97 = new \Airavata\Model\Experiment\ExperimentModel(); + $xfer += $elem97->read($input); + $this->success []= $elem97; } $xfer += $input->readListEnd(); } else { @@ -23774,6 +25301,14 @@ class Airavata_searchProjects_result { break; case 4: if ($ftype == TType::STRUCT) { + $this->pnfe = new \Airavata\API\Error\ProjectNotFoundException(); + $xfer += $this->pnfe->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; + case 5: + if ($ftype == TType::STRUCT) { $this->ae = new \Airavata\API\Error\AuthorizationException(); $xfer += $this->ae->read($input); } else { @@ -23792,7 +25327,7 @@ class Airavata_searchProjects_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_searchProjects_result'); + $xfer += $output->writeStructBegin('Airavata_getExperimentsInProject_result'); if ($this->success !== null) { if (!is_array($this->success)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -23801,9 +25336,9 @@ class Airavata_searchProjects_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter75) + foreach ($this->success as $iter98) { - $xfer += $iter75->write($output); + $xfer += $iter98->write($output); } } $output->writeListEnd(); @@ -23825,8 +25360,13 @@ class Airavata_searchProjects_result { $xfer += $this->ase->write($output); $xfer += $output->writeFieldEnd(); } + if ($this->pnfe !== null) { + $xfer += $output->writeFieldBegin('pnfe', TType::STRUCT, 4); + $xfer += $this->pnfe->write($output); + $xfer += $output->writeFieldEnd(); + } if ($this->ae !== null) { - $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 4); + $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 5); $xfer += $this->ae->write($output); $xfer += $output->writeFieldEnd(); } @@ -23837,7 +25377,7 @@ class Airavata_searchProjects_result { } -class Airavata_searchExperiments_args { +class Airavata_getUserExperiments_args { static $_TSPEC; /** @@ -23853,10 +25393,6 @@ class Airavata_searchExperiments_args { */ public $userName = null; /** - * @var array - */ - public $filters = null; - /** * @var int */ public $limit = null; @@ -23882,22 +25418,10 @@ class Airavata_searchExperiments_args { 'type' => TType::STRING, ), 4 => array( - 'var' => 'filters', - 'type' => TType::MAP, - 'ktype' => TType::I32, - 'vtype' => TType::STRING, - 'key' => array( - 'type' => TType::I32, - ), - 'val' => array( - 'type' => TType::STRING, - ), - ), - 5 => array( 'var' => 'limit', 'type' => TType::I32, ), - 6 => array( + 5 => array( 'var' => 'offset', 'type' => TType::I32, ), @@ -23913,9 +25437,6 @@ class Airavata_searchExperiments_args { if (isset($vals['userName'])) { $this->userName = $vals['userName']; } - if (isset($vals['filters'])) { - $this->filters = $vals['filters']; - } if (isset($vals['limit'])) { $this->limit = $vals['limit']; } @@ -23926,7 +25447,7 @@ class Airavata_searchExperiments_args { } public function getName() { - return 'Airavata_searchExperiments_args'; + return 'Airavata_getUserExperiments_args'; } public function read($input) @@ -23967,33 +25488,13 @@ class Airavata_searchExperiments_args { } break; case 4: - if ($ftype == TType::MAP) { - $this->filters = array(); - $_size76 = 0; - $_ktype77 = 0; - $_vtype78 = 0; - $xfer += $input->readMapBegin($_ktype77, $_vtype78, $_size76); - for ($_i80 = 0; $_i80 < $_size76; ++$_i80) - { - $key81 = 0; - $val82 = ''; - $xfer += $input->readI32($key81); - $xfer += $input->readString($val82); - $this->filters[$key81] = $val82; - } - $xfer += $input->readMapEnd(); - } else { - $xfer += $input->skip($ftype); - } - break; - case 5: if ($ftype == TType::I32) { $xfer += $input->readI32($this->limit); } else { $xfer += $input->skip($ftype); } break; - case 6: + case 5: if ($ftype == TType::I32) { $xfer += $input->readI32($this->offset); } else { @@ -24012,7 +25513,7 @@ class Airavata_searchExperiments_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_searchExperiments_args'); + $xfer += $output->writeStructBegin('Airavata_getUserExperiments_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -24031,31 +25532,13 @@ class Airavata_searchExperiments_args { $xfer += $output->writeString($this->userName); $xfer += $output->writeFieldEnd(); } - if ($this->filters !== null) { - if (!is_array($this->filters)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('filters', TType::MAP, 4); - { - $output->writeMapBegin(TType::I32, TType::STRING, count($this->filters)); - { - foreach ($this->filters as $kiter83 => $viter84) - { - $xfer += $output->writeI32($kiter83); - $xfer += $output->writeString($viter84); - } - } - $output->writeMapEnd(); - } - $xfer += $output->writeFieldEnd(); - } if ($this->limit !== null) { - $xfer += $output->writeFieldBegin('limit', TType::I32, 5); + $xfer += $output->writeFieldBegin('limit', TType::I32, 4); $xfer += $output->writeI32($this->limit); $xfer += $output->writeFieldEnd(); } if ($this->offset !== null) { - $xfer += $output->writeFieldBegin('offset', TType::I32, 6); + $xfer += $output->writeFieldBegin('offset', TType::I32, 5); $xfer += $output->writeI32($this->offset); $xfer += $output->writeFieldEnd(); } @@ -24066,11 +25549,11 @@ class Airavata_searchExperiments_args { } -class Airavata_searchExperiments_result { +class Airavata_getUserExperiments_result { static $_TSPEC; /** - * @var \Airavata\Model\Experiment\ExperimentSummaryModel[] + * @var \Airavata\Model\Experiment\ExperimentModel[] */ public $success = null; /** @@ -24099,7 +25582,7 @@ class Airavata_searchExperiments_result { 'etype' => TType::STRUCT, 'elem' => array( 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Experiment\ExperimentSummaryModel', + 'class' => '\Airavata\Model\Experiment\ExperimentModel', ), ), 1 => array( @@ -24144,7 +25627,7 @@ class Airavata_searchExperiments_result { } public function getName() { - return 'Airavata_searchExperiments_result'; + return 'Airavata_getUserExperiments_result'; } public function read($input) @@ -24165,15 +25648,15 @@ class Airavata_searchExperiments_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size85 = 0; - $_etype88 = 0; - $xfer += $input->readListBegin($_etype88, $_size85); - for ($_i89 = 0; $_i89 < $_size85; ++$_i89) + $_size99 = 0; + $_etype102 = 0; + $xfer += $input->readListBegin($_etype102, $_size99); + for ($_i103 = 0; $_i103 < $_size99; ++$_i103) { - $elem90 = null; - $elem90 = new \Airavata\Model\Experiment\ExperimentSummaryModel(); - $xfer += $elem90->read($input); - $this->success []= $elem90; + $elem104 = null; + $elem104 = new \Airavata\Model\Experiment\ExperimentModel(); + $xfer += $elem104->read($input); + $this->success []= $elem104; } $xfer += $input->readListEnd(); } else { @@ -24224,7 +25707,7 @@ class Airavata_searchExperiments_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_searchExperiments_result'); + $xfer += $output->writeStructBegin('Airavata_getUserExperiments_result'); if ($this->success !== null) { if (!is_array($this->success)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -24233,9 +25716,9 @@ class Airavata_searchExperiments_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter91) + foreach ($this->success as $iter105) { - $xfer += $iter91->write($output); + $xfer += $iter105->write($output); } } $output->writeListEnd(); @@ -24269,7 +25752,7 @@ class Airavata_searchExperiments_result { } -class Airavata_getExperimentStatistics_args { +class Airavata_createExperiment_args { static $_TSPEC; /** @@ -24281,25 +25764,9 @@ class Airavata_getExperimentStatistics_args { */ public $gatewayId = null; /** - * @var int - */ - public $fromTime = null; - /** - * @var int - */ - public $toTime = null; - /** - * @var string - */ - public $userName = null; - /** - * @var string - */ - public $applicationName = null; - /** - * @var string + * @var \Airavata\Model\Experiment\ExperimentModel */ - public $resourceHostName = null; + public $experiment = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -24314,24 +25781,9 @@ class Airavata_getExperimentStatistics_args { 'type' => TType::STRING, ), 3 => array( - 'var' => 'fromTime', - 'type' => TType::I64, - ), - 4 => array( - 'var' => 'toTime', - 'type' => TType::I64, - ), - 5 => array( - 'var' => 'userName', - 'type' => TType::STRING, - ), - 6 => array( - 'var' => 'applicationName', - 'type' => TType::STRING, - ), - 7 => array( - 'var' => 'resourceHostName', - 'type' => TType::STRING, + 'var' => 'experiment', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Experiment\ExperimentModel', ), ); } @@ -24342,26 +25794,14 @@ class Airavata_getExperimentStatistics_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } - if (isset($vals['fromTime'])) { - $this->fromTime = $vals['fromTime']; - } - if (isset($vals['toTime'])) { - $this->toTime = $vals['toTime']; - } - if (isset($vals['userName'])) { - $this->userName = $vals['userName']; - } - if (isset($vals['applicationName'])) { - $this->applicationName = $vals['applicationName']; - } - if (isset($vals['resourceHostName'])) { - $this->resourceHostName = $vals['resourceHostName']; + if (isset($vals['experiment'])) { + $this->experiment = $vals['experiment']; } } } public function getName() { - return 'Airavata_getExperimentStatistics_args'; + return 'Airavata_createExperiment_args'; } public function read($input) @@ -24395,36 +25835,9 @@ class Airavata_getExperimentStatistics_args { } break; case 3: - if ($ftype == TType::I64) { - $xfer += $input->readI64($this->fromTime); - } else { - $xfer += $input->skip($ftype); - } - break; - case 4: - if ($ftype == TType::I64) { - $xfer += $input->readI64($this->toTime); - } else { - $xfer += $input->skip($ftype); - } - break; - case 5: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->userName); - } else { - $xfer += $input->skip($ftype); - } - break; - case 6: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->applicationName); - } else { - $xfer += $input->skip($ftype); - } - break; - case 7: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->resourceHostName); + if ($ftype == TType::STRUCT) { + $this->experiment = new \Airavata\Model\Experiment\ExperimentModel(); + $xfer += $this->experiment->read($input); } else { $xfer += $input->skip($ftype); } @@ -24441,7 +25854,7 @@ class Airavata_getExperimentStatistics_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getExperimentStatistics_args'); + $xfer += $output->writeStructBegin('Airavata_createExperiment_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::IN
<TRUNCATED>
