. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_SshUrlResource extends Kaltura_Client_Type_UrlResource { public function getKalturaObjectType() { return 'KalturaSshUrlResource'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->privateKey = (string)$xml->privateKey; $this->publicKey = (string)$xml->publicKey; $this->keyPassphrase = (string)$xml->keyPassphrase; } /** * SSH private key * * * @var string */ public $privateKey = null; /** * SSH public key * * * @var string */ public $publicKey = null; /** * Passphrase for SSH keys * * * @var string */ public $keyPassphrase = null; }