コード例 #1
0
ファイル: DeployResult.php プロジェクト: rakesh-mohanta/scalr
 function __construct($deployTaskId, $status, $lastError = null)
 {
     parent::__construct();
     $this->deployTaskId = $deployTaskId;
     $this->status = $status;
     $this->lastError = $lastError;
 }
コード例 #2
0
ファイル: Rebundle.php プロジェクト: rakesh-mohanta/scalr
 function __construct($bundleTaskId = null, $roleName = null, $excludes = array())
 {
     parent::__construct();
     $this->bundleTaskId = $bundleTaskId;
     $this->roleName = $roleName;
     $this->excludes = $excludes;
 }
コード例 #3
0
 function __construct($behaviour = null, $resetToDefaults = null, $restartService = null)
 {
     parent::__construct();
     $this->behaviour = $behaviour;
     $this->resetToDefaults = $resetToDefaults;
     $this->restartService = $restartService;
 }
コード例 #4
0
 function __construct($device = null, $mountPoint = null, $createFs = null)
 {
     parent::__construct();
     $this->device = $device;
     $this->mountPoint = $mountPoint;
     $this->createFs = $createFs;
 }
コード例 #5
0
 function __construct($rootPassword = null, $replPassword = null, $statPassword = null, $volumeConfig = null)
 {
     parent::__construct();
     $this->rootPassword = $rootPassword;
     $this->replPassword = $replPassword;
     $this->statPassword = $statPassword;
     $this->volumeConfig = $volumeConfig;
 }
コード例 #6
0
ファイル: RebootStart.php プロジェクト: rakesh-mohanta/scalr
 function __construct($behaviour = null, $roleName = null, $localIp = null, $remoteIp = null)
 {
     parent::__construct();
     $this->behaviour = $behaviour;
     $this->roleName = $roleName;
     $this->localIp = $localIp;
     $this->remoteIp = $remoteIp;
 }
コード例 #7
0
 function __construct($status, $lastError, $preset, $behaviour)
 {
     parent::__construct();
     $this->status = $status;
     $this->lastError = $lastError;
     $this->preset = $preset;
     $this->behavior = $behaviour;
 }
コード例 #8
0
 function __construct($farmRoleId = null, $pmaUser = null, $pmaPassword = null, $lastError = null, $status = null)
 {
     parent::__construct();
     $this->status = $status;
     $this->lastError = $lastError;
     $this->pmaUser = $pmaUser;
     $this->pmaPassword = $pmaPassword;
     $this->farmRoleId = $farmRoleId;
 }
コード例 #9
0
ファイル: BlockDeviceMounted.php プロジェクト: mheydt/scalr
 function __construct($volumeId = null, $deviceName = null, $mountpoint = null, $isArray = null, $name = null)
 {
     parent::__construct();
     $this->volumeId = $volumeId;
     $this->deviceName = $deviceName;
     $this->mountpoint = $mountpoint;
     $this->isArray = $isArray;
     $this->name = $name;
 }
コード例 #10
0
 function __construct($bundleTaskId = null, $status = null, $snapshotId = null, $lastError = null, $os = null, $software = null)
 {
     parent::__construct();
     $this->bundleTaskId = $bundleTaskId;
     $this->status = $status;
     $this->snapshotId = $snapshotId;
     $this->lastError = $lastError;
     $this->os = $os;
     $this->software = $software;
 }
コード例 #11
0
 function __construct($behaviour = null, $roleName = null, $localIp = null, $remoteIp = null, $volumeId = null, $deviceName = null)
 {
     parent::__construct();
     $this->behaviour = $behaviour;
     $this->roleName = $roleName;
     $this->localIp = $localIp;
     $this->remoteIp = $remoteIp;
     $this->volumeId = $volumeId;
     $this->deviceName = $deviceName;
 }
コード例 #12
0
ファイル: HostInit.php プロジェクト: rakesh-mohanta/scalr
 function __construct($behaviour = null, $roleName = null, $localIp = null, $remoteIp = null, $cryptoKey = null, $sshPubKey = null)
 {
     parent::__construct();
     $this->behaviour = $behaviour;
     $this->roleName = $roleName;
     $this->localIp = $localIp;
     $this->remoteIp = $remoteIp;
     $this->cryptoKey = $cryptoKey;
     $this->sshPubKey = $sshPubKey;
 }
コード例 #13
0
ファイル: ExecScriptResult.php プロジェクト: mheydt/scalr
 function __construct($eventName = null, $stdout = null, $stderr = null, $timeElapsed = null, $scriptName = null, $scriptPath = null, $returnCode = null)
 {
     parent::__construct();
     $this->eventName = $eventName;
     $this->stdout = $stdout;
     $this->stderr = $stderr;
     $this->timeElapsed = $timeElapsed;
     $this->scriptName = $scriptName;
     $this->scriptPath = $scriptPath;
     $this->returnCode = $returnCode;
 }
