@aws-sdk/client-wafv2 3.325.0 → 3.326.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 (52) hide show
  1. package/dist-types/commands/AssociateWebACLCommand.d.ts +4 -0
  2. package/dist-types/commands/CheckCapacityCommand.d.ts +6 -0
  3. package/dist-types/commands/CreateAPIKeyCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateIPSetCommand.d.ts +12 -0
  5. package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +12 -0
  6. package/dist-types/commands/CreateRuleGroupCommand.d.ts +12 -0
  7. package/dist-types/commands/CreateWebACLCommand.d.ts +12 -0
  8. package/dist-types/commands/DeleteFirewallManagerRuleGroupsCommand.d.ts +6 -0
  9. package/dist-types/commands/DeleteIPSetCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +4 -0
  11. package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteRuleGroupCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteWebACLCommand.d.ts +4 -0
  15. package/dist-types/commands/DescribeManagedRuleGroupCommand.d.ts +78 -0
  16. package/dist-types/commands/DisassociateWebACLCommand.d.ts +4 -0
  17. package/dist-types/commands/GenerateMobileSdkReleaseUrlCommand.d.ts +6 -0
  18. package/dist-types/commands/GetDecryptedAPIKeyCommand.d.ts +9 -0
  19. package/dist-types/commands/GetIPSetCommand.d.ts +16 -0
  20. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +85 -0
  21. package/dist-types/commands/GetManagedRuleSetCommand.d.ts +24 -0
  22. package/dist-types/commands/GetMobileSdkReleaseCommand.d.ts +16 -0
  23. package/dist-types/commands/GetPermissionPolicyCommand.d.ts +6 -0
  24. package/dist-types/commands/GetRateBasedStatementManagedKeysCommand.d.ts +17 -0
  25. package/dist-types/commands/GetRegexPatternSetCommand.d.ts +17 -0
  26. package/dist-types/commands/GetRuleGroupCommand.d.ts +772 -0
  27. package/dist-types/commands/GetSampledRequestsCommand.d.ts +54 -0
  28. package/dist-types/commands/GetWebACLCommand.d.ts +951 -0
  29. package/dist-types/commands/GetWebACLForResourceCommand.d.ts +949 -0
  30. package/dist-types/commands/ListAPIKeysCommand.d.ts +17 -0
  31. package/dist-types/commands/ListAvailableManagedRuleGroupVersionsCommand.d.ts +13 -0
  32. package/dist-types/commands/ListAvailableManagedRuleGroupsCommand.d.ts +14 -0
  33. package/dist-types/commands/ListIPSetsCommand.d.ts +15 -0
  34. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +88 -0
  35. package/dist-types/commands/ListManagedRuleSetsCommand.d.ts +16 -0
  36. package/dist-types/commands/ListMobileSdkReleasesCommand.d.ts +12 -0
  37. package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +15 -0
  38. package/dist-types/commands/ListResourcesForWebACLCommand.d.ts +8 -0
  39. package/dist-types/commands/ListRuleGroupsCommand.d.ts +15 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +15 -0
  41. package/dist-types/commands/ListWebACLsCommand.d.ts +15 -0
  42. package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +85 -0
  43. package/dist-types/commands/PutManagedRuleSetVersionsCommand.d.ts +6 -0
  44. package/dist-types/commands/PutPermissionPolicyCommand.d.ts +4 -0
  45. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  46. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  47. package/dist-types/commands/UpdateIPSetCommand.d.ts +6 -0
  48. package/dist-types/commands/UpdateManagedRuleSetVersionExpiryDateCommand.d.ts +8 -0
  49. package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +6 -0
  50. package/dist-types/commands/UpdateRuleGroupCommand.d.ts +6 -0
  51. package/dist-types/commands/UpdateWebACLCommand.d.ts +6 -0
  52. package/package.json +3 -3
@@ -47,6 +47,58 @@ export interface GetSampledRequestsCommandOutput extends GetSampledRequestsRespo
47
47
  * };
48
48
  * const command = new GetSampledRequestsCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // GetSampledRequestsResponse
51
+ * // SampledRequests: [ // SampledHTTPRequests
52
+ * // { // SampledHTTPRequest
53
+ * // Request: { // HTTPRequest
54
+ * // ClientIP: "STRING_VALUE",
55
+ * // Country: "STRING_VALUE",
56
+ * // URI: "STRING_VALUE",
57
+ * // Method: "STRING_VALUE",
58
+ * // HTTPVersion: "STRING_VALUE",
59
+ * // Headers: [ // HTTPHeaders
60
+ * // { // HTTPHeader
61
+ * // Name: "STRING_VALUE",
62
+ * // Value: "STRING_VALUE",
63
+ * // },
64
+ * // ],
65
+ * // },
66
+ * // Weight: Number("long"), // required
67
+ * // Timestamp: new Date("TIMESTAMP"),
68
+ * // Action: "STRING_VALUE",
69
+ * // RuleNameWithinRuleGroup: "STRING_VALUE",
70
+ * // RequestHeadersInserted: [
71
+ * // {
72
+ * // Name: "STRING_VALUE",
73
+ * // Value: "STRING_VALUE",
74
+ * // },
75
+ * // ],
76
+ * // ResponseCodeSent: Number("int"),
77
+ * // Labels: [ // Labels
78
+ * // { // Label
79
+ * // Name: "STRING_VALUE", // required
80
+ * // },
81
+ * // ],
82
+ * // CaptchaResponse: { // CaptchaResponse
83
+ * // ResponseCode: Number("int"),
84
+ * // SolveTimestamp: Number("long"),
85
+ * // FailureReason: "TOKEN_MISSING" || "TOKEN_EXPIRED" || "TOKEN_INVALID" || "TOKEN_DOMAIN_MISMATCH",
86
+ * // },
87
+ * // ChallengeResponse: { // ChallengeResponse
88
+ * // ResponseCode: Number("int"),
89
+ * // SolveTimestamp: Number("long"),
90
+ * // FailureReason: "TOKEN_MISSING" || "TOKEN_EXPIRED" || "TOKEN_INVALID" || "TOKEN_DOMAIN_MISMATCH",
91
+ * // },
92
+ * // OverriddenAction: "STRING_VALUE",
93
+ * // },
94
+ * // ],
95
+ * // PopulationSize: Number("long"),
96
+ * // TimeWindow: { // TimeWindow
97
+ * // StartTime: new Date("TIMESTAMP"), // required
98
+ * // EndTime: new Date("TIMESTAMP"), // required
99
+ * // },
100
+ * // };
101
+ *
50
102
  * ```
51
103
  *
52
104
  * @param GetSampledRequestsCommandInput - {@link GetSampledRequestsCommandInput}
@@ -86,6 +138,8 @@ export interface GetSampledRequestsCommandOutput extends GetSampledRequestsRespo
86
138
  * just need to wait a few minutes. It can take from a few seconds to a number of minutes
87
139
  * for changes to propagate. </p>
88
140
  *
141
+ * @throws {@link WAFV2ServiceException}
142
+ * <p>Base exception class for all service exceptions from WAFV2 service.</p>
89
143
  *
90
144
  */
91
145
  export declare class GetSampledRequestsCommand extends $Command<GetSampledRequestsCommandInput, GetSampledRequestsCommandOutput, WAFV2ClientResolvedConfig> {