@aws-sdk/client-fms 3.315.0 → 3.318.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 +33 -1
- package/dist-cjs/FMS.js +50 -532
- package/dist-cjs/commands/GetAdminScopeCommand.js +45 -0
- package/dist-cjs/commands/ListAdminAccountsForOrganizationCommand.js +45 -0
- package/dist-cjs/commands/ListAdminsManagingAccountCommand.js +45 -0
- package/dist-cjs/commands/PutAdminAccountCommand.js +45 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +27 -13
- package/dist-cjs/pagination/ListAdminAccountsForOrganizationPaginator.js +29 -0
- package/dist-cjs/pagination/ListAdminsManagingAccountPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +192 -2
- package/dist-es/FMS.js +50 -532
- package/dist-es/commands/GetAdminScopeCommand.js +41 -0
- package/dist-es/commands/ListAdminAccountsForOrganizationCommand.js +41 -0
- package/dist-es/commands/ListAdminsManagingAccountCommand.js +41 -0
- package/dist-es/commands/PutAdminAccountCommand.js +41 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +26 -12
- package/dist-es/pagination/ListAdminAccountsForOrganizationPaginator.js +25 -0
- package/dist-es/pagination/ListAdminsManagingAccountPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +182 -0
- package/dist-types/FMS.d.ts +79 -162
- package/dist-types/FMSClient.d.ts +7 -3
- package/dist-types/commands/AssociateAdminAccountCommand.d.ts +2 -4
- package/dist-types/commands/DisassociateAdminAccountCommand.d.ts +2 -3
- package/dist-types/commands/GetAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/GetAdminScopeCommand.d.ts +80 -0
- package/dist-types/commands/GetComplianceDetailCommand.d.ts +4 -4
- package/dist-types/commands/ListAdminAccountsForOrganizationCommand.d.ts +79 -0
- package/dist-types/commands/ListAdminsManagingAccountCommand.d.ts +74 -0
- package/dist-types/commands/ListMemberAccountsCommand.d.ts +1 -2
- package/dist-types/commands/PutAdminAccountCommand.d.ts +112 -0
- package/dist-types/commands/PutNotificationChannelCommand.d.ts +2 -3
- package/dist-types/commands/PutPolicyCommand.d.ts +1 -0
- package/dist-types/commands/PutResourceSetCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +436 -59
- package/dist-types/pagination/ListAdminAccountsForOrganizationPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAdminsManagingAccountPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/FMS.d.ts +70 -1
- package/dist-types/ts3.4/FMSClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/GetAdminScopeCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListAdminAccountsForOrganizationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListAdminsManagingAccountCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutAdminAccountCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +94 -14
- package/dist-types/ts3.4/pagination/ListAdminAccountsForOrganizationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAdminsManagingAccountPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +6 -6
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAdminAccountsForOrganizationCommandInput, ListAdminAccountsForOrganizationCommandOutput } from "../commands/ListAdminAccountsForOrganizationCommand";
|
|
3
|
+
import { FMSPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListAdminAccountsForOrganization(config: FMSPaginationConfiguration, input: ListAdminAccountsForOrganizationCommandInput, ...additionalArguments: any): Paginator<ListAdminAccountsForOrganizationCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAdminsManagingAccountCommandInput, ListAdminsManagingAccountCommandOutput } from "../commands/ListAdminsManagingAccountCommand";
|
|
3
|
+
import { FMSPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListAdminsManagingAccount(config: FMSPaginationConfiguration, input: ListAdminsManagingAccountCommandInput, ...additionalArguments: any): Paginator<ListAdminsManagingAccountCommandOutput>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAdminAccountsForOrganizationPaginator";
|
|
3
|
+
export * from "./ListAdminsManagingAccountPaginator";
|
|
2
4
|
export * from "./ListAppsListsPaginator";
|
|
3
5
|
export * from "./ListComplianceStatusPaginator";
|
|
4
6
|
export * from "./ListMemberAccountsPaginator";
|
|
@@ -12,6 +12,7 @@ import { DeleteResourceSetCommandInput, DeleteResourceSetCommandOutput } from ".
|
|
|
12
12
|
import { DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput } from "../commands/DisassociateAdminAccountCommand";
|
|
13
13
|
import { DisassociateThirdPartyFirewallCommandInput, DisassociateThirdPartyFirewallCommandOutput } from "../commands/DisassociateThirdPartyFirewallCommand";
|
|
14
14
|
import { GetAdminAccountCommandInput, GetAdminAccountCommandOutput } from "../commands/GetAdminAccountCommand";
|
|
15
|
+
import { GetAdminScopeCommandInput, GetAdminScopeCommandOutput } from "../commands/GetAdminScopeCommand";
|
|
15
16
|
import { GetAppsListCommandInput, GetAppsListCommandOutput } from "../commands/GetAppsListCommand";
|
|
16
17
|
import { GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput } from "../commands/GetComplianceDetailCommand";
|
|
17
18
|
import { GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput } from "../commands/GetNotificationChannelCommand";
|
|
@@ -21,6 +22,8 @@ import { GetProtocolsListCommandInput, GetProtocolsListCommandOutput } from "../
|
|
|
21
22
|
import { GetResourceSetCommandInput, GetResourceSetCommandOutput } from "../commands/GetResourceSetCommand";
|
|
22
23
|
import { GetThirdPartyFirewallAssociationStatusCommandInput, GetThirdPartyFirewallAssociationStatusCommandOutput } from "../commands/GetThirdPartyFirewallAssociationStatusCommand";
|
|
23
24
|
import { GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput } from "../commands/GetViolationDetailsCommand";
|
|
25
|
+
import { ListAdminAccountsForOrganizationCommandInput, ListAdminAccountsForOrganizationCommandOutput } from "../commands/ListAdminAccountsForOrganizationCommand";
|
|
26
|
+
import { ListAdminsManagingAccountCommandInput, ListAdminsManagingAccountCommandOutput } from "../commands/ListAdminsManagingAccountCommand";
|
|
24
27
|
import { ListAppsListsCommandInput, ListAppsListsCommandOutput } from "../commands/ListAppsListsCommand";
|
|
25
28
|
import { ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput } from "../commands/ListComplianceStatusCommand";
|
|
26
29
|
import { ListDiscoveredResourcesCommandInput, ListDiscoveredResourcesCommandOutput } from "../commands/ListDiscoveredResourcesCommand";
|
|
@@ -31,6 +34,7 @@ import { ListResourceSetResourcesCommandInput, ListResourceSetResourcesCommandOu
|
|
|
31
34
|
import { ListResourceSetsCommandInput, ListResourceSetsCommandOutput } from "../commands/ListResourceSetsCommand";
|
|
32
35
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
33
36
|
import { ListThirdPartyFirewallFirewallPoliciesCommandInput, ListThirdPartyFirewallFirewallPoliciesCommandOutput } from "../commands/ListThirdPartyFirewallFirewallPoliciesCommand";
|
|
37
|
+
import { PutAdminAccountCommandInput, PutAdminAccountCommandOutput } from "../commands/PutAdminAccountCommand";
|
|
34
38
|
import { PutAppsListCommandInput, PutAppsListCommandOutput } from "../commands/PutAppsListCommand";
|
|
35
39
|
import { PutNotificationChannelCommandInput, PutNotificationChannelCommandOutput } from "../commands/PutNotificationChannelCommand";
|
|
36
40
|
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
|
|
@@ -86,6 +90,10 @@ export declare const se_DisassociateThirdPartyFirewallCommand: (input: Disassoci
|
|
|
86
90
|
* serializeAws_json1_1GetAdminAccountCommand
|
|
87
91
|
*/
|
|
88
92
|
export declare const se_GetAdminAccountCommand: (input: GetAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
+
/**
|
|
94
|
+
* serializeAws_json1_1GetAdminScopeCommand
|
|
95
|
+
*/
|
|
96
|
+
export declare const se_GetAdminScopeCommand: (input: GetAdminScopeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
97
|
/**
|
|
90
98
|
* serializeAws_json1_1GetAppsListCommand
|
|
91
99
|
*/
|
|
@@ -122,6 +130,14 @@ export declare const se_GetThirdPartyFirewallAssociationStatusCommand: (input: G
|
|
|
122
130
|
* serializeAws_json1_1GetViolationDetailsCommand
|
|
123
131
|
*/
|
|
124
132
|
export declare const se_GetViolationDetailsCommand: (input: GetViolationDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
+
/**
|
|
134
|
+
* serializeAws_json1_1ListAdminAccountsForOrganizationCommand
|
|
135
|
+
*/
|
|
136
|
+
export declare const se_ListAdminAccountsForOrganizationCommand: (input: ListAdminAccountsForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
|
+
/**
|
|
138
|
+
* serializeAws_json1_1ListAdminsManagingAccountCommand
|
|
139
|
+
*/
|
|
140
|
+
export declare const se_ListAdminsManagingAccountCommand: (input: ListAdminsManagingAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
141
|
/**
|
|
126
142
|
* serializeAws_json1_1ListAppsListsCommand
|
|
127
143
|
*/
|
|
@@ -162,6 +178,10 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
162
178
|
* serializeAws_json1_1ListThirdPartyFirewallFirewallPoliciesCommand
|
|
163
179
|
*/
|
|
164
180
|
export declare const se_ListThirdPartyFirewallFirewallPoliciesCommand: (input: ListThirdPartyFirewallFirewallPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
181
|
+
/**
|
|
182
|
+
* serializeAws_json1_1PutAdminAccountCommand
|
|
183
|
+
*/
|
|
184
|
+
export declare const se_PutAdminAccountCommand: (input: PutAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
165
185
|
/**
|
|
166
186
|
* serializeAws_json1_1PutAppsListCommand
|
|
167
187
|
*/
|
|
@@ -238,6 +258,10 @@ export declare const de_DisassociateThirdPartyFirewallCommand: (output: __HttpRe
|
|
|
238
258
|
* deserializeAws_json1_1GetAdminAccountCommand
|
|
239
259
|
*/
|
|
240
260
|
export declare const de_GetAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdminAccountCommandOutput>;
|
|
261
|
+
/**
|
|
262
|
+
* deserializeAws_json1_1GetAdminScopeCommand
|
|
263
|
+
*/
|
|
264
|
+
export declare const de_GetAdminScopeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdminScopeCommandOutput>;
|
|
241
265
|
/**
|
|
242
266
|
* deserializeAws_json1_1GetAppsListCommand
|
|
243
267
|
*/
|
|
@@ -274,6 +298,14 @@ export declare const de_GetThirdPartyFirewallAssociationStatusCommand: (output:
|
|
|
274
298
|
* deserializeAws_json1_1GetViolationDetailsCommand
|
|
275
299
|
*/
|
|
276
300
|
export declare const de_GetViolationDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetViolationDetailsCommandOutput>;
|
|
301
|
+
/**
|
|
302
|
+
* deserializeAws_json1_1ListAdminAccountsForOrganizationCommand
|
|
303
|
+
*/
|
|
304
|
+
export declare const de_ListAdminAccountsForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAdminAccountsForOrganizationCommandOutput>;
|
|
305
|
+
/**
|
|
306
|
+
* deserializeAws_json1_1ListAdminsManagingAccountCommand
|
|
307
|
+
*/
|
|
308
|
+
export declare const de_ListAdminsManagingAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAdminsManagingAccountCommandOutput>;
|
|
277
309
|
/**
|
|
278
310
|
* deserializeAws_json1_1ListAppsListsCommand
|
|
279
311
|
*/
|
|
@@ -314,6 +346,10 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
314
346
|
* deserializeAws_json1_1ListThirdPartyFirewallFirewallPoliciesCommand
|
|
315
347
|
*/
|
|
316
348
|
export declare const de_ListThirdPartyFirewallFirewallPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListThirdPartyFirewallFirewallPoliciesCommandOutput>;
|
|
349
|
+
/**
|
|
350
|
+
* deserializeAws_json1_1PutAdminAccountCommand
|
|
351
|
+
*/
|
|
352
|
+
export declare const de_PutAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAdminAccountCommandOutput>;
|
|
317
353
|
/**
|
|
318
354
|
* deserializeAws_json1_1PutAppsListCommand
|
|
319
355
|
*/
|
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
GetAdminAccountCommandInput,
|
|
48
48
|
GetAdminAccountCommandOutput,
|
|
49
49
|
} from "./commands/GetAdminAccountCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetAdminScopeCommandInput,
|
|
52
|
+
GetAdminScopeCommandOutput,
|
|
53
|
+
} from "./commands/GetAdminScopeCommand";
|
|
50
54
|
import {
|
|
51
55
|
GetAppsListCommandInput,
|
|
52
56
|
GetAppsListCommandOutput,
|
|
@@ -83,6 +87,14 @@ import {
|
|
|
83
87
|
GetViolationDetailsCommandInput,
|
|
84
88
|
GetViolationDetailsCommandOutput,
|
|
85
89
|
} from "./commands/GetViolationDetailsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListAdminAccountsForOrganizationCommandInput,
|
|
92
|
+
ListAdminAccountsForOrganizationCommandOutput,
|
|
93
|
+
} from "./commands/ListAdminAccountsForOrganizationCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListAdminsManagingAccountCommandInput,
|
|
96
|
+
ListAdminsManagingAccountCommandOutput,
|
|
97
|
+
} from "./commands/ListAdminsManagingAccountCommand";
|
|
86
98
|
import {
|
|
87
99
|
ListAppsListsCommandInput,
|
|
88
100
|
ListAppsListsCommandOutput,
|
|
@@ -123,6 +135,10 @@ import {
|
|
|
123
135
|
ListThirdPartyFirewallFirewallPoliciesCommandInput,
|
|
124
136
|
ListThirdPartyFirewallFirewallPoliciesCommandOutput,
|
|
125
137
|
} from "./commands/ListThirdPartyFirewallFirewallPoliciesCommand";
|
|
138
|
+
import {
|
|
139
|
+
PutAdminAccountCommandInput,
|
|
140
|
+
PutAdminAccountCommandOutput,
|
|
141
|
+
} from "./commands/PutAdminAccountCommand";
|
|
126
142
|
import {
|
|
127
143
|
PutAppsListCommandInput,
|
|
128
144
|
PutAppsListCommandOutput,
|
|
@@ -152,7 +168,7 @@ import {
|
|
|
152
168
|
UntagResourceCommandOutput,
|
|
153
169
|
} from "./commands/UntagResourceCommand";
|
|
154
170
|
import { FMSClient } from "./FMSClient";
|
|
155
|
-
export
|
|
171
|
+
export interface FMS {
|
|
156
172
|
associateAdminAccount(
|
|
157
173
|
args: AssociateAdminAccountCommandInput,
|
|
158
174
|
options?: __HttpHandlerOptions
|
|
@@ -309,6 +325,19 @@ export declare class FMS extends FMSClient {
|
|
|
309
325
|
options: __HttpHandlerOptions,
|
|
310
326
|
cb: (err: any, data?: GetAdminAccountCommandOutput) => void
|
|
311
327
|
): void;
|
|
328
|
+
getAdminScope(
|
|
329
|
+
args: GetAdminScopeCommandInput,
|
|
330
|
+
options?: __HttpHandlerOptions
|
|
331
|
+
): Promise<GetAdminScopeCommandOutput>;
|
|
332
|
+
getAdminScope(
|
|
333
|
+
args: GetAdminScopeCommandInput,
|
|
334
|
+
cb: (err: any, data?: GetAdminScopeCommandOutput) => void
|
|
335
|
+
): void;
|
|
336
|
+
getAdminScope(
|
|
337
|
+
args: GetAdminScopeCommandInput,
|
|
338
|
+
options: __HttpHandlerOptions,
|
|
339
|
+
cb: (err: any, data?: GetAdminScopeCommandOutput) => void
|
|
340
|
+
): void;
|
|
312
341
|
getAppsList(
|
|
313
342
|
args: GetAppsListCommandInput,
|
|
314
343
|
options?: __HttpHandlerOptions
|
|
@@ -432,6 +461,32 @@ export declare class FMS extends FMSClient {
|
|
|
432
461
|
options: __HttpHandlerOptions,
|
|
433
462
|
cb: (err: any, data?: GetViolationDetailsCommandOutput) => void
|
|
434
463
|
): void;
|
|
464
|
+
listAdminAccountsForOrganization(
|
|
465
|
+
args: ListAdminAccountsForOrganizationCommandInput,
|
|
466
|
+
options?: __HttpHandlerOptions
|
|
467
|
+
): Promise<ListAdminAccountsForOrganizationCommandOutput>;
|
|
468
|
+
listAdminAccountsForOrganization(
|
|
469
|
+
args: ListAdminAccountsForOrganizationCommandInput,
|
|
470
|
+
cb: (err: any, data?: ListAdminAccountsForOrganizationCommandOutput) => void
|
|
471
|
+
): void;
|
|
472
|
+
listAdminAccountsForOrganization(
|
|
473
|
+
args: ListAdminAccountsForOrganizationCommandInput,
|
|
474
|
+
options: __HttpHandlerOptions,
|
|
475
|
+
cb: (err: any, data?: ListAdminAccountsForOrganizationCommandOutput) => void
|
|
476
|
+
): void;
|
|
477
|
+
listAdminsManagingAccount(
|
|
478
|
+
args: ListAdminsManagingAccountCommandInput,
|
|
479
|
+
options?: __HttpHandlerOptions
|
|
480
|
+
): Promise<ListAdminsManagingAccountCommandOutput>;
|
|
481
|
+
listAdminsManagingAccount(
|
|
482
|
+
args: ListAdminsManagingAccountCommandInput,
|
|
483
|
+
cb: (err: any, data?: ListAdminsManagingAccountCommandOutput) => void
|
|
484
|
+
): void;
|
|
485
|
+
listAdminsManagingAccount(
|
|
486
|
+
args: ListAdminsManagingAccountCommandInput,
|
|
487
|
+
options: __HttpHandlerOptions,
|
|
488
|
+
cb: (err: any, data?: ListAdminsManagingAccountCommandOutput) => void
|
|
489
|
+
): void;
|
|
435
490
|
listAppsLists(
|
|
436
491
|
args: ListAppsListsCommandInput,
|
|
437
492
|
options?: __HttpHandlerOptions
|
|
@@ -568,6 +623,19 @@ export declare class FMS extends FMSClient {
|
|
|
568
623
|
data?: ListThirdPartyFirewallFirewallPoliciesCommandOutput
|
|
569
624
|
) => void
|
|
570
625
|
): void;
|
|
626
|
+
putAdminAccount(
|
|
627
|
+
args: PutAdminAccountCommandInput,
|
|
628
|
+
options?: __HttpHandlerOptions
|
|
629
|
+
): Promise<PutAdminAccountCommandOutput>;
|
|
630
|
+
putAdminAccount(
|
|
631
|
+
args: PutAdminAccountCommandInput,
|
|
632
|
+
cb: (err: any, data?: PutAdminAccountCommandOutput) => void
|
|
633
|
+
): void;
|
|
634
|
+
putAdminAccount(
|
|
635
|
+
args: PutAdminAccountCommandInput,
|
|
636
|
+
options: __HttpHandlerOptions,
|
|
637
|
+
cb: (err: any, data?: PutAdminAccountCommandOutput) => void
|
|
638
|
+
): void;
|
|
571
639
|
putAppsList(
|
|
572
640
|
args: PutAppsListCommandInput,
|
|
573
641
|
options?: __HttpHandlerOptions
|
|
@@ -660,3 +728,4 @@ export declare class FMS extends FMSClient {
|
|
|
660
728
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
661
729
|
): void;
|
|
662
730
|
}
|
|
731
|
+
export declare class FMS extends FMSClient implements FMS {}
|
|
@@ -92,6 +92,10 @@ import {
|
|
|
92
92
|
GetAdminAccountCommandInput,
|
|
93
93
|
GetAdminAccountCommandOutput,
|
|
94
94
|
} from "./commands/GetAdminAccountCommand";
|
|
95
|
+
import {
|
|
96
|
+
GetAdminScopeCommandInput,
|
|
97
|
+
GetAdminScopeCommandOutput,
|
|
98
|
+
} from "./commands/GetAdminScopeCommand";
|
|
95
99
|
import {
|
|
96
100
|
GetAppsListCommandInput,
|
|
97
101
|
GetAppsListCommandOutput,
|
|
@@ -128,6 +132,14 @@ import {
|
|
|
128
132
|
GetViolationDetailsCommandInput,
|
|
129
133
|
GetViolationDetailsCommandOutput,
|
|
130
134
|
} from "./commands/GetViolationDetailsCommand";
|
|
135
|
+
import {
|
|
136
|
+
ListAdminAccountsForOrganizationCommandInput,
|
|
137
|
+
ListAdminAccountsForOrganizationCommandOutput,
|
|
138
|
+
} from "./commands/ListAdminAccountsForOrganizationCommand";
|
|
139
|
+
import {
|
|
140
|
+
ListAdminsManagingAccountCommandInput,
|
|
141
|
+
ListAdminsManagingAccountCommandOutput,
|
|
142
|
+
} from "./commands/ListAdminsManagingAccountCommand";
|
|
131
143
|
import {
|
|
132
144
|
ListAppsListsCommandInput,
|
|
133
145
|
ListAppsListsCommandOutput,
|
|
@@ -168,6 +180,10 @@ import {
|
|
|
168
180
|
ListThirdPartyFirewallFirewallPoliciesCommandInput,
|
|
169
181
|
ListThirdPartyFirewallFirewallPoliciesCommandOutput,
|
|
170
182
|
} from "./commands/ListThirdPartyFirewallFirewallPoliciesCommand";
|
|
183
|
+
import {
|
|
184
|
+
PutAdminAccountCommandInput,
|
|
185
|
+
PutAdminAccountCommandOutput,
|
|
186
|
+
} from "./commands/PutAdminAccountCommand";
|
|
171
187
|
import {
|
|
172
188
|
PutAppsListCommandInput,
|
|
173
189
|
PutAppsListCommandOutput,
|
|
@@ -214,6 +230,7 @@ export type ServiceInputTypes =
|
|
|
214
230
|
| DisassociateAdminAccountCommandInput
|
|
215
231
|
| DisassociateThirdPartyFirewallCommandInput
|
|
216
232
|
| GetAdminAccountCommandInput
|
|
233
|
+
| GetAdminScopeCommandInput
|
|
217
234
|
| GetAppsListCommandInput
|
|
218
235
|
| GetComplianceDetailCommandInput
|
|
219
236
|
| GetNotificationChannelCommandInput
|
|
@@ -223,6 +240,8 @@ export type ServiceInputTypes =
|
|
|
223
240
|
| GetResourceSetCommandInput
|
|
224
241
|
| GetThirdPartyFirewallAssociationStatusCommandInput
|
|
225
242
|
| GetViolationDetailsCommandInput
|
|
243
|
+
| ListAdminAccountsForOrganizationCommandInput
|
|
244
|
+
| ListAdminsManagingAccountCommandInput
|
|
226
245
|
| ListAppsListsCommandInput
|
|
227
246
|
| ListComplianceStatusCommandInput
|
|
228
247
|
| ListDiscoveredResourcesCommandInput
|
|
@@ -233,6 +252,7 @@ export type ServiceInputTypes =
|
|
|
233
252
|
| ListResourceSetsCommandInput
|
|
234
253
|
| ListTagsForResourceCommandInput
|
|
235
254
|
| ListThirdPartyFirewallFirewallPoliciesCommandInput
|
|
255
|
+
| PutAdminAccountCommandInput
|
|
236
256
|
| PutAppsListCommandInput
|
|
237
257
|
| PutNotificationChannelCommandInput
|
|
238
258
|
| PutPolicyCommandInput
|
|
@@ -253,6 +273,7 @@ export type ServiceOutputTypes =
|
|
|
253
273
|
| DisassociateAdminAccountCommandOutput
|
|
254
274
|
| DisassociateThirdPartyFirewallCommandOutput
|
|
255
275
|
| GetAdminAccountCommandOutput
|
|
276
|
+
| GetAdminScopeCommandOutput
|
|
256
277
|
| GetAppsListCommandOutput
|
|
257
278
|
| GetComplianceDetailCommandOutput
|
|
258
279
|
| GetNotificationChannelCommandOutput
|
|
@@ -262,6 +283,8 @@ export type ServiceOutputTypes =
|
|
|
262
283
|
| GetResourceSetCommandOutput
|
|
263
284
|
| GetThirdPartyFirewallAssociationStatusCommandOutput
|
|
264
285
|
| GetViolationDetailsCommandOutput
|
|
286
|
+
| ListAdminAccountsForOrganizationCommandOutput
|
|
287
|
+
| ListAdminsManagingAccountCommandOutput
|
|
265
288
|
| ListAppsListsCommandOutput
|
|
266
289
|
| ListComplianceStatusCommandOutput
|
|
267
290
|
| ListDiscoveredResourcesCommandOutput
|
|
@@ -272,6 +295,7 @@ export type ServiceOutputTypes =
|
|
|
272
295
|
| ListResourceSetsCommandOutput
|
|
273
296
|
| ListTagsForResourceCommandOutput
|
|
274
297
|
| ListThirdPartyFirewallFirewallPoliciesCommandOutput
|
|
298
|
+
| PutAdminAccountCommandOutput
|
|
275
299
|
| PutAppsListCommandOutput
|
|
276
300
|
| PutNotificationChannelCommandOutput
|
|
277
301
|
| PutPolicyCommandOutput
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FMSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FMSClient";
|
|
14
|
+
import {
|
|
15
|
+
GetAdminScopeRequest,
|
|
16
|
+
GetAdminScopeResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface GetAdminScopeCommandInput extends GetAdminScopeRequest {}
|
|
19
|
+
export interface GetAdminScopeCommandOutput
|
|
20
|
+
extends GetAdminScopeResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetAdminScopeCommand extends $Command<
|
|
23
|
+
GetAdminScopeCommandInput,
|
|
24
|
+
GetAdminScopeCommandOutput,
|
|
25
|
+
FMSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetAdminScopeCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: GetAdminScopeCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: FMSClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetAdminScopeCommandInput, GetAdminScopeCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FMSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FMSClient";
|
|
14
|
+
import {
|
|
15
|
+
ListAdminAccountsForOrganizationRequest,
|
|
16
|
+
ListAdminAccountsForOrganizationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListAdminAccountsForOrganizationCommandInput
|
|
19
|
+
extends ListAdminAccountsForOrganizationRequest {}
|
|
20
|
+
export interface ListAdminAccountsForOrganizationCommandOutput
|
|
21
|
+
extends ListAdminAccountsForOrganizationResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListAdminAccountsForOrganizationCommand extends $Command<
|
|
24
|
+
ListAdminAccountsForOrganizationCommandInput,
|
|
25
|
+
ListAdminAccountsForOrganizationCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListAdminAccountsForOrganizationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListAdminAccountsForOrganizationCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListAdminAccountsForOrganizationCommandInput,
|
|
37
|
+
ListAdminAccountsForOrganizationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FMSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FMSClient";
|
|
14
|
+
import {
|
|
15
|
+
ListAdminsManagingAccountRequest,
|
|
16
|
+
ListAdminsManagingAccountResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListAdminsManagingAccountCommandInput
|
|
19
|
+
extends ListAdminsManagingAccountRequest {}
|
|
20
|
+
export interface ListAdminsManagingAccountCommandOutput
|
|
21
|
+
extends ListAdminsManagingAccountResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListAdminsManagingAccountCommand extends $Command<
|
|
24
|
+
ListAdminsManagingAccountCommandInput,
|
|
25
|
+
ListAdminsManagingAccountCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListAdminsManagingAccountCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListAdminsManagingAccountCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListAdminsManagingAccountCommandInput,
|
|
37
|
+
ListAdminsManagingAccountCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FMSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FMSClient";
|
|
14
|
+
import { PutAdminAccountRequest } from "../models/models_0";
|
|
15
|
+
export interface PutAdminAccountCommandInput extends PutAdminAccountRequest {}
|
|
16
|
+
export interface PutAdminAccountCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class PutAdminAccountCommand extends $Command<
|
|
18
|
+
PutAdminAccountCommandInput,
|
|
19
|
+
PutAdminAccountCommandOutput,
|
|
20
|
+
FMSClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: PutAdminAccountCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
|
+
constructor(input: PutAdminAccountCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: FMSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PutAdminAccountCommandInput, PutAdminAccountCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -10,6 +10,7 @@ export * from "./DeleteResourceSetCommand";
|
|
|
10
10
|
export * from "./DisassociateAdminAccountCommand";
|
|
11
11
|
export * from "./DisassociateThirdPartyFirewallCommand";
|
|
12
12
|
export * from "./GetAdminAccountCommand";
|
|
13
|
+
export * from "./GetAdminScopeCommand";
|
|
13
14
|
export * from "./GetAppsListCommand";
|
|
14
15
|
export * from "./GetComplianceDetailCommand";
|
|
15
16
|
export * from "./GetNotificationChannelCommand";
|
|
@@ -19,6 +20,8 @@ export * from "./GetProtocolsListCommand";
|
|
|
19
20
|
export * from "./GetResourceSetCommand";
|
|
20
21
|
export * from "./GetThirdPartyFirewallAssociationStatusCommand";
|
|
21
22
|
export * from "./GetViolationDetailsCommand";
|
|
23
|
+
export * from "./ListAdminAccountsForOrganizationCommand";
|
|
24
|
+
export * from "./ListAdminsManagingAccountCommand";
|
|
22
25
|
export * from "./ListAppsListsCommand";
|
|
23
26
|
export * from "./ListComplianceStatusCommand";
|
|
24
27
|
export * from "./ListDiscoveredResourcesCommand";
|
|
@@ -29,6 +32,7 @@ export * from "./ListResourceSetResourcesCommand";
|
|
|
29
32
|
export * from "./ListResourceSetsCommand";
|
|
30
33
|
export * from "./ListTagsForResourceCommand";
|
|
31
34
|
export * from "./ListThirdPartyFirewallFirewallPoliciesCommand";
|
|
35
|
+
export * from "./PutAdminAccountCommand";
|
|
32
36
|
export * from "./PutAppsListCommand";
|
|
33
37
|
export * from "./PutNotificationChannelCommand";
|
|
34
38
|
export * from "./PutPolicyCommand";
|
|
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region
|
|
29
|
+
Region?: string;
|
|
30
30
|
UseDualStack?: boolean;
|
|
31
31
|
UseFIPS?: boolean;
|
|
32
32
|
Endpoint?: string;
|