blob: 3dc1c5224d7813b94b961f06784d3e791812670f [file] [log] [blame]
<?php
namespace Airavata\Model\AppCatalog\AccountProvisioning;
/**
* Autogenerated by Thrift Compiler (0.10.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
use Thrift\Base\TBase;
use Thrift\Type\TType;
use Thrift\Type\TMessageType;
use Thrift\Exception\TException;
use Thrift\Exception\TProtocolException;
use Thrift\Protocol\TProtocol;
use Thrift\Protocol\TBinaryProtocolAccelerated;
use Thrift\Exception\TApplicationException;
final class SSHAccountProvisionerConfigParamType {
const STRING = 0;
const CRED_STORE_PASSWORD_TOKEN = 1;
static public $__names = array(
0 => 'STRING',
1 => 'CRED_STORE_PASSWORD_TOKEN',
);
}
class SSHAccountProvisionerConfigParam {
static $_TSPEC;
/**
* @var string
*/
public $name = null;
/**
* @var int
*/
public $type = 0;
/**
* @var bool
*/
public $isOptional = false;
/**
* @var string
*/
public $description = null;
public function __construct($vals=null) {
if (!isset(self::$_TSPEC)) {
self::$_TSPEC = array(
1 => array(
'var' => 'name',
'type' => TType::STRING,
),
2 => array(
'var' => 'type',
'type' => TType::I32,
),
3 => array(
'var' => 'isOptional',
'type' => TType::BOOL,
),
4 => array(
'var' => 'description',
'type' => TType::STRING,
),
);
}
if (is_array($vals)) {
if (isset($vals['name'])) {
$this->name = $vals['name'];
}
if (isset($vals['type'])) {
$this->type = $vals['type'];
}
if (isset($vals['isOptional'])) {
$this->isOptional = $vals['isOptional'];
}
if (isset($vals['description'])) {
$this->description = $vals['description'];
}
}
}
public function getName() {
return 'SSHAccountProvisionerConfigParam';
}
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::STRING) {
$xfer += $input->readString($this->name);
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::I32) {
$xfer += $input->readI32($this->type);
} else {
$xfer += $input->skip($ftype);
}
break;
case 3:
if ($ftype == TType::BOOL) {
$xfer += $input->readBool($this->isOptional);
} else {
$xfer += $input->skip($ftype);
}
break;
case 4:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->description);
} 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('SSHAccountProvisionerConfigParam');
if ($this->name !== null) {
$xfer += $output->writeFieldBegin('name', TType::STRING, 1);
$xfer += $output->writeString($this->name);
$xfer += $output->writeFieldEnd();
}
if ($this->type !== null) {
$xfer += $output->writeFieldBegin('type', TType::I32, 2);
$xfer += $output->writeI32($this->type);
$xfer += $output->writeFieldEnd();
}
if ($this->isOptional !== null) {
$xfer += $output->writeFieldBegin('isOptional', TType::BOOL, 3);
$xfer += $output->writeBool($this->isOptional);
$xfer += $output->writeFieldEnd();
}
if ($this->description !== null) {
$xfer += $output->writeFieldBegin('description', TType::STRING, 4);
$xfer += $output->writeString($this->description);
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}
class SSHAccountProvisioner {
static $_TSPEC;
/**
* @var string
*/
public $name = null;
/**
* @var bool
*/
public $canCreateAccount = null;
/**
* @var bool
*/
public $canInstallSSHKey = null;
/**
* @var \Airavata\Model\AppCatalog\AccountProvisioning\SSHAccountProvisionerConfigParam[]
*/
public $configParams = null;
public function __construct($vals=null) {
if (!isset(self::$_TSPEC)) {
self::$_TSPEC = array(
1 => array(
'var' => 'name',
'type' => TType::STRING,
),
2 => array(
'var' => 'canCreateAccount',
'type' => TType::BOOL,
),
3 => array(
'var' => 'canInstallSSHKey',
'type' => TType::BOOL,
),
4 => array(
'var' => 'configParams',
'type' => TType::LST,
'etype' => TType::STRUCT,
'elem' => array(
'type' => TType::STRUCT,
'class' => '\Airavata\Model\AppCatalog\AccountProvisioning\SSHAccountProvisionerConfigParam',
),
),
);
}
if (is_array($vals)) {
if (isset($vals['name'])) {
$this->name = $vals['name'];
}
if (isset($vals['canCreateAccount'])) {
$this->canCreateAccount = $vals['canCreateAccount'];
}
if (isset($vals['canInstallSSHKey'])) {
$this->canInstallSSHKey = $vals['canInstallSSHKey'];
}
if (isset($vals['configParams'])) {
$this->configParams = $vals['configParams'];
}
}
}
public function getName() {
return 'SSHAccountProvisioner';
}
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::STRING) {
$xfer += $input->readString($this->name);
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::BOOL) {
$xfer += $input->readBool($this->canCreateAccount);
} else {
$xfer += $input->skip($ftype);
}
break;
case 3:
if ($ftype == TType::BOOL) {
$xfer += $input->readBool($this->canInstallSSHKey);
} else {
$xfer += $input->skip($ftype);
}
break;
case 4:
if ($ftype == TType::LST) {
$this->configParams = array();
$_size0 = 0;
$_etype3 = 0;
$xfer += $input->readListBegin($_etype3, $_size0);
for ($_i4 = 0; $_i4 < $_size0; ++$_i4)
{
$elem5 = null;
$elem5 = new \Airavata\Model\AppCatalog\AccountProvisioning\SSHAccountProvisionerConfigParam();
$xfer += $elem5->read($input);
$this->configParams []= $elem5;
}
$xfer += $input->readListEnd();
} 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('SSHAccountProvisioner');
if ($this->name !== null) {
$xfer += $output->writeFieldBegin('name', TType::STRING, 1);
$xfer += $output->writeString($this->name);
$xfer += $output->writeFieldEnd();
}
if ($this->canCreateAccount !== null) {
$xfer += $output->writeFieldBegin('canCreateAccount', TType::BOOL, 2);
$xfer += $output->writeBool($this->canCreateAccount);
$xfer += $output->writeFieldEnd();
}
if ($this->canInstallSSHKey !== null) {
$xfer += $output->writeFieldBegin('canInstallSSHKey', TType::BOOL, 3);
$xfer += $output->writeBool($this->canInstallSSHKey);
$xfer += $output->writeFieldEnd();
}
if ($this->configParams !== null) {
if (!is_array($this->configParams)) {
throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
}
$xfer += $output->writeFieldBegin('configParams', TType::LST, 4);
{
$output->writeListBegin(TType::STRUCT, count($this->configParams));
{
foreach ($this->configParams as $iter6)
{
$xfer += $iter6->write($output);
}
}
$output->writeListEnd();
}
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}