@aws-sdk/client-wafv2 3.289.0 → 3.292.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist-types/commands/AssociateWebACLCommand.d.ts +42 -0
  2. package/dist-types/commands/CheckCapacityCommand.d.ts +61 -0
  3. package/dist-types/commands/CreateIPSetCommand.d.ts +51 -0
  4. package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +51 -0
  5. package/dist-types/commands/CreateRuleGroupCommand.d.ts +68 -0
  6. package/dist-types/commands/CreateWebACLCommand.d.ts +90 -0
  7. package/dist-types/commands/DeleteFirewallManagerRuleGroupsCommand.d.ts +40 -0
  8. package/dist-types/commands/DeleteIPSetCommand.d.ts +51 -0
  9. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +40 -0
  10. package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +32 -0
  11. package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +51 -0
  12. package/dist-types/commands/DeleteRuleGroupCommand.d.ts +51 -0
  13. package/dist-types/commands/DeleteWebACLCommand.d.ts +51 -0
  14. package/dist-types/commands/DescribeManagedRuleGroupCommand.d.ts +44 -0
  15. package/dist-types/commands/DisassociateWebACLCommand.d.ts +35 -0
  16. package/dist-types/commands/GenerateMobileSdkReleaseUrlCommand.d.ts +35 -0
  17. package/dist-types/commands/GetIPSetCommand.d.ts +35 -0
  18. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +35 -0
  19. package/dist-types/commands/GetManagedRuleSetCommand.d.ts +35 -0
  20. package/dist-types/commands/GetMobileSdkReleaseCommand.d.ts +35 -0
  21. package/dist-types/commands/GetPermissionPolicyCommand.d.ts +32 -0
  22. package/dist-types/commands/GetRateBasedStatementManagedKeysCommand.d.ts +35 -0
  23. package/dist-types/commands/GetRegexPatternSetCommand.d.ts +35 -0
  24. package/dist-types/commands/GetRuleGroupCommand.d.ts +35 -0
  25. package/dist-types/commands/GetSampledRequestsCommand.d.ts +32 -0
  26. package/dist-types/commands/GetWebACLCommand.d.ts +35 -0
  27. package/dist-types/commands/GetWebACLForResourceCommand.d.ts +42 -0
  28. package/dist-types/commands/ListAvailableManagedRuleGroupVersionsCommand.d.ts +35 -0
  29. package/dist-types/commands/ListAvailableManagedRuleGroupsCommand.d.ts +29 -0
  30. package/dist-types/commands/ListIPSetsCommand.d.ts +29 -0
  31. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +29 -0
  32. package/dist-types/commands/ListManagedRuleSetsCommand.d.ts +29 -0
  33. package/dist-types/commands/ListMobileSdkReleasesCommand.d.ts +29 -0
  34. package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +29 -0
  35. package/dist-types/commands/ListResourcesForWebACLCommand.d.ts +35 -0
  36. package/dist-types/commands/ListRuleGroupsCommand.d.ts +29 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +42 -0
  38. package/dist-types/commands/ListWebACLsCommand.d.ts +29 -0
  39. package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +61 -0
  40. package/dist-types/commands/PutManagedRuleSetVersionsCommand.d.ts +40 -0
  41. package/dist-types/commands/PutPermissionPolicyCommand.d.ts +58 -0
  42. package/dist-types/commands/TagResourceCommand.d.ts +48 -0
  43. package/dist-types/commands/UntagResourceCommand.d.ts +42 -0
  44. package/dist-types/commands/UpdateIPSetCommand.d.ts +50 -0
  45. package/dist-types/commands/UpdateManagedRuleSetVersionExpiryDateCommand.d.ts +40 -0
  46. package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +50 -0
  47. package/dist-types/commands/UpdateRuleGroupCommand.d.ts +74 -0
  48. package/dist-types/commands/UpdateWebACLCommand.d.ts +83 -0
  49. package/package.json +35 -40
@@ -38,6 +38,38 @@ export interface GetSampledRequestsCommandOutput extends GetSampledRequestsRespo
38
38
  * @see {@link GetSampledRequestsCommandOutput} for command's `response` shape.
