@aws-sdk/client-fms 3.47.2 → 3.51.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
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-fms
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-fms
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-sdk/client-fms
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
* **clients:** update clients as of 2022/01/21 ([#3228](https://github.com/aws/aws-sdk-js-v3/issues/3228)) ([fa713ef](https://github.com/aws/aws-sdk-js-v3/commit/fa713efca6b2f424c27535d000359f08830960b1))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @aws-sdk/client-fms
|
package/dist-types/FMS.d.ts
CHANGED
|
@@ -234,7 +234,7 @@ export declare class FMS extends FMSClient {
|
|
|
234
234
|
* Amazon VPCs.</p>
|
|
235
235
|
* </li>
|
|
236
236
|
* <li>
|
|
237
|
-
* <p>A DNS Firewall policy, which provides Route
|
|
237
|
+
* <p>A DNS Firewall policy, which provides Route 53 Resolver DNS Firewall rules to filter DNS queries for
|
|
238
238
|
* specified VPCs.</p>
|
|
239
239
|
* </li>
|
|
240
240
|
* </ul>
|
|
@@ -30,7 +30,7 @@ export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBea
|
|
|
30
30
|
* Amazon VPCs.</p>
|
|
31
31
|
* </li>
|
|
32
32
|
* <li>
|
|
33
|
-
* <p>A DNS Firewall policy, which provides Route
|
|
33
|
+
* <p>A DNS Firewall policy, which provides Route 53 Resolver DNS Firewall rules to filter DNS queries for
|
|
34
34
|
* specified VPCs.</p>
|
|
35
35
|
* </li>
|
|
36
36
|
* </ul>
|
|
@@ -588,8 +588,7 @@ export interface SecurityServicePolicyData {
|
|
|
588
588
|
*/
|
|
589
589
|
Type: SecurityServiceType | string | undefined;
|
|
590
590
|
/**
|
|
591
|
-
* <p>Details about the service that are specific to the service type, in JSON format.
|
|
592
|
-
* service type <code>SHIELD_ADVANCED</code>, this is an empty string.</p>
|
|
591
|
+
* <p>Details about the service that are specific to the service type, in JSON format. </p>
|
|
593
592
|
* <ul>
|
|
594
593
|
* <li>
|
|
595
594
|
* <p>Example: <code>DNS_FIREWALL</code>
|
|
@@ -609,6 +608,16 @@ export interface SecurityServicePolicyData {
|
|
|
609
608
|
* </p>
|
|
610
609
|
* </li>
|
|
611
610
|
* <li>
|
|
611
|
+
* <p>Specification for <code>SHIELD_ADVANCED</code> for Amazon CloudFront distributions </p>
|
|
612
|
+
* <p>
|
|
613
|
+
* <code>"{\"type\":\"SHIELD_ADVANCED\",\"automaticResponseConfiguration\": {\"automaticResponseStatus\":\"ENABLED|IGNORED|DISABLED\", \"automaticResponseAction\":\"BLOCK|COUNT\"}, \"overrideCustomerWebaclClassic\":true|false}"</code>
|
|
614
|
+
* </p>
|
|
615
|
+
* <p>For example: <code>"{\"type\":\"SHIELD_ADVANCED\",\"automaticResponseConfiguration\": {\"automaticResponseStatus\":\"ENABLED\", \"automaticResponseAction\":\"COUNT\"}}"</code>
|
|
616
|
+
* </p>
|
|
617
|
+
* <p>The default value for <code>automaticResponseStatus</code> is <code>IGNORED</code>. The value for <code>automaticResponseAction</code> is only required when <code>automaticResponseStatus</code> is set to <code>ENABLED</code>. The default value for <code>overrideCustomerWebaclClassic</code> is <code>false</code>.</p>
|
|
618
|
+
* <p>For other resource types that you can protect with a Shield Advanced policy, this <code>ManagedServiceData</code> configuration is an empty string.</p>
|
|
619
|
+
* </li>
|
|
620
|
+
* <li>
|
|
612
621
|
* <p>Example: <code>WAFV2</code>
|
|
613
622
|
* </p>
|
|
614
623
|
* <p>
|
|
@@ -694,8 +703,8 @@ export interface Policy {
|
|
|
694
703
|
* <p>The type of resource protected by or in scope of the policy. This is in the format shown
|
|
695
704
|
* in the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services Resource Types Reference</a>.
|
|
696
705
|
* To apply this policy to multiple resource types, specify a resource type of <code>ResourceTypeList</code> and then specify the resource types in a <code>ResourceTypeList</code>.</p>
|
|
697
|
-
* <p>For WAF and Shield Advanced,
|
|
698
|
-
*
|
|
706
|
+
* <p>For WAF and Shield Advanced, resource types include
|
|
707
|
+
* <code>AWS::ElasticLoadBalancingV2::LoadBalancer</code>, <code>AWS::ElasticLoadBalancing::LoadBalancer</code>, <code>AWS::EC2::EIP</code>, and
|
|
699
708
|
* <code>AWS::CloudFront::Distribution</code>. For a security group common policy, valid values
|
|
700
709
|
* are <code>AWS::EC2::NetworkInterface</code> and <code>AWS::EC2::Instance</code>. For a
|
|
701
710
|
* security group content audit policy, valid values are <code>AWS::EC2::SecurityGroup</code>,
|
|
@@ -724,7 +733,11 @@ export interface Policy {
|
|
|
724
733
|
*/
|
|
725
734
|
RemediationEnabled: boolean | undefined;
|
|
726
735
|
/**
|
|
727
|
-
* <p>Indicates whether Firewall Manager should
|
|
736
|
+
* <p>Indicates whether Firewall Manager should automatically remove protections from resources that leave the policy scope and clean up resources
|
|
737
|
+
* that Firewall Manager is managing for accounts when those accounts leave policy scope. For example, Firewall Manager will disassociate a Firewall Manager managed web ACL
|
|
738
|
+
* from a protected customer resource when the customer resource leaves policy scope. </p>
|
|
739
|
+
* <p>By default, Firewall Manager doesn't remove protections or delete Firewall Manager managed resources. </p>
|
|
740
|
+
* <p>This option is not available for Shield Advanced or WAF Classic policies.</p>
|
|
728
741
|
*/
|
|
729
742
|
DeleteUnusedFMManagedResources?: boolean;
|
|
730
743
|
/**
|
|
@@ -2454,7 +2467,11 @@ export interface PolicySummary {
|
|
|
2454
2467
|
*/
|
|
2455
2468
|
RemediationEnabled?: boolean;
|
|
2456
2469
|
/**
|
|
2457
|
-
* <p>Indicates whether Firewall Manager should
|
|
2470
|
+
* <p>Indicates whether Firewall Manager should automatically remove protections from resources that leave the policy scope and clean up resources
|
|
2471
|
+
* that Firewall Manager is managing for accounts when those accounts leave policy scope. For example, Firewall Manager will disassociate a Firewall Manager managed web ACL
|
|
2472
|
+
* from a protected customer resource when the customer resource leaves policy scope. </p>
|
|
2473
|
+
* <p>By default, Firewall Manager doesn't remove protections or delete Firewall Manager managed resources. </p>
|
|
2474
|
+
* <p>This option is not available for Shield Advanced or WAF Classic policies.</p>
|
|
2458
2475
|
*/
|
|
2459
2476
|
DeleteUnusedFMManagedResources?: boolean;
|
|
2460
2477
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,41 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.50.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.50.0",
|
|
39
|
+
"@aws-sdk/types": "3.50.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.50.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
-
"@
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
55
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
|
+
"@types/node": "^12.7.5",
|
|
57
|
+
"concurrently": "7.0.0",
|
|
58
|
+
"downlevel-dts": "0.7.0",
|
|
59
|
+
"rimraf": "3.0.2",
|
|
60
|
+
"typedoc": "0.19.2",
|
|
61
|
+
"typescript": "~4.3.5"
|
|
56
62
|
},
|
|
57
63
|
"engines": {
|
|
58
64
|
"node": ">=12.0.0"
|