@aws-sdk/client-networkmanager 3.825.0 → 3.828.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/commands/CreateVpcAttachmentCommand.d.ts +4 -0
- package/dist-types/commands/GetCoreNetworkChangeSetCommand.d.ts +6 -0
- package/dist-types/commands/GetVpcAttachmentCommand.d.ts +2 -0
- package/dist-types/commands/UpdateVpcAttachmentCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +25 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/package.json +12 -12
|
@@ -43,6 +43,8 @@ declare const CreateVpcAttachmentCommand_base: {
|
|
|
43
43
|
* Options: { // VpcOptions
|
|
44
44
|
* Ipv6Support: true || false,
|
|
45
45
|
* ApplianceModeSupport: true || false,
|
|
46
|
+
* DnsSupport: true || false,
|
|
47
|
+
* SecurityGroupReferencingSupport: true || false,
|
|
46
48
|
* },
|
|
47
49
|
* Tags: [ // TagList
|
|
48
50
|
* { // Tag
|
|
@@ -114,6 +116,8 @@ declare const CreateVpcAttachmentCommand_base: {
|
|
|
114
116
|
* // Options: { // VpcOptions
|
|
115
117
|
* // Ipv6Support: true || false,
|
|
116
118
|
* // ApplianceModeSupport: true || false,
|
|
119
|
+
* // DnsSupport: true || false,
|
|
120
|
+
* // SecurityGroupReferencingSupport: true || false,
|
|
117
121
|
* // },
|
|
118
122
|
* // },
|
|
119
123
|
* // };
|
|
@@ -91,6 +91,9 @@ declare const GetCoreNetworkChangeSetCommand_base: {
|
|
|
91
91
|
* // },
|
|
92
92
|
* // },
|
|
93
93
|
* // ],
|
|
94
|
+
* // VpnEcmpSupport: true || false,
|
|
95
|
+
* // DnsSupport: true || false,
|
|
96
|
+
* // SecurityGroupReferencingSupport: true || false,
|
|
94
97
|
* // },
|
|
95
98
|
* // NewValues: {
|
|
96
99
|
* // SegmentName: "STRING_VALUE",
|
|
@@ -135,6 +138,9 @@ declare const GetCoreNetworkChangeSetCommand_base: {
|
|
|
135
138
|
* // },
|
|
136
139
|
* // },
|
|
137
140
|
* // ],
|
|
141
|
+
* // VpnEcmpSupport: true || false,
|
|
142
|
+
* // DnsSupport: true || false,
|
|
143
|
+
* // SecurityGroupReferencingSupport: true || false,
|
|
138
144
|
* // },
|
|
139
145
|
* // IdentifierPath: "STRING_VALUE",
|
|
140
146
|
* // },
|
|
@@ -99,6 +99,8 @@ declare const GetVpcAttachmentCommand_base: {
|
|
|
99
99
|
* // Options: { // VpcOptions
|
|
100
100
|
* // Ipv6Support: true || false,
|
|
101
101
|
* // ApplianceModeSupport: true || false,
|
|
102
|
+
* // DnsSupport: true || false,
|
|
103
|
+
* // SecurityGroupReferencingSupport: true || false,
|
|
102
104
|
* // },
|
|
103
105
|
* // },
|
|
104
106
|
* // };
|
|
@@ -45,6 +45,8 @@ declare const UpdateVpcAttachmentCommand_base: {
|
|
|
45
45
|
* Options: { // VpcOptions
|
|
46
46
|
* Ipv6Support: true || false,
|
|
47
47
|
* ApplianceModeSupport: true || false,
|
|
48
|
+
* DnsSupport: true || false,
|
|
49
|
+
* SecurityGroupReferencingSupport: true || false,
|
|
48
50
|
* },
|
|
49
51
|
* };
|
|
50
52
|
* const command = new UpdateVpcAttachmentCommand(input);
|
|
@@ -109,6 +111,8 @@ declare const UpdateVpcAttachmentCommand_base: {
|
|
|
109
111
|
* // Options: { // VpcOptions
|
|
110
112
|
* // Ipv6Support: true || false,
|
|
111
113
|
* // ApplianceModeSupport: true || false,
|
|
114
|
+
* // DnsSupport: true || false,
|
|
115
|
+
* // SecurityGroupReferencingSupport: true || false,
|
|
112
116
|
* // },
|
|
113
117
|
* // },
|
|
114
118
|
* // };
|
|
@@ -1571,6 +1571,21 @@ export interface CoreNetworkChangeValues {
|
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
1573
|
ServiceInsertionActions?: ServiceInsertionAction[] | undefined;
|
|
1574
|
+
/**
|
|
1575
|
+
* <p>Indicates whether Equal Cost Multipath (ECMP) is enabled for the core network.</p>
|
|
1576
|
+
* @public
|
|
1577
|
+
*/
|
|
1578
|
+
VpnEcmpSupport?: boolean | undefined;
|
|
1579
|
+
/**
|
|
1580
|
+
* <p>Indicates whether public DNS support is supported. The default is <code>true</code>. </p>
|
|
1581
|
+
* @public
|
|
1582
|
+
*/
|
|
1583
|
+
DnsSupport?: boolean | undefined;
|
|
1584
|
+
/**
|
|
1585
|
+
* <p>Indicates whether security group referencing is enabled for the core network.</p>
|
|
1586
|
+
* @public
|
|
1587
|
+
*/
|
|
1588
|
+
SecurityGroupReferencingSupport?: boolean | undefined;
|
|
1574
1589
|
}
|
|
1575
1590
|
/**
|
|
1576
1591
|
* <p>Details describing a core network change.</p>
|
|
@@ -2955,6 +2970,16 @@ export interface VpcOptions {
|
|
|
2955
2970
|
* @public
|
|
2956
2971
|
*/
|
|
2957
2972
|
ApplianceModeSupport?: boolean | undefined;
|
|
2973
|
+
/**
|
|
2974
|
+
* <p>Indicates whether DNS is supported.</p>
|
|
2975
|
+
* @public
|
|
2976
|
+
*/
|
|
2977
|
+
DnsSupport?: boolean | undefined;
|
|
2978
|
+
/**
|
|
2979
|
+
* <p>Indicates whether security group referencing is enabled for this VPC attachment. The default is <code>true</code>. However, at the core network policy-level the default is set to <code>false</code>.</p>
|
|
2980
|
+
* @public
|
|
2981
|
+
*/
|
|
2982
|
+
SecurityGroupReferencingSupport?: boolean | undefined;
|
|
2958
2983
|
}
|
|
2959
2984
|
/**
|
|
2960
2985
|
* @public
|
|
@@ -505,6 +505,9 @@ export interface CoreNetworkChangeValues {
|
|
|
505
505
|
InsideCidrBlocks?: string[] | undefined;
|
|
506
506
|
SharedSegments?: string[] | undefined;
|
|
507
507
|
ServiceInsertionActions?: ServiceInsertionAction[] | undefined;
|
|
508
|
+
VpnEcmpSupport?: boolean | undefined;
|
|
509
|
+
DnsSupport?: boolean | undefined;
|
|
510
|
+
SecurityGroupReferencingSupport?: boolean | undefined;
|
|
508
511
|
}
|
|
509
512
|
export interface CoreNetworkChange {
|
|
510
513
|
Type?: ChangeType | undefined;
|
|
@@ -860,6 +863,8 @@ export interface CreateTransitGatewayRouteTableAttachmentResponse {
|
|
|
860
863
|
export interface VpcOptions {
|
|
861
864
|
Ipv6Support?: boolean | undefined;
|
|
862
865
|
ApplianceModeSupport?: boolean | undefined;
|
|
866
|
+
DnsSupport?: boolean | undefined;
|
|
867
|
+
SecurityGroupReferencingSupport?: boolean | undefined;
|
|
863
868
|
}
|
|
864
869
|
export interface CreateVpcAttachmentRequest {
|
|
865
870
|
CoreNetworkId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-networkmanager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Networkmanager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.828.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-networkmanager",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.826.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.828.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.828.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
30
|
"@aws-sdk/types": "3.821.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.828.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.828.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
-
"@smithy/core": "^3.5.
|
|
35
|
+
"@smithy/core": "^3.5.3",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.11",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.12",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.6",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.3",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.19",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.19",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
57
|
"@smithy/util-retry": "^4.0.5",
|