@aws-sdk/client-network-firewall 3.296.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/NetworkFirewall.d.ts +32 -0
- package/dist-types/NetworkFirewallClient.d.ts +24 -4
- package/dist-types/commands/AssociateFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/AssociateSubnetsCommand.d.ts +16 -0
- package/dist-types/commands/CreateFirewallCommand.d.ts +16 -0
- package/dist-types/commands/CreateFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFirewallCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFirewallCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRuleGroupMetadataCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateSubnetsCommand.d.ts +16 -0
- package/dist-types/commands/ListFirewallPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/ListFirewallsCommand.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/PutResourcePolicyCommand.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/UpdateFirewallDeleteProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallDescriptionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallEncryptionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallPolicyChangeProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSubnetChangeProtectionCommand.d.ts +16 -0
- package/dist-types/models/NetworkFirewallServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +313 -5
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListFirewallPoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFirewallsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRuleGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateSubnetChangeProtectionRequest, UpdateSubnetChangeProtectionResponse } from "../models/models_0";
|
|
5
5
|
import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateSubnetChangeProtectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateSubnetChangeProtectionCommandInput extends UpdateSubnetChangeProtectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateSubnetChangeProtectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateSubnetChangeProtectionCommandOutput extends UpdateSubnetChangeProtectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p></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 UpdateSubnetChangeProtectionCommandOutput extends UpdateSubnetC
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateSubnetChangeProtectionCommandInput - {@link UpdateSubnetChangeProtectionCommandInput}
|
|
34
|
+
* @returns {@link UpdateSubnetChangeProtectionCommandOutput}
|
|
28
35
|
* @see {@link UpdateSubnetChangeProtectionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateSubnetChangeProtectionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface UpdateSubnetChangeProtectionCommandOutput extends UpdateSubnetC
|
|
|
66
73
|
export declare class UpdateSubnetChangeProtectionCommand extends $Command<UpdateSubnetChangeProtectionCommandInput, UpdateSubnetChangeProtectionCommandOutput, NetworkFirewallClientResolvedConfig> {
|
|
67
74
|
readonly input: UpdateSubnetChangeProtectionCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: UpdateSubnetChangeProtectionCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkFirewallClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSubnetChangeProtectionCommandInput, UpdateSubnetChangeProtectionCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -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 NetworkFirewall service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class NetworkFirewallServiceException extends __ServiceException {
|