http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/3c452e19/app/libraries/Airavata/API/Airavata.php ---------------------------------------------------------------------- diff --git a/app/libraries/Airavata/API/Airavata.php b/app/libraries/Airavata/API/Airavata.php index 8605b25..e262b7c 100644 --- a/app/libraries/Airavata/API/Airavata.php +++ b/app/libraries/Airavata/API/Airavata.php @@ -3421,6 +3421,39 @@ interface AiravataIf { * @throws \Airavata\API\Error\AuthorizationException */ public function isWorkflowExistWithName(\Airavata\Model\Security\AuthzToken $authzToken, $workflowName); + /** + * API Methods related to data catalog + * + * + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param \Airavata\Model\Data\Product\DataProductModel $dataProductModel + * @return string + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function registerDataProduct(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Data\Product\DataProductModel $dataProductModel); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param string $dataProductUri + * @return \Airavata\Model\Data\Product\DataProductModel + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function getDataProduct(\Airavata\Model\Security\AuthzToken $authzToken, $dataProductUri); + /** + * @param \Airavata\Model\Security\AuthzToken $authzToken + * @param \Airavata\Model\Data\Product\DataReplicaLocationModel $replicaLocationModel + * @return string + * @throws \Airavata\API\Error\InvalidRequestException + * @throws \Airavata\API\Error\AiravataClientException + * @throws \Airavata\API\Error\AiravataSystemException + * @throws \Airavata\API\Error\AuthorizationException + */ + public function registerReplicaLocation(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Data\Product\DataReplicaLocationModel $replicaLocationModel); } class AiravataClient implements \Airavata\API\AiravataIf { @@ -12112,280 +12145,209 @@ class AiravataClient implements \Airavata\API\AiravataIf { throw new \Exception("isWorkflowExistWithName failed: unknown result"); } -} - -// HELPER FUNCTIONS AND STRUCTURES + public function registerDataProduct(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Data\Product\DataProductModel $dataProductModel) + { + $this->send_registerDataProduct($authzToken, $dataProductModel); + return $this->recv_registerDataProduct(); + } -class Airavata_getAPIVersion_args { - static $_TSPEC; + public function send_registerDataProduct(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Data\Product\DataProductModel $dataProductModel) + { + $args = new \Airavata\API\Airavata_registerDataProduct_args(); + $args->authzToken = $authzToken; + $args->dataProductModel = $dataProductModel; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) + { + thrift_protocol_write_binary($this->output_, 'registerDataProduct', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('registerDataProduct', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); + } + } - /** - * @var \Airavata\Model\Security\AuthzToken - */ - public $authzToken = null; + public function recv_registerDataProduct() + { + $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_registerDataProduct_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; - public function __construct($vals=null) { - if (!isset(self::$_TSPEC)) { - self::$_TSPEC = array( - 1 => array( - 'var' => 'authzToken', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Security\AuthzToken', - ), - ); - } - if (is_array($vals)) { - if (isset($vals['authzToken'])) { - $this->authzToken = $vals['authzToken']; + $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_registerDataProduct_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("registerDataProduct failed: unknown result"); } - public function getName() { - return 'Airavata_getAPIVersion_args'; + public function getDataProduct(\Airavata\Model\Security\AuthzToken $authzToken, $dataProductUri) + { + $this->send_getDataProduct($authzToken, $dataProductUri); + return $this->recv_getDataProduct(); } - public function read($input) + public function send_getDataProduct(\Airavata\Model\Security\AuthzToken $authzToken, $dataProductUri) { - $xfer = 0; - $fname = null; - $ftype = 0; - $fid = 0; - $xfer += $input->readStructBegin($fname); - while (true) + $args = new \Airavata\API\Airavata_getDataProduct_args(); + $args->authzToken = $authzToken; + $args->dataProductUri = $dataProductUri; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) { - $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; - default: - $xfer += $input->skip($ftype); - break; - } - $xfer += $input->readFieldEnd(); + thrift_protocol_write_binary($this->output_, 'getDataProduct', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); } - $xfer += $input->readStructEnd(); - return $xfer; - } - - public function write($output) { - $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAPIVersion_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(); + else + { + $this->output_->writeMessageBegin('getDataProduct', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); } - $xfer += $output->writeFieldStop(); - $xfer += $output->writeStructEnd(); - return $xfer; } -} - -class Airavata_getAPIVersion_result { - static $_TSPEC; - - /** - * @var string - */ - 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 recv_getDataProduct() + { + $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_getDataProduct_result', $this->input_->isStrictRead()); + else + { + $rseqid = 0; + $fname = null; + $mtype = 0; - public function __construct($vals=null) { - if (!isset(self::$_TSPEC)) { - self::$_TSPEC = array( - 0 => array( - 'var' => 'success', - 'type' => TType::STRING, - ), - 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']; + $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_getDataProduct_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("getDataProduct failed: unknown result"); } - public function getName() { - return 'Airavata_getAPIVersion_result'; + public function registerReplicaLocation(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Data\Product\DataReplicaLocationModel $replicaLocationModel) + { + $this->send_registerReplicaLocation($authzToken, $replicaLocationModel); + return $this->recv_registerReplicaLocation(); } - public function read($input) + public function send_registerReplicaLocation(\Airavata\Model\Security\AuthzToken $authzToken, \Airavata\Model\Data\Product\DataReplicaLocationModel $replicaLocationModel) { - $xfer = 0; - $fname = null; - $ftype = 0; - $fid = 0; - $xfer += $input->readStructBegin($fname); - while (true) + $args = new \Airavata\API\Airavata_registerReplicaLocation_args(); + $args->authzToken = $authzToken; + $args->replicaLocationModel = $replicaLocationModel; + $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary'); + if ($bin_accel) { - $xfer += $input->readFieldBegin($fname, $ftype, $fid); - if ($ftype == TType::STOP) { - break; - } - switch ($fid) - { - case 0: - if ($ftype == TType::STRING) { - $xfer += $input->readString($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->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(); + thrift_protocol_write_binary($this->output_, 'registerReplicaLocation', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite()); + } + else + { + $this->output_->writeMessageBegin('registerReplicaLocation', TMessageType::CALL, $this->seqid_); + $args->write($this->output_); + $this->output_->writeMessageEnd(); + $this->output_->getTransport()->flush(); } - $xfer += $input->readStructEnd(); - return $xfer; } - public function write($output) { - $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAPIVersion_result'); - if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::STRING, 0); - $xfer += $output->writeString($this->success); - $xfer += $output->writeFieldEnd(); + public function recv_registerReplicaLocation() + { + $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_registerReplicaLocation_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_registerReplicaLocation_result(); + $result->read($this->input_); + $this->input_->readMessageEnd(); } - if ($this->ire !== null) { - $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); - $xfer += $this->ire->write($output); - $xfer += $output->writeFieldEnd(); + if ($result->success !== null) { + return $result->success; } - if ($this->ace !== null) { - $xfer += $output->writeFieldBegin('ace', TType::STRUCT, 2); - $xfer += $this->ace->write($output); - $xfer += $output->writeFieldEnd(); + if ($result->ire !== null) { + throw $result->ire; } - if ($this->ase !== null) { - $xfer += $output->writeFieldBegin('ase', TType::STRUCT, 3); - $xfer += $this->ase->write($output); - $xfer += $output->writeFieldEnd(); + if ($result->ace !== null) { + throw $result->ace; } - if ($this->ae !== null) { - $xfer += $output->writeFieldBegin('ae', TType::STRUCT, 4); - $xfer += $this->ae->write($output); - $xfer += $output->writeFieldEnd(); + if ($result->ase !== null) { + throw $result->ase; } - $xfer += $output->writeFieldStop(); - $xfer += $output->writeStructEnd(); - return $xfer; + if ($result->ae !== null) { + throw $result->ae; + } + throw new \Exception("registerReplicaLocation failed: unknown result"); } } -class Airavata_isUserExists_args { +// HELPER FUNCTIONS AND STRUCTURES + +class Airavata_getAPIVersion_args { static $_TSPEC; /** * @var \Airavata\Model\Security\AuthzToken */ public $authzToken = null; - /** - * @var string - */ - public $gatewayId = null; - /** - * @var string - */ - public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -12395,31 +12357,17 @@ class Airavata_isUserExists_args { 'type' => TType::STRUCT, 'class' => '\Airavata\Model\Security\AuthzToken', ), - 2 => array( - 'var' => 'gatewayId', - 'type' => TType::STRING, - ), - 3 => array( - 'var' => 'userName', - 'type' => TType::STRING, - ), ); } 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']; - } } } public function getName() { - return 'Airavata_isUserExists_args'; + return 'Airavata_getAPIVersion_args'; } public function read($input) @@ -12445,20 +12393,6 @@ class Airavata_isUserExists_args { $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; default: $xfer += $input->skip($ftype); break; @@ -12471,7 +12405,7 @@ class Airavata_isUserExists_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_isUserExists_args'); + $xfer += $output->writeStructBegin('Airavata_getAPIVersion_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -12480,16 +12414,6 @@ class Airavata_isUserExists_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(); - } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -12497,11 +12421,11 @@ class Airavata_isUserExists_args { } -class Airavata_isUserExists_result { +class Airavata_getAPIVersion_result { static $_TSPEC; /** - * @var bool + * @var string */ public $success = null; /** @@ -12526,7 +12450,7 @@ class Airavata_isUserExists_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::STRING, ), 1 => array( 'var' => 'ire', @@ -12570,7 +12494,7 @@ class Airavata_isUserExists_result { } public function getName() { - return 'Airavata_isUserExists_result'; + return 'Airavata_getAPIVersion_result'; } public function read($input) @@ -12589,8 +12513,8 @@ class Airavata_isUserExists_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->success); } else { $xfer += $input->skip($ftype); } @@ -12639,10 +12563,10 @@ class Airavata_isUserExists_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_isUserExists_result'); + $xfer += $output->writeStructBegin('Airavata_getAPIVersion_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); - $xfer += $output->writeBool($this->success); + $xfer += $output->writeFieldBegin('success', TType::STRING, 0); + $xfer += $output->writeString($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -12672,7 +12596,7 @@ class Airavata_isUserExists_result { } -class Airavata_addGateway_args { +class Airavata_isUserExists_args { static $_TSPEC; /** @@ -12680,9 +12604,13 @@ class Airavata_addGateway_args { */ public $authzToken = null; /** - * @var \Airavata\Model\Workspace\Gateway + * @var string */ - public $gateway = null; + public $gatewayId = null; + /** + * @var string + */ + public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -12693,9 +12621,12 @@ class Airavata_addGateway_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'gateway', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Gateway', + 'var' => 'gatewayId', + 'type' => TType::STRING, + ), + 3 => array( + 'var' => 'userName', + 'type' => TType::STRING, ), ); } @@ -12703,14 +12634,17 @@ class Airavata_addGateway_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gateway'])) { - $this->gateway = $vals['gateway']; + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; + } + if (isset($vals['userName'])) { + $this->userName = $vals['userName']; } } } public function getName() { - return 'Airavata_addGateway_args'; + return 'Airavata_isUserExists_args'; } public function read($input) @@ -12737,9 +12671,15 @@ class Airavata_addGateway_args { } break; case 2: - if ($ftype == TType::STRUCT) { - $this->gateway = new \Airavata\Model\Workspace\Gateway(); - $xfer += $this->gateway->read($input); + 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); } @@ -12756,7 +12696,7 @@ class Airavata_addGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_addGateway_args'); + $xfer += $output->writeStructBegin('Airavata_isUserExists_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -12765,12 +12705,14 @@ class Airavata_addGateway_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->gateway !== null) { - if (!is_object($this->gateway)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('gateway', TType::STRUCT, 2); - $xfer += $this->gateway->write($output); + 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(); } $xfer += $output->writeFieldStop(); @@ -12780,11 +12722,11 @@ class Airavata_addGateway_args { } -class Airavata_addGateway_result { +class Airavata_isUserExists_result { static $_TSPEC; /** - * @var string + * @var bool */ public $success = null; /** @@ -12809,7 +12751,7 @@ class Airavata_addGateway_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::STRING, + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -12853,7 +12795,7 @@ class Airavata_addGateway_result { } public function getName() { - return 'Airavata_addGateway_result'; + return 'Airavata_isUserExists_result'; } public function read($input) @@ -12872,8 +12814,8 @@ class Airavata_addGateway_result { switch ($fid) { case 0: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->success); + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); } else { $xfer += $input->skip($ftype); } @@ -12922,10 +12864,10 @@ class Airavata_addGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_addGateway_result'); + $xfer += $output->writeStructBegin('Airavata_isUserExists_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::STRING, 0); - $xfer += $output->writeString($this->success); + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -12955,7 +12897,7 @@ class Airavata_addGateway_result { } -class Airavata_updateGateway_args { +class Airavata_addGateway_args { static $_TSPEC; /** @@ -12963,13 +12905,9 @@ class Airavata_updateGateway_args { */ public $authzToken = null; /** - * @var string - */ - public $gatewayId = null; - /** * @var \Airavata\Model\Workspace\Gateway */ - public $updatedGateway = null; + public $gateway = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -12980,11 +12918,7 @@ class Airavata_updateGateway_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'gatewayId', - 'type' => TType::STRING, - ), - 3 => array( - 'var' => 'updatedGateway', + 'var' => 'gateway', 'type' => TType::STRUCT, 'class' => '\Airavata\Model\Workspace\Gateway', ), @@ -12994,17 +12928,14 @@ class Airavata_updateGateway_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gatewayId'])) { - $this->gatewayId = $vals['gatewayId']; - } - if (isset($vals['updatedGateway'])) { - $this->updatedGateway = $vals['updatedGateway']; + if (isset($vals['gateway'])) { + $this->gateway = $vals['gateway']; } } } public function getName() { - return 'Airavata_updateGateway_args'; + return 'Airavata_addGateway_args'; } public function read($input) @@ -13031,16 +12962,9 @@ class Airavata_updateGateway_args { } break; case 2: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); - } else { - $xfer += $input->skip($ftype); - } - break; - case 3: if ($ftype == TType::STRUCT) { - $this->updatedGateway = new \Airavata\Model\Workspace\Gateway(); - $xfer += $this->updatedGateway->read($input); + $this->gateway = new \Airavata\Model\Workspace\Gateway(); + $xfer += $this->gateway->read($input); } else { $xfer += $input->skip($ftype); } @@ -13057,7 +12981,7 @@ class Airavata_updateGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_updateGateway_args'); + $xfer += $output->writeStructBegin('Airavata_addGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -13066,17 +12990,12 @@ class Airavata_updateGateway_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->updatedGateway !== null) { - if (!is_object($this->updatedGateway)) { + if ($this->gateway !== null) { + if (!is_object($this->gateway)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); } - $xfer += $output->writeFieldBegin('updatedGateway', TType::STRUCT, 3); - $xfer += $this->updatedGateway->write($output); + $xfer += $output->writeFieldBegin('gateway', TType::STRUCT, 2); + $xfer += $this->gateway->write($output); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -13086,10 +13005,14 @@ class Airavata_updateGateway_args { } -class Airavata_updateGateway_result { +class Airavata_addGateway_result { static $_TSPEC; /** + * @var string + */ + public $success = null; + /** * @var \Airavata\API\Error\InvalidRequestException */ public $ire = null; @@ -13109,6 +13032,10 @@ class Airavata_updateGateway_result { public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { self::$_TSPEC = array( + 0 => array( + 'var' => 'success', + 'type' => TType::STRING, + ), 1 => array( 'var' => 'ire', 'type' => TType::STRUCT, @@ -13132,6 +13059,9 @@ class Airavata_updateGateway_result { ); } if (is_array($vals)) { + if (isset($vals['success'])) { + $this->success = $vals['success']; + } if (isset($vals['ire'])) { $this->ire = $vals['ire']; } @@ -13148,7 +13078,7 @@ class Airavata_updateGateway_result { } public function getName() { - return 'Airavata_updateGateway_result'; + return 'Airavata_addGateway_result'; } public function read($input) @@ -13166,6 +13096,13 @@ class Airavata_updateGateway_result { } switch ($fid) { + case 0: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->success); + } else { + $xfer += $input->skip($ftype); + } + break; case 1: if ($ftype == TType::STRUCT) { $this->ire = new \Airavata\API\Error\InvalidRequestException(); @@ -13210,7 +13147,12 @@ class Airavata_updateGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_updateGateway_result'); + $xfer += $output->writeStructBegin('Airavata_addGateway_result'); + if ($this->success !== null) { + $xfer += $output->writeFieldBegin('success', TType::STRING, 0); + $xfer += $output->writeString($this->success); + $xfer += $output->writeFieldEnd(); + } if ($this->ire !== null) { $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); $xfer += $this->ire->write($output); @@ -13238,7 +13180,7 @@ class Airavata_updateGateway_result { } -class Airavata_getGateway_args { +class Airavata_updateGateway_args { static $_TSPEC; /** @@ -13249,6 +13191,10 @@ class Airavata_getGateway_args { * @var string */ public $gatewayId = null; + /** + * @var \Airavata\Model\Workspace\Gateway + */ + public $updatedGateway = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -13262,6 +13208,11 @@ class Airavata_getGateway_args { 'var' => 'gatewayId', 'type' => TType::STRING, ), + 3 => array( + 'var' => 'updatedGateway', + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Gateway', + ), ); } if (is_array($vals)) { @@ -13271,11 +13222,14 @@ class Airavata_getGateway_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } + if (isset($vals['updatedGateway'])) { + $this->updatedGateway = $vals['updatedGateway']; + } } } public function getName() { - return 'Airavata_getGateway_args'; + return 'Airavata_updateGateway_args'; } public function read($input) @@ -13308,6 +13262,14 @@ class Airavata_getGateway_args { $xfer += $input->skip($ftype); } break; + case 3: + if ($ftype == TType::STRUCT) { + $this->updatedGateway = new \Airavata\Model\Workspace\Gateway(); + $xfer += $this->updatedGateway->read($input); + } else { + $xfer += $input->skip($ftype); + } + break; default: $xfer += $input->skip($ftype); break; @@ -13320,7 +13282,7 @@ class Airavata_getGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getGateway_args'); + $xfer += $output->writeStructBegin('Airavata_updateGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -13334,6 +13296,14 @@ class Airavata_getGateway_args { $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } + if ($this->updatedGateway !== null) { + if (!is_object($this->updatedGateway)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('updatedGateway', TType::STRUCT, 3); + $xfer += $this->updatedGateway->write($output); + $xfer += $output->writeFieldEnd(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -13341,14 +13311,10 @@ class Airavata_getGateway_args { } -class Airavata_getGateway_result { +class Airavata_updateGateway_result { static $_TSPEC; /** - * @var \Airavata\Model\Workspace\Gateway - */ - public $success = null; - /** * @var \Airavata\API\Error\InvalidRequestException */ public $ire = null; @@ -13368,11 +13334,6 @@ class Airavata_getGateway_result { public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { self::$_TSPEC = array( - 0 => array( - 'var' => 'success', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Gateway', - ), 1 => array( 'var' => 'ire', 'type' => TType::STRUCT, @@ -13396,9 +13357,6 @@ class Airavata_getGateway_result { ); } if (is_array($vals)) { - if (isset($vals['success'])) { - $this->success = $vals['success']; - } if (isset($vals['ire'])) { $this->ire = $vals['ire']; } @@ -13415,7 +13373,7 @@ class Airavata_getGateway_result { } public function getName() { - return 'Airavata_getGateway_result'; + return 'Airavata_updateGateway_result'; } public function read($input) @@ -13433,14 +13391,6 @@ class Airavata_getGateway_result { } switch ($fid) { - case 0: - if ($ftype == TType::STRUCT) { - $this->success = new \Airavata\Model\Workspace\Gateway(); - $xfer += $this->success->read($input); - } else { - $xfer += $input->skip($ftype); - } - break; case 1: if ($ftype == TType::STRUCT) { $this->ire = new \Airavata\API\Error\InvalidRequestException(); @@ -13485,15 +13435,7 @@ class Airavata_getGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getGateway_result'); - if ($this->success !== null) { - if (!is_object($this->success)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('success', TType::STRUCT, 0); - $xfer += $this->success->write($output); - $xfer += $output->writeFieldEnd(); - } + $xfer += $output->writeStructBegin('Airavata_updateGateway_result'); if ($this->ire !== null) { $xfer += $output->writeFieldBegin('ire', TType::STRUCT, 1); $xfer += $this->ire->write($output); @@ -13521,7 +13463,7 @@ class Airavata_getGateway_result { } -class Airavata_deleteGateway_args { +class Airavata_getGateway_args { static $_TSPEC; /** @@ -13558,7 +13500,7 @@ class Airavata_deleteGateway_args { } public function getName() { - return 'Airavata_deleteGateway_args'; + return 'Airavata_getGateway_args'; } public function read($input) @@ -13603,7 +13545,7 @@ class Airavata_deleteGateway_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteGateway_args'); + $xfer += $output->writeStructBegin('Airavata_getGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -13624,11 +13566,11 @@ class Airavata_deleteGateway_args { } -class Airavata_deleteGateway_result { +class Airavata_getGateway_result { static $_TSPEC; /** - * @var bool + * @var \Airavata\Model\Workspace\Gateway */ public $success = null; /** @@ -13653,7 +13595,8 @@ class Airavata_deleteGateway_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::STRUCT, + 'class' => '\Airavata\Model\Workspace\Gateway', ), 1 => array( 'var' => 'ire', @@ -13697,7 +13640,7 @@ class Airavata_deleteGateway_result { } public function getName() { - return 'Airavata_deleteGateway_result'; + return 'Airavata_getGateway_result'; } public function read($input) @@ -13716,8 +13659,9 @@ class Airavata_deleteGateway_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::STRUCT) { + $this->success = new \Airavata\Model\Workspace\Gateway(); + $xfer += $this->success->read($input); } else { $xfer += $input->skip($ftype); } @@ -13766,10 +13710,13 @@ class Airavata_deleteGateway_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteGateway_result'); + $xfer += $output->writeStructBegin('Airavata_getGateway_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); - $xfer += $output->writeBool($this->success); + if (!is_object($this->success)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('success', TType::STRUCT, 0); + $xfer += $this->success->write($output); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -13799,13 +13746,17 @@ class Airavata_deleteGateway_result { } -class Airavata_getAllGateways_args { +class Airavata_deleteGateway_args { static $_TSPEC; /** * @var \Airavata\Model\Security\AuthzToken */ public $authzToken = null; + /** + * @var string + */ + public $gatewayId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -13815,17 +13766,24 @@ class Airavata_getAllGateways_args { 'type' => TType::STRUCT, 'class' => '\Airavata\Model\Security\AuthzToken', ), + 2 => array( + 'var' => 'gatewayId', + 'type' => TType::STRING, + ), ); } if (is_array($vals)) { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; + } } } public function getName() { - return 'Airavata_getAllGateways_args'; + return 'Airavata_deleteGateway_args'; } public function read($input) @@ -13851,6 +13809,13 @@ class Airavata_getAllGateways_args { $xfer += $input->skip($ftype); } break; + case 2: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); + } else { + $xfer += $input->skip($ftype); + } + break; default: $xfer += $input->skip($ftype); break; @@ -13863,7 +13828,7 @@ class Airavata_getAllGateways_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllGateways_args'); + $xfer += $output->writeStructBegin('Airavata_deleteGateway_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -13872,6 +13837,11 @@ class Airavata_getAllGateways_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(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -13879,11 +13849,11 @@ class Airavata_getAllGateways_args { } -class Airavata_getAllGateways_result { +class Airavata_deleteGateway_result { static $_TSPEC; /** - * @var \Airavata\Model\Workspace\Gateway[] + * @var bool */ public $success = null; /** @@ -13908,12 +13878,7 @@ class Airavata_getAllGateways_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::LST, - 'etype' => TType::STRUCT, - 'elem' => array( - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Gateway', - ), + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -13957,7 +13922,7 @@ class Airavata_getAllGateways_result { } public function getName() { - return 'Airavata_getAllGateways_result'; + return 'Airavata_deleteGateway_result'; } public function read($input) @@ -13976,19 +13941,8 @@ class Airavata_getAllGateways_result { switch ($fid) { case 0: - if ($ftype == TType::LST) { - $this->success = array(); - $_size0 = 0; - $_etype3 = 0; - $xfer += $input->readListBegin($_etype3, $_size0); - for ($_i4 = 0; $_i4 < $_size0; ++$_i4) - { - $elem5 = null; - $elem5 = new \Airavata\Model\Workspace\Gateway(); - $xfer += $elem5->read($input); - $this->success []= $elem5; - } - $xfer += $input->readListEnd(); + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); } else { $xfer += $input->skip($ftype); } @@ -14037,22 +13991,10 @@ class Airavata_getAllGateways_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllGateways_result'); + $xfer += $output->writeStructBegin('Airavata_deleteGateway_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 $iter6) - { - $xfer += $iter6->write($output); - } - } - $output->writeListEnd(); - } + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -14082,17 +14024,13 @@ class Airavata_getAllGateways_result { } -class Airavata_isGatewayExist_args { +class Airavata_getAllGateways_args { static $_TSPEC; /** * @var \Airavata\Model\Security\AuthzToken */ public $authzToken = null; - /** - * @var string - */ - public $gatewayId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -14102,24 +14040,17 @@ class Airavata_isGatewayExist_args { 'type' => TType::STRUCT, 'class' => '\Airavata\Model\Security\AuthzToken', ), - 2 => array( - 'var' => 'gatewayId', - 'type' => TType::STRING, - ), ); } if (is_array($vals)) { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['gatewayId'])) { - $this->gatewayId = $vals['gatewayId']; - } } } public function getName() { - return 'Airavata_isGatewayExist_args'; + return 'Airavata_getAllGateways_args'; } public function read($input) @@ -14145,13 +14076,6 @@ class Airavata_isGatewayExist_args { $xfer += $input->skip($ftype); } break; - case 2: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); - } else { - $xfer += $input->skip($ftype); - } - break; default: $xfer += $input->skip($ftype); break; @@ -14164,7 +14088,7 @@ class Airavata_isGatewayExist_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_isGatewayExist_args'); + $xfer += $output->writeStructBegin('Airavata_getAllGateways_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -14173,11 +14097,6 @@ class Airavata_isGatewayExist_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(); - } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -14185,11 +14104,11 @@ class Airavata_isGatewayExist_args { } -class Airavata_isGatewayExist_result { +class Airavata_getAllGateways_result { static $_TSPEC; /** - * @var bool + * @var \Airavata\Model\Workspace\Gateway[] */ public $success = null; /** @@ -14214,7 +14133,12 @@ class Airavata_isGatewayExist_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\Workspace\Gateway', + ), ), 1 => array( 'var' => 'ire', @@ -14258,7 +14182,7 @@ class Airavata_isGatewayExist_result { } public function getName() { - return 'Airavata_isGatewayExist_result'; + return 'Airavata_getAllGateways_result'; } public function read($input) @@ -14277,8 +14201,19 @@ class Airavata_isGatewayExist_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::LST) { + $this->success = array(); + $_size0 = 0; + $_etype3 = 0; + $xfer += $input->readListBegin($_etype3, $_size0); + for ($_i4 = 0; $_i4 < $_size0; ++$_i4) + { + $elem5 = null; + $elem5 = new \Airavata\Model\Workspace\Gateway(); + $xfer += $elem5->read($input); + $this->success []= $elem5; + } + $xfer += $input->readListEnd(); } else { $xfer += $input->skip($ftype); } @@ -14327,10 +14262,22 @@ class Airavata_isGatewayExist_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_isGatewayExist_result'); + $xfer += $output->writeStructBegin('Airavata_getAllGateways_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 $iter6) + { + $xfer += $iter6->write($output); + } + } + $output->writeListEnd(); + } $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -14360,7 +14307,7 @@ class Airavata_isGatewayExist_result { } -class Airavata_generateAndRegisterSSHKeys_args { +class Airavata_isGatewayExist_args { static $_TSPEC; /** @@ -14371,10 +14318,6 @@ class Airavata_generateAndRegisterSSHKeys_args { * @var string */ public $gatewayId = null; - /** - * @var string - */ - public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -14388,10 +14331,6 @@ class Airavata_generateAndRegisterSSHKeys_args { 'var' => 'gatewayId', 'type' => TType::STRING, ), - 3 => array( - 'var' => 'userName', - 'type' => TType::STRING, - ), ); } if (is_array($vals)) { @@ -14401,14 +14340,11 @@ class Airavata_generateAndRegisterSSHKeys_args { if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } - if (isset($vals['userName'])) { - $this->userName = $vals['userName']; - } } } public function getName() { - return 'Airavata_generateAndRegisterSSHKeys_args'; + return 'Airavata_isGatewayExist_args'; } public function read($input) @@ -14441,13 +14377,6 @@ class Airavata_generateAndRegisterSSHKeys_args { $xfer += $input->skip($ftype); } break; - case 3: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->userName); - } else { - $xfer += $input->skip($ftype); - } - break; default: $xfer += $input->skip($ftype); break; @@ -14460,7 +14389,7 @@ class Airavata_generateAndRegisterSSHKeys_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_generateAndRegisterSSHKeys_args'); + $xfer += $output->writeStructBegin('Airavata_isGatewayExist_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -14474,11 +14403,6 @@ class Airavata_generateAndRegisterSSHKeys_args { $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(); - } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -14486,11 +14410,11 @@ class Airavata_generateAndRegisterSSHKeys_args { } -class Airavata_generateAndRegisterSSHKeys_result { +class Airavata_isGatewayExist_result { static $_TSPEC; /** - * @var string + * @var bool */ public $success = null; /** @@ -14505,13 +14429,17 @@ class Airavata_generateAndRegisterSSHKeys_result { * @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::STRING, + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -14528,6 +14456,11 @@ class Airavata_generateAndRegisterSSHKeys_result { 'type' => TType::STRUCT, 'class' => '\Airavata\API\Error\AiravataSystemException', ), + 4 => array( + 'var' => 'ae', + 'type' => TType::STRUCT, + 'class' => '\Airavata\API\Error\AuthorizationException', + ), ); } if (is_array($vals)) { @@ -14543,11 +14476,14 @@ class Airavata_generateAndRegisterSSHKeys_result { if (isset($vals['ase'])) { $this->ase = $vals['ase']; } + if (isset($vals['ae'])) { + $this->ae = $vals['ae']; + } } } public function getName() { - return 'Airavata_generateAndRegisterSSHKeys_result'; + return 'Airavata_isGatewayExist_result'; } public function read($input) @@ -14566,8 +14502,8 @@ class Airavata_generateAndRegisterSSHKeys_result { switch ($fid) { case 0: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->success); + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); } else { $xfer += $input->skip($ftype); } @@ -14596,6 +14532,14 @@ class Airavata_generateAndRegisterSSHKeys_result { $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; @@ -14608,10 +14552,10 @@ class Airavata_generateAndRegisterSSHKeys_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_generateAndRegisterSSHKeys_result'); + $xfer += $output->writeStructBegin('Airavata_isGatewayExist_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::STRING, 0); - $xfer += $output->writeString($this->success); + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -14629,6 +14573,11 @@ class Airavata_generateAndRegisterSSHKeys_result { $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; @@ -14636,7 +14585,7 @@ class Airavata_generateAndRegisterSSHKeys_result { } -class Airavata_getSSHPubKey_args { +class Airavata_generateAndRegisterSSHKeys_args { static $_TSPEC; /** @@ -14646,11 +14595,11 @@ class Airavata_getSSHPubKey_args { /** * @var string */ - public $airavataCredStoreToken = null; + public $gatewayId = null; /** * @var string */ - public $gatewayId = null; + public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -14661,11 +14610,11 @@ class Airavata_getSSHPubKey_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'airavataCredStoreToken', + 'var' => 'gatewayId', 'type' => TType::STRING, ), 3 => array( - 'var' => 'gatewayId', + 'var' => 'userName', 'type' => TType::STRING, ), ); @@ -14674,17 +14623,17 @@ class Airavata_getSSHPubKey_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['airavataCredStoreToken'])) { - $this->airavataCredStoreToken = $vals['airavataCredStoreToken']; - } if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } + if (isset($vals['userName'])) { + $this->userName = $vals['userName']; + } } } public function getName() { - return 'Airavata_getSSHPubKey_args'; + return 'Airavata_generateAndRegisterSSHKeys_args'; } public function read($input) @@ -14712,14 +14661,14 @@ class Airavata_getSSHPubKey_args { break; case 2: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->airavataCredStoreToken); + $xfer += $input->readString($this->gatewayId); } else { $xfer += $input->skip($ftype); } break; case 3: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); + $xfer += $input->readString($this->userName); } else { $xfer += $input->skip($ftype); } @@ -14736,7 +14685,7 @@ class Airavata_getSSHPubKey_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getSSHPubKey_args'); + $xfer += $output->writeStructBegin('Airavata_generateAndRegisterSSHKeys_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -14745,16 +14694,16 @@ class Airavata_getSSHPubKey_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->airavataCredStoreToken !== null) { - $xfer += $output->writeFieldBegin('airavataCredStoreToken', TType::STRING, 2); - $xfer += $output->writeString($this->airavataCredStoreToken); - $xfer += $output->writeFieldEnd(); - } if ($this->gatewayId !== null) { - $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 3); + $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(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -14762,7 +14711,7 @@ class Airavata_getSSHPubKey_args { } -class Airavata_getSSHPubKey_result { +class Airavata_generateAndRegisterSSHKeys_result { static $_TSPEC; /** @@ -14823,7 +14772,7 @@ class Airavata_getSSHPubKey_result { } public function getName() { - return 'Airavata_getSSHPubKey_result'; + return 'Airavata_generateAndRegisterSSHKeys_result'; } public function read($input) @@ -14884,7 +14833,7 @@ class Airavata_getSSHPubKey_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getSSHPubKey_result'); + $xfer += $output->writeStructBegin('Airavata_generateAndRegisterSSHKeys_result'); if ($this->success !== null) { $xfer += $output->writeFieldBegin('success', TType::STRING, 0); $xfer += $output->writeString($this->success); @@ -14912,7 +14861,7 @@ class Airavata_getSSHPubKey_result { } -class Airavata_getAllUserSSHPubKeys_args { +class Airavata_getSSHPubKey_args { static $_TSPEC; /** @@ -14922,7 +14871,11 @@ class Airavata_getAllUserSSHPubKeys_args { /** * @var string */ - public $userName = null; + public $airavataCredStoreToken = null; + /** + * @var string + */ + public $gatewayId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -14933,7 +14886,11 @@ class Airavata_getAllUserSSHPubKeys_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'userName', + 'var' => 'airavataCredStoreToken', + 'type' => TType::STRING, + ), + 3 => array( + 'var' => 'gatewayId', 'type' => TType::STRING, ), ); @@ -14942,14 +14899,17 @@ class Airavata_getAllUserSSHPubKeys_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['userName'])) { - $this->userName = $vals['userName']; + if (isset($vals['airavataCredStoreToken'])) { + $this->airavataCredStoreToken = $vals['airavataCredStoreToken']; + } + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; } } } public function getName() { - return 'Airavata_getAllUserSSHPubKeys_args'; + return 'Airavata_getSSHPubKey_args'; } public function read($input) @@ -14977,7 +14937,14 @@ class Airavata_getAllUserSSHPubKeys_args { break; case 2: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->userName); + $xfer += $input->readString($this->airavataCredStoreToken); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); } else { $xfer += $input->skip($ftype); } @@ -14994,7 +14961,7 @@ class Airavata_getAllUserSSHPubKeys_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllUserSSHPubKeys_args'); + $xfer += $output->writeStructBegin('Airavata_getSSHPubKey_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15003,9 +14970,14 @@ class Airavata_getAllUserSSHPubKeys_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->userName !== null) { - $xfer += $output->writeFieldBegin('userName', TType::STRING, 2); - $xfer += $output->writeString($this->userName); + if ($this->airavataCredStoreToken !== null) { + $xfer += $output->writeFieldBegin('airavataCredStoreToken', TType::STRING, 2); + $xfer += $output->writeString($this->airavataCredStoreToken); + $xfer += $output->writeFieldEnd(); + } + if ($this->gatewayId !== null) { + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 3); + $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -15015,11 +14987,11 @@ class Airavata_getAllUserSSHPubKeys_args { } -class Airavata_getAllUserSSHPubKeys_result { +class Airavata_getSSHPubKey_result { static $_TSPEC; /** - * @var array + * @var string */ public $success = null; /** @@ -15040,15 +15012,7 @@ class Airavata_getAllUserSSHPubKeys_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::MAP, - 'ktype' => TType::STRING, - 'vtype' => TType::STRING, - 'key' => array( - 'type' => TType::STRING, - ), - 'val' => array( - 'type' => TType::STRING, - ), + 'type' => TType::STRING, ), 1 => array( 'var' => 'ire', @@ -15084,7 +15048,7 @@ class Airavata_getAllUserSSHPubKeys_result { } public function getName() { - return 'Airavata_getAllUserSSHPubKeys_result'; + return 'Airavata_getSSHPubKey_result'; } public function read($input) @@ -15103,21 +15067,8 @@ class Airavata_getAllUserSSHPubKeys_result { switch ($fid) { case 0: - if ($ftype == TType::MAP) { - $this->success = array(); - $_size7 = 0; - $_ktype8 = 0; - $_vtype9 = 0; - $xfer += $input->readMapBegin($_ktype8, $_vtype9, $_size7); - for ($_i11 = 0; $_i11 < $_size7; ++$_i11) - { - $key12 = ''; - $val13 = ''; - $xfer += $input->readString($key12); - $xfer += $input->readString($val13); - $this->success[$key12] = $val13; - } - $xfer += $input->readMapEnd(); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->success); } else { $xfer += $input->skip($ftype); } @@ -15158,23 +15109,10 @@ class Airavata_getAllUserSSHPubKeys_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllUserSSHPubKeys_result'); + $xfer += $output->writeStructBegin('Airavata_getSSHPubKey_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::MAP, 0); - { - $output->writeMapBegin(TType::STRING, TType::STRING, count($this->success)); - { - foreach ($this->success as $kiter14 => $viter15) - { - $xfer += $output->writeString($kiter14); - $xfer += $output->writeString($viter15); - } - } - $output->writeMapEnd(); - } + $xfer += $output->writeFieldBegin('success', TType::STRING, 0); + $xfer += $output->writeString($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -15199,7 +15137,7 @@ class Airavata_getAllUserSSHPubKeys_result { } -class Airavata_getAllGatewaySSHPubKeys_args { +class Airavata_getAllUserSSHPubKeys_args { static $_TSPEC; /** @@ -15209,7 +15147,7 @@ class Airavata_getAllGatewaySSHPubKeys_args { /** * @var string */ - public $gatewayId = null; + public $userName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -15220,7 +15158,7 @@ class Airavata_getAllGatewaySSHPubKeys_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'gatewayId', + 'var' => 'userName', 'type' => TType::STRING, ), ); @@ -15229,14 +15167,14 @@ class Airavata_getAllGatewaySSHPubKeys_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']; } } } public function getName() { - return 'Airavata_getAllGatewaySSHPubKeys_args'; + return 'Airavata_getAllUserSSHPubKeys_args'; } public function read($input) @@ -15264,7 +15202,7 @@ class Airavata_getAllGatewaySSHPubKeys_args { break; case 2: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); + $xfer += $input->readString($this->userName); } else { $xfer += $input->skip($ftype); } @@ -15281,7 +15219,7 @@ class Airavata_getAllGatewaySSHPubKeys_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllGatewaySSHPubKeys_args'); + $xfer += $output->writeStructBegin('Airavata_getAllUserSSHPubKeys_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15290,9 +15228,9 @@ class Airavata_getAllGatewaySSHPubKeys_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); + if ($this->userName !== null) { + $xfer += $output->writeFieldBegin('userName', TType::STRING, 2); + $xfer += $output->writeString($this->userName); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -15302,7 +15240,7 @@ class Airavata_getAllGatewaySSHPubKeys_args { } -class Airavata_getAllGatewaySSHPubKeys_result { +class Airavata_getAllUserSSHPubKeys_result { static $_TSPEC; /** @@ -15371,7 +15309,7 @@ class Airavata_getAllGatewaySSHPubKeys_result { } public function getName() { - return 'Airavata_getAllGatewaySSHPubKeys_result'; + return 'Airavata_getAllUserSSHPubKeys_result'; } public function read($input) @@ -15392,17 +15330,17 @@ class Airavata_getAllGatewaySSHPubKeys_result { case 0: if ($ftype == TType::MAP) { $this->success = array(); - $_size16 = 0; - $_ktype17 = 0; - $_vtype18 = 0; - $xfer += $input->readMapBegin($_ktype17, $_vtype18, $_size16); - for ($_i20 = 0; $_i20 < $_size16; ++$_i20) + $_size7 = 0; + $_ktype8 = 0; + $_vtype9 = 0; + $xfer += $input->readMapBegin($_ktype8, $_vtype9, $_size7); + for ($_i11 = 0; $_i11 < $_size7; ++$_i11) { - $key21 = ''; - $val22 = ''; - $xfer += $input->readString($key21); - $xfer += $input->readString($val22); - $this->success[$key21] = $val22; + $key12 = ''; + $val13 = ''; + $xfer += $input->readString($key12); + $xfer += $input->readString($val13); + $this->success[$key12] = $val13; } $xfer += $input->readMapEnd(); } else { @@ -15445,7 +15383,7 @@ class Airavata_getAllGatewaySSHPubKeys_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_getAllGatewaySSHPubKeys_result'); + $xfer += $output->writeStructBegin('Airavata_getAllUserSSHPubKeys_result'); if ($this->success !== null) { if (!is_array($this->success)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15454,10 +15392,10 @@ class Airavata_getAllGatewaySSHPubKeys_result { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->success)); { - foreach ($this->success as $kiter23 => $viter24) + foreach ($this->success as $kiter14 => $viter15) { - $xfer += $output->writeString($kiter23); - $xfer += $output->writeString($viter24); + $xfer += $output->writeString($kiter14); + $xfer += $output->writeString($viter15); } } $output->writeMapEnd(); @@ -15486,7 +15424,7 @@ class Airavata_getAllGatewaySSHPubKeys_result { } -class Airavata_deleteSSHPubKey_args { +class Airavata_getAllGatewaySSHPubKeys_args { static $_TSPEC; /** @@ -15496,10 +15434,6 @@ class Airavata_deleteSSHPubKey_args { /** * @var string */ - public $airavataCredStoreToken = null; - /** - * @var string - */ public $gatewayId = null; public function __construct($vals=null) { @@ -15511,10 +15445,6 @@ class Airavata_deleteSSHPubKey_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'airavataCredStoreToken', - 'type' => TType::STRING, - ), - 3 => array( 'var' => 'gatewayId', 'type' => TType::STRING, ), @@ -15524,9 +15454,6 @@ class Airavata_deleteSSHPubKey_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['airavataCredStoreToken'])) { - $this->airavataCredStoreToken = $vals['airavataCredStoreToken']; - } if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } @@ -15534,7 +15461,7 @@ class Airavata_deleteSSHPubKey_args { } public function getName() { - return 'Airavata_deleteSSHPubKey_args'; + return 'Airavata_getAllGatewaySSHPubKeys_args'; } public function read($input) @@ -15562,13 +15489,6 @@ class Airavata_deleteSSHPubKey_args { break; case 2: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->airavataCredStoreToken); - } else { - $xfer += $input->skip($ftype); - } - break; - case 3: - if ($ftype == TType::STRING) { $xfer += $input->readString($this->gatewayId); } else { $xfer += $input->skip($ftype); @@ -15586,7 +15506,7 @@ class Airavata_deleteSSHPubKey_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteSSHPubKey_args'); + $xfer += $output->writeStructBegin('Airavata_getAllGatewaySSHPubKeys_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15595,13 +15515,8 @@ class Airavata_deleteSSHPubKey_args { $xfer += $this->authzToken->write($output); $xfer += $output->writeFieldEnd(); } - if ($this->airavataCredStoreToken !== null) { - $xfer += $output->writeFieldBegin('airavataCredStoreToken', TType::STRING, 2); - $xfer += $output->writeString($this->airavataCredStoreToken); - $xfer += $output->writeFieldEnd(); - } if ($this->gatewayId !== null) { - $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 3); + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 2); $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } @@ -15612,11 +15527,11 @@ class Airavata_deleteSSHPubKey_args { } -class Airavata_deleteSSHPubKey_result { +class Airavata_getAllGatewaySSHPubKeys_result { static $_TSPEC; /** - * @var bool + * @var array */ public $success = null; /** @@ -15637,7 +15552,15 @@ class Airavata_deleteSSHPubKey_result { self::$_TSPEC = array( 0 => array( 'var' => 'success', - 'type' => TType::BOOL, + 'type' => TType::MAP, + 'ktype' => TType::STRING, + 'vtype' => TType::STRING, + 'key' => array( + 'type' => TType::STRING, + ), + 'val' => array( + 'type' => TType::STRING, + ), ), 1 => array( 'var' => 'ire', @@ -15673,7 +15596,7 @@ class Airavata_deleteSSHPubKey_result { } public function getName() { - return 'Airavata_deleteSSHPubKey_result'; + return 'Airavata_getAllGatewaySSHPubKeys_result'; } public function read($input) @@ -15692,8 +15615,21 @@ class Airavata_deleteSSHPubKey_result { switch ($fid) { case 0: - if ($ftype == TType::BOOL) { - $xfer += $input->readBool($this->success); + if ($ftype == TType::MAP) { + $this->success = array(); + $_size16 = 0; + $_ktype17 = 0; + $_vtype18 = 0; + $xfer += $input->readMapBegin($_ktype17, $_vtype18, $_size16); + for ($_i20 = 0; $_i20 < $_size16; ++$_i20) + { + $key21 = ''; + $val22 = ''; + $xfer += $input->readString($key21); + $xfer += $input->readString($val22); + $this->success[$key21] = $val22; + } + $xfer += $input->readMapEnd(); } else { $xfer += $input->skip($ftype); } @@ -15734,10 +15670,23 @@ class Airavata_deleteSSHPubKey_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_deleteSSHPubKey_result'); + $xfer += $output->writeStructBegin('Airavata_getAllGatewaySSHPubKeys_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::MAP, 0); + { + $output->writeMapBegin(TType::STRING, TType::STRING, count($this->success)); + { + foreach ($this->success as $kiter23 => $viter24) + { + $xfer += $output->writeString($kiter23); + $xfer += $output->writeString($viter24); + } + } + $output->writeMapEnd(); + } $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -15762,7 +15711,7 @@ class Airavata_deleteSSHPubKey_result { } -class Airavata_createProject_args { +class Airavata_deleteSSHPubKey_args { static $_TSPEC; /** @@ -15772,11 +15721,11 @@ class Airavata_createProject_args { /** * @var string */ - public $gatewayId = null; + public $airavataCredStoreToken = null; /** - * @var \Airavata\Model\Workspace\Project + * @var string */ - public $project = null; + public $gatewayId = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -15787,13 +15736,12 @@ class Airavata_createProject_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'gatewayId', + 'var' => 'airavataCredStoreToken', 'type' => TType::STRING, ), 3 => array( - 'var' => 'project', - 'type' => TType::STRUCT, - 'class' => '\Airavata\Model\Workspace\Project', + 'var' => 'gatewayId', + 'type' => TType::STRING, ), ); } @@ -15801,17 +15749,17 @@ class Airavata_createProject_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } + if (isset($vals['airavataCredStoreToken'])) { + $this->airavataCredStoreToken = $vals['airavataCredStoreToken']; + } if (isset($vals['gatewayId'])) { $this->gatewayId = $vals['gatewayId']; } - if (isset($vals['project'])) { - $this->project = $vals['project']; - } } } public function getName() { - return 'Airavata_createProject_args'; + return 'Airavata_deleteSSHPubKey_args'; } public function read($input) @@ -15839,15 +15787,14 @@ class Airavata_createProject_args { break; case 2: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->gatewayId); + $xfer += $input->readString($this->airavataCredStoreToken); } else { $xfer += $input->skip($ftype); } break; case 3: - if ($ftype == TType::STRUCT) { - $this->project = new \Airavata\Model\Workspace\Project(); - $xfer += $this->project->read($input); + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->gatewayId); } else { $xfer += $input->skip($ftype); } @@ -15864,7 +15811,7 @@ class Airavata_createProject_args { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_createProject_args'); + $xfer += $output->writeStructBegin('Airavata_deleteSSHPubKey_args'); if ($this->authzToken !== null) { if (!is_object($this->authzToken)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); @@ -15873,17 +15820,14 @@ class Airavata_createProject_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); + if ($this->airavataCredStoreToken !== null) { + $xfer += $output->writeFieldBegin('airavataCredStoreToken', TType::STRING, 2); + $xfer += $output->writeString($this->airavataCredStoreToken); $xfer += $output->writeFieldEnd(); } - if ($this->project !== null) { - if (!is_object($this->project)) { - throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); - } - $xfer += $output->writeFieldBegin('project', TType::STRUCT, 3); - $xfer += $this->project->write($output); + if ($this->gatewayId !== null) { + $xfer += $output->writeFieldBegin('gatewayId', TType::STRING, 3); + $xfer += $output->writeString($this->gatewayId); $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -15893,11 +15837,11 @@ class Airavata_createProject_args { } -class Airavata_createProject_result { +class Airavata_deleteSSHPubKey_result { static $_TSPEC; /** - * @var string + * @var bool */ public $success = null; /** @@ -15912,17 +15856,13 @@ class Airavata_createProject_result { * @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::STRING, + 'type' => TType::BOOL, ), 1 => array( 'var' => 'ire', @@ -15939,11 +15879,6 @@ class Airavata_createProject_result { 'type' => TType::STRUCT, 'class' => '\Airavata\API\Error\AiravataSystemException', ), - 4 => array( - 'var' => 'ae', - 'type' => TType::STRUCT, - 'class' => '\Airavata\API\Error\AuthorizationException', - ), ); } if (is_array($vals)) { @@ -15959,14 +15894,11 @@ class Airavata_createProject_result { if (isset($vals['ase'])) { $this->ase = $vals['ase']; } - if (isset($vals['ae'])) { - $this->ae = $vals['ae']; - } } } public function getName() { - return 'Airavata_createProject_result'; + return 'Airavata_deleteSSHPubKey_result'; } public function read($input) @@ -15985,8 +15917,8 @@ class Airavata_createProject_result { switch ($fid) { case 0: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->success); + if ($ftype == TType::BOOL) { + $xfer += $input->readBool($this->success); } else { $xfer += $input->skip($ftype); } @@ -16015,14 +15947,6 @@ class Airavata_createProject_result { $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; @@ -16035,10 +15959,10 @@ class Airavata_createProject_result { public function write($output) { $xfer = 0; - $xfer += $output->writeStructBegin('Airavata_createProject_result'); + $xfer += $output->writeStructBegin('Airavata_deleteSSHPubKey_result'); if ($this->success !== null) { - $xfer += $output->writeFieldBegin('success', TType::STRING, 0); - $xfer += $output->writeString($this->success); + $xfer += $output->writeFieldBegin('success', TType::BOOL, 0); + $xfer += $output->writeBool($this->success); $xfer += $output->writeFieldEnd(); } if ($this->ire !== null) { @@ -16056,11 +15980,6 @@ class Airavata_createProject_result { $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; @@ -16068,7 +15987,7 @@ class Airavata_createProject_result { } -class Airavata_updateProject_args { +class Airavata_createProject_args { static $_TSPEC; /** @@ -16078,11 +15997,11 @@ class Airavata_updateProject_args { /** * @var string */ - public $projectId = null; + public $gatewayId = null; /** * @var \Airavata\Model\Workspace\Project */ - public $updatedProject = null; + public $project = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -16093,11 +16012,11 @@ class Airavata_updateProject_args { 'class' => '\Airavata\Model\Security\AuthzToken', ), 2 => array( - 'var' => 'projectId', + 'var' => 'gatewayId', 'type' => TType::STRING, ), 3 => array( - 'var' => 'updatedProject', + 'var' => 'project', 'type' => TType::STRUCT, 'class' => '\Airavata\Model\Workspace\Project', ), @@ -16107,17 +16026,17 @@ class Airavata_updateProject_args { if (isset($vals['authzToken'])) { $this->authzToken = $vals['authzToken']; } - if (isset($vals['projectId'])) { - $this->projectId = $vals['projectId']; + if (isset($vals['gatewayId'])) { + $this->gatewayId = $vals['gatewayId']; } - if (isset($vals['updatedProject'])) { - $this->updatedProject = $vals['updatedProject']; + if (isset($vals['project'])) { + $this->project = $vals['project']; } } } public function getName() { - return 'Airavata_updateProject_args'; + return 'Airavata_createProject_args'; } public function read($input) @@ -16145,15 +16064,15 @@ class Airavata_updateProject_args { break; case 2: if ($ftype
<TRUNCATED>
