PageRenderTime 43ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDiagnosticInfrastructureLogs.php

https://bitbucket.org/hieronim1981/tunethemusic
PHP | 53 lines | 13 code | 2 blank | 38 comment | 0 complexity | 00e6ae397266876261366d946e735d9c MD5 | raw file
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Service_WindowsAzure
  17. * @subpackage Diagnostics
  18. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. * @version $Id$
  21. */
  22. /**
  23. * @category Zend
  24. * @package Zend_Service_WindowsAzure
  25. * @subpackage Diagnostics
  26. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  27. * @license http://framework.zend.com/license/new-bsd New BSD License
  28. *
  29. * @property int BufferQuotaInMB Buffer quota in MB
  30. * @property int ScheduledTransferPeriodInMinutes Scheduled transfer period in minutes
  31. * @property string ScheduledTransferLogLevelFilter Scheduled transfer log level filter
  32. */
  33. class Zend_Service_WindowsAzure_Diagnostics_ConfigurationDiagnosticInfrastructureLogs
  34. extends Zend_Service_WindowsAzure_Diagnostics_ConfigurationObjectBaseAbstract
  35. {
  36. /**
  37. * Constructor
  38. *
  39. * @param int $bufferQuotaInMB Buffer quota in MB
  40. * @param int $scheduledTransferPeriodInMinutes Scheduled transfer period in minutes
  41. * @param string $scheduledTransferLogLevelFilter Scheduled transfer log level filter
  42. */
  43. public function __construct($bufferQuotaInMB = 0, $scheduledTransferPeriodInMinutes = 0, $scheduledTransferLogLevelFilter = Zend_Service_WindowsAzure_Diagnostics_LogLevel::UNDEFINED)
  44. {
  45. $this->_data = array(
  46. 'bufferquotainmb' => $bufferQuotaInMB,
  47. 'scheduledtransferperiodinminutes' => $scheduledTransferPeriodInMinutes,
  48. 'scheduledtransferloglevelfilter' => $scheduledTransferLogLevelFilter
  49. );
  50. }
  51. }