コード例 #14
0
 function __construct($snapshotId, $logFile, $logPos, $snapshotConfig, $dataBundleSize)
 {
     parent::__construct();
     /**
      * @deprecated
      */
     $this->snapshotId = $snapshotId;
     $this->logFile = $logFile;
     $this->logPos = $logPos;
     $this->snapshotConfig = $snapshotConfig;
     $this->dataBundleSize = $dataBundleSize;
 }
コード例 #15
0
ファイル: Deploy.php プロジェクト: rakesh-mohanta/scalr
 function __construct($deployTaskId, $remotePath, $source, $preDeployRoutines = "", $postDeployRoutines = "")
 {
     parent::__construct();
     $this->deployTaskId = $deployTaskId;
     $this->source = $source;
     $this->remotePath = $remotePath;
     $this->preDeployRoutines = new stdClass();
     $this->preDeployRoutines->body = $preDeployRoutines;
     $this->preDeployRoutines->execTimeout = 300;
     $this->postDeployRoutines = new stdClass();
     $this->postDeployRoutines->body = $postDeployRoutines;
     $this->postDeployRoutines->execTimeout = 300;
 }
コード例 #16
0
 function __construct($behaviour = null, $roleName = null, $localIp = null, $remoteIp = null, $volumeId = null, $deviceName = null, $mountpoint = null, $isArray = null, $name = null)
 {
     parent::__construct();
     $this->behaviour = $behaviour;
     $this->roleName = $roleName;
     $this->localIp = $localIp;
     $this->remoteIp = $remoteIp;
     $this->volumeId = $volumeId;
     $this->deviceName = $deviceName;
     $this->mountpoint = $mountpoint;
     $this->isArray = $isArray;
     $this->name = $name;
 }
コード例 #17
0
 function __construct()
 {
     parent::__construct();
 }
コード例 #18
0
ファイル: SetupControlPanel.php プロジェクト: mheydt/scalr
 function __construct($username = null, $password = null)
 {
     parent::__construct();
     $this->username = $username;
     $this->password = $password;
 }
コード例 #19
0
ファイル: Log.php プロジェクト: mheydt/scalr
 function __construct($entries = null)
 {
     parent::__construct();
     $this->entries = $entries;
 }
コード例 #20
0
 function __construct($version = null)
 {
     parent::__construct();
     $this->version = $version;
 }
コード例 #21
0
ファイル: HostDown.php プロジェクト: rakesh-mohanta/scalr
 function __construct($bundleTaskId)
 {
     parent::__construct();
 }
コード例 #22
0
 function __construct(array $add = array(), array $remove = array())
 {
     parent::__construct();
     $this->add = $add;
     $this->remove = $remove;
 }
コード例 #23
0
ファイル: PrepareBundle.php プロジェクト: mheydt/scalr
 function __construct($bundleTaskId)
 {
     parent::__construct();
     $this->bundleTaskId = $bundleTaskId;
 }
コード例 #24
0
 function __construct($farmRoleId = null, $pmaServerIp = null)
 {
     parent::__construct();
     $this->farmRoleId = $farmRoleId;
     $this->pmaServerIp = $pmaServerIp;
 }
コード例 #25
0
ファイル: Hello.php プロジェクト: rakesh-mohanta/scalr
 function __construct($cryptoKey = null)
 {
     parent::__construct();
     $this->cryptoKey = $cryptoKey;
 }
コード例 #26
0
 function __construct($behaviour = null, $roleName = null)
 {
     parent::__construct();
     $this->behaviour = $behaviour;
     $this->roleName = $roleName;
 }
コード例 #27
0
ファイル: BlockDeviceAttached.php プロジェクト: mheydt/scalr
 function __construct($volumeId = null, $deviceName = null)
 {
     parent::__construct();
     $this->volumeId = $volumeId;
     $this->deviceName = $deviceName;
 }
コード例 #28
0
ファイル: ExecScript.php プロジェクト: rakesh-mohanta/scalr
 function __construct($eventName = null)
 {
     parent::__construct();
     $this->eventName = $eventName;
 }
コード例 #29
0
 function __construct($farmCryptoKey, $serverIndex)
 {
     parent::__construct();
     $this->farmCryptoKey = $farmCryptoKey;
     $this->serverIndex = $serverIndex;
 }
コード例 #30
0
ファイル: IpAddressChanged.php プロジェクト: mheydt/scalr
 function __construct($newRemoteIp = null, $newLocalIp = null)
 {
     parent::__construct();
     $this->newRemoteIp = $newRemoteIp;
     $this->newLocalIp = $newLocalIp;
 }