@aws-sdk/client-wafv2 3.295.0 → 3.297.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.
- package/dist-types/WAFV2.d.ts +49 -0
- package/dist-types/WAFV2Client.d.ts +24 -4
- package/dist-types/commands/AssociateWebACLCommand.d.ts +16 -0
- package/dist-types/commands/CheckCapacityCommand.d.ts +16 -0
- package/dist-types/commands/CreateIPSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFirewallManagerRuleGroupsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteIPSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWebACLCommand.d.ts +16 -0
- package/dist-types/commands/DescribeManagedRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateWebACLCommand.d.ts +16 -0
- package/dist-types/commands/GenerateMobileSdkReleaseUrlCommand.d.ts +16 -0
- package/dist-types/commands/GetIPSetCommand.d.ts +16 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetManagedRuleSetCommand.d.ts +16 -0
- package/dist-types/commands/GetMobileSdkReleaseCommand.d.ts +16 -0
- package/dist-types/commands/GetPermissionPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetRateBasedStatementManagedKeysCommand.d.ts +16 -0
- package/dist-types/commands/GetRegexPatternSetCommand.d.ts +16 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetSampledRequestsCommand.d.ts +16 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +16 -0
- package/dist-types/commands/GetWebACLForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListAvailableManagedRuleGroupVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListAvailableManagedRuleGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListIPSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListManagedRuleSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListMobileSdkReleasesCommand.d.ts +16 -0
- package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourcesForWebACLCommand.d.ts +16 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWebACLsCommand.d.ts +16 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/PutManagedRuleSetVersionsCommand.d.ts +16 -0
- package/dist-types/commands/PutPermissionPolicyCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateIPSetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateManagedRuleSetVersionExpiryDateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +16 -0
- package/dist-types/models/WAFV2ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +512 -29
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAvailableManagedRuleGroupVersionsRequest, ListAvailableManagedRuleGroupVersionsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAvailableManagedRuleGroupVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAvailableManagedRuleGroupVersionsCommandInput extends ListAvailableManagedRuleGroupVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAvailableManagedRuleGroupVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAvailableManagedRuleGroupVersionsCommandOutput extends ListAvailableManagedRuleGroupVersionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of the available versions for the specified managed rule group. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAvailableManagedRuleGroupVersionsCommandOutput extends List
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAvailableManagedRuleGroupVersionsCommandInput - {@link ListAvailableManagedRuleGroupVersionsCommandInput}
|
|
34
|
+
* @returns {@link ListAvailableManagedRuleGroupVersionsCommandOutput}
|
|
28
35
|
* @see {@link ListAvailableManagedRuleGroupVersionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAvailableManagedRuleGroupVersionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface ListAvailableManagedRuleGroupVersionsCommandOutput extends List
|
|
|
68
75
|
export declare class ListAvailableManagedRuleGroupVersionsCommand extends $Command<ListAvailableManagedRuleGroupVersionsCommandInput, ListAvailableManagedRuleGroupVersionsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
69
76
|
readonly input: ListAvailableManagedRuleGroupVersionsCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: ListAvailableManagedRuleGroupVersionsCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAvailableManagedRuleGroupVersionsCommandInput, ListAvailableManagedRuleGroupVersionsCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAvailableManagedRuleGroupsRequest, ListAvailableManagedRuleGroupsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAvailableManagedRuleGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAvailableManagedRuleGroupsCommandInput extends ListAvailableManagedRuleGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAvailableManagedRuleGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAvailableManagedRuleGroupsCommandOutput extends ListAvailableManagedRuleGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an array of managed rule groups that are available for you to use. This list
|
|
18
23
|
* includes all Amazon Web Services Managed Rules rule groups and all of the Amazon Web Services Marketplace managed rule groups that you're
|
|
19
24
|
* subscribed to.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListAvailableManagedRuleGroupsCommandOutput extends ListAvailab
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListAvailableManagedRuleGroupsCommandInput - {@link ListAvailableManagedRuleGroupsCommandInput}
|
|
36
|
+
* @returns {@link ListAvailableManagedRuleGroupsCommandOutput}
|
|
30
37
|
* @see {@link ListAvailableManagedRuleGroupsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListAvailableManagedRuleGroupsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface ListAvailableManagedRuleGroupsCommandOutput extends ListAvailab
|
|
|
64
71
|
export declare class ListAvailableManagedRuleGroupsCommand extends $Command<ListAvailableManagedRuleGroupsCommandInput, ListAvailableManagedRuleGroupsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
65
72
|
readonly input: ListAvailableManagedRuleGroupsCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: ListAvailableManagedRuleGroupsCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAvailableManagedRuleGroupsCommandInput, ListAvailableManagedRuleGroupsCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListIPSetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListIPSetsCommandInput extends ListIPSetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListIPSetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an array of <a>IPSetSummary</a> objects for the IP sets that you
|
|
18
23
|
* manage.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListIPSetsCommandInput - {@link ListIPSetsCommandInput}
|
|
35
|
+
* @returns {@link ListIPSetsCommandOutput}
|
|
29
36
|
* @see {@link ListIPSetsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListIPSetsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface ListIPSetsCommandOutput extends ListIPSetsResponse, __MetadataB
|
|
|
63
70
|
export declare class ListIPSetsCommand extends $Command<ListIPSetsCommandInput, ListIPSetsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
64
71
|
readonly input: ListIPSetsCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: ListIPSetsCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIPSetsCommandInput, ListIPSetsCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLoggingConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLoggingConfigurationsCommandInput extends ListLoggingConfigurationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLoggingConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an array of your <a>LoggingConfiguration</a> objects.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLoggingConfigurationsCommandInput - {@link ListLoggingConfigurationsCommandInput}
|
|
34
|
+
* @returns {@link ListLoggingConfigurationsCommandOutput}
|
|
28
35
|
* @see {@link ListLoggingConfigurationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLoggingConfigurationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
|
|
|
62
69
|
export declare class ListLoggingConfigurationsCommand extends $Command<ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
63
70
|
readonly input: ListLoggingConfigurationsCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: ListLoggingConfigurationsCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListManagedRuleSetsRequest, ListManagedRuleSetsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListManagedRuleSetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListManagedRuleSetsCommandInput extends ListManagedRuleSetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListManagedRuleSetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListManagedRuleSetsCommandOutput extends ListManagedRuleSetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the managed rule sets that you own. </p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers. </p>
|
|
@@ -29,6 +34,8 @@ export interface ListManagedRuleSetsCommandOutput extends ListManagedRuleSetsRes
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param ListManagedRuleSetsCommandInput - {@link ListManagedRuleSetsCommandInput}
|
|
38
|
+
* @returns {@link ListManagedRuleSetsCommandOutput}
|
|
32
39
|
* @see {@link ListManagedRuleSetsCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link ListManagedRuleSetsCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface ListManagedRuleSetsCommandOutput extends ListManagedRuleSetsRes
|
|
|
66
73
|
export declare class ListManagedRuleSetsCommand extends $Command<ListManagedRuleSetsCommandInput, ListManagedRuleSetsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
67
74
|
readonly input: ListManagedRuleSetsCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: ListManagedRuleSetsCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListManagedRuleSetsCommandInput, ListManagedRuleSetsCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListMobileSdkReleasesRequest, ListMobileSdkReleasesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListMobileSdkReleasesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListMobileSdkReleasesCommandInput extends ListMobileSdkReleasesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListMobileSdkReleasesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListMobileSdkReleasesCommandOutput extends ListMobileSdkReleasesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of the available releases for the mobile SDK and the specified device
|
|
18
23
|
* platform. </p>
|
|
19
24
|
* <p>The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see
|
|
@@ -28,6 +33,8 @@ export interface ListMobileSdkReleasesCommandOutput extends ListMobileSdkRelease
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListMobileSdkReleasesCommandInput - {@link ListMobileSdkReleasesCommandInput}
|
|
37
|
+
* @returns {@link ListMobileSdkReleasesCommandOutput}
|
|
31
38
|
* @see {@link ListMobileSdkReleasesCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListMobileSdkReleasesCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface ListMobileSdkReleasesCommandOutput extends ListMobileSdkRelease
|
|
|
65
72
|
export declare class ListMobileSdkReleasesCommand extends $Command<ListMobileSdkReleasesCommandInput, ListMobileSdkReleasesCommandOutput, WAFV2ClientResolvedConfig> {
|
|
66
73
|
readonly input: ListMobileSdkReleasesCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: ListMobileSdkReleasesCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMobileSdkReleasesCommandInput, ListMobileSdkReleasesCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListRegexPatternSetsRequest, ListRegexPatternSetsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRegexPatternSetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRegexPatternSetsCommandInput extends ListRegexPatternSetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRegexPatternSetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRegexPatternSetsCommandOutput extends ListRegexPatternSetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an array of <a>RegexPatternSetSummary</a> objects for the regex
|
|
18
23
|
* pattern sets that you manage.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListRegexPatternSetsCommandOutput extends ListRegexPatternSetsR
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListRegexPatternSetsCommandInput - {@link ListRegexPatternSetsCommandInput}
|
|
35
|
+
* @returns {@link ListRegexPatternSetsCommandOutput}
|
|
29
36
|
* @see {@link ListRegexPatternSetsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListRegexPatternSetsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface ListRegexPatternSetsCommandOutput extends ListRegexPatternSetsR
|
|
|
63
70
|
export declare class ListRegexPatternSetsCommand extends $Command<ListRegexPatternSetsCommandInput, ListRegexPatternSetsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
64
71
|
readonly input: ListRegexPatternSetsCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: ListRegexPatternSetsCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRegexPatternSetsCommandInput, ListRegexPatternSetsCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListResourcesForWebACLRequest, ListResourcesForWebACLResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListResourcesForWebACLCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListResourcesForWebACLCommandInput extends ListResourcesForWebACLRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListResourcesForWebACLCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListResourcesForWebACLCommandOutput extends ListResourcesForWebACLResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an array of the Amazon Resource Names (ARNs) for the regional resources that
|
|
18
23
|
* are associated with the specified web ACL. If you want the list of Amazon CloudFront resources, use
|
|
19
24
|
* the CloudFront call <code>ListDistributionsByWebACLId</code>. </p>
|
|
@@ -27,6 +32,8 @@ export interface ListResourcesForWebACLCommandOutput extends ListResourcesForWeb
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListResourcesForWebACLCommandInput - {@link ListResourcesForWebACLCommandInput}
|
|
36
|
+
* @returns {@link ListResourcesForWebACLCommandOutput}
|
|
30
37
|
* @see {@link ListResourcesForWebACLCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListResourcesForWebACLCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -70,11 +77,20 @@ export interface ListResourcesForWebACLCommandOutput extends ListResourcesForWeb
|
|
|
70
77
|
export declare class ListResourcesForWebACLCommand extends $Command<ListResourcesForWebACLCommandInput, ListResourcesForWebACLCommandOutput, WAFV2ClientResolvedConfig> {
|
|
71
78
|
readonly input: ListResourcesForWebACLCommandInput;
|
|
72
79
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
73
83
|
constructor(input: ListResourcesForWebACLCommandInput);
|
|
74
84
|
/**
|
|
75
85
|
* @internal
|
|
76
86
|
*/
|
|
77
87
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourcesForWebACLCommandInput, ListResourcesForWebACLCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
78
91
|
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
79
95
|
private deserialize;
|
|
80
96
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRuleGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRuleGroupsCommandInput extends ListRuleGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRuleGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRuleGroupsCommandOutput extends ListRuleGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an array of <a>RuleGroupSummary</a> objects for the rule groups
|
|
18
23
|
* that you manage. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListRuleGroupsCommandOutput extends ListRuleGroupsResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListRuleGroupsCommandInput - {@link ListRuleGroupsCommandInput}
|
|
35
|
+
* @returns {@link ListRuleGroupsCommandOutput}
|
|
29
36
|
* @see {@link ListRuleGroupsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListRuleGroupsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface ListRuleGroupsCommandOutput extends ListRuleGroupsResponse, __M
|
|
|
63
70
|
export declare class ListRuleGroupsCommand extends $Command<ListRuleGroupsCommandInput, ListRuleGroupsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
64
71
|
readonly input: ListRuleGroupsCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: ListRuleGroupsCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRuleGroupsCommandInput, ListRuleGroupsCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the <a>TagInfoForResource</a> for the specified resource. Tags are
|
|
18
23
|
* key:value pairs that you can use to categorize and manage your resources, for purposes like
|
|
19
24
|
* billing. For example, you might set the tag key to "customer" and the value to the customer
|
|
@@ -32,6 +37,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
41
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
35
42
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -82,11 +89,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
82
89
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WAFV2ClientResolvedConfig> {
|
|
83
90
|
readonly input: ListTagsForResourceCommandInput;
|
|
84
91
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
85
95
|
constructor(input: ListTagsForResourceCommandInput);
|
|
86
96
|
/**
|
|
87
97
|
* @internal
|
|
88
98
|
*/
|
|
89
99
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
90
103
|
private serialize;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
91
107
|
private deserialize;
|
|
92
108
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListWebACLsRequest, ListWebACLsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListWebACLsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListWebACLsCommandInput extends ListWebACLsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListWebACLsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListWebACLsCommandOutput extends ListWebACLsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an array of <a>WebACLSummary</a> objects for the web ACLs that you
|
|
18
23
|
* manage.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListWebACLsCommandOutput extends ListWebACLsResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListWebACLsCommandInput - {@link ListWebACLsCommandInput}
|
|
35
|
+
* @returns {@link ListWebACLsCommandOutput}
|
|
29
36
|
* @see {@link ListWebACLsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListWebACLsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface ListWebACLsCommandOutput extends ListWebACLsResponse, __Metadat
|
|
|
63
70
|
export declare class ListWebACLsCommand extends $Command<ListWebACLsCommandInput, ListWebACLsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
64
71
|
readonly input: ListWebACLsCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: ListWebACLsCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWebACLsCommandInput, ListWebACLsCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutLoggingConfigurationRequest, PutLoggingConfigurationResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutLoggingConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutLoggingConfigurationCommandInput extends PutLoggingConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutLoggingConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutLoggingConfigurationCommandOutput extends PutLoggingConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Enables the specified <a>LoggingConfiguration</a>, to start logging from a
|
|
18
23
|
* web ACL, according to the configuration provided. </p>
|
|
19
24
|
* <note>
|
|
@@ -67,6 +72,8 @@ export interface PutLoggingConfigurationCommandOutput extends PutLoggingConfigur
|
|
|
67
72
|
* const response = await client.send(command);
|
|
68
73
|
* ```
|
|
69
74
|
*
|
|
75
|
+
* @param PutLoggingConfigurationCommandInput - {@link PutLoggingConfigurationCommandInput}
|
|
76
|
+
* @returns {@link PutLoggingConfigurationCommandOutput}
|
|
70
77
|
* @see {@link PutLoggingConfigurationCommandInput} for command's `input` shape.
|
|
71
78
|
* @see {@link PutLoggingConfigurationCommandOutput} for command's `response` shape.
|
|
72
79
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -136,11 +143,20 @@ export interface PutLoggingConfigurationCommandOutput extends PutLoggingConfigur
|
|
|
136
143
|
export declare class PutLoggingConfigurationCommand extends $Command<PutLoggingConfigurationCommandInput, PutLoggingConfigurationCommandOutput, WAFV2ClientResolvedConfig> {
|
|
137
144
|
readonly input: PutLoggingConfigurationCommandInput;
|
|
138
145
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
139
149
|
constructor(input: PutLoggingConfigurationCommandInput);
|
|
140
150
|
/**
|
|
141
151
|
* @internal
|
|
142
152
|
*/
|
|
143
153
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutLoggingConfigurationCommandInput, PutLoggingConfigurationCommandOutput>;
|
|
154
|
+
/**
|
|
155
|
+
* @internal
|
|
156
|
+
*/
|
|
144
157
|
private serialize;
|
|
158
|
+
/**
|
|
159
|
+
* @internal
|
|
160
|
+
*/
|
|
145
161
|
private deserialize;
|
|
146
162
|
}
|