@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 { PutManagedRuleSetVersionsRequest, PutManagedRuleSetVersionsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutManagedRuleSetVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutManagedRuleSetVersionsCommandInput extends PutManagedRuleSetVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutManagedRuleSetVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutManagedRuleSetVersionsCommandOutput extends PutManagedRuleSetVersionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Defines the versions of your managed rule set that you are offering to the customers.
|
|
18
23
|
* Customers see your offerings as managed rule groups with versioning.</p>
|
|
19
24
|
* <note>
|
|
@@ -36,6 +41,8 @@ export interface PutManagedRuleSetVersionsCommandOutput extends PutManagedRuleSe
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param PutManagedRuleSetVersionsCommandInput - {@link PutManagedRuleSetVersionsCommandInput}
|
|
45
|
+
* @returns {@link PutManagedRuleSetVersionsCommandOutput}
|
|
39
46
|
* @see {@link PutManagedRuleSetVersionsCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link PutManagedRuleSetVersionsCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -84,11 +91,20 @@ export interface PutManagedRuleSetVersionsCommandOutput extends PutManagedRuleSe
|
|
|
84
91
|
export declare class PutManagedRuleSetVersionsCommand extends $Command<PutManagedRuleSetVersionsCommandInput, PutManagedRuleSetVersionsCommandOutput, WAFV2ClientResolvedConfig> {
|
|
85
92
|
readonly input: PutManagedRuleSetVersionsCommandInput;
|
|
86
93
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
87
97
|
constructor(input: PutManagedRuleSetVersionsCommandInput);
|
|
88
98
|
/**
|
|
89
99
|
* @internal
|
|
90
100
|
*/
|
|
91
101
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutManagedRuleSetVersionsCommandInput, PutManagedRuleSetVersionsCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
92
105
|
private serialize;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
93
109
|
private deserialize;
|
|
94
110
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutPermissionPolicyRequest, PutPermissionPolicyResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutPermissionPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutPermissionPolicyCommandInput extends PutPermissionPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutPermissionPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutPermissionPolicyCommandOutput extends PutPermissionPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Attaches an IAM policy to the specified resource. Use this to share a rule group across
|
|
18
23
|
* accounts.</p>
|
|
19
24
|
* <p>You must be the owner of the rule group to perform this operation.</p>
|
|
@@ -41,6 +46,8 @@ export interface PutPermissionPolicyCommandOutput extends PutPermissionPolicyRes
|
|
|
41
46
|
* const response = await client.send(command);
|
|
42
47
|
* ```
|
|
43
48
|
*
|
|
49
|
+
* @param PutPermissionPolicyCommandInput - {@link PutPermissionPolicyCommandInput}
|
|
50
|
+
* @returns {@link PutPermissionPolicyCommandOutput}
|
|
44
51
|
* @see {@link PutPermissionPolicyCommandInput} for command's `input` shape.
|
|
45
52
|
* @see {@link PutPermissionPolicyCommandOutput} for command's `response` shape.
|
|
46
53
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -107,11 +114,20 @@ export interface PutPermissionPolicyCommandOutput extends PutPermissionPolicyRes
|
|
|
107
114
|
export declare class PutPermissionPolicyCommand extends $Command<PutPermissionPolicyCommandInput, PutPermissionPolicyCommandOutput, WAFV2ClientResolvedConfig> {
|
|
108
115
|
readonly input: PutPermissionPolicyCommandInput;
|
|
109
116
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
110
120
|
constructor(input: PutPermissionPolicyCommandInput);
|
|
111
121
|
/**
|
|
112
122
|
* @internal
|
|
113
123
|
*/
|
|
114
124
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPermissionPolicyCommandInput, PutPermissionPolicyCommandOutput>;
|
|
125
|
+
/**
|
|
126
|
+
* @internal
|
|
127
|
+
*/
|
|
115
128
|
private serialize;
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
116
132
|
private deserialize;
|
|
117
133
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates tags with the specified Amazon Web Services resource. Tags are key:value pairs that you can
|
|
18
23
|
* use to categorize and manage your resources, for purposes like billing. For example, you
|
|
19
24
|
* might set the tag key to "customer" and the value to the customer name or ID. You can
|
|
@@ -32,6 +37,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
41
|
+
* @returns {@link TagResourceCommandOutput}
|
|
35
42
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -88,11 +95,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
88
95
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, WAFV2ClientResolvedConfig> {
|
|
89
96
|
readonly input: TagResourceCommandInput;
|
|
90
97
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
91
101
|
constructor(input: TagResourceCommandInput);
|
|
92
102
|
/**
|
|
93
103
|
* @internal
|
|
94
104
|
*/
|
|
95
105
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
96
109
|
private serialize;
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
97
113
|
private deserialize;
|
|
98
114
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates tags from an Amazon Web Services resource. Tags are key:value pairs that you can
|
|
18
23
|
* associate with Amazon Web Services resources. For example, the tag key might be "customer" and the tag
|
|
19
24
|
* value might be "companyA." You can specify one or more tags to add to each container. You
|
|
@@ -28,6 +33,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
37
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
31
38
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -78,11 +85,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
78
85
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, WAFV2ClientResolvedConfig> {
|
|
79
86
|
readonly input: UntagResourceCommandInput;
|
|
80
87
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
81
91
|
constructor(input: UntagResourceCommandInput);
|
|
82
92
|
/**
|
|
83
93
|
* @internal
|
|
84
94
|
*/
|
|
85
95
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
86
99
|
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
87
103
|
private deserialize;
|
|
88
104
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateIPSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateIPSetCommandInput extends UpdateIPSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateIPSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateIPSetCommandOutput extends UpdateIPSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified <a>IPSet</a>. </p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>This operation completely replaces the mutable specifications that you already have for the IP set with the ones that you provide to this call. </p>
|
|
@@ -42,6 +47,8 @@ export interface UpdateIPSetCommandOutput extends UpdateIPSetResponse, __Metadat
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param UpdateIPSetCommandInput - {@link UpdateIPSetCommandInput}
|
|
51
|
+
* @returns {@link UpdateIPSetCommandOutput}
|
|
45
52
|
* @see {@link UpdateIPSetCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link UpdateIPSetCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -100,11 +107,20 @@ export interface UpdateIPSetCommandOutput extends UpdateIPSetResponse, __Metadat
|
|
|
100
107
|
export declare class UpdateIPSetCommand extends $Command<UpdateIPSetCommandInput, UpdateIPSetCommandOutput, WAFV2ClientResolvedConfig> {
|
|
101
108
|
readonly input: UpdateIPSetCommandInput;
|
|
102
109
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
103
113
|
constructor(input: UpdateIPSetCommandInput);
|
|
104
114
|
/**
|
|
105
115
|
* @internal
|
|
106
116
|
*/
|
|
107
117
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateIPSetCommandInput, UpdateIPSetCommandOutput>;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
108
121
|
private serialize;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
109
125
|
private deserialize;
|
|
110
126
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateManagedRuleSetVersionExpiryDateRequest, UpdateManagedRuleSetVersionExpiryDateResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateManagedRuleSetVersionExpiryDateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateManagedRuleSetVersionExpiryDateCommandInput extends UpdateManagedRuleSetVersionExpiryDateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateManagedRuleSetVersionExpiryDateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateManagedRuleSetVersionExpiryDateCommandOutput extends UpdateManagedRuleSetVersionExpiryDateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the expiration information for your managed rule set. Use this to initiate the
|
|
18
23
|
* expiration of a managed rule group version. After you initiate expiration for a version,
|
|
19
24
|
* WAF excludes it from the response to <a>ListAvailableManagedRuleGroupVersions</a> for the managed rule group. </p>
|
|
@@ -31,6 +36,8 @@ export interface UpdateManagedRuleSetVersionExpiryDateCommandOutput extends Upda
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param UpdateManagedRuleSetVersionExpiryDateCommandInput - {@link UpdateManagedRuleSetVersionExpiryDateCommandInput}
|
|
40
|
+
* @returns {@link UpdateManagedRuleSetVersionExpiryDateCommandOutput}
|
|
34
41
|
* @see {@link UpdateManagedRuleSetVersionExpiryDateCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link UpdateManagedRuleSetVersionExpiryDateCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -79,11 +86,20 @@ export interface UpdateManagedRuleSetVersionExpiryDateCommandOutput extends Upda
|
|
|
79
86
|
export declare class UpdateManagedRuleSetVersionExpiryDateCommand extends $Command<UpdateManagedRuleSetVersionExpiryDateCommandInput, UpdateManagedRuleSetVersionExpiryDateCommandOutput, WAFV2ClientResolvedConfig> {
|
|
80
87
|
readonly input: UpdateManagedRuleSetVersionExpiryDateCommandInput;
|
|
81
88
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
82
92
|
constructor(input: UpdateManagedRuleSetVersionExpiryDateCommandInput);
|
|
83
93
|
/**
|
|
84
94
|
* @internal
|
|
85
95
|
*/
|
|
86
96
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateManagedRuleSetVersionExpiryDateCommandInput, UpdateManagedRuleSetVersionExpiryDateCommandOutput>;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
87
100
|
private serialize;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
88
104
|
private deserialize;
|
|
89
105
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateRegexPatternSetRequest, UpdateRegexPatternSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateRegexPatternSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateRegexPatternSetCommandInput extends UpdateRegexPatternSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateRegexPatternSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateRegexPatternSetCommandOutput extends UpdateRegexPatternSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified <a>RegexPatternSet</a>.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>This operation completely replaces the mutable specifications that you already have for the regex pattern set with the ones that you provide to this call. </p>
|
|
@@ -42,6 +47,8 @@ export interface UpdateRegexPatternSetCommandOutput extends UpdateRegexPatternSe
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param UpdateRegexPatternSetCommandInput - {@link UpdateRegexPatternSetCommandInput}
|
|
51
|
+
* @returns {@link UpdateRegexPatternSetCommandOutput}
|
|
45
52
|
* @see {@link UpdateRegexPatternSetCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link UpdateRegexPatternSetCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -100,11 +107,20 @@ export interface UpdateRegexPatternSetCommandOutput extends UpdateRegexPatternSe
|
|
|
100
107
|
export declare class UpdateRegexPatternSetCommand extends $Command<UpdateRegexPatternSetCommandInput, UpdateRegexPatternSetCommandOutput, WAFV2ClientResolvedConfig> {
|
|
101
108
|
readonly input: UpdateRegexPatternSetCommandInput;
|
|
102
109
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
103
113
|
constructor(input: UpdateRegexPatternSetCommandInput);
|
|
104
114
|
/**
|
|
105
115
|
* @internal
|
|
106
116
|
*/
|
|
107
117
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRegexPatternSetCommandInput, UpdateRegexPatternSetCommandOutput>;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
108
121
|
private serialize;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
109
125
|
private deserialize;
|
|
110
126
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateRuleGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateRuleGroupCommandInput extends UpdateRuleGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateRuleGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateRuleGroupCommandOutput extends UpdateRuleGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified <a>RuleGroup</a>.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>This operation completely replaces the mutable specifications that you already have for the rule group with the ones that you provide to this call. </p>
|
|
@@ -43,6 +48,8 @@ export interface UpdateRuleGroupCommandOutput extends UpdateRuleGroupResponse, _
|
|
|
43
48
|
* const response = await client.send(command);
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
51
|
+
* @param UpdateRuleGroupCommandInput - {@link UpdateRuleGroupCommandInput}
|
|
52
|
+
* @returns {@link UpdateRuleGroupCommandOutput}
|
|
46
53
|
* @see {@link UpdateRuleGroupCommandInput} for command's `input` shape.
|
|
47
54
|
* @see {@link UpdateRuleGroupCommandOutput} for command's `response` shape.
|
|
48
55
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -125,11 +132,20 @@ export interface UpdateRuleGroupCommandOutput extends UpdateRuleGroupResponse, _
|
|
|
125
132
|
export declare class UpdateRuleGroupCommand extends $Command<UpdateRuleGroupCommandInput, UpdateRuleGroupCommandOutput, WAFV2ClientResolvedConfig> {
|
|
126
133
|
readonly input: UpdateRuleGroupCommandInput;
|
|
127
134
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
128
138
|
constructor(input: UpdateRuleGroupCommandInput);
|
|
129
139
|
/**
|
|
130
140
|
* @internal
|
|
131
141
|
*/
|
|
132
142
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRuleGroupCommandInput, UpdateRuleGroupCommandOutput>;
|
|
143
|
+
/**
|
|
144
|
+
* @internal
|
|
145
|
+
*/
|
|
133
146
|
private serialize;
|
|
147
|
+
/**
|
|
148
|
+
* @internal
|
|
149
|
+
*/
|
|
134
150
|
private deserialize;
|
|
135
151
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateWebACLRequest, UpdateWebACLResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateWebACLCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateWebACLCommandInput extends UpdateWebACLRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateWebACLCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateWebACLCommandOutput extends UpdateWebACLResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified <a>WebACL</a>. While updating a web ACL, WAF provides
|
|
18
23
|
* continuous coverage to the resources that you have associated with the web ACL. </p>
|
|
19
24
|
* <note>
|
|
@@ -44,6 +49,8 @@ export interface UpdateWebACLCommandOutput extends UpdateWebACLResponse, __Metad
|
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
52
|
+
* @param UpdateWebACLCommandInput - {@link UpdateWebACLCommandInput}
|
|
53
|
+
* @returns {@link UpdateWebACLCommandOutput}
|
|
47
54
|
* @see {@link UpdateWebACLCommandInput} for command's `input` shape.
|
|
48
55
|
* @see {@link UpdateWebACLCommandOutput} for command's `response` shape.
|
|
49
56
|
* @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
|
|
@@ -135,11 +142,20 @@ export interface UpdateWebACLCommandOutput extends UpdateWebACLResponse, __Metad
|
|
|
135
142
|
export declare class UpdateWebACLCommand extends $Command<UpdateWebACLCommandInput, UpdateWebACLCommandOutput, WAFV2ClientResolvedConfig> {
|
|
136
143
|
readonly input: UpdateWebACLCommandInput;
|
|
137
144
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
138
148
|
constructor(input: UpdateWebACLCommandInput);
|
|
139
149
|
/**
|
|
140
150
|
* @internal
|
|
141
151
|
*/
|
|
142
152
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWebACLCommandInput, UpdateWebACLCommandOutput>;
|
|
153
|
+
/**
|
|
154
|
+
* @internal
|
|
155
|
+
*/
|
|
143
156
|
private serialize;
|
|
157
|
+
/**
|
|
158
|
+
* @internal
|
|
159
|
+
*/
|
|
144
160
|
private deserialize;
|
|
145
161
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from WAFV2 service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class WAFV2ServiceException extends __ServiceException {
|