@aws-sdk/client-networkmanager 3.95.0 → 3.98.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 +11 -0
- package/README.md +1 -2
- package/dist-cjs/NetworkManager.js +30 -0
- package/dist-cjs/commands/ListOrganizationServiceAccessStatusCommand.js +36 -0
- package/dist-cjs/commands/StartOrganizationServiceAccessUpdateCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +41 -5
- package/dist-cjs/protocols/Aws_restJson1.js +162 -3
- package/dist-es/NetworkManager.js +30 -0
- package/dist-es/commands/ListOrganizationServiceAccessStatusCommand.js +39 -0
- package/dist-es/commands/StartOrganizationServiceAccessUpdateCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +24 -0
- package/dist-es/protocols/Aws_restJson1.js +205 -0
- package/dist-types/NetworkManager.d.ts +15 -8
- package/dist-types/NetworkManagerClient.d.ts +5 -4
- package/dist-types/commands/AssociateCustomerGatewayCommand.d.ts +2 -2
- package/dist-types/commands/CreateConnectPeerCommand.d.ts +1 -1
- package/dist-types/commands/CreateSiteToSiteVpnAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGlobalNetworkCommand.d.ts +1 -1
- package/dist-types/commands/GetCoreNetworkCommand.d.ts +1 -1
- package/dist-types/commands/ListOrganizationServiceAccessStatusCommand.d.ts +18 -0
- package/dist-types/commands/StartOrganizationServiceAccessUpdateCommand.d.ts +18 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +61 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/NetworkManager.d.ts +8 -0
- package/dist-types/ts3.4/NetworkManagerClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListOrganizationServiceAccessStatusCommand.d.ts +16 -0
- package/dist-types/ts3.4/commands/StartOrganizationServiceAccessUpdateCommand.d.ts +16 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +48 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/package.json +1 -1
|
@@ -287,6 +287,16 @@ export declare class ValidationException extends __BaseException {
|
|
|
287
287
|
*/
|
|
288
288
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
289
289
|
}
|
|
290
|
+
export interface AccountStatus {
|
|
291
|
+
AccountId?: string;
|
|
292
|
+
SLRDeploymentStatus?: string;
|
|
293
|
+
}
|
|
294
|
+
export declare namespace AccountStatus {
|
|
295
|
+
/**
|
|
296
|
+
* @internal
|
|
297
|
+
*/
|
|
298
|
+
const filterSensitiveLog: (obj: AccountStatus) => any;
|
|
299
|
+
}
|
|
290
300
|
export interface AssociateConnectPeerRequest {
|
|
291
301
|
/**
|
|
292
302
|
* <p>The ID of your global network.</p>
|
|
@@ -1672,7 +1682,7 @@ export declare enum GlobalNetworkState {
|
|
|
1672
1682
|
updating = "UPDATING"
|
|
1673
1683
|
}
|
|
1674
1684
|
/**
|
|
1675
|
-
* <p>Describes a global network. This is a single private network acting as a high-level container for your network objects, including an Amazon Web Services-
|
|
1685
|
+
* <p>Describes a global network. This is a single private network acting as a high-level container for your network objects, including an Amazon Web Services-managed Core Network.</p>
|
|
1676
1686
|
*/
|
|
1677
1687
|
export interface GlobalNetwork {
|
|
1678
1688
|
/**
|
|
@@ -4520,6 +4530,38 @@ export declare namespace ListCoreNetworksResponse {
|
|
|
4520
4530
|
*/
|
|
4521
4531
|
const filterSensitiveLog: (obj: ListCoreNetworksResponse) => any;
|
|
4522
4532
|
}
|
|
4533
|
+
export interface ListOrganizationServiceAccessStatusRequest {
|
|
4534
|
+
MaxResults?: number;
|
|
4535
|
+
NextToken?: string;
|
|
4536
|
+
}
|
|
4537
|
+
export declare namespace ListOrganizationServiceAccessStatusRequest {
|
|
4538
|
+
/**
|
|
4539
|
+
* @internal
|
|
4540
|
+
*/
|
|
4541
|
+
const filterSensitiveLog: (obj: ListOrganizationServiceAccessStatusRequest) => any;
|
|
4542
|
+
}
|
|
4543
|
+
export interface OrganizationStatus {
|
|
4544
|
+
OrganizationId?: string;
|
|
4545
|
+
OrganizationAwsServiceAccessStatus?: string;
|
|
4546
|
+
SLRDeploymentStatus?: string;
|
|
4547
|
+
AccountStatusList?: AccountStatus[];
|
|
4548
|
+
}
|
|
4549
|
+
export declare namespace OrganizationStatus {
|
|
4550
|
+
/**
|
|
4551
|
+
* @internal
|
|
4552
|
+
*/
|
|
4553
|
+
const filterSensitiveLog: (obj: OrganizationStatus) => any;
|
|
4554
|
+
}
|
|
4555
|
+
export interface ListOrganizationServiceAccessStatusResponse {
|
|
4556
|
+
OrganizationStatus?: OrganizationStatus;
|
|
4557
|
+
NextToken?: string;
|
|
4558
|
+
}
|
|
4559
|
+
export declare namespace ListOrganizationServiceAccessStatusResponse {
|
|
4560
|
+
/**
|
|
4561
|
+
* @internal
|
|
4562
|
+
*/
|
|
4563
|
+
const filterSensitiveLog: (obj: ListOrganizationServiceAccessStatusResponse) => any;
|
|
4564
|
+
}
|
|
4523
4565
|
export interface ListTagsForResourceRequest {
|
|
4524
4566
|
/**
|
|
4525
4567
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -4688,6 +4730,24 @@ export declare namespace RestoreCoreNetworkPolicyVersionResponse {
|
|
|
4688
4730
|
*/
|
|
4689
4731
|
const filterSensitiveLog: (obj: RestoreCoreNetworkPolicyVersionResponse) => any;
|
|
4690
4732
|
}
|
|
4733
|
+
export interface StartOrganizationServiceAccessUpdateRequest {
|
|
4734
|
+
Action: string | undefined;
|
|
4735
|
+
}
|
|
4736
|
+
export declare namespace StartOrganizationServiceAccessUpdateRequest {
|
|
4737
|
+
/**
|
|
4738
|
+
* @internal
|
|
4739
|
+
*/
|
|
4740
|
+
const filterSensitiveLog: (obj: StartOrganizationServiceAccessUpdateRequest) => any;
|
|
4741
|
+
}
|
|
4742
|
+
export interface StartOrganizationServiceAccessUpdateResponse {
|
|
4743
|
+
OrganizationStatus?: OrganizationStatus;
|
|
4744
|
+
}
|
|
4745
|
+
export declare namespace StartOrganizationServiceAccessUpdateResponse {
|
|
4746
|
+
/**
|
|
4747
|
+
* @internal
|
|
4748
|
+
*/
|
|
4749
|
+
const filterSensitiveLog: (obj: StartOrganizationServiceAccessUpdateResponse) => any;
|
|
4750
|
+
}
|
|
4691
4751
|
/**
|
|
4692
4752
|
* <p>Describes a source or a destination.</p>
|
|
4693
4753
|
*/
|
|
@@ -59,12 +59,14 @@ import { ListAttachmentsCommandInput, ListAttachmentsCommandOutput } from "../co
|
|
|
59
59
|
import { ListConnectPeersCommandInput, ListConnectPeersCommandOutput } from "../commands/ListConnectPeersCommand";
|
|
60
60
|
import { ListCoreNetworkPolicyVersionsCommandInput, ListCoreNetworkPolicyVersionsCommandOutput } from "../commands/ListCoreNetworkPolicyVersionsCommand";
|
|
61
61
|
import { ListCoreNetworksCommandInput, ListCoreNetworksCommandOutput } from "../commands/ListCoreNetworksCommand";
|
|
62
|
+
import { ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput } from "../commands/ListOrganizationServiceAccessStatusCommand";
|
|
62
63
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
63
64
|
import { PutCoreNetworkPolicyCommandInput, PutCoreNetworkPolicyCommandOutput } from "../commands/PutCoreNetworkPolicyCommand";
|
|
64
65
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
|
|
65
66
|
import { RegisterTransitGatewayCommandInput, RegisterTransitGatewayCommandOutput } from "../commands/RegisterTransitGatewayCommand";
|
|
66
67
|
import { RejectAttachmentCommandInput, RejectAttachmentCommandOutput } from "../commands/RejectAttachmentCommand";
|
|
67
68
|
import { RestoreCoreNetworkPolicyVersionCommandInput, RestoreCoreNetworkPolicyVersionCommandOutput } from "../commands/RestoreCoreNetworkPolicyVersionCommand";
|
|
69
|
+
import { StartOrganizationServiceAccessUpdateCommandInput, StartOrganizationServiceAccessUpdateCommandOutput } from "../commands/StartOrganizationServiceAccessUpdateCommand";
|
|
68
70
|
import { StartRouteAnalysisCommandInput, StartRouteAnalysisCommandOutput } from "../commands/StartRouteAnalysisCommand";
|
|
69
71
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
70
72
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -135,12 +137,14 @@ export declare const serializeAws_restJson1ListAttachmentsCommand: (input: ListA
|
|
|
135
137
|
export declare const serializeAws_restJson1ListConnectPeersCommand: (input: ListConnectPeersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
138
|
export declare const serializeAws_restJson1ListCoreNetworkPolicyVersionsCommand: (input: ListCoreNetworkPolicyVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
139
|
export declare const serializeAws_restJson1ListCoreNetworksCommand: (input: ListCoreNetworksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
+
export declare const serializeAws_restJson1ListOrganizationServiceAccessStatusCommand: (input: ListOrganizationServiceAccessStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
141
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
142
|
export declare const serializeAws_restJson1PutCoreNetworkPolicyCommand: (input: PutCoreNetworkPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
143
|
export declare const serializeAws_restJson1PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
141
144
|
export declare const serializeAws_restJson1RegisterTransitGatewayCommand: (input: RegisterTransitGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
145
|
export declare const serializeAws_restJson1RejectAttachmentCommand: (input: RejectAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
146
|
export declare const serializeAws_restJson1RestoreCoreNetworkPolicyVersionCommand: (input: RestoreCoreNetworkPolicyVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
147
|
+
export declare const serializeAws_restJson1StartOrganizationServiceAccessUpdateCommand: (input: StartOrganizationServiceAccessUpdateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
148
|
export declare const serializeAws_restJson1StartRouteAnalysisCommand: (input: StartRouteAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
149
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
150
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -211,12 +215,14 @@ export declare const deserializeAws_restJson1ListAttachmentsCommand: (output: __
|
|
|
211
215
|
export declare const deserializeAws_restJson1ListConnectPeersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectPeersCommandOutput>;
|
|
212
216
|
export declare const deserializeAws_restJson1ListCoreNetworkPolicyVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCoreNetworkPolicyVersionsCommandOutput>;
|
|
213
217
|
export declare const deserializeAws_restJson1ListCoreNetworksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCoreNetworksCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_restJson1ListOrganizationServiceAccessStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationServiceAccessStatusCommandOutput>;
|
|
214
219
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
215
220
|
export declare const deserializeAws_restJson1PutCoreNetworkPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutCoreNetworkPolicyCommandOutput>;
|
|
216
221
|
export declare const deserializeAws_restJson1PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
|
|
217
222
|
export declare const deserializeAws_restJson1RegisterTransitGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterTransitGatewayCommandOutput>;
|
|
218
223
|
export declare const deserializeAws_restJson1RejectAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectAttachmentCommandOutput>;
|
|
219
224
|
export declare const deserializeAws_restJson1RestoreCoreNetworkPolicyVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreCoreNetworkPolicyVersionCommandOutput>;
|
|
225
|
+
export declare const deserializeAws_restJson1StartOrganizationServiceAccessUpdateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartOrganizationServiceAccessUpdateCommandOutput>;
|
|
220
226
|
export declare const deserializeAws_restJson1StartRouteAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartRouteAnalysisCommandOutput>;
|
|
221
227
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
222
228
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
@@ -58,12 +58,14 @@ import { ListAttachmentsCommandInput, ListAttachmentsCommandOutput } from "./com
|
|
|
58
58
|
import { ListConnectPeersCommandInput, ListConnectPeersCommandOutput } from "./commands/ListConnectPeersCommand";
|
|
59
59
|
import { ListCoreNetworkPolicyVersionsCommandInput, ListCoreNetworkPolicyVersionsCommandOutput } from "./commands/ListCoreNetworkPolicyVersionsCommand";
|
|
60
60
|
import { ListCoreNetworksCommandInput, ListCoreNetworksCommandOutput } from "./commands/ListCoreNetworksCommand";
|
|
61
|
+
import { ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput } from "./commands/ListOrganizationServiceAccessStatusCommand";
|
|
61
62
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
62
63
|
import { PutCoreNetworkPolicyCommandInput, PutCoreNetworkPolicyCommandOutput } from "./commands/PutCoreNetworkPolicyCommand";
|
|
63
64
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
64
65
|
import { RegisterTransitGatewayCommandInput, RegisterTransitGatewayCommandOutput } from "./commands/RegisterTransitGatewayCommand";
|
|
65
66
|
import { RejectAttachmentCommandInput, RejectAttachmentCommandOutput } from "./commands/RejectAttachmentCommand";
|
|
66
67
|
import { RestoreCoreNetworkPolicyVersionCommandInput, RestoreCoreNetworkPolicyVersionCommandOutput } from "./commands/RestoreCoreNetworkPolicyVersionCommand";
|
|
68
|
+
import { StartOrganizationServiceAccessUpdateCommandInput, StartOrganizationServiceAccessUpdateCommandOutput } from "./commands/StartOrganizationServiceAccessUpdateCommand";
|
|
67
69
|
import { StartRouteAnalysisCommandInput, StartRouteAnalysisCommandOutput } from "./commands/StartRouteAnalysisCommand";
|
|
68
70
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
69
71
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -314,6 +316,9 @@ export declare class NetworkManager extends NetworkManagerClient {
|
|
|
314
316
|
listCoreNetworks(args: ListCoreNetworksCommandInput, options?: __HttpHandlerOptions): Promise<ListCoreNetworksCommandOutput>;
|
|
315
317
|
listCoreNetworks(args: ListCoreNetworksCommandInput, cb: (err: any, data?: ListCoreNetworksCommandOutput) => void): void;
|
|
316
318
|
listCoreNetworks(args: ListCoreNetworksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCoreNetworksCommandOutput) => void): void;
|
|
319
|
+
listOrganizationServiceAccessStatus(args: ListOrganizationServiceAccessStatusCommandInput, options?: __HttpHandlerOptions): Promise<ListOrganizationServiceAccessStatusCommandOutput>;
|
|
320
|
+
listOrganizationServiceAccessStatus(args: ListOrganizationServiceAccessStatusCommandInput, cb: (err: any, data?: ListOrganizationServiceAccessStatusCommandOutput) => void): void;
|
|
321
|
+
listOrganizationServiceAccessStatus(args: ListOrganizationServiceAccessStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrganizationServiceAccessStatusCommandOutput) => void): void;
|
|
317
322
|
|
|
318
323
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
319
324
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
@@ -338,6 +343,9 @@ export declare class NetworkManager extends NetworkManagerClient {
|
|
|
338
343
|
restoreCoreNetworkPolicyVersion(args: RestoreCoreNetworkPolicyVersionCommandInput, options?: __HttpHandlerOptions): Promise<RestoreCoreNetworkPolicyVersionCommandOutput>;
|
|
339
344
|
restoreCoreNetworkPolicyVersion(args: RestoreCoreNetworkPolicyVersionCommandInput, cb: (err: any, data?: RestoreCoreNetworkPolicyVersionCommandOutput) => void): void;
|
|
340
345
|
restoreCoreNetworkPolicyVersion(args: RestoreCoreNetworkPolicyVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreCoreNetworkPolicyVersionCommandOutput) => void): void;
|
|
346
|
+
startOrganizationServiceAccessUpdate(args: StartOrganizationServiceAccessUpdateCommandInput, options?: __HttpHandlerOptions): Promise<StartOrganizationServiceAccessUpdateCommandOutput>;
|
|
347
|
+
startOrganizationServiceAccessUpdate(args: StartOrganizationServiceAccessUpdateCommandInput, cb: (err: any, data?: StartOrganizationServiceAccessUpdateCommandOutput) => void): void;
|
|
348
|
+
startOrganizationServiceAccessUpdate(args: StartOrganizationServiceAccessUpdateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartOrganizationServiceAccessUpdateCommandOutput) => void): void;
|
|
341
349
|
|
|
342
350
|
startRouteAnalysis(args: StartRouteAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<StartRouteAnalysisCommandOutput>;
|
|
343
351
|
startRouteAnalysis(args: StartRouteAnalysisCommandInput, cb: (err: any, data?: StartRouteAnalysisCommandOutput) => void): void;
|
|
@@ -65,12 +65,14 @@ import { ListAttachmentsCommandInput, ListAttachmentsCommandOutput } from "./com
|
|
|
65
65
|
import { ListConnectPeersCommandInput, ListConnectPeersCommandOutput } from "./commands/ListConnectPeersCommand";
|
|
66
66
|
import { ListCoreNetworkPolicyVersionsCommandInput, ListCoreNetworkPolicyVersionsCommandOutput } from "./commands/ListCoreNetworkPolicyVersionsCommand";
|
|
67
67
|
import { ListCoreNetworksCommandInput, ListCoreNetworksCommandOutput } from "./commands/ListCoreNetworksCommand";
|
|
68
|
+
import { ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput } from "./commands/ListOrganizationServiceAccessStatusCommand";
|
|
68
69
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
69
70
|
import { PutCoreNetworkPolicyCommandInput, PutCoreNetworkPolicyCommandOutput } from "./commands/PutCoreNetworkPolicyCommand";
|
|
70
71
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
71
72
|
import { RegisterTransitGatewayCommandInput, RegisterTransitGatewayCommandOutput } from "./commands/RegisterTransitGatewayCommand";
|
|
72
73
|
import { RejectAttachmentCommandInput, RejectAttachmentCommandOutput } from "./commands/RejectAttachmentCommand";
|
|
73
74
|
import { RestoreCoreNetworkPolicyVersionCommandInput, RestoreCoreNetworkPolicyVersionCommandOutput } from "./commands/RestoreCoreNetworkPolicyVersionCommand";
|
|
75
|
+
import { StartOrganizationServiceAccessUpdateCommandInput, StartOrganizationServiceAccessUpdateCommandOutput } from "./commands/StartOrganizationServiceAccessUpdateCommand";
|
|
74
76
|
import { StartRouteAnalysisCommandInput, StartRouteAnalysisCommandOutput } from "./commands/StartRouteAnalysisCommand";
|
|
75
77
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
76
78
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -82,8 +84,8 @@ import { UpdateLinkCommandInput, UpdateLinkCommandOutput } from "./commands/Upda
|
|
|
82
84
|
import { UpdateNetworkResourceMetadataCommandInput, UpdateNetworkResourceMetadataCommandOutput } from "./commands/UpdateNetworkResourceMetadataCommand";
|
|
83
85
|
import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "./commands/UpdateSiteCommand";
|
|
84
86
|
import { UpdateVpcAttachmentCommandInput, UpdateVpcAttachmentCommandOutput } from "./commands/UpdateVpcAttachmentCommand";
|
|
85
|
-
export declare type ServiceInputTypes = AcceptAttachmentCommandInput | AssociateConnectPeerCommandInput | AssociateCustomerGatewayCommandInput | AssociateLinkCommandInput | AssociateTransitGatewayConnectPeerCommandInput | CreateConnectAttachmentCommandInput | CreateConnectPeerCommandInput | CreateConnectionCommandInput | CreateCoreNetworkCommandInput | CreateDeviceCommandInput | CreateGlobalNetworkCommandInput | CreateLinkCommandInput | CreateSiteCommandInput | CreateSiteToSiteVpnAttachmentCommandInput | CreateVpcAttachmentCommandInput | DeleteAttachmentCommandInput | DeleteConnectPeerCommandInput | DeleteConnectionCommandInput | DeleteCoreNetworkCommandInput | DeleteCoreNetworkPolicyVersionCommandInput | DeleteDeviceCommandInput | DeleteGlobalNetworkCommandInput | DeleteLinkCommandInput | DeleteResourcePolicyCommandInput | DeleteSiteCommandInput | DeregisterTransitGatewayCommandInput | DescribeGlobalNetworksCommandInput | DisassociateConnectPeerCommandInput | DisassociateCustomerGatewayCommandInput | DisassociateLinkCommandInput | DisassociateTransitGatewayConnectPeerCommandInput | ExecuteCoreNetworkChangeSetCommandInput | GetConnectAttachmentCommandInput | GetConnectPeerAssociationsCommandInput | GetConnectPeerCommandInput | GetConnectionsCommandInput | GetCoreNetworkChangeSetCommandInput | GetCoreNetworkCommandInput | GetCoreNetworkPolicyCommandInput | GetCustomerGatewayAssociationsCommandInput | GetDevicesCommandInput | GetLinkAssociationsCommandInput | GetLinksCommandInput | GetNetworkResourceCountsCommandInput | GetNetworkResourceRelationshipsCommandInput | GetNetworkResourcesCommandInput | GetNetworkRoutesCommandInput | GetNetworkTelemetryCommandInput | GetResourcePolicyCommandInput | GetRouteAnalysisCommandInput | GetSiteToSiteVpnAttachmentCommandInput | GetSitesCommandInput | GetTransitGatewayConnectPeerAssociationsCommandInput | GetTransitGatewayRegistrationsCommandInput | GetVpcAttachmentCommandInput | ListAttachmentsCommandInput | ListConnectPeersCommandInput | ListCoreNetworkPolicyVersionsCommandInput | ListCoreNetworksCommandInput | ListTagsForResourceCommandInput | PutCoreNetworkPolicyCommandInput | PutResourcePolicyCommandInput | RegisterTransitGatewayCommandInput | RejectAttachmentCommandInput | RestoreCoreNetworkPolicyVersionCommandInput | StartRouteAnalysisCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConnectionCommandInput | UpdateCoreNetworkCommandInput | UpdateDeviceCommandInput | UpdateGlobalNetworkCommandInput | UpdateLinkCommandInput | UpdateNetworkResourceMetadataCommandInput | UpdateSiteCommandInput | UpdateVpcAttachmentCommandInput;
|
|
86
|
-
export declare type ServiceOutputTypes = AcceptAttachmentCommandOutput | AssociateConnectPeerCommandOutput | AssociateCustomerGatewayCommandOutput | AssociateLinkCommandOutput | AssociateTransitGatewayConnectPeerCommandOutput | CreateConnectAttachmentCommandOutput | CreateConnectPeerCommandOutput | CreateConnectionCommandOutput | CreateCoreNetworkCommandOutput | CreateDeviceCommandOutput | CreateGlobalNetworkCommandOutput | CreateLinkCommandOutput | CreateSiteCommandOutput | CreateSiteToSiteVpnAttachmentCommandOutput | CreateVpcAttachmentCommandOutput | DeleteAttachmentCommandOutput | DeleteConnectPeerCommandOutput | DeleteConnectionCommandOutput | DeleteCoreNetworkCommandOutput | DeleteCoreNetworkPolicyVersionCommandOutput | DeleteDeviceCommandOutput | DeleteGlobalNetworkCommandOutput | DeleteLinkCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSiteCommandOutput | DeregisterTransitGatewayCommandOutput | DescribeGlobalNetworksCommandOutput | DisassociateConnectPeerCommandOutput | DisassociateCustomerGatewayCommandOutput | DisassociateLinkCommandOutput | DisassociateTransitGatewayConnectPeerCommandOutput | ExecuteCoreNetworkChangeSetCommandOutput | GetConnectAttachmentCommandOutput | GetConnectPeerAssociationsCommandOutput | GetConnectPeerCommandOutput | GetConnectionsCommandOutput | GetCoreNetworkChangeSetCommandOutput | GetCoreNetworkCommandOutput | GetCoreNetworkPolicyCommandOutput | GetCustomerGatewayAssociationsCommandOutput | GetDevicesCommandOutput | GetLinkAssociationsCommandOutput | GetLinksCommandOutput | GetNetworkResourceCountsCommandOutput | GetNetworkResourceRelationshipsCommandOutput | GetNetworkResourcesCommandOutput | GetNetworkRoutesCommandOutput | GetNetworkTelemetryCommandOutput | GetResourcePolicyCommandOutput | GetRouteAnalysisCommandOutput | GetSiteToSiteVpnAttachmentCommandOutput | GetSitesCommandOutput | GetTransitGatewayConnectPeerAssociationsCommandOutput | GetTransitGatewayRegistrationsCommandOutput | GetVpcAttachmentCommandOutput | ListAttachmentsCommandOutput | ListConnectPeersCommandOutput | ListCoreNetworkPolicyVersionsCommandOutput | ListCoreNetworksCommandOutput | ListTagsForResourceCommandOutput | PutCoreNetworkPolicyCommandOutput | PutResourcePolicyCommandOutput | RegisterTransitGatewayCommandOutput | RejectAttachmentCommandOutput | RestoreCoreNetworkPolicyVersionCommandOutput | StartRouteAnalysisCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConnectionCommandOutput | UpdateCoreNetworkCommandOutput | UpdateDeviceCommandOutput | UpdateGlobalNetworkCommandOutput | UpdateLinkCommandOutput | UpdateNetworkResourceMetadataCommandOutput | UpdateSiteCommandOutput | UpdateVpcAttachmentCommandOutput;
|
|
87
|
+
export declare type ServiceInputTypes = AcceptAttachmentCommandInput | AssociateConnectPeerCommandInput | AssociateCustomerGatewayCommandInput | AssociateLinkCommandInput | AssociateTransitGatewayConnectPeerCommandInput | CreateConnectAttachmentCommandInput | CreateConnectPeerCommandInput | CreateConnectionCommandInput | CreateCoreNetworkCommandInput | CreateDeviceCommandInput | CreateGlobalNetworkCommandInput | CreateLinkCommandInput | CreateSiteCommandInput | CreateSiteToSiteVpnAttachmentCommandInput | CreateVpcAttachmentCommandInput | DeleteAttachmentCommandInput | DeleteConnectPeerCommandInput | DeleteConnectionCommandInput | DeleteCoreNetworkCommandInput | DeleteCoreNetworkPolicyVersionCommandInput | DeleteDeviceCommandInput | DeleteGlobalNetworkCommandInput | DeleteLinkCommandInput | DeleteResourcePolicyCommandInput | DeleteSiteCommandInput | DeregisterTransitGatewayCommandInput | DescribeGlobalNetworksCommandInput | DisassociateConnectPeerCommandInput | DisassociateCustomerGatewayCommandInput | DisassociateLinkCommandInput | DisassociateTransitGatewayConnectPeerCommandInput | ExecuteCoreNetworkChangeSetCommandInput | GetConnectAttachmentCommandInput | GetConnectPeerAssociationsCommandInput | GetConnectPeerCommandInput | GetConnectionsCommandInput | GetCoreNetworkChangeSetCommandInput | GetCoreNetworkCommandInput | GetCoreNetworkPolicyCommandInput | GetCustomerGatewayAssociationsCommandInput | GetDevicesCommandInput | GetLinkAssociationsCommandInput | GetLinksCommandInput | GetNetworkResourceCountsCommandInput | GetNetworkResourceRelationshipsCommandInput | GetNetworkResourcesCommandInput | GetNetworkRoutesCommandInput | GetNetworkTelemetryCommandInput | GetResourcePolicyCommandInput | GetRouteAnalysisCommandInput | GetSiteToSiteVpnAttachmentCommandInput | GetSitesCommandInput | GetTransitGatewayConnectPeerAssociationsCommandInput | GetTransitGatewayRegistrationsCommandInput | GetVpcAttachmentCommandInput | ListAttachmentsCommandInput | ListConnectPeersCommandInput | ListCoreNetworkPolicyVersionsCommandInput | ListCoreNetworksCommandInput | ListOrganizationServiceAccessStatusCommandInput | ListTagsForResourceCommandInput | PutCoreNetworkPolicyCommandInput | PutResourcePolicyCommandInput | RegisterTransitGatewayCommandInput | RejectAttachmentCommandInput | RestoreCoreNetworkPolicyVersionCommandInput | StartOrganizationServiceAccessUpdateCommandInput | StartRouteAnalysisCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConnectionCommandInput | UpdateCoreNetworkCommandInput | UpdateDeviceCommandInput | UpdateGlobalNetworkCommandInput | UpdateLinkCommandInput | UpdateNetworkResourceMetadataCommandInput | UpdateSiteCommandInput | UpdateVpcAttachmentCommandInput;
|
|
88
|
+
export declare type ServiceOutputTypes = AcceptAttachmentCommandOutput | AssociateConnectPeerCommandOutput | AssociateCustomerGatewayCommandOutput | AssociateLinkCommandOutput | AssociateTransitGatewayConnectPeerCommandOutput | CreateConnectAttachmentCommandOutput | CreateConnectPeerCommandOutput | CreateConnectionCommandOutput | CreateCoreNetworkCommandOutput | CreateDeviceCommandOutput | CreateGlobalNetworkCommandOutput | CreateLinkCommandOutput | CreateSiteCommandOutput | CreateSiteToSiteVpnAttachmentCommandOutput | CreateVpcAttachmentCommandOutput | DeleteAttachmentCommandOutput | DeleteConnectPeerCommandOutput | DeleteConnectionCommandOutput | DeleteCoreNetworkCommandOutput | DeleteCoreNetworkPolicyVersionCommandOutput | DeleteDeviceCommandOutput | DeleteGlobalNetworkCommandOutput | DeleteLinkCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSiteCommandOutput | DeregisterTransitGatewayCommandOutput | DescribeGlobalNetworksCommandOutput | DisassociateConnectPeerCommandOutput | DisassociateCustomerGatewayCommandOutput | DisassociateLinkCommandOutput | DisassociateTransitGatewayConnectPeerCommandOutput | ExecuteCoreNetworkChangeSetCommandOutput | GetConnectAttachmentCommandOutput | GetConnectPeerAssociationsCommandOutput | GetConnectPeerCommandOutput | GetConnectionsCommandOutput | GetCoreNetworkChangeSetCommandOutput | GetCoreNetworkCommandOutput | GetCoreNetworkPolicyCommandOutput | GetCustomerGatewayAssociationsCommandOutput | GetDevicesCommandOutput | GetLinkAssociationsCommandOutput | GetLinksCommandOutput | GetNetworkResourceCountsCommandOutput | GetNetworkResourceRelationshipsCommandOutput | GetNetworkResourcesCommandOutput | GetNetworkRoutesCommandOutput | GetNetworkTelemetryCommandOutput | GetResourcePolicyCommandOutput | GetRouteAnalysisCommandOutput | GetSiteToSiteVpnAttachmentCommandOutput | GetSitesCommandOutput | GetTransitGatewayConnectPeerAssociationsCommandOutput | GetTransitGatewayRegistrationsCommandOutput | GetVpcAttachmentCommandOutput | ListAttachmentsCommandOutput | ListConnectPeersCommandOutput | ListCoreNetworkPolicyVersionsCommandOutput | ListCoreNetworksCommandOutput | ListOrganizationServiceAccessStatusCommandOutput | ListTagsForResourceCommandOutput | PutCoreNetworkPolicyCommandOutput | PutResourcePolicyCommandOutput | RegisterTransitGatewayCommandOutput | RejectAttachmentCommandOutput | RestoreCoreNetworkPolicyVersionCommandOutput | StartOrganizationServiceAccessUpdateCommandOutput | StartRouteAnalysisCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConnectionCommandOutput | UpdateCoreNetworkCommandOutput | UpdateDeviceCommandOutput | UpdateGlobalNetworkCommandOutput | UpdateLinkCommandOutput | UpdateNetworkResourceMetadataCommandOutput | UpdateSiteCommandOutput | UpdateVpcAttachmentCommandOutput;
|
|
87
89
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
88
90
|
|
|
89
91
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListOrganizationServiceAccessStatusRequest, ListOrganizationServiceAccessStatusResponse } from "../models/models_0";
|
|
4
|
+
import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient";
|
|
5
|
+
export interface ListOrganizationServiceAccessStatusCommandInput extends ListOrganizationServiceAccessStatusRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListOrganizationServiceAccessStatusCommandOutput extends ListOrganizationServiceAccessStatusResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
export declare class ListOrganizationServiceAccessStatusCommand extends $Command<ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput, NetworkManagerClientResolvedConfig> {
|
|
10
|
+
readonly input: ListOrganizationServiceAccessStatusCommandInput;
|
|
11
|
+
constructor(input: ListOrganizationServiceAccessStatusCommandInput);
|
|
12
|
+
|
|
13
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput>;
|
|
14
|
+
private serialize;
|
|
15
|
+
private deserialize;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { StartOrganizationServiceAccessUpdateRequest, StartOrganizationServiceAccessUpdateResponse } from "../models/models_0";
|
|
4
|
+
import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient";
|
|
5
|
+
export interface StartOrganizationServiceAccessUpdateCommandInput extends StartOrganizationServiceAccessUpdateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StartOrganizationServiceAccessUpdateCommandOutput extends StartOrganizationServiceAccessUpdateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
export declare class StartOrganizationServiceAccessUpdateCommand extends $Command<StartOrganizationServiceAccessUpdateCommandInput, StartOrganizationServiceAccessUpdateCommandOutput, NetworkManagerClientResolvedConfig> {
|
|
10
|
+
readonly input: StartOrganizationServiceAccessUpdateCommandInput;
|
|
11
|
+
constructor(input: StartOrganizationServiceAccessUpdateCommandInput);
|
|
12
|
+
|
|
13
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartOrganizationServiceAccessUpdateCommandInput, StartOrganizationServiceAccessUpdateCommandOutput>;
|
|
14
|
+
private serialize;
|
|
15
|
+
private deserialize;
|
|
16
|
+
}
|
|
@@ -57,12 +57,14 @@ export * from "./ListAttachmentsCommand";
|
|
|
57
57
|
export * from "./ListConnectPeersCommand";
|
|
58
58
|
export * from "./ListCoreNetworkPolicyVersionsCommand";
|
|
59
59
|
export * from "./ListCoreNetworksCommand";
|
|
60
|
+
export * from "./ListOrganizationServiceAccessStatusCommand";
|
|
60
61
|
export * from "./ListTagsForResourceCommand";
|
|
61
62
|
export * from "./PutCoreNetworkPolicyCommand";
|
|
62
63
|
export * from "./PutResourcePolicyCommand";
|
|
63
64
|
export * from "./RegisterTransitGatewayCommand";
|
|
64
65
|
export * from "./RejectAttachmentCommand";
|
|
65
66
|
export * from "./RestoreCoreNetworkPolicyVersionCommand";
|
|
67
|
+
export * from "./StartOrganizationServiceAccessUpdateCommand";
|
|
66
68
|
export * from "./StartRouteAnalysisCommand";
|
|
67
69
|
export * from "./TagResourceCommand";
|
|
68
70
|
export * from "./UntagResourceCommand";
|
|
@@ -176,6 +176,14 @@ export declare class ValidationException extends __BaseException {
|
|
|
176
176
|
|
|
177
177
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
178
178
|
}
|
|
179
|
+
export interface AccountStatus {
|
|
180
|
+
AccountId?: string;
|
|
181
|
+
SLRDeploymentStatus?: string;
|
|
182
|
+
}
|
|
183
|
+
export declare namespace AccountStatus {
|
|
184
|
+
|
|
185
|
+
const filterSensitiveLog: (obj: AccountStatus) => any;
|
|
186
|
+
}
|
|
179
187
|
export interface AssociateConnectPeerRequest {
|
|
180
188
|
|
|
181
189
|
GlobalNetworkId: string | undefined;
|
|
@@ -2451,6 +2459,32 @@ export declare namespace ListCoreNetworksResponse {
|
|
|
2451
2459
|
|
|
2452
2460
|
const filterSensitiveLog: (obj: ListCoreNetworksResponse) => any;
|
|
2453
2461
|
}
|
|
2462
|
+
export interface ListOrganizationServiceAccessStatusRequest {
|
|
2463
|
+
MaxResults?: number;
|
|
2464
|
+
NextToken?: string;
|
|
2465
|
+
}
|
|
2466
|
+
export declare namespace ListOrganizationServiceAccessStatusRequest {
|
|
2467
|
+
|
|
2468
|
+
const filterSensitiveLog: (obj: ListOrganizationServiceAccessStatusRequest) => any;
|
|
2469
|
+
}
|
|
2470
|
+
export interface OrganizationStatus {
|
|
2471
|
+
OrganizationId?: string;
|
|
2472
|
+
OrganizationAwsServiceAccessStatus?: string;
|
|
2473
|
+
SLRDeploymentStatus?: string;
|
|
2474
|
+
AccountStatusList?: AccountStatus[];
|
|
2475
|
+
}
|
|
2476
|
+
export declare namespace OrganizationStatus {
|
|
2477
|
+
|
|
2478
|
+
const filterSensitiveLog: (obj: OrganizationStatus) => any;
|
|
2479
|
+
}
|
|
2480
|
+
export interface ListOrganizationServiceAccessStatusResponse {
|
|
2481
|
+
OrganizationStatus?: OrganizationStatus;
|
|
2482
|
+
NextToken?: string;
|
|
2483
|
+
}
|
|
2484
|
+
export declare namespace ListOrganizationServiceAccessStatusResponse {
|
|
2485
|
+
|
|
2486
|
+
const filterSensitiveLog: (obj: ListOrganizationServiceAccessStatusResponse) => any;
|
|
2487
|
+
}
|
|
2454
2488
|
export interface ListTagsForResourceRequest {
|
|
2455
2489
|
|
|
2456
2490
|
ResourceArn: string | undefined;
|
|
@@ -2559,6 +2593,20 @@ export declare namespace RestoreCoreNetworkPolicyVersionResponse {
|
|
|
2559
2593
|
|
|
2560
2594
|
const filterSensitiveLog: (obj: RestoreCoreNetworkPolicyVersionResponse) => any;
|
|
2561
2595
|
}
|
|
2596
|
+
export interface StartOrganizationServiceAccessUpdateRequest {
|
|
2597
|
+
Action: string | undefined;
|
|
2598
|
+
}
|
|
2599
|
+
export declare namespace StartOrganizationServiceAccessUpdateRequest {
|
|
2600
|
+
|
|
2601
|
+
const filterSensitiveLog: (obj: StartOrganizationServiceAccessUpdateRequest) => any;
|
|
2602
|
+
}
|
|
2603
|
+
export interface StartOrganizationServiceAccessUpdateResponse {
|
|
2604
|
+
OrganizationStatus?: OrganizationStatus;
|
|
2605
|
+
}
|
|
2606
|
+
export declare namespace StartOrganizationServiceAccessUpdateResponse {
|
|
2607
|
+
|
|
2608
|
+
const filterSensitiveLog: (obj: StartOrganizationServiceAccessUpdateResponse) => any;
|
|
2609
|
+
}
|
|
2562
2610
|
|
|
2563
2611
|
export interface RouteAnalysisEndpointOptionsSpecification {
|
|
2564
2612
|
|
|
@@ -59,12 +59,14 @@ import { ListAttachmentsCommandInput, ListAttachmentsCommandOutput } from "../co
|
|
|
59
59
|
import { ListConnectPeersCommandInput, ListConnectPeersCommandOutput } from "../commands/ListConnectPeersCommand";
|
|
60
60
|
import { ListCoreNetworkPolicyVersionsCommandInput, ListCoreNetworkPolicyVersionsCommandOutput } from "../commands/ListCoreNetworkPolicyVersionsCommand";
|
|
61
61
|
import { ListCoreNetworksCommandInput, ListCoreNetworksCommandOutput } from "../commands/ListCoreNetworksCommand";
|
|
62
|
+
import { ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput } from "../commands/ListOrganizationServiceAccessStatusCommand";
|
|
62
63
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
63
64
|
import { PutCoreNetworkPolicyCommandInput, PutCoreNetworkPolicyCommandOutput } from "../commands/PutCoreNetworkPolicyCommand";
|
|
64
65
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
|
|
65
66
|
import { RegisterTransitGatewayCommandInput, RegisterTransitGatewayCommandOutput } from "../commands/RegisterTransitGatewayCommand";
|
|
66
67
|
import { RejectAttachmentCommandInput, RejectAttachmentCommandOutput } from "../commands/RejectAttachmentCommand";
|
|
67
68
|
import { RestoreCoreNetworkPolicyVersionCommandInput, RestoreCoreNetworkPolicyVersionCommandOutput } from "../commands/RestoreCoreNetworkPolicyVersionCommand";
|
|
69
|
+
import { StartOrganizationServiceAccessUpdateCommandInput, StartOrganizationServiceAccessUpdateCommandOutput } from "../commands/StartOrganizationServiceAccessUpdateCommand";
|
|
68
70
|
import { StartRouteAnalysisCommandInput, StartRouteAnalysisCommandOutput } from "../commands/StartRouteAnalysisCommand";
|
|
69
71
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
70
72
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -135,12 +137,14 @@ export declare const serializeAws_restJson1ListAttachmentsCommand: (input: ListA
|
|
|
135
137
|
export declare const serializeAws_restJson1ListConnectPeersCommand: (input: ListConnectPeersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
138
|
export declare const serializeAws_restJson1ListCoreNetworkPolicyVersionsCommand: (input: ListCoreNetworkPolicyVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
139
|
export declare const serializeAws_restJson1ListCoreNetworksCommand: (input: ListCoreNetworksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
+
export declare const serializeAws_restJson1ListOrganizationServiceAccessStatusCommand: (input: ListOrganizationServiceAccessStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
141
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
142
|
export declare const serializeAws_restJson1PutCoreNetworkPolicyCommand: (input: PutCoreNetworkPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
143
|
export declare const serializeAws_restJson1PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
141
144
|
export declare const serializeAws_restJson1RegisterTransitGatewayCommand: (input: RegisterTransitGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
145
|
export declare const serializeAws_restJson1RejectAttachmentCommand: (input: RejectAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
146
|
export declare const serializeAws_restJson1RestoreCoreNetworkPolicyVersionCommand: (input: RestoreCoreNetworkPolicyVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
147
|
+
export declare const serializeAws_restJson1StartOrganizationServiceAccessUpdateCommand: (input: StartOrganizationServiceAccessUpdateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
148
|
export declare const serializeAws_restJson1StartRouteAnalysisCommand: (input: StartRouteAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
149
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
150
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -211,12 +215,14 @@ export declare const deserializeAws_restJson1ListAttachmentsCommand: (output: __
|
|
|
211
215
|
export declare const deserializeAws_restJson1ListConnectPeersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectPeersCommandOutput>;
|
|
212
216
|
export declare const deserializeAws_restJson1ListCoreNetworkPolicyVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCoreNetworkPolicyVersionsCommandOutput>;
|
|
213
217
|
export declare const deserializeAws_restJson1ListCoreNetworksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCoreNetworksCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_restJson1ListOrganizationServiceAccessStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationServiceAccessStatusCommandOutput>;
|
|
214
219
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
215
220
|
export declare const deserializeAws_restJson1PutCoreNetworkPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutCoreNetworkPolicyCommandOutput>;
|
|
216
221
|
export declare const deserializeAws_restJson1PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
|
|
217
222
|
export declare const deserializeAws_restJson1RegisterTransitGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterTransitGatewayCommandOutput>;
|
|
218
223
|
export declare const deserializeAws_restJson1RejectAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectAttachmentCommandOutput>;
|
|
219
224
|
export declare const deserializeAws_restJson1RestoreCoreNetworkPolicyVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreCoreNetworkPolicyVersionCommandOutput>;
|
|
225
|
+
export declare const deserializeAws_restJson1StartOrganizationServiceAccessUpdateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartOrganizationServiceAccessUpdateCommandOutput>;
|
|
220
226
|
export declare const deserializeAws_restJson1StartRouteAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartRouteAnalysisCommandOutput>;
|
|
221
227
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
222
228
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
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.98.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",
|