@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
@@ -29,6 +29,57 @@ export interface DeleteRegexPatternSetCommandOutput extends DeleteRegexPatternSe
29
29
  * @see {@link DeleteRegexPatternSetCommandOutput} for command's `response` shape.
30
30
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
31
31
  *
32
+ * @throws {@link WAFAssociatedItemException} (client fault)
33
+ * <p>WAF couldn’t perform the operation because your resource is being used by another
34
+ * resource or it’s associated with another resource. </p>
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
+ * @throws {@link WAFNonexistentItemException} (client fault)
65
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
66
+ * If you've just created a resource that you're using in this operation, you might
67
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
68
+ * for changes to propagate. </p>
69
+ *
70
+ * @throws {@link WAFOptimisticLockException} (client fault)
71
+ * <p>WAF couldn’t save your changes because you tried to update or delete a resource
72
+ * that has changed since you last retrieved it. Get the resource again, make any changes you
73
+ * need to make to the new copy, and retry your operation. </p>
74
+ *
75
+ * @throws {@link WAFTagOperationException} (client fault)
76
+ * <p>An error occurred during the tagging operation. Retry your request.</p>
77
+ *
78
+ * @throws {@link WAFTagOperationInternalErrorException} (server fault)
79
+ * <p>WAF couldn’t perform your tagging operation because of an internal error. Retry
80
+ * your request.</p>
81
+ *
82
+ *
32
83
  */
