@aws-sdk/client-network-firewall 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +574 -160
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +316 -104
- package/dist-types/ts3.4/commands/AssociateFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AssociateSubnetsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateFirewallCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateRuleGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteFirewallCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeFirewallCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLoggingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeResourcePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRuleGroupCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeRuleGroupMetadataCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateSubnetsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListFirewallPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListFirewallsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListRuleGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateFirewallDeleteProtectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFirewallDescriptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFirewallEncryptionConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFirewallPolicyChangeProtectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateFirewallPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateSubnetChangeProtectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/NetworkFirewallServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1446 -1344
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListFirewallPoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFirewallsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRuleGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateRuleGroupRequest,
|
|
10
|
+
CreateRuleGroupResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface CreateRuleGroupCommandInput extends CreateRuleGroupRequest {}
|
|
18
|
+
export interface CreateRuleGroupCommandOutput
|
|
19
|
+
extends CreateRuleGroupResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateRuleGroupCommand extends $Command<
|
|
23
|
+
CreateRuleGroupCommandInput,
|
|
24
|
+
CreateRuleGroupCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateRuleGroupCommandInput;
|
|
28
|
+
constructor(input: CreateRuleGroupCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateRuleGroupCommandInput, CreateRuleGroupCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteFirewallRequest,
|
|
10
|
+
DeleteFirewallResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DeleteFirewallCommandInput extends DeleteFirewallRequest {}
|
|
18
|
+
export interface DeleteFirewallCommandOutput
|
|
19
|
+
extends DeleteFirewallResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DeleteFirewallCommand extends $Command<
|
|
23
|
+
DeleteFirewallCommandInput,
|
|
24
|
+
DeleteFirewallCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteFirewallCommandInput;
|
|
28
|
+
constructor(input: DeleteFirewallCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteFirewallCommandInput, DeleteFirewallCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteFirewallPolicyRequest,
|
|
10
|
+
DeleteFirewallPolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DeleteFirewallPolicyCommandInput
|
|
18
|
+
extends DeleteFirewallPolicyRequest {}
|
|
19
|
+
export interface DeleteFirewallPolicyCommandOutput
|
|
20
|
+
extends DeleteFirewallPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteFirewallPolicyCommand extends $Command<
|
|
24
|
+
DeleteFirewallPolicyCommandInput,
|
|
25
|
+
DeleteFirewallPolicyCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteFirewallPolicyCommandInput;
|
|
29
|
+
constructor(input: DeleteFirewallPolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteFirewallPolicyCommandInput,
|
|
37
|
+
DeleteFirewallPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteResourcePolicyRequest,
|
|
10
|
+
DeleteResourcePolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DeleteResourcePolicyCommandInput
|
|
18
|
+
extends DeleteResourcePolicyRequest {}
|
|
19
|
+
export interface DeleteResourcePolicyCommandOutput
|
|
20
|
+
extends DeleteResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteResourcePolicyCommand extends $Command<
|
|
24
|
+
DeleteResourcePolicyCommandInput,
|
|
25
|
+
DeleteResourcePolicyCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteResourcePolicyCommandInput;
|
|
29
|
+
constructor(input: DeleteResourcePolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteResourcePolicyCommandInput,
|
|
37
|
+
DeleteResourcePolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteRuleGroupRequest,
|
|
10
|
+
DeleteRuleGroupResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DeleteRuleGroupCommandInput extends DeleteRuleGroupRequest {}
|
|
18
|
+
export interface DeleteRuleGroupCommandOutput
|
|
19
|
+
extends DeleteRuleGroupResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DeleteRuleGroupCommand extends $Command<
|
|
23
|
+
DeleteRuleGroupCommandInput,
|
|
24
|
+
DeleteRuleGroupCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteRuleGroupCommandInput;
|
|
28
|
+
constructor(input: DeleteRuleGroupCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteRuleGroupCommandInput, DeleteRuleGroupCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeFirewallRequest,
|
|
10
|
+
DescribeFirewallResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DescribeFirewallCommandInput extends DescribeFirewallRequest {}
|
|
18
|
+
export interface DescribeFirewallCommandOutput
|
|
19
|
+
extends DescribeFirewallResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeFirewallCommand extends $Command<
|
|
23
|
+
DescribeFirewallCommandInput,
|
|
24
|
+
DescribeFirewallCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeFirewallCommandInput;
|
|
28
|
+
constructor(input: DescribeFirewallCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeFirewallCommandInput, DescribeFirewallCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeFirewallPolicyRequest,
|
|
10
|
+
DescribeFirewallPolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DescribeFirewallPolicyCommandInput
|
|
18
|
+
extends DescribeFirewallPolicyRequest {}
|
|
19
|
+
export interface DescribeFirewallPolicyCommandOutput
|
|
20
|
+
extends DescribeFirewallPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeFirewallPolicyCommand extends $Command<
|
|
24
|
+
DescribeFirewallPolicyCommandInput,
|
|
25
|
+
DescribeFirewallPolicyCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeFirewallPolicyCommandInput;
|
|
29
|
+
constructor(input: DescribeFirewallPolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeFirewallPolicyCommandInput,
|
|
37
|
+
DescribeFirewallPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeLoggingConfigurationRequest,
|
|
10
|
+
DescribeLoggingConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DescribeLoggingConfigurationCommandInput
|
|
18
|
+
extends DescribeLoggingConfigurationRequest {}
|
|
19
|
+
export interface DescribeLoggingConfigurationCommandOutput
|
|
20
|
+
extends DescribeLoggingConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLoggingConfigurationCommand extends $Command<
|
|
24
|
+
DescribeLoggingConfigurationCommandInput,
|
|
25
|
+
DescribeLoggingConfigurationCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLoggingConfigurationCommandInput;
|
|
29
|
+
constructor(input: DescribeLoggingConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLoggingConfigurationCommandInput,
|
|
37
|
+
DescribeLoggingConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeResourcePolicyRequest,
|
|
10
|
+
DescribeResourcePolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DescribeResourcePolicyCommandInput
|
|
18
|
+
extends DescribeResourcePolicyRequest {}
|
|
19
|
+
export interface DescribeResourcePolicyCommandOutput
|
|
20
|
+
extends DescribeResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeResourcePolicyCommand extends $Command<
|
|
24
|
+
DescribeResourcePolicyCommandInput,
|
|
25
|
+
DescribeResourcePolicyCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeResourcePolicyCommandInput;
|
|
29
|
+
constructor(input: DescribeResourcePolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeResourcePolicyCommandInput,
|
|
37
|
+
DescribeResourcePolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeRuleGroupRequest,
|
|
10
|
+
DescribeRuleGroupResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DescribeRuleGroupCommandInput
|
|
18
|
+
extends DescribeRuleGroupRequest {}
|
|
19
|
+
export interface DescribeRuleGroupCommandOutput
|
|
20
|
+
extends DescribeRuleGroupResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeRuleGroupCommand extends $Command<
|
|
24
|
+
DescribeRuleGroupCommandInput,
|
|
25
|
+
DescribeRuleGroupCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeRuleGroupCommandInput;
|
|
29
|
+
constructor(input: DescribeRuleGroupCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeRuleGroupMetadataRequest,
|
|
10
|
+
DescribeRuleGroupMetadataResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
NetworkFirewallClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../NetworkFirewallClient";
|
|
17
|
+
export interface DescribeRuleGroupMetadataCommandInput
|
|
18
|
+
extends DescribeRuleGroupMetadataRequest {}
|
|
19
|
+
export interface DescribeRuleGroupMetadataCommandOutput
|
|
20
|
+
extends DescribeRuleGroupMetadataResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeRuleGroupMetadataCommand extends $Command<
|
|
24
|
+
DescribeRuleGroupMetadataCommandInput,
|
|
25
|
+
DescribeRuleGroupMetadataCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeRuleGroupMetadataCommandInput;
|
|
29
|
+
constructor(input: DescribeRuleGroupMetadataCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeRuleGroupMetadataCommandInput,
|
|
37
|
+
DescribeRuleGroupMetadataCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|