@aws-sdk/client-networkmanager 3.935.0 → 3.937.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/README.md +56 -0
- package/dist-cjs/index.js +527 -31
- package/dist-es/NetworkManager.js +14 -0
- package/dist-es/commands/CreateCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/DeleteCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/ListAttachmentRoutingPolicyAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkPrefixListAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkRoutingInformationCommand.js +16 -0
- package/dist-es/commands/PutAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/RemoveAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkPrefixListAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkRoutingInformationPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +409 -31
- package/dist-types/NetworkManager.d.ts +49 -0
- package/dist-types/NetworkManagerClient.d.ts +9 -2
- package/dist-types/commands/AcceptAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +101 -0
- package/dist-types/commands/CreateDirectConnectGatewayAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateSiteToSiteVpnAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateVpcAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +98 -0
- package/dist-types/commands/GetConnectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetCoreNetworkChangeEventsCommand.d.ts +13 -1
- package/dist-types/commands/GetCoreNetworkChangeSetCommand.d.ts +30 -4
- package/dist-types/commands/GetDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteToSiteVpnAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +104 -0
- package/dist-types/commands/ListAttachmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +99 -0
- package/dist-types/commands/ListCoreNetworkRoutingInformationCommand.d.ts +131 -0
- package/dist-types/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +101 -0
- package/dist-types/commands/RejectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +99 -0
- package/dist-types/commands/UpdateDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +506 -1
- package/dist-types/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +30 -0
- package/dist-types/ts3.4/NetworkManager.d.ts +155 -0
- package/dist-types/ts3.4/NetworkManagerClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkRoutingInformationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +126 -0
- package/dist-types/ts3.4/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
- package/package.json +12 -12
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListCoreNetworkPrefixListAssociationsRequest,
|
|
5
|
+
ListCoreNetworkPrefixListAssociationsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkManagerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkManagerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListCoreNetworkPrefixListAssociationsCommandInput
|
|
15
|
+
extends ListCoreNetworkPrefixListAssociationsRequest {}
|
|
16
|
+
export interface ListCoreNetworkPrefixListAssociationsCommandOutput
|
|
17
|
+
extends ListCoreNetworkPrefixListAssociationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListCoreNetworkPrefixListAssociationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListCoreNetworkPrefixListAssociationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
24
|
+
ListCoreNetworkPrefixListAssociationsCommandOutput,
|
|
25
|
+
NetworkManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListCoreNetworkPrefixListAssociationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
33
|
+
ListCoreNetworkPrefixListAssociationsCommandOutput,
|
|
34
|
+
NetworkManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListCoreNetworkPrefixListAssociationsCommand extends ListCoreNetworkPrefixListAssociationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListCoreNetworkPrefixListAssociationsRequest;
|
|
44
|
+
output: ListCoreNetworkPrefixListAssociationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListCoreNetworkPrefixListAssociationsCommandInput;
|
|
48
|
+
output: ListCoreNetworkPrefixListAssociationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListCoreNetworkRoutingInformationRequest,
|
|
5
|
+
ListCoreNetworkRoutingInformationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkManagerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkManagerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListCoreNetworkRoutingInformationCommandInput
|
|
15
|
+
extends ListCoreNetworkRoutingInformationRequest {}
|
|
16
|
+
export interface ListCoreNetworkRoutingInformationCommandOutput
|
|
17
|
+
extends ListCoreNetworkRoutingInformationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListCoreNetworkRoutingInformationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListCoreNetworkRoutingInformationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListCoreNetworkRoutingInformationCommandInput,
|
|
24
|
+
ListCoreNetworkRoutingInformationCommandOutput,
|
|
25
|
+
NetworkManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListCoreNetworkRoutingInformationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListCoreNetworkRoutingInformationCommandInput,
|
|
33
|
+
ListCoreNetworkRoutingInformationCommandOutput,
|
|
34
|
+
NetworkManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListCoreNetworkRoutingInformationCommand extends ListCoreNetworkRoutingInformationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListCoreNetworkRoutingInformationRequest;
|
|
44
|
+
output: ListCoreNetworkRoutingInformationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListCoreNetworkRoutingInformationCommandInput;
|
|
48
|
+
output: ListCoreNetworkRoutingInformationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
PutAttachmentRoutingPolicyLabelRequest,
|
|
5
|
+
PutAttachmentRoutingPolicyLabelResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkManagerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkManagerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutAttachmentRoutingPolicyLabelCommandInput
|
|
15
|
+
extends PutAttachmentRoutingPolicyLabelRequest {}
|
|
16
|
+
export interface PutAttachmentRoutingPolicyLabelCommandOutput
|
|
17
|
+
extends PutAttachmentRoutingPolicyLabelResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutAttachmentRoutingPolicyLabelCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutAttachmentRoutingPolicyLabelCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutAttachmentRoutingPolicyLabelCommandInput,
|
|
24
|
+
PutAttachmentRoutingPolicyLabelCommandOutput,
|
|
25
|
+
NetworkManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutAttachmentRoutingPolicyLabelCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutAttachmentRoutingPolicyLabelCommandInput,
|
|
33
|
+
PutAttachmentRoutingPolicyLabelCommandOutput,
|
|
34
|
+
NetworkManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutAttachmentRoutingPolicyLabelCommand extends PutAttachmentRoutingPolicyLabelCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutAttachmentRoutingPolicyLabelRequest;
|
|
44
|
+
output: PutAttachmentRoutingPolicyLabelResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutAttachmentRoutingPolicyLabelCommandInput;
|
|
48
|
+
output: PutAttachmentRoutingPolicyLabelCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RemoveAttachmentRoutingPolicyLabelRequest,
|
|
5
|
+
RemoveAttachmentRoutingPolicyLabelResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkManagerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkManagerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RemoveAttachmentRoutingPolicyLabelCommandInput
|
|
15
|
+
extends RemoveAttachmentRoutingPolicyLabelRequest {}
|
|
16
|
+
export interface RemoveAttachmentRoutingPolicyLabelCommandOutput
|
|
17
|
+
extends RemoveAttachmentRoutingPolicyLabelResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const RemoveAttachmentRoutingPolicyLabelCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: RemoveAttachmentRoutingPolicyLabelCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
RemoveAttachmentRoutingPolicyLabelCommandInput,
|
|
24
|
+
RemoveAttachmentRoutingPolicyLabelCommandOutput,
|
|
25
|
+
NetworkManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: RemoveAttachmentRoutingPolicyLabelCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
RemoveAttachmentRoutingPolicyLabelCommandInput,
|
|
33
|
+
RemoveAttachmentRoutingPolicyLabelCommandOutput,
|
|
34
|
+
NetworkManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class RemoveAttachmentRoutingPolicyLabelCommand extends RemoveAttachmentRoutingPolicyLabelCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RemoveAttachmentRoutingPolicyLabelRequest;
|
|
44
|
+
output: RemoveAttachmentRoutingPolicyLabelResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RemoveAttachmentRoutingPolicyLabelCommandInput;
|
|
48
|
+
output: RemoveAttachmentRoutingPolicyLabelCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -7,6 +7,7 @@ export * from "./CreateConnectAttachmentCommand";
|
|
|
7
7
|
export * from "./CreateConnectPeerCommand";
|
|
8
8
|
export * from "./CreateConnectionCommand";
|
|
9
9
|
export * from "./CreateCoreNetworkCommand";
|
|
10
|
+
export * from "./CreateCoreNetworkPrefixListAssociationCommand";
|
|
10
11
|
export * from "./CreateDeviceCommand";
|
|
11
12
|
export * from "./CreateDirectConnectGatewayAttachmentCommand";
|
|
12
13
|
export * from "./CreateGlobalNetworkCommand";
|
|
@@ -21,6 +22,7 @@ export * from "./DeleteConnectPeerCommand";
|
|
|
21
22
|
export * from "./DeleteConnectionCommand";
|
|
22
23
|
export * from "./DeleteCoreNetworkCommand";
|
|
23
24
|
export * from "./DeleteCoreNetworkPolicyVersionCommand";
|
|
25
|
+
export * from "./DeleteCoreNetworkPrefixListAssociationCommand";
|
|
24
26
|
export * from "./DeleteDeviceCommand";
|
|
25
27
|
export * from "./DeleteGlobalNetworkCommand";
|
|
26
28
|
export * from "./DeleteLinkCommand";
|
|
@@ -61,17 +63,22 @@ export * from "./GetTransitGatewayPeeringCommand";
|
|
|
61
63
|
export * from "./GetTransitGatewayRegistrationsCommand";
|
|
62
64
|
export * from "./GetTransitGatewayRouteTableAttachmentCommand";
|
|
63
65
|
export * from "./GetVpcAttachmentCommand";
|
|
66
|
+
export * from "./ListAttachmentRoutingPolicyAssociationsCommand";
|
|
64
67
|
export * from "./ListAttachmentsCommand";
|
|
65
68
|
export * from "./ListConnectPeersCommand";
|
|
66
69
|
export * from "./ListCoreNetworkPolicyVersionsCommand";
|
|
70
|
+
export * from "./ListCoreNetworkPrefixListAssociationsCommand";
|
|
71
|
+
export * from "./ListCoreNetworkRoutingInformationCommand";
|
|
67
72
|
export * from "./ListCoreNetworksCommand";
|
|
68
73
|
export * from "./ListOrganizationServiceAccessStatusCommand";
|
|
69
74
|
export * from "./ListPeeringsCommand";
|
|
70
75
|
export * from "./ListTagsForResourceCommand";
|
|
76
|
+
export * from "./PutAttachmentRoutingPolicyLabelCommand";
|
|
71
77
|
export * from "./PutCoreNetworkPolicyCommand";
|
|
72
78
|
export * from "./PutResourcePolicyCommand";
|
|
73
79
|
export * from "./RegisterTransitGatewayCommand";
|
|
74
80
|
export * from "./RejectAttachmentCommand";
|
|
81
|
+
export * from "./RemoveAttachmentRoutingPolicyLabelCommand";
|
|
75
82
|
export * from "./RestoreCoreNetworkPolicyVersionCommand";
|
|
76
83
|
export * from "./StartOrganizationServiceAccessUpdateCommand";
|
|
77
84
|
export * from "./StartRouteAnalysisCommand";
|
|
@@ -18,7 +18,9 @@ export declare const AttachmentErrorCode: {
|
|
|
18
18
|
readonly SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS";
|
|
19
19
|
readonly SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE";
|
|
20
20
|
readonly VPC_NOT_FOUND: "VPC_NOT_FOUND";
|
|
21
|
+
readonly VPC_UNSUPPORTED_FEATURES: "VPC_UNSUPPORTED_FEATURES";
|
|
21
22
|
readonly VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND";
|
|
23
|
+
readonly VPN_EXISTING_ASSOCIATIONS: "VPN_EXISTING_ASSOCIATIONS";
|
|
22
24
|
};
|
|
23
25
|
export type AttachmentErrorCode =
|
|
24
26
|
(typeof AttachmentErrorCode)[keyof typeof AttachmentErrorCode];
|
|
@@ -107,6 +109,10 @@ export declare const ChangeType: {
|
|
|
107
109
|
readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
|
|
108
110
|
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
109
111
|
readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
|
|
112
|
+
readonly ROUTING_POLICY: "ROUTING_POLICY";
|
|
113
|
+
readonly ROUTING_POLICY_ATTACHMENT_ASSOCIATION: "ROUTING_POLICY_ATTACHMENT_ASSOCIATION";
|
|
114
|
+
readonly ROUTING_POLICY_EDGE_ASSOCIATION: "ROUTING_POLICY_EDGE_ASSOCIATION";
|
|
115
|
+
readonly ROUTING_POLICY_SEGMENT_ASSOCIATION: "ROUTING_POLICY_SEGMENT_ASSOCIATION";
|
|
110
116
|
readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
|
|
111
117
|
readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
|
|
112
118
|
};
|
|
@@ -163,6 +169,12 @@ export declare const CoreNetworkState: {
|
|
|
163
169
|
};
|
|
164
170
|
export type CoreNetworkState =
|
|
165
171
|
(typeof CoreNetworkState)[keyof typeof CoreNetworkState];
|
|
172
|
+
export declare const RoutingPolicyDirection: {
|
|
173
|
+
readonly INBOUND: "inbound";
|
|
174
|
+
readonly OUTBOUND: "outbound";
|
|
175
|
+
};
|
|
176
|
+
export type RoutingPolicyDirection =
|
|
177
|
+
(typeof RoutingPolicyDirection)[keyof typeof RoutingPolicyDirection];
|
|
166
178
|
export declare const SegmentActionServiceInsertion: {
|
|
167
179
|
readonly SEND_TO: "send-to";
|
|
168
180
|
readonly SEND_VIA: "send-via";
|
|
@@ -29,6 +29,7 @@ import {
|
|
|
29
29
|
RouteState,
|
|
30
30
|
RouteTableType,
|
|
31
31
|
RouteType,
|
|
32
|
+
RoutingPolicyDirection,
|
|
32
33
|
SegmentActionServiceInsertion,
|
|
33
34
|
SendViaMode,
|
|
34
35
|
SiteState,
|
|
@@ -156,6 +157,12 @@ export interface AssociateTransitGatewayConnectPeerResponse {
|
|
|
156
157
|
| TransitGatewayConnectPeerAssociation
|
|
157
158
|
| undefined;
|
|
158
159
|
}
|
|
160
|
+
export interface AttachmentRoutingPolicyAssociationSummary {
|
|
161
|
+
AttachmentId?: string | undefined;
|
|
162
|
+
PendingRoutingPolicies?: string[] | undefined;
|
|
163
|
+
AssociatedRoutingPolicies?: string[] | undefined;
|
|
164
|
+
RoutingPolicyLabel?: string | undefined;
|
|
165
|
+
}
|
|
159
166
|
export interface AWSLocation {
|
|
160
167
|
Zone?: string | undefined;
|
|
161
168
|
SubnetArn?: string | undefined;
|
|
@@ -265,6 +272,10 @@ export interface CoreNetwork {
|
|
|
265
272
|
Edges?: CoreNetworkEdge[] | undefined;
|
|
266
273
|
Tags?: Tag[] | undefined;
|
|
267
274
|
}
|
|
275
|
+
export interface RoutingPolicyAssociationDetail {
|
|
276
|
+
RoutingPolicyNames?: string[] | undefined;
|
|
277
|
+
SharedSegments?: string[] | undefined;
|
|
278
|
+
}
|
|
268
279
|
export interface NetworkFunctionGroup {
|
|
269
280
|
Name?: string | undefined;
|
|
270
281
|
}
|
|
@@ -298,6 +309,13 @@ export interface CoreNetworkChangeValues {
|
|
|
298
309
|
VpnEcmpSupport?: boolean | undefined;
|
|
299
310
|
DnsSupport?: boolean | undefined;
|
|
300
311
|
SecurityGroupReferencingSupport?: boolean | undefined;
|
|
312
|
+
RoutingPolicyDirection?: RoutingPolicyDirection | undefined;
|
|
313
|
+
RoutingPolicy?: string | undefined;
|
|
314
|
+
PeerEdgeLocations?: string[] | undefined;
|
|
315
|
+
AttachmentId?: string | undefined;
|
|
316
|
+
RoutingPolicyAssociationDetails?:
|
|
317
|
+
| RoutingPolicyAssociationDetail[]
|
|
318
|
+
| undefined;
|
|
301
319
|
}
|
|
302
320
|
export interface CoreNetworkChange {
|
|
303
321
|
Type?: ChangeType | undefined;
|
|
@@ -309,10 +327,15 @@ export interface CoreNetworkChange {
|
|
|
309
327
|
}
|
|
310
328
|
export interface CoreNetworkChangeEventValues {
|
|
311
329
|
EdgeLocation?: string | undefined;
|
|
330
|
+
PeerEdgeLocation?: string | undefined;
|
|
331
|
+
RoutingPolicyDirection?: RoutingPolicyDirection | undefined;
|
|
312
332
|
SegmentName?: string | undefined;
|
|
313
333
|
NetworkFunctionGroupName?: string | undefined;
|
|
314
334
|
AttachmentId?: string | undefined;
|
|
315
335
|
Cidr?: string | undefined;
|
|
336
|
+
RoutingPolicyAssociationDetails?:
|
|
337
|
+
| RoutingPolicyAssociationDetail[]
|
|
338
|
+
| undefined;
|
|
316
339
|
}
|
|
317
340
|
export interface CoreNetworkChangeEvent {
|
|
318
341
|
Type?: ChangeType | undefined;
|
|
@@ -350,6 +373,22 @@ export interface CoreNetworkPolicyVersion {
|
|
|
350
373
|
CreatedAt?: Date | undefined;
|
|
351
374
|
ChangeSetState?: ChangeSetState | undefined;
|
|
352
375
|
}
|
|
376
|
+
export interface RoutingInformationNextHop {
|
|
377
|
+
IpAddress?: string | undefined;
|
|
378
|
+
CoreNetworkAttachmentId?: string | undefined;
|
|
379
|
+
ResourceId?: string | undefined;
|
|
380
|
+
ResourceType?: string | undefined;
|
|
381
|
+
SegmentName?: string | undefined;
|
|
382
|
+
EdgeLocation?: string | undefined;
|
|
383
|
+
}
|
|
384
|
+
export interface CoreNetworkRoutingInformation {
|
|
385
|
+
Prefix?: string | undefined;
|
|
386
|
+
NextHop?: RoutingInformationNextHop | undefined;
|
|
387
|
+
LocalPreference?: string | undefined;
|
|
388
|
+
Med?: string | undefined;
|
|
389
|
+
AsPath?: string[] | undefined;
|
|
390
|
+
Communities?: string[] | undefined;
|
|
391
|
+
}
|
|
353
392
|
export interface CoreNetworkSegmentEdgeIdentifier {
|
|
354
393
|
CoreNetworkId?: string | undefined;
|
|
355
394
|
SegmentName?: string | undefined;
|
|
@@ -368,6 +407,7 @@ export interface CreateConnectAttachmentRequest {
|
|
|
368
407
|
CoreNetworkId: string | undefined;
|
|
369
408
|
EdgeLocation: string | undefined;
|
|
370
409
|
TransportAttachmentId: string | undefined;
|
|
410
|
+
RoutingPolicyLabel?: string | undefined;
|
|
371
411
|
Options: ConnectAttachmentOptions | undefined;
|
|
372
412
|
Tags?: Tag[] | undefined;
|
|
373
413
|
ClientToken?: string | undefined;
|
|
@@ -410,6 +450,17 @@ export interface CreateCoreNetworkRequest {
|
|
|
410
450
|
export interface CreateCoreNetworkResponse {
|
|
411
451
|
CoreNetwork?: CoreNetwork | undefined;
|
|
412
452
|
}
|
|
453
|
+
export interface CreateCoreNetworkPrefixListAssociationRequest {
|
|
454
|
+
CoreNetworkId: string | undefined;
|
|
455
|
+
PrefixListArn: string | undefined;
|
|
456
|
+
PrefixListAlias: string | undefined;
|
|
457
|
+
ClientToken?: string | undefined;
|
|
458
|
+
}
|
|
459
|
+
export interface CreateCoreNetworkPrefixListAssociationResponse {
|
|
460
|
+
CoreNetworkId?: string | undefined;
|
|
461
|
+
PrefixListArn?: string | undefined;
|
|
462
|
+
PrefixListAlias?: string | undefined;
|
|
463
|
+
}
|
|
413
464
|
export interface Location {
|
|
414
465
|
Address?: string | undefined;
|
|
415
466
|
Latitude?: string | undefined;
|
|
@@ -449,6 +500,7 @@ export interface CreateDeviceResponse {
|
|
|
449
500
|
export interface CreateDirectConnectGatewayAttachmentRequest {
|
|
450
501
|
CoreNetworkId: string | undefined;
|
|
451
502
|
DirectConnectGatewayArn: string | undefined;
|
|
503
|
+
RoutingPolicyLabel?: string | undefined;
|
|
452
504
|
EdgeLocations: string[] | undefined;
|
|
453
505
|
Tags?: Tag[] | undefined;
|
|
454
506
|
ClientToken?: string | undefined;
|
|
@@ -522,6 +574,7 @@ export interface CreateSiteResponse {
|
|
|
522
574
|
export interface CreateSiteToSiteVpnAttachmentRequest {
|
|
523
575
|
CoreNetworkId: string | undefined;
|
|
524
576
|
VpnConnectionArn: string | undefined;
|
|
577
|
+
RoutingPolicyLabel?: string | undefined;
|
|
525
578
|
Tags?: Tag[] | undefined;
|
|
526
579
|
ClientToken?: string | undefined;
|
|
527
580
|
}
|
|
@@ -572,6 +625,7 @@ export interface CreateTransitGatewayPeeringResponse {
|
|
|
572
625
|
export interface CreateTransitGatewayRouteTableAttachmentRequest {
|
|
573
626
|
PeeringId: string | undefined;
|
|
574
627
|
TransitGatewayRouteTableArn: string | undefined;
|
|
628
|
+
RoutingPolicyLabel?: string | undefined;
|
|
575
629
|
Tags?: Tag[] | undefined;
|
|
576
630
|
ClientToken?: string | undefined;
|
|
577
631
|
}
|
|
@@ -596,6 +650,7 @@ export interface CreateVpcAttachmentRequest {
|
|
|
596
650
|
VpcArn: string | undefined;
|
|
597
651
|
SubnetArns: string[] | undefined;
|
|
598
652
|
Options?: VpcOptions | undefined;
|
|
653
|
+
RoutingPolicyLabel?: string | undefined;
|
|
599
654
|
Tags?: Tag[] | undefined;
|
|
600
655
|
ClientToken?: string | undefined;
|
|
601
656
|
}
|
|
@@ -639,6 +694,14 @@ export interface DeleteCoreNetworkPolicyVersionRequest {
|
|
|
639
694
|
export interface DeleteCoreNetworkPolicyVersionResponse {
|
|
640
695
|
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
641
696
|
}
|
|
697
|
+
export interface DeleteCoreNetworkPrefixListAssociationRequest {
|
|
698
|
+
CoreNetworkId: string | undefined;
|
|
699
|
+
PrefixListArn: string | undefined;
|
|
700
|
+
}
|
|
701
|
+
export interface DeleteCoreNetworkPrefixListAssociationResponse {
|
|
702
|
+
CoreNetworkId?: string | undefined;
|
|
703
|
+
PrefixListArn?: string | undefined;
|
|
704
|
+
}
|
|
642
705
|
export interface DeleteDeviceRequest {
|
|
643
706
|
GlobalNetworkId: string | undefined;
|
|
644
707
|
DeviceId: string | undefined;
|
|
@@ -1095,6 +1158,18 @@ export interface GetVpcAttachmentRequest {
|
|
|
1095
1158
|
export interface GetVpcAttachmentResponse {
|
|
1096
1159
|
VpcAttachment?: VpcAttachment | undefined;
|
|
1097
1160
|
}
|
|
1161
|
+
export interface ListAttachmentRoutingPolicyAssociationsRequest {
|
|
1162
|
+
CoreNetworkId: string | undefined;
|
|
1163
|
+
AttachmentId?: string | undefined;
|
|
1164
|
+
MaxResults?: number | undefined;
|
|
1165
|
+
NextToken?: string | undefined;
|
|
1166
|
+
}
|
|
1167
|
+
export interface ListAttachmentRoutingPolicyAssociationsResponse {
|
|
1168
|
+
AttachmentRoutingPolicyAssociations?:
|
|
1169
|
+
| AttachmentRoutingPolicyAssociationSummary[]
|
|
1170
|
+
| undefined;
|
|
1171
|
+
NextToken?: string | undefined;
|
|
1172
|
+
}
|
|
1098
1173
|
export interface ListAttachmentsRequest {
|
|
1099
1174
|
CoreNetworkId?: string | undefined;
|
|
1100
1175
|
AttachmentType?: AttachmentType | undefined;
|
|
@@ -1126,6 +1201,37 @@ export interface ListCoreNetworkPolicyVersionsResponse {
|
|
|
1126
1201
|
CoreNetworkPolicyVersions?: CoreNetworkPolicyVersion[] | undefined;
|
|
1127
1202
|
NextToken?: string | undefined;
|
|
1128
1203
|
}
|
|
1204
|
+
export interface ListCoreNetworkPrefixListAssociationsRequest {
|
|
1205
|
+
CoreNetworkId: string | undefined;
|
|
1206
|
+
PrefixListArn?: string | undefined;
|
|
1207
|
+
MaxResults?: number | undefined;
|
|
1208
|
+
NextToken?: string | undefined;
|
|
1209
|
+
}
|
|
1210
|
+
export interface PrefixListAssociation {
|
|
1211
|
+
CoreNetworkId?: string | undefined;
|
|
1212
|
+
PrefixListArn?: string | undefined;
|
|
1213
|
+
PrefixListAlias?: string | undefined;
|
|
1214
|
+
}
|
|
1215
|
+
export interface ListCoreNetworkPrefixListAssociationsResponse {
|
|
1216
|
+
PrefixListAssociations?: PrefixListAssociation[] | undefined;
|
|
1217
|
+
NextToken?: string | undefined;
|
|
1218
|
+
}
|
|
1219
|
+
export interface ListCoreNetworkRoutingInformationRequest {
|
|
1220
|
+
CoreNetworkId: string | undefined;
|
|
1221
|
+
SegmentName: string | undefined;
|
|
1222
|
+
EdgeLocation: string | undefined;
|
|
1223
|
+
NextHopFilters?: Record<string, string[]> | undefined;
|
|
1224
|
+
LocalPreferenceMatches?: string[] | undefined;
|
|
1225
|
+
ExactAsPathMatches?: string[] | undefined;
|
|
1226
|
+
MedMatches?: string[] | undefined;
|
|
1227
|
+
CommunityMatches?: string[] | undefined;
|
|
1228
|
+
MaxResults?: number | undefined;
|
|
1229
|
+
NextToken?: string | undefined;
|
|
1230
|
+
}
|
|
1231
|
+
export interface ListCoreNetworkRoutingInformationResponse {
|
|
1232
|
+
CoreNetworkRoutingInformation?: CoreNetworkRoutingInformation[] | undefined;
|
|
1233
|
+
NextToken?: string | undefined;
|
|
1234
|
+
}
|
|
1129
1235
|
export interface ListCoreNetworksRequest {
|
|
1130
1236
|
MaxResults?: number | undefined;
|
|
1131
1237
|
NextToken?: string | undefined;
|
|
@@ -1166,6 +1272,17 @@ export interface ListTagsForResourceRequest {
|
|
|
1166
1272
|
export interface ListTagsForResourceResponse {
|
|
1167
1273
|
TagList?: Tag[] | undefined;
|
|
1168
1274
|
}
|
|
1275
|
+
export interface PutAttachmentRoutingPolicyLabelRequest {
|
|
1276
|
+
CoreNetworkId: string | undefined;
|
|
1277
|
+
AttachmentId: string | undefined;
|
|
1278
|
+
RoutingPolicyLabel: string | undefined;
|
|
1279
|
+
ClientToken?: string | undefined;
|
|
1280
|
+
}
|
|
1281
|
+
export interface PutAttachmentRoutingPolicyLabelResponse {
|
|
1282
|
+
CoreNetworkId?: string | undefined;
|
|
1283
|
+
AttachmentId?: string | undefined;
|
|
1284
|
+
RoutingPolicyLabel?: string | undefined;
|
|
1285
|
+
}
|
|
1169
1286
|
export interface PutCoreNetworkPolicyRequest {
|
|
1170
1287
|
CoreNetworkId: string | undefined;
|
|
1171
1288
|
PolicyDocument: __AutomaticJsonStringConversion | string | undefined;
|
|
@@ -1194,6 +1311,15 @@ export interface RejectAttachmentRequest {
|
|
|
1194
1311
|
export interface RejectAttachmentResponse {
|
|
1195
1312
|
Attachment?: Attachment | undefined;
|
|
1196
1313
|
}
|
|
1314
|
+
export interface RemoveAttachmentRoutingPolicyLabelRequest {
|
|
1315
|
+
CoreNetworkId: string | undefined;
|
|
1316
|
+
AttachmentId: string | undefined;
|
|
1317
|
+
}
|
|
1318
|
+
export interface RemoveAttachmentRoutingPolicyLabelResponse {
|
|
1319
|
+
CoreNetworkId?: string | undefined;
|
|
1320
|
+
AttachmentId?: string | undefined;
|
|
1321
|
+
RoutingPolicyLabel?: string | undefined;
|
|
1322
|
+
}
|
|
1197
1323
|
export interface RestoreCoreNetworkPolicyVersionRequest {
|
|
1198
1324
|
CoreNetworkId: string | undefined;
|
|
1199
1325
|
PolicyVersionId: number | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
4
|
+
ListAttachmentRoutingPolicyAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/ListAttachmentRoutingPolicyAssociationsCommand";
|
|
6
|
+
import { NetworkManagerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAttachmentRoutingPolicyAssociations: (
|
|
8
|
+
config: NetworkManagerPaginationConfiguration,
|
|
9
|
+
input: ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAttachmentRoutingPolicyAssociationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
4
|
+
ListCoreNetworkPrefixListAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/ListCoreNetworkPrefixListAssociationsCommand";
|
|
6
|
+
import { NetworkManagerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCoreNetworkPrefixListAssociations: (
|
|
8
|
+
config: NetworkManagerPaginationConfiguration,
|
|
9
|
+
input: ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCoreNetworkPrefixListAssociationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCoreNetworkRoutingInformationCommandInput,
|
|
4
|
+
ListCoreNetworkRoutingInformationCommandOutput,
|
|
5
|
+
} from "../commands/ListCoreNetworkRoutingInformationCommand";
|
|
6
|
+
import { NetworkManagerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCoreNetworkRoutingInformation: (
|
|
8
|
+
config: NetworkManagerPaginationConfiguration,
|
|
9
|
+
input: ListCoreNetworkRoutingInformationCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCoreNetworkRoutingInformationCommandOutput>;
|
|
@@ -15,8 +15,11 @@ export * from "./GetNetworkTelemetryPaginator";
|
|
|
15
15
|
export * from "./GetSitesPaginator";
|
|
16
16
|
export * from "./GetTransitGatewayConnectPeerAssociationsPaginator";
|
|
17
17
|
export * from "./GetTransitGatewayRegistrationsPaginator";
|
|
18
|
+
export * from "./ListAttachmentRoutingPolicyAssociationsPaginator";
|
|
18
19
|
export * from "./ListAttachmentsPaginator";
|
|
19
20
|
export * from "./ListConnectPeersPaginator";
|
|
20
21
|
export * from "./ListCoreNetworkPolicyVersionsPaginator";
|
|
22
|
+
export * from "./ListCoreNetworkPrefixListAssociationsPaginator";
|
|
23
|
+
export * from "./ListCoreNetworkRoutingInformationPaginator";
|
|
21
24
|
export * from "./ListCoreNetworksPaginator";
|
|
22
25
|
export * from "./ListPeeringsPaginator";
|