33
84
  export declare class DeleteRegexPatternSetCommand extends $Command<DeleteRegexPatternSetCommandInput, DeleteRegexPatternSetCommandOutput, WAFV2ClientResolvedConfig> {
34
85
  readonly input: DeleteRegexPatternSetCommandInput;
@@ -29,6 +29,57 @@ export interface DeleteRuleGroupCommandOutput extends DeleteRuleGroupResponse, _
29
29
  * @see {@link DeleteRuleGroupCommandOutput} for command's `response` shape.
30
30
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
31
31
  *
32
+ * @throws {@link WAFAssociatedItemException} (client fault)
33
+ * <p>WAF couldn’t perform the operation because your resource is being used by another
34
+ * resource or it’s associated with another resource. </p>
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
+ * @throws {@link WAFNonexistentItemException} (client fault)
65
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
66
+ * If you've just created a resource that you're using in this operation, you might
67
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
68
+ * for changes to propagate. </p>
69
+ *
70
+ * @throws {@link WAFOptimisticLockException} (client fault)
71
+ * <p>WAF couldn’t save your changes because you tried to update or delete a resource
72
+ * that has changed since you last retrieved it. Get the resource again, make any changes you
73
+ * need to make to the new copy, and retry your operation. </p>
74
+ *
75
+ * @throws {@link WAFTagOperationException} (client fault)
76
+ * <p>An error occurred during the tagging operation. Retry your request.</p>
77
+ *
78
+ * @throws {@link WAFTagOperationInternalErrorException} (server fault)
79
+ * <p>WAF couldn’t perform your tagging operation because of an internal error. Retry
80
+ * your request.</p>
81
+ *
82
+ *
32
83
  */
33
84
  export declare class DeleteRuleGroupCommand extends $Command<DeleteRuleGroupCommandInput, DeleteRuleGroupCommandOutput, WAFV2ClientResolvedConfig> {
34
85
  readonly input: DeleteRuleGroupCommandInput;
@@ -61,6 +61,57 @@ export interface DeleteWebACLCommandOutput extends DeleteWebACLResponse, __Metad
61
61
  * @see {@link DeleteWebACLCommandOutput} for command's `response` shape.
62
62
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
63
63
  *
64
+ * @throws {@link WAFAssociatedItemException} (client fault)
65
+ * <p>WAF couldn’t perform the operation because your resource is being used by another
66
+ * resource or it’s associated with another resource. </p>
67
+ *
68
+ * @throws {@link WAFInternalErrorException} (server fault)
69
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
70
+ * problem. Retry your request. </p>
71
+ *
72
+ * @throws {@link WAFInvalidOperationException} (client fault)
73
+ * <p>The operation isn't valid. </p>
74
+ *
75
+ * @throws {@link WAFInvalidParameterException} (client fault)
76
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
77
+ * example: </p>
78
+ * <ul>
79
+ * <li>
80
+ * <p>You specified a parameter name or value that isn't valid.</p>
81
+ * </li>
82
+ * <li>
83
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
84
+ * can’t be nested. </p>
85
+ * </li>
86
+ * <li>
87
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
88
+ * isn't among the types available at <a>DefaultAction</a>.</p>
89
+ * </li>
90
+ * <li>
91
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
92
+ * with which a web ACL can't be associated.</p>
93
+ * </li>
94
+ * </ul>
95
+ *
96
+ * @throws {@link WAFNonexistentItemException} (client fault)
97
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
98
+ * If you've just created a resource that you're using in this operation, you might
99
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
100
+ * for changes to propagate. </p>
101
+ *
102
+ * @throws {@link WAFOptimisticLockException} (client fault)
103
+ * <p>WAF couldn’t save your changes because you tried to update or delete a resource
104
+ * that has changed since you last retrieved it. Get the resource again, make any changes you
105
+ * need to make to the new copy, and retry your operation. </p>
106
+ *
107
+ * @throws {@link WAFTagOperationException} (client fault)
108
+ * <p>An error occurred during the tagging operation. Retry your request.</p>
109
+ *
110
+ * @throws {@link WAFTagOperationInternalErrorException} (server fault)
111
+ * <p>WAF couldn’t perform your tagging operation because of an internal error. Retry
112
+ * your request.</p>
113
+ *
114
+ *
64
115
  */
65
116
  export declare class DeleteWebACLCommand extends $Command<DeleteWebACLCommandInput, DeleteWebACLCommandOutput, WAFV2ClientResolvedConfig> {
66
117
  readonly input: DeleteWebACLCommandInput;
@@ -30,6 +30,50 @@ export interface DescribeManagedRuleGroupCommandOutput extends DescribeManagedRu
30
30
  * @see {@link DescribeManagedRuleGroupCommandOutput} for command's `response` shape.
31
31
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
32
32
  *
33
+ * @throws {@link WAFExpiredManagedRuleGroupVersionException} (client fault)
34
+ * <p>The operation failed because the specified version for the managed rule group has
35
+ * expired. You can retrieve the available versions for the managed rule group by calling
36
+ * <a>ListAvailableManagedRuleGroupVersions</a>.</p>
37
+ *
38
+ * @throws {@link WAFInternalErrorException} (server fault)
39
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
40
+ * problem. Retry your request. </p>
41
+ *
42
+ * @throws {@link WAFInvalidOperationException} (client fault)
43
+ * <p>The operation isn't valid. </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 WAFInvalidResourceException} (client fault)
67
+ * <p>WAF couldn’t perform the operation because the resource that you requested isn’t
68
+ * valid. Check the resource, and try again.</p>
69
+ *
70
+ * @throws {@link WAFNonexistentItemException} (client fault)
71
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
72
+ * If you've just created a resource that you're using in this operation, you might
73
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
74
+ * for changes to propagate. </p>
75
+ *
76
+ *
33
77
  */
34
78
  export declare class DescribeManagedRuleGroupCommand extends $Command<DescribeManagedRuleGroupCommandInput, DescribeManagedRuleGroupCommandOutput, WAFV2ClientResolvedConfig> {
35
79
  readonly input: DescribeManagedRuleGroupCommandInput;
@@ -33,6 +33,41 @@ export interface DisassociateWebACLCommandOutput extends DisassociateWebACLRespo
33
33
  * @see {@link DisassociateWebACLCommandOutput} 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
+ * @throws {@link WAFNonexistentItemException} (client fault)
65
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
66
+ * If you've just created a resource that you're using in this operation, you might
67
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
68
+ * for changes to propagate. </p>
69
+ *
70
+ *
36
71
  */
37
72
  export declare class DisassociateWebACLCommand extends $Command<DisassociateWebACLCommandInput, DisassociateWebACLCommandOutput, WAFV2ClientResolvedConfig> {
38
73
  readonly input: DisassociateWebACLCommandInput;
@@ -31,6 +31,41 @@ export interface GenerateMobileSdkReleaseUrlCommandOutput extends GenerateMobile
31
31
  * @see {@link GenerateMobileSdkReleaseUrlCommandOutput} 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 GenerateMobileSdkReleaseUrlCommand extends $Command<GenerateMobileSdkReleaseUrlCommandInput, GenerateMobileSdkReleaseUrlCommandOutput, WAFV2ClientResolvedConfig> {
36
71
  readonly input: GenerateMobileSdkReleaseUrlCommandInput;
@@ -29,6 +29,41 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare
29
29
  * @see {@link GetIPSetCommandOutput} 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 GetIPSetCommand extends $Command<GetIPSetCommandInput, GetIPSetCommandOutput, WAFV2ClientResolvedConfig> {
34
69
  readonly input: GetIPSetCommandInput;
@@ -29,6 +29,41 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
29
29
  * @see {@link GetLoggingConfigurationCommandOutput} 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 GetLoggingConfigurationCommand extends $Command<GetLoggingConfigurationCommandInput, GetLoggingConfigurationCommandOutput, WAFV2ClientResolvedConfig> {
34
69
  readonly input: GetLoggingConfigurationCommandInput;
@@ -33,6 +33,41 @@ export interface GetManagedRuleSetCommandOutput extends GetManagedRuleSetRespons
33
33
  * @see {@link GetManagedRuleSetCommandOutput} 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
+ * @throws {@link WAFNonexistentItemException} (client fault)
65
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
66
+ * If you've just created a resource that you're using in this operation, you might
67
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
68
+ * for changes to propagate. </p>
69
+ *
70
+ *
36
71
  */
37
72
  export declare class GetManagedRuleSetCommand extends $Command<GetManagedRuleSetCommandInput, GetManagedRuleSetCommandOutput, WAFV2ClientResolvedConfig> {
38
73
  readonly input: GetManagedRuleSetCommandInput;
@@ -32,6 +32,41 @@ export interface GetMobileSdkReleaseCommandOutput extends GetMobileSdkReleaseRes
32
32
  * @see {@link GetMobileSdkReleaseCommandOutput} 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
+ * @throws {@link WAFNonexistentItemException} (client fault)
64
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
65
+ * If you've just created a resource that you're using in this operation, you might
66
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
67
+ * for changes to propagate. </p>
68
+ *
69
+ *
35
70
  */
36
71
  export declare class GetMobileSdkReleaseCommand extends $Command<GetMobileSdkReleaseCommandInput, GetMobileSdkReleaseCommandOutput, WAFV2ClientResolvedConfig> {
37
72
  readonly input: GetMobileSdkReleaseCommandInput;
@@ -30,6 +30,38 @@ export interface GetPermissionPolicyCommandOutput extends GetPermissionPolicyRes
30
30
  * @see {@link GetPermissionPolicyCommandOutput} 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 WAFInvalidParameterException} (client fault)
38
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
39
+ * example: </p>
40
+ * <ul>
41
+ * <li>
42
+ * <p>You specified a parameter name or value that isn't valid.</p>
43
+ * </li>
44
+ * <li>
45
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
46
+ * can’t be nested. </p>
47
+ * </li>
48
+ * <li>
49
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
50
+ * isn't among the types available at <a>DefaultAction</a>.</p>
51
+ * </li>
52
+ * <li>
53
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
54
+ * with which a web ACL can't be associated.</p>
55
+ * </li>
56
+ * </ul>
57
+ *
58
+ * @throws {@link WAFNonexistentItemException} (client fault)
59
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
60
+ * If you've just created a resource that you're using in this operation, you might
61
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
62
+ * for changes to propagate. </p>
63
+ *
64
+ *
33
65
  */
34
66
  export declare class GetPermissionPolicyCommand extends $Command<GetPermissionPolicyCommandInput, GetPermissionPolicyCommandOutput, WAFV2ClientResolvedConfig> {
35
67
  readonly input: GetPermissionPolicyCommandInput;
@@ -42,6 +42,41 @@ export interface GetRateBasedStatementManagedKeysCommandOutput extends GetRateBa
42
42
  * @see {@link GetRateBasedStatementManagedKeysCommandOutput} for command's `response` shape.
43
43
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
44
44
  *
45
+ * @throws {@link WAFInternalErrorException} (server fault)
46
+ * <p>Your request is valid, but WAF couldn’t perform the operation because of a system
47
+ * problem. Retry your request. </p>
48
+ *
49
+ * @throws {@link WAFInvalidOperationException} (client fault)
50
+ * <p>The operation isn't valid. </p>
51
+ *
52
+ * @throws {@link WAFInvalidParameterException} (client fault)
53
+ * <p>The operation failed because WAF didn't recognize a parameter in the request. For
54
+ * example: </p>
55
+ * <ul>
56
+ * <li>
57
+ * <p>You specified a parameter name or value that isn't valid.</p>
58
+ * </li>
59
+ * <li>
60
+ * <p>Your nested statement isn't valid. You might have tried to nest a statement that
61
+ * can’t be nested. </p>
62
+ * </li>
63
+ * <li>
64
+ * <p>You tried to update a <code>WebACL</code> with a <code>DefaultAction</code> that
65
+ * isn't among the types available at <a>DefaultAction</a>.</p>
66
+ * </li>
67
+ * <li>
68
+ * <p>Your request references an ARN that is malformed, or corresponds to a resource
69
+ * with which a web ACL can't be associated.</p>
70
+ * </li>
71
+ * </ul>
72
+ *
73
+ * @throws {@link WAFNonexistentItemException} (client fault)
74
+ * <p>WAF couldn’t perform the operation because your resource doesn't exist.
75
+ * If you've just created a resource that you're using in this operation, you might
76
+ * just need to wait a few minutes. It can take from a few seconds to a number of minutes
77
+ * for changes to propagate. </p>
78
+ *
79
+ *
45
80
  */
46
81
  export declare class GetRateBasedStatementManagedKeysCommand extends $Command<GetRateBasedStatementManagedKeysCommandInput, GetRateBasedStatementManagedKeysCommandOutput, WAFV2ClientResolvedConfig> {
47
82
  readonly input: GetRateBasedStatementManagedKeysCommandInput;
@@ -29,6 +29,41 @@ export interface GetRegexPatternSetCommandOutput extends GetRegexPatternSetRespo
29
29
  * @see {@link GetRegexPatternSetCommandOutput} 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 GetRegexPatternSetCommand extends $Command<GetRegexPatternSetCommandInput, GetRegexPatternSetCommandOutput, WAFV2ClientResolvedConfig> {
34
69
  readonly input: GetRegexPatternSetCommandInput;
@@ -29,6 +29,41 @@ export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __Metad
29
29
  * @see {@link GetRuleGroupCommandOutput} 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 GetRuleGroupCommand extends $Command<GetRuleGroupCommandInput, GetRuleGroupCommandOutput, WAFV2ClientResolvedConfig> {
34
69
  readonly input: GetRuleGroupCommandInput;