@aws-sdk/client-networkmanager 3.118.1 → 3.128.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 +30 -0
- package/dist-cjs/NetworkManager.js +105 -0
- package/dist-cjs/commands/CreateTransitGatewayPeeringCommand.js +36 -0
- package/dist-cjs/commands/CreateTransitGatewayRouteTableAttachmentCommand.js +36 -0
- package/dist-cjs/commands/DeletePeeringCommand.js +36 -0
- package/dist-cjs/commands/GetCoreNetworkChangeEventsCommand.js +36 -0
- package/dist-cjs/commands/GetTransitGatewayPeeringCommand.js +36 -0
- package/dist-cjs/commands/GetTransitGatewayRouteTableAttachmentCommand.js +36 -0
- package/dist-cjs/commands/ListPeeringsCommand.js +36 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +143 -5
- package/dist-cjs/pagination/GetCoreNetworkChangeEventsPaginator.js +36 -0
- package/dist-cjs/pagination/ListPeeringsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +3 -1
- package/dist-cjs/protocols/Aws_restJson1.js +1221 -659
- package/dist-es/NetworkManager.js +105 -0
- package/dist-es/commands/CreateTransitGatewayPeeringCommand.js +39 -0
- package/dist-es/commands/CreateTransitGatewayRouteTableAttachmentCommand.js +39 -0
- package/dist-es/commands/DeletePeeringCommand.js +39 -0
- package/dist-es/commands/GetCoreNetworkChangeEventsCommand.js +39 -0
- package/dist-es/commands/GetTransitGatewayPeeringCommand.js +39 -0
- package/dist-es/commands/GetTransitGatewayRouteTableAttachmentCommand.js +39 -0
- package/dist-es/commands/ListPeeringsCommand.js +39 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +99 -0
- package/dist-es/pagination/GetCoreNetworkChangeEventsPaginator.js +75 -0
- package/dist-es/pagination/ListPeeringsPaginator.js +75 -0
- package/dist-es/pagination/index.js +3 -1
- package/dist-es/protocols/Aws_restJson1.js +1395 -655
- package/dist-types/NetworkManager.d.ts +56 -1
- package/dist-types/NetworkManagerClient.d.ts +9 -2
- package/dist-types/commands/CreateTransitGatewayPeeringCommand.d.ts +35 -0
- package/dist-types/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +35 -0
- package/dist-types/commands/DeletePeeringCommand.d.ts +35 -0
- package/dist-types/commands/GetCoreNetworkChangeEventsCommand.d.ts +35 -0
- package/dist-types/commands/GetCoreNetworkPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetTransitGatewayPeeringCommand.d.ts +35 -0
- package/dist-types/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +35 -0
- package/dist-types/commands/ListOrganizationServiceAccessStatusCommand.d.ts +17 -0
- package/dist-types/commands/ListPeeringsCommand.d.ts +35 -0
- package/dist-types/commands/StartOrganizationServiceAccessUpdateCommand.d.ts +17 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +460 -7
- package/dist-types/pagination/GetCoreNetworkChangeEventsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListPeeringsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +21 -0
- package/dist-types/ts3.4/NetworkManager.d.ts +37 -0
- package/dist-types/ts3.4/NetworkManagerClient.d.ts +9 -2
- package/dist-types/ts3.4/commands/CreateTransitGatewayPeeringCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePeeringCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCoreNetworkChangeEventsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTransitGatewayPeeringCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListOrganizationServiceAccessStatusCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListPeeringsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartOrganizationServiceAccessUpdateCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +266 -1
- package/dist-types/ts3.4/pagination/GetCoreNetworkChangeEventsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPeeringsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +21 -0
- package/package.json +26 -26
|
@@ -15,6 +15,7 @@ export declare namespace AcceptAttachmentRequest {
|
|
|
15
15
|
export declare enum AttachmentType {
|
|
16
16
|
CONNECT = "CONNECT",
|
|
17
17
|
SITE_TO_SITE_VPN = "SITE_TO_SITE_VPN",
|
|
18
|
+
TRANSIT_GATEWAY_ROUTE_TABLE = "TRANSIT_GATEWAY_ROUTE_TABLE",
|
|
18
19
|
VPC = "VPC"
|
|
19
20
|
}
|
|
20
21
|
/**
|
|
@@ -43,7 +44,7 @@ export declare namespace Tag {
|
|
|
43
44
|
*/
|
|
44
45
|
export interface ProposedSegmentChange {
|
|
45
46
|
/**
|
|
46
|
-
* <p>The key-value tags that changed for the segment.</p>
|
|
47
|
+
* <p>The list of key-value tags that changed for the segment.</p>
|
|
47
48
|
*/
|
|
48
49
|
Tags?: Tag[];
|
|
49
50
|
/**
|
|
@@ -77,7 +78,7 @@ export declare enum AttachmentState {
|
|
|
77
78
|
*/
|
|
78
79
|
export interface Attachment {
|
|
79
80
|
/**
|
|
80
|
-
* <p>
|
|
81
|
+
* <p>The ID of a core network.</p>
|
|
81
82
|
*/
|
|
82
83
|
CoreNetworkId?: string;
|
|
83
84
|
/**
|
|
@@ -285,8 +286,17 @@ export declare class ValidationException extends __BaseException {
|
|
|
285
286
|
*/
|
|
286
287
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
287
288
|
}
|
|
289
|
+
/**
|
|
290
|
+
* <p>Describes the current status of an account within an Amazon Web Services Organization, including service-linked roles (SLRs).</p>
|
|
291
|
+
*/
|
|
288
292
|
export interface AccountStatus {
|
|
293
|
+
/**
|
|
294
|
+
* <p>The ID of an account within the Amazon Web Services Organization.</p>
|
|
295
|
+
*/
|
|
289
296
|
AccountId?: string;
|
|
297
|
+
/**
|
|
298
|
+
* <p>The status of SLR deployment for the account.</p>
|
|
299
|
+
*/
|
|
290
300
|
SLRDeploymentStatus?: string;
|
|
291
301
|
}
|
|
292
302
|
export declare namespace AccountStatus {
|
|
@@ -677,12 +687,22 @@ export declare enum ChangeSetState {
|
|
|
677
687
|
PENDING_GENERATION = "PENDING_GENERATION",
|
|
678
688
|
READY_TO_EXECUTE = "READY_TO_EXECUTE"
|
|
679
689
|
}
|
|
690
|
+
export declare enum ChangeStatus {
|
|
691
|
+
COMPLETE = "COMPLETE",
|
|
692
|
+
FAILED = "FAILED",
|
|
693
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
694
|
+
NOT_STARTED = "NOT_STARTED"
|
|
695
|
+
}
|
|
680
696
|
export declare enum ChangeType {
|
|
681
697
|
ATTACHMENT_MAPPING = "ATTACHMENT_MAPPING",
|
|
698
|
+
ATTACHMENT_POLICIES_CONFIGURATION = "ATTACHMENT_POLICIES_CONFIGURATION",
|
|
682
699
|
ATTACHMENT_ROUTE_PROPAGATION = "ATTACHMENT_ROUTE_PROPAGATION",
|
|
683
700
|
ATTACHMENT_ROUTE_STATIC = "ATTACHMENT_ROUTE_STATIC",
|
|
701
|
+
CORE_NETWORK_CONFIGURATION = "CORE_NETWORK_CONFIGURATION",
|
|
684
702
|
CORE_NETWORK_EDGE = "CORE_NETWORK_EDGE",
|
|
685
|
-
CORE_NETWORK_SEGMENT = "CORE_NETWORK_SEGMENT"
|
|
703
|
+
CORE_NETWORK_SEGMENT = "CORE_NETWORK_SEGMENT",
|
|
704
|
+
SEGMENTS_CONFIGURATION = "SEGMENTS_CONFIGURATION",
|
|
705
|
+
SEGMENT_ACTIONS_CONFIGURATION = "SEGMENT_ACTIONS_CONFIGURATION"
|
|
686
706
|
}
|
|
687
707
|
export declare enum TunnelProtocol {
|
|
688
708
|
GRE = "GRE"
|
|
@@ -914,7 +934,7 @@ export interface ConnectPeer {
|
|
|
914
934
|
*/
|
|
915
935
|
Configuration?: ConnectPeerConfiguration;
|
|
916
936
|
/**
|
|
917
|
-
* <p>The tags associated with the Connect peer.</p>
|
|
937
|
+
* <p>The list of key-value tags associated with the Connect peer.</p>
|
|
918
938
|
*/
|
|
919
939
|
Tags?: Tag[];
|
|
920
940
|
}
|
|
@@ -953,7 +973,7 @@ export interface ConnectPeerSummary {
|
|
|
953
973
|
*/
|
|
954
974
|
CreatedAt?: Date;
|
|
955
975
|
/**
|
|
956
|
-
* <p>The tags associated with
|
|
976
|
+
* <p>The list of key-value tags associated with the Connect peer summary.</p>
|
|
957
977
|
*/
|
|
958
978
|
Tags?: Tag[];
|
|
959
979
|
}
|
|
@@ -1052,7 +1072,7 @@ export interface CoreNetwork {
|
|
|
1052
1072
|
*/
|
|
1053
1073
|
Edges?: CoreNetworkEdge[];
|
|
1054
1074
|
/**
|
|
1055
|
-
* <p>The tags associated with a core network.</p>
|
|
1075
|
+
* <p>The list of key-value tags associated with a core network.</p>
|
|
1056
1076
|
*/
|
|
1057
1077
|
Tags?: Tag[];
|
|
1058
1078
|
}
|
|
@@ -1125,6 +1145,10 @@ export interface CoreNetworkChange {
|
|
|
1125
1145
|
* <p>The new value for a core network</p>
|
|
1126
1146
|
*/
|
|
1127
1147
|
NewValues?: CoreNetworkChangeValues;
|
|
1148
|
+
/**
|
|
1149
|
+
* <p>Uniquely identifies the path for a change within the changeset. For example, the <code>IdentifierPath</code> for a core network segment change might be <code>"CORE_NETWORK_SEGMENT/us-east-1/devsegment"</code>.</p>
|
|
1150
|
+
*/
|
|
1151
|
+
IdentifierPath?: string;
|
|
1128
1152
|
}
|
|
1129
1153
|
export declare namespace CoreNetworkChange {
|
|
1130
1154
|
/**
|
|
@@ -1132,6 +1156,68 @@ export declare namespace CoreNetworkChange {
|
|
|
1132
1156
|
*/
|
|
1133
1157
|
const filterSensitiveLog: (obj: CoreNetworkChange) => any;
|
|
1134
1158
|
}
|
|
1159
|
+
/**
|
|
1160
|
+
* <p>Describes a core network change event.</p>
|
|
1161
|
+
*/
|
|
1162
|
+
export interface CoreNetworkChangeEventValues {
|
|
1163
|
+
/**
|
|
1164
|
+
* <p>The edge location for the core network change event.</p>
|
|
1165
|
+
*/
|
|
1166
|
+
EdgeLocation?: string;
|
|
1167
|
+
/**
|
|
1168
|
+
* <p>The segment name if the change event is associated with a segment.</p>
|
|
1169
|
+
*/
|
|
1170
|
+
SegmentName?: string;
|
|
1171
|
+
/**
|
|
1172
|
+
* <p>The ID of the attachment if the change event is associated with an attachment. </p>
|
|
1173
|
+
*/
|
|
1174
|
+
AttachmentId?: string;
|
|
1175
|
+
/**
|
|
1176
|
+
* <p>For a <code>STATIC_ROUTE</code> event, this is the IP address.</p>
|
|
1177
|
+
*/
|
|
1178
|
+
Cidr?: string;
|
|
1179
|
+
}
|
|
1180
|
+
export declare namespace CoreNetworkChangeEventValues {
|
|
1181
|
+
/**
|
|
1182
|
+
* @internal
|
|
1183
|
+
*/
|
|
1184
|
+
const filterSensitiveLog: (obj: CoreNetworkChangeEventValues) => any;
|
|
1185
|
+
}
|
|
1186
|
+
/**
|
|
1187
|
+
* <p>Describes a core network change event. This can be a change to a segment, attachment, route, etc.</p>
|
|
1188
|
+
*/
|
|
1189
|
+
export interface CoreNetworkChangeEvent {
|
|
1190
|
+
/**
|
|
1191
|
+
* <p>Describes the type of change event. </p>
|
|
1192
|
+
*/
|
|
1193
|
+
Type?: ChangeType | string;
|
|
1194
|
+
/**
|
|
1195
|
+
* <p>The action taken for the change event.</p>
|
|
1196
|
+
*/
|
|
1197
|
+
Action?: ChangeAction | string;
|
|
1198
|
+
/**
|
|
1199
|
+
* <p>Uniquely identifies the path for a change within the changeset. For example, the <code>IdentifierPath</code> for a core network segment change might be <code>"CORE_NETWORK_SEGMENT/us-east-1/devsegment"</code>.</p>
|
|
1200
|
+
*/
|
|
1201
|
+
IdentifierPath?: string;
|
|
1202
|
+
/**
|
|
1203
|
+
* <p>The timestamp for an event change in status.</p>
|
|
1204
|
+
*/
|
|
1205
|
+
EventTime?: Date;
|
|
1206
|
+
/**
|
|
1207
|
+
* <p>The status of the core network change event.</p>
|
|
1208
|
+
*/
|
|
1209
|
+
Status?: ChangeStatus | string;
|
|
1210
|
+
/**
|
|
1211
|
+
* <p>Details of the change event.</p>
|
|
1212
|
+
*/
|
|
1213
|
+
Values?: CoreNetworkChangeEventValues;
|
|
1214
|
+
}
|
|
1215
|
+
export declare namespace CoreNetworkChangeEvent {
|
|
1216
|
+
/**
|
|
1217
|
+
* @internal
|
|
1218
|
+
*/
|
|
1219
|
+
const filterSensitiveLog: (obj: CoreNetworkChangeEvent) => any;
|
|
1220
|
+
}
|
|
1135
1221
|
export declare enum CoreNetworkPolicyAlias {
|
|
1136
1222
|
LATEST = "LATEST",
|
|
1137
1223
|
LIVE = "LIVE"
|
|
@@ -1993,6 +2079,180 @@ export declare namespace CreateSiteToSiteVpnAttachmentResponse {
|
|
|
1993
2079
|
*/
|
|
1994
2080
|
const filterSensitiveLog: (obj: CreateSiteToSiteVpnAttachmentResponse) => any;
|
|
1995
2081
|
}
|
|
2082
|
+
export interface CreateTransitGatewayPeeringRequest {
|
|
2083
|
+
/**
|
|
2084
|
+
* <p>The ID of a core network.</p>
|
|
2085
|
+
*/
|
|
2086
|
+
CoreNetworkId: string | undefined;
|
|
2087
|
+
/**
|
|
2088
|
+
* <p>The ARN of the transit gateway for the peering request.</p>
|
|
2089
|
+
*/
|
|
2090
|
+
TransitGatewayArn: string | undefined;
|
|
2091
|
+
/**
|
|
2092
|
+
* <p>The list of key-value tags associated with the request.</p>
|
|
2093
|
+
*/
|
|
2094
|
+
Tags?: Tag[];
|
|
2095
|
+
/**
|
|
2096
|
+
* <p>The client token associated with the request.</p>
|
|
2097
|
+
*/
|
|
2098
|
+
ClientToken?: string;
|
|
2099
|
+
}
|
|
2100
|
+
export declare namespace CreateTransitGatewayPeeringRequest {
|
|
2101
|
+
/**
|
|
2102
|
+
* @internal
|
|
2103
|
+
*/
|
|
2104
|
+
const filterSensitiveLog: (obj: CreateTransitGatewayPeeringRequest) => any;
|
|
2105
|
+
}
|
|
2106
|
+
export declare enum PeeringType {
|
|
2107
|
+
TRANSIT_GATEWAY = "TRANSIT_GATEWAY"
|
|
2108
|
+
}
|
|
2109
|
+
export declare enum PeeringState {
|
|
2110
|
+
AVAILABLE = "AVAILABLE",
|
|
2111
|
+
CREATING = "CREATING",
|
|
2112
|
+
DELETING = "DELETING",
|
|
2113
|
+
FAILED = "FAILED"
|
|
2114
|
+
}
|
|
2115
|
+
/**
|
|
2116
|
+
* <p>Describes a peering connection.</p>
|
|
2117
|
+
*/
|
|
2118
|
+
export interface Peering {
|
|
2119
|
+
/**
|
|
2120
|
+
* <p>The ID of the core network for the peering request.</p>
|
|
2121
|
+
*/
|
|
2122
|
+
CoreNetworkId?: string;
|
|
2123
|
+
/**
|
|
2124
|
+
* <p>The ARN of a core network.</p>
|
|
2125
|
+
*/
|
|
2126
|
+
CoreNetworkArn?: string;
|
|
2127
|
+
/**
|
|
2128
|
+
* <p>The ID of the peering attachment. </p>
|
|
2129
|
+
*/
|
|
2130
|
+
PeeringId?: string;
|
|
2131
|
+
/**
|
|
2132
|
+
* <p>The ID of the account owner.</p>
|
|
2133
|
+
*/
|
|
2134
|
+
OwnerAccountId?: string;
|
|
2135
|
+
/**
|
|
2136
|
+
* <p>The type of peering. This will be <code>TRANSIT_GATEWAY</code>.</p>
|
|
2137
|
+
*/
|
|
2138
|
+
PeeringType?: PeeringType | string;
|
|
2139
|
+
/**
|
|
2140
|
+
* <p>The current state of the peering connection. </p>
|
|
2141
|
+
*/
|
|
2142
|
+
State?: PeeringState | string;
|
|
2143
|
+
/**
|
|
2144
|
+
* <p>The edge location for the peer.</p>
|
|
2145
|
+
*/
|
|
2146
|
+
EdgeLocation?: string;
|
|
2147
|
+
/**
|
|
2148
|
+
* <p>The resource ARN of the peer.</p>
|
|
2149
|
+
*/
|
|
2150
|
+
ResourceArn?: string;
|
|
2151
|
+
/**
|
|
2152
|
+
* <p>The list of key-value tags associated with the peering.</p>
|
|
2153
|
+
*/
|
|
2154
|
+
Tags?: Tag[];
|
|
2155
|
+
/**
|
|
2156
|
+
* <p>The timestamp when the attachment peer was created.</p>
|
|
2157
|
+
*/
|
|
2158
|
+
CreatedAt?: Date;
|
|
2159
|
+
}
|
|
2160
|
+
export declare namespace Peering {
|
|
2161
|
+
/**
|
|
2162
|
+
* @internal
|
|
2163
|
+
*/
|
|
2164
|
+
const filterSensitiveLog: (obj: Peering) => any;
|
|
2165
|
+
}
|
|
2166
|
+
/**
|
|
2167
|
+
* <p>Describes a transit gateway peering attachment.</p>
|
|
2168
|
+
*/
|
|
2169
|
+
export interface TransitGatewayPeering {
|
|
2170
|
+
/**
|
|
2171
|
+
* <p>Describes a transit gateway peer connection.</p>
|
|
2172
|
+
*/
|
|
2173
|
+
Peering?: Peering;
|
|
2174
|
+
/**
|
|
2175
|
+
* <p>The ARN of the transit gateway.</p>
|
|
2176
|
+
*/
|
|
2177
|
+
TransitGatewayArn?: string;
|
|
2178
|
+
}
|
|
2179
|
+
export declare namespace TransitGatewayPeering {
|
|
2180
|
+
/**
|
|
2181
|
+
* @internal
|
|
2182
|
+
*/
|
|
2183
|
+
const filterSensitiveLog: (obj: TransitGatewayPeering) => any;
|
|
2184
|
+
}
|
|
2185
|
+
export interface CreateTransitGatewayPeeringResponse {
|
|
2186
|
+
/**
|
|
2187
|
+
* <p>Returns information about the transit gateway peering connection request.</p>
|
|
2188
|
+
*/
|
|
2189
|
+
TransitGatewayPeering?: TransitGatewayPeering;
|
|
2190
|
+
}
|
|
2191
|
+
export declare namespace CreateTransitGatewayPeeringResponse {
|
|
2192
|
+
/**
|
|
2193
|
+
* @internal
|
|
2194
|
+
*/
|
|
2195
|
+
const filterSensitiveLog: (obj: CreateTransitGatewayPeeringResponse) => any;
|
|
2196
|
+
}
|
|
2197
|
+
export interface CreateTransitGatewayRouteTableAttachmentRequest {
|
|
2198
|
+
/**
|
|
2199
|
+
* <p>The ID of the peer for the </p>
|
|
2200
|
+
*/
|
|
2201
|
+
PeeringId: string | undefined;
|
|
2202
|
+
/**
|
|
2203
|
+
* <p>The ARN of the transit gateway route table for the attachment request.</p>
|
|
2204
|
+
*/
|
|
2205
|
+
TransitGatewayRouteTableArn: string | undefined;
|
|
2206
|
+
/**
|
|
2207
|
+
* <p>The list of key-value tags associated with the request.</p>
|
|
2208
|
+
*/
|
|
2209
|
+
Tags?: Tag[];
|
|
2210
|
+
/**
|
|
2211
|
+
* <p>The client token associated with the request.</p>
|
|
2212
|
+
*/
|
|
2213
|
+
ClientToken?: string;
|
|
2214
|
+
}
|
|
2215
|
+
export declare namespace CreateTransitGatewayRouteTableAttachmentRequest {
|
|
2216
|
+
/**
|
|
2217
|
+
* @internal
|
|
2218
|
+
*/
|
|
2219
|
+
const filterSensitiveLog: (obj: CreateTransitGatewayRouteTableAttachmentRequest) => any;
|
|
2220
|
+
}
|
|
2221
|
+
/**
|
|
2222
|
+
* <p>Describes a transit gateway route table attachment.</p>
|
|
2223
|
+
*/
|
|
2224
|
+
export interface TransitGatewayRouteTableAttachment {
|
|
2225
|
+
/**
|
|
2226
|
+
* <p>Describes a core network attachment.</p>
|
|
2227
|
+
*/
|
|
2228
|
+
Attachment?: Attachment;
|
|
2229
|
+
/**
|
|
2230
|
+
* <p>The ID of the peering attachment.</p>
|
|
2231
|
+
*/
|
|
2232
|
+
PeeringId?: string;
|
|
2233
|
+
/**
|
|
2234
|
+
* <p>The ARN of the transit gateway attachment route table.</p>
|
|
2235
|
+
*/
|
|
2236
|
+
TransitGatewayRouteTableArn?: string;
|
|
2237
|
+
}
|
|
2238
|
+
export declare namespace TransitGatewayRouteTableAttachment {
|
|
2239
|
+
/**
|
|
2240
|
+
* @internal
|
|
2241
|
+
*/
|
|
2242
|
+
const filterSensitiveLog: (obj: TransitGatewayRouteTableAttachment) => any;
|
|
2243
|
+
}
|
|
2244
|
+
export interface CreateTransitGatewayRouteTableAttachmentResponse {
|
|
2245
|
+
/**
|
|
2246
|
+
* <p>The route table associated with the create transit gateway route table attachment request.</p>
|
|
2247
|
+
*/
|
|
2248
|
+
TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
|
|
2249
|
+
}
|
|
2250
|
+
export declare namespace CreateTransitGatewayRouteTableAttachmentResponse {
|
|
2251
|
+
/**
|
|
2252
|
+
* @internal
|
|
2253
|
+
*/
|
|
2254
|
+
const filterSensitiveLog: (obj: CreateTransitGatewayRouteTableAttachmentResponse) => any;
|
|
2255
|
+
}
|
|
1996
2256
|
/**
|
|
1997
2257
|
* <p>Describes the VPC options.</p>
|
|
1998
2258
|
*/
|
|
@@ -2283,6 +2543,30 @@ export declare namespace DeleteLinkResponse {
|
|
|
2283
2543
|
*/
|
|
2284
2544
|
const filterSensitiveLog: (obj: DeleteLinkResponse) => any;
|
|
2285
2545
|
}
|
|
2546
|
+
export interface DeletePeeringRequest {
|
|
2547
|
+
/**
|
|
2548
|
+
* <p>The ID of the peering connection to delete.</p>
|
|
2549
|
+
*/
|
|
2550
|
+
PeeringId: string | undefined;
|
|
2551
|
+
}
|
|
2552
|
+
export declare namespace DeletePeeringRequest {
|
|
2553
|
+
/**
|
|
2554
|
+
* @internal
|
|
2555
|
+
*/
|
|
2556
|
+
const filterSensitiveLog: (obj: DeletePeeringRequest) => any;
|
|
2557
|
+
}
|
|
2558
|
+
export interface DeletePeeringResponse {
|
|
2559
|
+
/**
|
|
2560
|
+
* <p>Information about a deleted peering connection.</p>
|
|
2561
|
+
*/
|
|
2562
|
+
Peering?: Peering;
|
|
2563
|
+
}
|
|
2564
|
+
export declare namespace DeletePeeringResponse {
|
|
2565
|
+
/**
|
|
2566
|
+
* @internal
|
|
2567
|
+
*/
|
|
2568
|
+
const filterSensitiveLog: (obj: DeletePeeringResponse) => any;
|
|
2569
|
+
}
|
|
2286
2570
|
export interface DeleteResourcePolicyRequest {
|
|
2287
2571
|
/**
|
|
2288
2572
|
* <p>The ARN of the policy to delete.</p>
|
|
@@ -2740,6 +3024,46 @@ export declare namespace GetCoreNetworkResponse {
|
|
|
2740
3024
|
*/
|
|
2741
3025
|
const filterSensitiveLog: (obj: GetCoreNetworkResponse) => any;
|
|
2742
3026
|
}
|
|
3027
|
+
export interface GetCoreNetworkChangeEventsRequest {
|
|
3028
|
+
/**
|
|
3029
|
+
* <p>The ID of a core network.</p>
|
|
3030
|
+
*/
|
|
3031
|
+
CoreNetworkId: string | undefined;
|
|
3032
|
+
/**
|
|
3033
|
+
* <p>The ID of the policy version.</p>
|
|
3034
|
+
*/
|
|
3035
|
+
PolicyVersionId: number | undefined;
|
|
3036
|
+
/**
|
|
3037
|
+
* <p>The maximum number of results to return.</p>
|
|
3038
|
+
*/
|
|
3039
|
+
MaxResults?: number;
|
|
3040
|
+
/**
|
|
3041
|
+
* <p>The token for the next page of results.</p>
|
|
3042
|
+
*/
|
|
3043
|
+
NextToken?: string;
|
|
3044
|
+
}
|
|
3045
|
+
export declare namespace GetCoreNetworkChangeEventsRequest {
|
|
3046
|
+
/**
|
|
3047
|
+
* @internal
|
|
3048
|
+
*/
|
|
3049
|
+
const filterSensitiveLog: (obj: GetCoreNetworkChangeEventsRequest) => any;
|
|
3050
|
+
}
|
|
3051
|
+
export interface GetCoreNetworkChangeEventsResponse {
|
|
3052
|
+
/**
|
|
3053
|
+
* <p>The response to <code>GetCoreNetworkChangeEventsRequest</code>.</p>
|
|
3054
|
+
*/
|
|
3055
|
+
CoreNetworkChangeEvents?: CoreNetworkChangeEvent[];
|
|
3056
|
+
/**
|
|
3057
|
+
* <p>The token for the next page of results.</p>
|
|
3058
|
+
*/
|
|
3059
|
+
NextToken?: string;
|
|
3060
|
+
}
|
|
3061
|
+
export declare namespace GetCoreNetworkChangeEventsResponse {
|
|
3062
|
+
/**
|
|
3063
|
+
* @internal
|
|
3064
|
+
*/
|
|
3065
|
+
const filterSensitiveLog: (obj: GetCoreNetworkChangeEventsResponse) => any;
|
|
3066
|
+
}
|
|
2743
3067
|
export interface GetCoreNetworkChangeSetRequest {
|
|
2744
3068
|
/**
|
|
2745
3069
|
* <p>The ID of a core network.</p>
|
|
@@ -3411,7 +3735,7 @@ export interface NetworkResource {
|
|
|
3411
3735
|
*/
|
|
3412
3736
|
RegisteredGatewayArn?: string;
|
|
3413
3737
|
/**
|
|
3414
|
-
* <p>a core network
|
|
3738
|
+
* <p>The ID of a core network.</p>
|
|
3415
3739
|
*/
|
|
3416
3740
|
CoreNetworkId?: string;
|
|
3417
3741
|
/**
|
|
@@ -4301,6 +4625,30 @@ export declare namespace GetTransitGatewayConnectPeerAssociationsResponse {
|
|
|
4301
4625
|
*/
|
|
4302
4626
|
const filterSensitiveLog: (obj: GetTransitGatewayConnectPeerAssociationsResponse) => any;
|
|
4303
4627
|
}
|
|
4628
|
+
export interface GetTransitGatewayPeeringRequest {
|
|
4629
|
+
/**
|
|
4630
|
+
* <p>The ID of the peering request.</p>
|
|
4631
|
+
*/
|
|
4632
|
+
PeeringId: string | undefined;
|
|
4633
|
+
}
|
|
4634
|
+
export declare namespace GetTransitGatewayPeeringRequest {
|
|
4635
|
+
/**
|
|
4636
|
+
* @internal
|
|
4637
|
+
*/
|
|
4638
|
+
const filterSensitiveLog: (obj: GetTransitGatewayPeeringRequest) => any;
|
|
4639
|
+
}
|
|
4640
|
+
export interface GetTransitGatewayPeeringResponse {
|
|
4641
|
+
/**
|
|
4642
|
+
* <p>Returns information about a transit gateway peering. </p>
|
|
4643
|
+
*/
|
|
4644
|
+
TransitGatewayPeering?: TransitGatewayPeering;
|
|
4645
|
+
}
|
|
4646
|
+
export declare namespace GetTransitGatewayPeeringResponse {
|
|
4647
|
+
/**
|
|
4648
|
+
* @internal
|
|
4649
|
+
*/
|
|
4650
|
+
const filterSensitiveLog: (obj: GetTransitGatewayPeeringResponse) => any;
|
|
4651
|
+
}
|
|
4304
4652
|
export interface GetTransitGatewayRegistrationsRequest {
|
|
4305
4653
|
/**
|
|
4306
4654
|
* <p>The ID of the global network.</p>
|
|
@@ -4342,6 +4690,30 @@ export declare namespace GetTransitGatewayRegistrationsResponse {
|
|
|
4342
4690
|
*/
|
|
4343
4691
|
const filterSensitiveLog: (obj: GetTransitGatewayRegistrationsResponse) => any;
|
|
4344
4692
|
}
|
|
4693
|
+
export interface GetTransitGatewayRouteTableAttachmentRequest {
|
|
4694
|
+
/**
|
|
4695
|
+
* <p>The ID of the transit gateway route table attachment.</p>
|
|
4696
|
+
*/
|
|
4697
|
+
AttachmentId: string | undefined;
|
|
4698
|
+
}
|
|
4699
|
+
export declare namespace GetTransitGatewayRouteTableAttachmentRequest {
|
|
4700
|
+
/**
|
|
4701
|
+
* @internal
|
|
4702
|
+
*/
|
|
4703
|
+
const filterSensitiveLog: (obj: GetTransitGatewayRouteTableAttachmentRequest) => any;
|
|
4704
|
+
}
|
|
4705
|
+
export interface GetTransitGatewayRouteTableAttachmentResponse {
|
|
4706
|
+
/**
|
|
4707
|
+
* <p>Returns information about the transit gateway route table attachment.</p>
|
|
4708
|
+
*/
|
|
4709
|
+
TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
|
|
4710
|
+
}
|
|
4711
|
+
export declare namespace GetTransitGatewayRouteTableAttachmentResponse {
|
|
4712
|
+
/**
|
|
4713
|
+
* @internal
|
|
4714
|
+
*/
|
|
4715
|
+
const filterSensitiveLog: (obj: GetTransitGatewayRouteTableAttachmentResponse) => any;
|
|
4716
|
+
}
|
|
4345
4717
|
export interface GetVpcAttachmentRequest {
|
|
4346
4718
|
/**
|
|
4347
4719
|
* <p>The ID of the attachment.</p>
|
|
@@ -4523,7 +4895,13 @@ export declare namespace ListCoreNetworksResponse {
|
|
|
4523
4895
|
const filterSensitiveLog: (obj: ListCoreNetworksResponse) => any;
|
|
4524
4896
|
}
|
|
4525
4897
|
export interface ListOrganizationServiceAccessStatusRequest {
|
|
4898
|
+
/**
|
|
4899
|
+
* <p>The maximum number of results to return.</p>
|
|
4900
|
+
*/
|
|
4526
4901
|
MaxResults?: number;
|
|
4902
|
+
/**
|
|
4903
|
+
* <p>The token for the next page of results.</p>
|
|
4904
|
+
*/
|
|
4527
4905
|
NextToken?: string;
|
|
4528
4906
|
}
|
|
4529
4907
|
export declare namespace ListOrganizationServiceAccessStatusRequest {
|
|
@@ -4532,10 +4910,25 @@ export declare namespace ListOrganizationServiceAccessStatusRequest {
|
|
|
4532
4910
|
*/
|
|
4533
4911
|
const filterSensitiveLog: (obj: ListOrganizationServiceAccessStatusRequest) => any;
|
|
4534
4912
|
}
|
|
4913
|
+
/**
|
|
4914
|
+
* <p>The status of an Amazon Web Services Organization and the accounts within that organization.</p>
|
|
4915
|
+
*/
|
|
4535
4916
|
export interface OrganizationStatus {
|
|
4917
|
+
/**
|
|
4918
|
+
* <p>The ID of an Amazon Web Services Organization.</p>
|
|
4919
|
+
*/
|
|
4536
4920
|
OrganizationId?: string;
|
|
4921
|
+
/**
|
|
4922
|
+
* <p>The status of the organization's AWS service access. This will be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
4923
|
+
*/
|
|
4537
4924
|
OrganizationAwsServiceAccessStatus?: string;
|
|
4925
|
+
/**
|
|
4926
|
+
* <p>The status of the SLR deployment for the account. This will be either <code>SUCCEEDED</code> or <code>IN_PROGRESS</code>.</p>
|
|
4927
|
+
*/
|
|
4538
4928
|
SLRDeploymentStatus?: string;
|
|
4929
|
+
/**
|
|
4930
|
+
* <p>The current service-linked role (SLR) deployment status for an Amazon Web Services Organization's accounts. This will be either <code>SUCCEEDED</code> or <code>IN_PROGRESS</code>.</p>
|
|
4931
|
+
*/
|
|
4539
4932
|
AccountStatusList?: AccountStatus[];
|
|
4540
4933
|
}
|
|
4541
4934
|
export declare namespace OrganizationStatus {
|
|
@@ -4545,7 +4938,13 @@ export declare namespace OrganizationStatus {
|
|
|
4545
4938
|
const filterSensitiveLog: (obj: OrganizationStatus) => any;
|
|
4546
4939
|
}
|
|
4547
4940
|
export interface ListOrganizationServiceAccessStatusResponse {
|
|
4941
|
+
/**
|
|
4942
|
+
* <p>Displays the status of an Amazon Web Services Organization.</p>
|
|
4943
|
+
*/
|
|
4548
4944
|
OrganizationStatus?: OrganizationStatus;
|
|
4945
|
+
/**
|
|
4946
|
+
* <p>The token for the next page of results.</p>
|
|
4947
|
+
*/
|
|
4549
4948
|
NextToken?: string;
|
|
4550
4949
|
}
|
|
4551
4950
|
export declare namespace ListOrganizationServiceAccessStatusResponse {
|
|
@@ -4554,6 +4953,54 @@ export declare namespace ListOrganizationServiceAccessStatusResponse {
|
|
|
4554
4953
|
*/
|
|
4555
4954
|
const filterSensitiveLog: (obj: ListOrganizationServiceAccessStatusResponse) => any;
|
|
4556
4955
|
}
|
|
4956
|
+
export interface ListPeeringsRequest {
|
|
4957
|
+
/**
|
|
4958
|
+
* <p>The ID of a core network.</p>
|
|
4959
|
+
*/
|
|
4960
|
+
CoreNetworkId?: string;
|
|
4961
|
+
/**
|
|
4962
|
+
* <p>Returns a list of a peering requests.</p>
|
|
4963
|
+
*/
|
|
4964
|
+
PeeringType?: PeeringType | string;
|
|
4965
|
+
/**
|
|
4966
|
+
* <p>Returns a list edge locations for the </p>
|
|
4967
|
+
*/
|
|
4968
|
+
EdgeLocation?: string;
|
|
4969
|
+
/**
|
|
4970
|
+
* <p>Returns a list of the peering request states.</p>
|
|
4971
|
+
*/
|
|
4972
|
+
State?: PeeringState | string;
|
|
4973
|
+
/**
|
|
4974
|
+
* <p>The maximum number of results to return.</p>
|
|
4975
|
+
*/
|
|
4976
|
+
MaxResults?: number;
|
|
4977
|
+
/**
|
|
4978
|
+
* <p>The token for the next page of results.</p>
|
|
4979
|
+
*/
|
|
4980
|
+
NextToken?: string;
|
|
4981
|
+
}
|
|
4982
|
+
export declare namespace ListPeeringsRequest {
|
|
4983
|
+
/**
|
|
4984
|
+
* @internal
|
|
4985
|
+
*/
|
|
4986
|
+
const filterSensitiveLog: (obj: ListPeeringsRequest) => any;
|
|
4987
|
+
}
|
|
4988
|
+
export interface ListPeeringsResponse {
|
|
4989
|
+
/**
|
|
4990
|
+
* <p>Lists the transit gateway peerings for the <code>ListPeerings</code> request.</p>
|
|
4991
|
+
*/
|
|
4992
|
+
Peerings?: Peering[];
|
|
4993
|
+
/**
|
|
4994
|
+
* <p>The token for the next page of results.</p>
|
|
4995
|
+
*/
|
|
4996
|
+
NextToken?: string;
|
|
4997
|
+
}
|
|
4998
|
+
export declare namespace ListPeeringsResponse {
|
|
4999
|
+
/**
|
|
5000
|
+
* @internal
|
|
5001
|
+
*/
|
|
5002
|
+
const filterSensitiveLog: (obj: ListPeeringsResponse) => any;
|
|
5003
|
+
}
|
|
4557
5004
|
export interface ListTagsForResourceRequest {
|
|
4558
5005
|
/**
|
|
4559
5006
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -4723,6 +5170,9 @@ export declare namespace RestoreCoreNetworkPolicyVersionResponse {
|
|
|
4723
5170
|
const filterSensitiveLog: (obj: RestoreCoreNetworkPolicyVersionResponse) => any;
|
|
4724
5171
|
}
|
|
4725
5172
|
export interface StartOrganizationServiceAccessUpdateRequest {
|
|
5173
|
+
/**
|
|
5174
|
+
* <p>The action to take for the update request. This can be either <code>ENABLE</code> or <code>DISABLE</code>.</p>
|
|
5175
|
+
*/
|
|
4726
5176
|
Action: string | undefined;
|
|
4727
5177
|
}
|
|
4728
5178
|
export declare namespace StartOrganizationServiceAccessUpdateRequest {
|
|
@@ -4732,6 +5182,9 @@ export declare namespace StartOrganizationServiceAccessUpdateRequest {
|
|
|
4732
5182
|
const filterSensitiveLog: (obj: StartOrganizationServiceAccessUpdateRequest) => any;
|
|
4733
5183
|
}
|
|
4734
5184
|
export interface StartOrganizationServiceAccessUpdateResponse {
|
|
5185
|
+
/**
|
|
5186
|
+
* <p>The status of the service access update request for an Amazon Web Services Organization.</p>
|
|
5187
|
+
*/
|
|
4735
5188
|
OrganizationStatus?: OrganizationStatus;
|
|
4736
5189
|
}
|
|
4737
5190
|
export declare namespace StartOrganizationServiceAccessUpdateResponse {
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { GetCoreNetworkChangeEventsCommandInput, GetCoreNetworkChangeEventsCommandOutput } from "../commands/GetCoreNetworkChangeEventsCommand";
|
|
3
|
+
import { NetworkManagerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateGetCoreNetworkChangeEvents(config: NetworkManagerPaginationConfiguration, input: GetCoreNetworkChangeEventsCommandInput, ...additionalArguments: any): Paginator<GetCoreNetworkChangeEventsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPeeringsCommandInput, ListPeeringsCommandOutput } from "../commands/ListPeeringsCommand";
|
|
3
|
+
import { NetworkManagerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListPeerings(config: NetworkManagerPaginationConfiguration, input: ListPeeringsCommandInput, ...additionalArguments: any): Paginator<ListPeeringsCommandOutput>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
export * from "./DescribeGlobalNetworksPaginator";
|
|
2
2
|
export * from "./GetConnectPeerAssociationsPaginator";
|
|
3
3
|
export * from "./GetConnectionsPaginator";
|
|
4
|
+
export * from "./GetCoreNetworkChangeEventsPaginator";
|
|
4
5
|
export * from "./GetCoreNetworkChangeSetPaginator";
|
|
5
6
|
export * from "./GetCustomerGatewayAssociationsPaginator";
|
|
6
7
|
export * from "./GetDevicesPaginator";
|
|
7
8
|
export * from "./GetLinkAssociationsPaginator";
|
|
8
9
|
export * from "./GetLinksPaginator";
|
|
9
10
|
export * from "./GetNetworkResourceCountsPaginator";
|
|
10
|
-
export * from "./GetNetworkResourceRelationshipsPaginator";
|
|
11
11
|
export * from "./Interfaces";
|
|
12
|
+
export * from "./GetNetworkResourceRelationshipsPaginator";
|
|
12
13
|
export * from "./GetNetworkResourcesPaginator";
|
|
13
14
|
export * from "./GetNetworkTelemetryPaginator";
|
|
14
15
|
export * from "./GetSitesPaginator";
|
|
@@ -18,3 +19,4 @@ export * from "./ListAttachmentsPaginator";
|
|
|
18
19
|
export * from "./ListConnectPeersPaginator";
|
|
19
20
|
export * from "./ListCoreNetworkPolicyVersionsPaginator";
|
|
20
21
|
export * from "./ListCoreNetworksPaginator";
|
|
22
|
+
export * from "./ListPeeringsPaginator";
|