diff -r 877f952ae2bd -r 6b6c2214f778 web/lib/Zend/Service/WindowsAzure/Management/SubscriptionOperationInstance.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Service/WindowsAzure/Management/SubscriptionOperationInstance.php Thu Mar 21 19:52:38 2013 +0100 @@ -0,0 +1,77 @@ +_data = array( + 'operationid' => $operationId, + 'operationobjectid' => $operationObjectId, + 'operationname' => $operationName, + 'operationparameters' => $operationParameters, + 'operationcaller' => $operationCaller, + 'operationstatus' => $operationStatus + ); + } + + /** + * Add operation parameter + * + * @param string $name Name + * @param string $value Value + */ + public function addOperationParameter($name, $value) + { + $this->_data['operationparameters'][$name] = $value; + } +}