39
39
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
40
40
  *
41
+ * @throws {@link WAFInternalErrorException} (server fault)
42
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
43
+ * problem. Retry your request. </p>
44
+ *
45
+ * @throws {@link WAFInvalidParameterException} (client fault)
46
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
47
+ * example: </p>
48
+ * <ul>
49
+ * <li>
50
+ * <p>You specified a parameter name or value that isn't valid.</p>
51
+ * </li>
52
+ * <li>
53
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
54
+ * can’t be nested. </p>
55
+ * </li>
56
+ * <li>
57
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
58
+ * isn't among the types available at <a>DefaultAction</a>.</p>
59
+ * </li>
60
+ * <li>
61
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
62
+ * with which a web ACL can't be associated.</p>
63
+ * </li>
64
+ * </ul>
65
+ *
66
+ * @throws {@link WAFNonexistentItemException} (client fault)
67
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
68
+ * If you've just created a resource that you're using in this operation, you might
69
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
70
+ * for changes to propagate. </p>
71
+ *
72
+ *
41
73
  */
42
74
  export declare class GetSampledRequestsCommand extends $Command<GetSampledRequestsCommandInput, GetSampledRequestsCommandOutput, WAFV2ClientResolvedConfig> {
43
75
  readonly input: GetSampledRequestsCommandInput;
@@ -29,6 +29,41 @@ export interface GetWebACLCommandOutput extends GetWebACLResponse, __MetadataBea
29
29
  * @see {@link GetWebACLCommandOutput} for command's `response` shape.
30
30
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
31
31
  *
32
+ * @throws {@link WAFInternalErrorException} (server fault)
33
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
34
+ * problem. Retry your request. </p>
35
+ *
36
+ * @throws {@link WAFInvalidOperationException} (client fault)
37
+ * <p>The operation isn't valid. </p>
38
+ *
39
+ * @throws {@link WAFInvalidParameterException} (client fault)
40
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
41
+ * example: </p>
42
+ * <ul>
43
+ * <li>
44
+ * <p>You specified a parameter name or value that isn't valid.</p>
45
+ * </li>
46
+ * <li>
47
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
48
+ * can’t be nested. </p>
49
+ * </li>
50
+ * <li>
51
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
52
+ * isn't among the types available at <a>DefaultAction</a>.</p>
53
+ * </li>
54
+ * <li>
55
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
56
+ * with which a web ACL can't be associated.</p>
57
+ * </li>
58
+ * </ul>
59
+ *
60
+ * @throws {@link WAFNonexistentItemException} (client fault)
61
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
62
+ * If you've just created a resource that you're using in this operation, you might
63
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
64
+ * for changes to propagate. </p>
65
+ *
66
+ *
32
67
  */
33
68
  export declare class GetWebACLCommand extends $Command<GetWebACLCommandInput, GetWebACLCommandOutput, WAFV2ClientResolvedConfig> {
34
69
  readonly input: GetWebACLCommandInput;
@@ -29,6 +29,48 @@ export interface GetWebACLForResourceCommandOutput extends GetWebACLForResourceR
29
29
  * @see {@link GetWebACLForResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
31
31
  *
32
+ * @throws {@link WAFInternalErrorException} (server fault)
33
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
34
+ * problem. Retry your request. </p>
35
+ *
36
+ * @throws {@link WAFInvalidOperationException} (client fault)
37
+ * <p>The operation isn't valid. </p>
38
+ *
39
+ * @throws {@link WAFInvalidParameterException} (client fault)
40
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
41
+ * example: </p>
42
+ * <ul>
43
+ * <li>
44
+ * <p>You specified a parameter name or value that isn't valid.</p>
45
+ * </li>
46
+ * <li>
47
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
48
+ * can’t be nested. </p>
49
+ * </li>
50
+ * <li>
51
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
52
+ * isn't among the types available at <a>DefaultAction</a>.</p>
53
+ * </li>
54
+ * <li>
55
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
56
+ * with which a web ACL can't be associated.</p>
57
+ * </li>
58
+ * </ul>
59
+ *
60
+ * @throws {@link WAFNonexistentItemException} (client fault)
61
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
62
+ * If you've just created a resource that you're using in this operation, you might
63
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
64
+ * for changes to propagate. </p>
65
+ *
66
+ * @throws {@link WAFUnavailableEntityException} (client fault)
67
+ * <p>WAF couldn’t retrieve a resource that you specified for this operation.
68
+ * If you've just created a resource that you're using in this operation, you might
69
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
70
+ * for changes to propagate. Verify the resources that you are specifying in your request
71
+ * parameters and then retry the operation.</p>
72
+ *
73
+ *
32
74
  */
33
75
  export declare class GetWebACLForResourceCommand extends $Command<GetWebACLForResourceCommandInput, GetWebACLForResourceCommandOutput, WAFV2ClientResolvedConfig> {
34
76
  readonly input: GetWebACLForResourceCommandInput;
@@ -29,6 +29,41 @@ export interface ListAvailableManagedRuleGroupVersionsCommandOutput extends List
29
29
  * @see {@link ListAvailableManagedRuleGroupVersionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
31
31
  *
32
+ * @throws {@link WAFInternalErrorException} (server fault)
33
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
34
+ * problem. Retry your request. </p>
35
+ *
36
+ * @throws {@link WAFInvalidOperationException} (client fault)
37
+ * <p>The operation isn't valid. </p>
38
+ *
39
+ * @throws {@link WAFInvalidParameterException} (client fault)
40
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
41
+ * example: </p>
42
+ * <ul>
43
+ * <li>
44
+ * <p>You specified a parameter name or value that isn't valid.</p>
45
+ * </li>
46
+ * <li>
47
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
48
+ * can’t be nested. </p>
49
+ * </li>
50
+ * <li>
51
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
52
+ * isn't among the types available at <a>DefaultAction</a>.</p>
53
+ * </li>
54
+ * <li>
55
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
56
+ * with which a web ACL can't be associated.</p>
57
+ * </li>
58
+ * </ul>
59
+ *
60
+ * @throws {@link WAFNonexistentItemException} (client fault)
61
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
62
+ * If you've just created a resource that you're using in this operation, you might
63
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
64
+ * for changes to propagate. </p>
65
+ *
66
+ *
32
67
  */
33
68
  export declare class ListAvailableManagedRuleGroupVersionsCommand extends $Command<ListAvailableManagedRuleGroupVersionsCommandInput, ListAvailableManagedRuleGroupVersionsCommandOutput, WAFV2ClientResolvedConfig> {
34
69
  readonly input: ListAvailableManagedRuleGroupVersionsCommandInput;
@@ -31,6 +31,35 @@ export interface ListAvailableManagedRuleGroupsCommandOutput extends ListAvailab
31
31
  * @see {@link ListAvailableManagedRuleGroupsCommandOutput} for command's `response` shape.
32
32
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
33
33
  *
34
+ * @throws {@link WAFInternalErrorException} (server fault)
35
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
36
+ * problem. Retry your request. </p>
37
+ *
38
+ * @throws {@link WAFInvalidOperationException} (client fault)
39
+ * <p>The operation isn't valid. </p>
40
+ *
41
+ * @throws {@link WAFInvalidParameterException} (client fault)
42
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
43
+ * example: </p>
44
+ * <ul>
45
+ * <li>
46
+ * <p>You specified a parameter name or value that isn't valid.</p>
47
+ * </li>
48
+ * <li>
49
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
50
+ * can’t be nested. </p>
51
+ * </li>
52
+ * <li>
53
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
54
+ * isn't among the types available at <a>DefaultAction</a>.</p>
55
+ * </li>
56
+ * <li>
57
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
58
+ * with which a web ACL can't be associated.</p>
59
+ * </li>
60
+ * </ul>
61
+ *
62
+ *
34
63
  */
35
64
  export declare class ListAvailableManagedRuleGroupsCommand extends $Command<ListAvailableManagedRuleGroupsCommandInput, ListAvailableManagedRuleGroupsCommandOutput, WAFV2ClientResolvedConfig> {
36
65
  readonly input: ListAvailableManagedRuleGroupsCommandInput;
@@ -30,6 +30,35 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB
30
30
  * @see {@link ListIPSetsCommandOutput} for command's `response` shape.
31
31
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
32
32
  *
33
+ * @throws {@link WAFInternalErrorException} (server fault)
34
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
35
+ * problem. Retry your request. </p>
36
+ *
37
+ * @throws {@link WAFInvalidOperationException} (client fault)
38
+ * <p>The operation isn't valid. </p>
39
+ *
40
+ * @throws {@link WAFInvalidParameterException} (client fault)
41
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
42
+ * example: </p>
43
+ * <ul>
44
+ * <li>
45
+ * <p>You specified a parameter name or value that isn't valid.</p>
46
+ * </li>
47
+ * <li>
48
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
49
+ * can’t be nested. </p>
50
+ * </li>
51
+ * <li>
52
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
53
+ * isn't among the types available at <a>DefaultAction</a>.</p>
54
+ * </li>
55
+ * <li>
56
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
57
+ * with which a web ACL can't be associated.</p>
58
+ * </li>
59
+ * </ul>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class ListIPSetsCommand extends $Command<ListIPSetsCommandInput, ListIPSetsCommandOutput, WAFV2ClientResolvedConfig> {
35
64
  readonly input: ListIPSetsCommandInput;
@@ -29,6 +29,35 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
29
29
  * @see {@link ListLoggingConfigurationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
31
31
  *
32
+ * @throws {@link WAFInternalErrorException} (server fault)
33
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
34
+ * problem. Retry your request. </p>
35
+ *
36
+ * @throws {@link WAFInvalidOperationException} (client fault)
37
+ * <p>The operation isn't valid. </p>
38
+ *
39
+ * @throws {@link WAFInvalidParameterException} (client fault)
40
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
41
+ * example: </p>
42
+ * <ul>
43
+ * <li>
44
+ * <p>You specified a parameter name or value that isn't valid.</p>
45
+ * </li>
46
+ * <li>
47
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
48
+ * can’t be nested. </p>
49
+ * </li>
50
+ * <li>
51
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
52
+ * isn't among the types available at <a>DefaultAction</a>.</p>
53
+ * </li>
54
+ * <li>
55
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
56
+ * with which a web ACL can't be associated.</p>
57
+ * </li>
58
+ * </ul>
59
+ *
60
+ *
32
61
  */
33
62
  export declare class ListLoggingConfigurationsCommand extends $Command<ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput, WAFV2ClientResolvedConfig> {
34
63
  readonly input: ListLoggingConfigurationsCommandInput;
@@ -33,6 +33,35 @@ export interface ListManagedRuleSetsCommandOutput extends ListManagedRuleSetsRes
33
33
  * @see {@link ListManagedRuleSetsCommandOutput} for command's `response` shape.
34
34
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
35
35
  *
36
+ * @throws {@link WAFInternalErrorException} (server fault)
37
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
38
+ * problem. Retry your request. </p>
39
+ *
40
+ * @throws {@link WAFInvalidOperationException} (client fault)
41
+ * <p>The operation isn't valid. </p>
42
+ *
43
+ * @throws {@link WAFInvalidParameterException} (client fault)
44
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
45
+ * example: </p>
46
+ * <ul>
47
+ * <li>
48
+ * <p>You specified a parameter name or value that isn't valid.</p>
49
+ * </li>
50
+ * <li>
51
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
52
+ * can’t be nested. </p>
53
+ * </li>
54
+ * <li>
55
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
56
+ * isn't among the types available at <a>DefaultAction</a>.</p>
57
+ * </li>
58
+ * <li>
59
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
60
+ * with which a web ACL can't be associated.</p>
61
+ * </li>
62
+ * </ul>
63
+ *
64
+ *
36
65
  */
37
66
  export declare class ListManagedRuleSetsCommand extends $Command<ListManagedRuleSetsCommandInput, ListManagedRuleSetsCommandOutput, WAFV2ClientResolvedConfig> {
38
67
  readonly input: ListManagedRuleSetsCommandInput;
@@ -32,6 +32,35 @@ export interface ListMobileSdkReleasesCommandOutput extends ListMobileSdkRelease
32
32
  * @see {@link ListMobileSdkReleasesCommandOutput} for command's `response` shape.
33
33
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
34
34
  *
35
+ * @throws {@link WAFInternalErrorException} (server fault)
36
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
37
+ * problem. Retry your request. </p>
38
+ *
39
+ * @throws {@link WAFInvalidOperationException} (client fault)
40
+ * <p>The operation isn't valid. </p>
41
+ *
42
+ * @throws {@link WAFInvalidParameterException} (client fault)
43
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
44
+ * example: </p>
45
+ * <ul>
46
+ * <li>
47
+ * <p>You specified a parameter name or value that isn't valid.</p>
48
+ * </li>
49
+ * <li>
50
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
51
+ * can’t be nested. </p>
52
+ * </li>
53
+ * <li>
54
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
55
+ * isn't among the types available at <a>DefaultAction</a>.</p>
56
+ * </li>
57
+ * <li>
58
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
59
+ * with which a web ACL can't be associated.</p>
60
+ * </li>
61
+ * </ul>
62
+ *
63
+ *
35
64
  */
36
65
  export declare class ListMobileSdkReleasesCommand extends $Command<ListMobileSdkReleasesCommandInput, ListMobileSdkReleasesCommandOutput, WAFV2ClientResolvedConfig> {
37
66
  readonly input: ListMobileSdkReleasesCommandInput;
@@ -30,6 +30,35 @@ export interface ListRegexPatternSetsCommandOutput extends ListRegexPatternSetsR
30
30
  * @see {@link ListRegexPatternSetsCommandOutput} for command's `response` shape.
31
31
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
32
32
  *
33
+ * @throws {@link WAFInternalErrorException} (server fault)
34
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
35
+ * problem. Retry your request. </p>
36
+ *
37
+ * @throws {@link WAFInvalidOperationException} (client fault)
38
+ * <p>The operation isn't valid. </p>
39
+ *
40
+ * @throws {@link WAFInvalidParameterException} (client fault)
41
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
42
+ * example: </p>
43
+ * <ul>
44
+ * <li>
45
+ * <p>You specified a parameter name or value that isn't valid.</p>
46
+ * </li>
47
+ * <li>
48
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
49
+ * can’t be nested. </p>
50
+ * </li>
51
+ * <li>
52
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
53
+ * isn't among the types available at <a>DefaultAction</a>.</p>
54
+ * </li>
55
+ * <li>
56
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
57
+ * with which a web ACL can't be associated.</p>
58
+ * </li>
59
+ * </ul>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class ListRegexPatternSetsCommand extends $Command<ListRegexPatternSetsCommandInput, ListRegexPatternSetsCommandOutput, WAFV2ClientResolvedConfig> {
35
64
  readonly input: ListRegexPatternSetsCommandInput;
@@ -31,6 +31,41 @@ export interface ListResourcesForWebACLCommandOutput extends ListResourcesForWeb
31
31
  * @see {@link ListResourcesForWebACLCommandOutput} for command's `response` shape.
32
32
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
33
33
  *
34
+ * @throws {@link WAFInternalErrorException} (server fault)
35
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
36
+ * problem. Retry your request. </p>
37
+ *
38
+ * @throws {@link WAFInvalidOperationException} (client fault)
39
+ * <p>The operation isn't valid. </p>
40
+ *
41
+ * @throws {@link WAFInvalidParameterException} (client fault)
42
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
43
+ * example: </p>
44
+ * <ul>
45
+ * <li>
46
+ * <p>You specified a parameter name or value that isn't valid.</p>
47
+ * </li>
48
+ * <li>
49
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
50
+ * can’t be nested. </p>
51
+ * </li>
52
+ * <li>
53
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
54
+ * isn't among the types available at <a>DefaultAction</a>.</p>
55
+ * </li>
56
+ * <li>
57
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
58
+ * with which a web ACL can't be associated.</p>
59
+ * </li>
60
+ * </ul>
61
+ *
62
+ * @throws {@link WAFNonexistentItemException} (client fault)
63
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
64
+ * If you've just created a resource that you're using in this operation, you might
65
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
66
+ * for changes to propagate. </p>
67
+ *
68
+ *
34
69
  */
35
70
  export declare class ListResourcesForWebACLCommand extends $Command<ListResourcesForWebACLCommandInput, ListResourcesForWebACLCommandOutput, WAFV2ClientResolvedConfig> {
36
71
  readonly input: ListResourcesForWebACLCommandInput;
@@ -30,6 +30,35 @@ export interface ListRuleGroupsCommandOutput extends ListRuleGroupsResponse, __M
30
30
  * @see {@link ListRuleGroupsCommandOutput} for command's `response` shape.
31
31
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
32
32
  *
33
+ * @throws {@link WAFInternalErrorException} (server fault)
34
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
35
+ * problem. Retry your request. </p>
36
+ *
37
+ * @throws {@link WAFInvalidOperationException} (client fault)
38
+ * <p>The operation isn't valid. </p>
39
+ *
40
+ * @throws {@link WAFInvalidParameterException} (client fault)
41
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
42
+ * example: </p>
43
+ * <ul>
44
+ * <li>
45
+ * <p>You specified a parameter name or value that isn't valid.</p>
46
+ * </li>
47
+ * <li>
48
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
49
+ * can’t be nested. </p>
50
+ * </li>
51
+ * <li>
52
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
53
+ * isn't among the types available at <a>DefaultAction</a>.</p>
54
+ * </li>
55
+ * <li>
56
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
57
+ * with which a web ACL can't be associated.</p>
58
+ * </li>
59
+ * </ul>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class ListRuleGroupsCommand extends $Command<ListRuleGroupsCommandInput, ListRuleGroupsCommandOutput, WAFV2ClientResolvedConfig> {
35
64
  readonly input: ListRuleGroupsCommandInput;
@@ -36,6 +36,48 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
36
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
37
37
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
38
38
  *
39
+ * @throws {@link WAFInternalErrorException} (server fault)
40
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
41
+ * problem. Retry your request. </p>
42
+ *
43
+ * @throws {@link WAFInvalidOperationException} (client fault)
44
+ * <p>The operation isn't valid. </p>
45
+ *
46
+ * @throws {@link WAFInvalidParameterException} (client fault)
47
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
48
+ * example: </p>
49
+ * <ul>
50
+ * <li>
51
+ * <p>You specified a parameter name or value that isn't valid.</p>
52
+ * </li>
53
+ * <li>
54
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
55
+ * can’t be nested. </p>
56
+ * </li>
57
+ * <li>
58
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
59
+ * isn't among the types available at <a>DefaultAction</a>.</p>
60
+ * </li>
61
+ * <li>
62
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
63
+ * with which a web ACL can't be associated.</p>
64
+ * </li>
65
+ * </ul>
66
+ *
67
+ * @throws {@link WAFNonexistentItemException} (client fault)
68
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
69
+ * If you've just created a resource that you're using in this operation, you might
70
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
71
+ * for changes to propagate. </p>
72
+ *
73
+ * @throws {@link WAFTagOperationException} (client fault)
74
+ * <p>An error occurred during the tagging operation. Retry your request.</p>
75
+ *
76
+ * @throws {@link WAFTagOperationInternalErrorException} (server fault)
77
+ * <p>WAF couldn’t perform your tagging operation because of an internal error. Retry
78
+ * your request.</p>
79
+ *
80
+ *
39
81
  */
40
82
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WAFV2ClientResolvedConfig> {
41
83
  readonly input: ListTagsForResourceCommandInput;
@@ -30,6 +30,35 @@ export interface ListWebACLsCommandOutput extends ListWebACLsResponse, __Metadat
30
30
  * @see {@link ListWebACLsCommandOutput} for command's `response` shape.
31
31
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
32
32
  *
33
+ * @throws {@link WAFInternalErrorException} (server fault)
34
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
35
+ * problem. Retry your request. </p>
36
+ *
37
+ * @throws {@link WAFInvalidOperationException} (client fault)
38
+ * <p>The operation isn't valid. </p>
39
+ *
40
+ * @throws {@link WAFInvalidParameterException} (client fault)
41
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
42
+ * example: </p>
43
+ * <ul>
44
+ * <li>
45
+ * <p>You specified a parameter name or value that isn't valid.</p>
46
+ * </li>
47
+ * <li>
48
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
49
+ * can’t be nested. </p>
50
+ * </li>
51
+ * <li>
52
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
53
+ * isn't among the types available at <a>DefaultAction</a>.</p>
54
+ * </li>
55
+ * <li>
56
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
57
+ * with which a web ACL can't be associated.</p>
58
+ * </li>
59
+ * </ul>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class ListWebACLsCommand extends $Command<ListWebACLsCommandInput, ListWebACLsCommandOutput, WAFV2ClientResolvedConfig> {
35
64
  readonly input: ListWebACLsCommandInput;
@@ -71,6 +71,67 @@ export interface PutLoggingConfigurationCommandOutput extends PutLoggingConfigur
71
71
  * @see {@link PutLoggingConfigurationCommandOutput} for command's `response` shape.
72
72
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
73
73
  *
74
+ * @throws {@link WAFInternalErrorException} (server fault)
75
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
76
+ * problem. Retry your request. </p>
77
+ *
78
+ * @throws {@link WAFInvalidOperationException} (client fault)
79
+ * <p>The operation isn't valid. </p>
80
+ *
81
+ * @throws {@link WAFInvalidParameterException} (client fault)
82
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
83
+ * example: </p>
84
+ * <ul>
85
+ * <li>
86
+ * <p>You specified a parameter name or value that isn't valid.</p>
87
+ * </li>
88
+ * <li>
89
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
90
+ * can’t be nested. </p>
91
+ * </li>
92
+ * <li>
93
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
94
+ * isn't among the types available at <a>DefaultAction</a>.</p>
95
+ * </li>
96
+ * <li>
97
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
98
+ * with which a web ACL can't be associated.</p>
99
+ * </li>
100
+ * </ul>
101
+ *
102
+ * @throws {@link WAFLimitsExceededException} (client fault)
103
+ * <p>WAF couldn’t perform the operation because you exceeded your resource limit. For
104
+ * example, the maximum number of <code>WebACL</code> objects that you can create for an Amazon Web Services
105
+ * account. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/limits.html">WAF quotas</a> in the
106
+ * <i>WAF Developer Guide</i>.</p>
107
+ *
108
+ * @throws {@link WAFLogDestinationPermissionIssueException} (client fault)
109
+ * <p>The operation failed because you don't have the permissions that your logging
110
+ * configuration requires. For information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/logging.html">Logging web ACL traffic information</a>
111
+ * in the <i>WAF Developer Guide</i>.</p>
112
+ *
113
+ * @throws {@link WAFNonexistentItemException} (client fault)
114
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
115
+ * If you've just created a resource that you're using in this operation, you might
116
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
117
+ * for changes to propagate. </p>
118
+ *
119
+ * @throws {@link WAFOptimisticLockException} (client fault)
120
+ * <p>WAF couldn’t save your changes because you tried to update or delete a resource
121
+ * that has changed since you last retrieved it. Get the resource again, make any changes you
122
+ * need to make to the new copy, and retry your operation. </p>
123
+ *
124
+ * @throws {@link WAFServiceLinkedRoleErrorException} (client fault)
125
+ * <p>WAF is not able to access the service linked role. This can be caused by a
126
+ * previous <code>PutLoggingConfiguration</code> request, which can lock the service linked
127
+ * role for about 20 seconds. Please try your request again. The service linked role can also
128
+ * be locked by a previous <code>DeleteServiceLinkedRole</code> request, which can lock the
129
+ * role for 15 minutes or more. If you recently made a call to
130
+ * <code>DeleteServiceLinkedRole</code>, wait at least 15 minutes and try the request
131
+ * again. If you receive this same exception again, you will have to wait additional time
132
+ * until the role is unlocked.</p>
133
+ *
134
+ *
74
135
  */
75
136
  export declare class PutLoggingConfigurationCommand extends $Command<PutLoggingConfigurationCommandInput, PutLoggingConfigurationCommandOutput, WAFV2ClientResolvedConfig> {
76
137
  readonly input: PutLoggingConfigurationCommandInput;