/usr/share/php/Aws/Waf/WafClient.php is in php-aws-sdk 3.15.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <?php
namespace Aws\Waf;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS WAF** service.
*
* @method \Aws\Result createByteMatchSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise createByteMatchSetAsync(array $args = [])
* @method \Aws\Result createIPSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise createIPSetAsync(array $args = [])
* @method \Aws\Result createRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise createRuleAsync(array $args = [])
* @method \Aws\Result createSizeConstraintSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise createSizeConstraintSetAsync(array $args = [])
* @method \Aws\Result createSqlInjectionMatchSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise createSqlInjectionMatchSetAsync(array $args = [])
* @method \Aws\Result createWebACL(array $args = [])
* @method \GuzzleHttp\Promise\Promise createWebACLAsync(array $args = [])
* @method \Aws\Result deleteByteMatchSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteByteMatchSetAsync(array $args = [])
* @method \Aws\Result deleteIPSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteIPSetAsync(array $args = [])
* @method \Aws\Result deleteRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteRuleAsync(array $args = [])
* @method \Aws\Result deleteSizeConstraintSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteSizeConstraintSetAsync(array $args = [])
* @method \Aws\Result deleteSqlInjectionMatchSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteSqlInjectionMatchSetAsync(array $args = [])
* @method \Aws\Result deleteWebACL(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteWebACLAsync(array $args = [])
* @method \Aws\Result getByteMatchSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise getByteMatchSetAsync(array $args = [])
* @method \Aws\Result getChangeToken(array $args = [])
* @method \GuzzleHttp\Promise\Promise getChangeTokenAsync(array $args = [])
* @method \Aws\Result getChangeTokenStatus(array $args = [])
* @method \GuzzleHttp\Promise\Promise getChangeTokenStatusAsync(array $args = [])
* @method \Aws\Result getIPSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise getIPSetAsync(array $args = [])
* @method \Aws\Result getRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise getRuleAsync(array $args = [])
* @method \Aws\Result getSampledRequests(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSampledRequestsAsync(array $args = [])
* @method \Aws\Result getSizeConstraintSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSizeConstraintSetAsync(array $args = [])
* @method \Aws\Result getSqlInjectionMatchSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSqlInjectionMatchSetAsync(array $args = [])
* @method \Aws\Result getWebACL(array $args = [])
* @method \GuzzleHttp\Promise\Promise getWebACLAsync(array $args = [])
* @method \Aws\Result listByteMatchSets(array $args = [])
* @method \GuzzleHttp\Promise\Promise listByteMatchSetsAsync(array $args = [])
* @method \Aws\Result listIPSets(array $args = [])
* @method \GuzzleHttp\Promise\Promise listIPSetsAsync(array $args = [])
* @method \Aws\Result listRules(array $args = [])
* @method \GuzzleHttp\Promise\Promise listRulesAsync(array $args = [])
* @method \Aws\Result listSizeConstraintSets(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSizeConstraintSetsAsync(array $args = [])
* @method \Aws\Result listSqlInjectionMatchSets(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSqlInjectionMatchSetsAsync(array $args = [])
* @method \Aws\Result listWebACLs(array $args = [])
* @method \GuzzleHttp\Promise\Promise listWebACLsAsync(array $args = [])
* @method \Aws\Result updateByteMatchSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateByteMatchSetAsync(array $args = [])
* @method \Aws\Result updateIPSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateIPSetAsync(array $args = [])
* @method \Aws\Result updateRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateRuleAsync(array $args = [])
* @method \Aws\Result updateSizeConstraintSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateSizeConstraintSetAsync(array $args = [])
* @method \Aws\Result updateSqlInjectionMatchSet(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateSqlInjectionMatchSetAsync(array $args = [])
* @method \Aws\Result updateWebACL(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateWebACLAsync(array $args = [])
*/
class WafClient extends AwsClient {}
|