cloud-8.x-2.0-beta1/modules/cloud_service_providers/aws_cloud/aws_cloud.api.php
modules/cloud_service_providers/aws_cloud/aws_cloud.api.php
<?php
/**
* @file
* Hooks related to aws_cloud module.
*/
/**
* @addtogroup hooks
* @{
*/
/**
* Alter the parameter array before being sent through the Amazon EC2 API.
*
* @param array $params
* An array of parameters for operation.
* @param string $operation
* The operation to perform.
* @param string $cloud_context
* Cloud context string.
*/
function hook_aws_cloud_pre_execute_alter(array &$params, $operation, $cloud_context) {
}
/**
* Alter the results before it gets processed by aws_cloud.
*
* @param array $results
* A result array of execution.
* @param string $operation
* The operation to perform.
* @param string $cloud_context
* Cloud context string.
*/
function hook_aws_cloud_post_execute_alter(array &$results, $operation, $cloud_context) {
}
/**
* @} End of "addtogroup hooks".
*/
