@aws-sdk/client-fms 3.952.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +694 -450
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateAdminAccountCommand.js +2 -2
- package/dist-es/commands/AssociateThirdPartyFirewallCommand.js +2 -2
- package/dist-es/commands/BatchAssociateResourceCommand.js +2 -2
- package/dist-es/commands/BatchDisassociateResourceCommand.js +2 -2
- package/dist-es/commands/DeleteAppsListCommand.js +2 -2
- package/dist-es/commands/DeleteNotificationChannelCommand.js +2 -2
- package/dist-es/commands/DeletePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteProtocolsListCommand.js +2 -2
- package/dist-es/commands/DeleteResourceSetCommand.js +2 -2
- package/dist-es/commands/DisassociateAdminAccountCommand.js +2 -2
- package/dist-es/commands/DisassociateThirdPartyFirewallCommand.js +2 -2
- package/dist-es/commands/GetAdminAccountCommand.js +2 -2
- package/dist-es/commands/GetAdminScopeCommand.js +2 -2
- package/dist-es/commands/GetAppsListCommand.js +2 -2
- package/dist-es/commands/GetComplianceDetailCommand.js +2 -2
- package/dist-es/commands/GetNotificationChannelCommand.js +2 -2
- package/dist-es/commands/GetPolicyCommand.js +2 -2
- package/dist-es/commands/GetProtectionStatusCommand.js +2 -2
- package/dist-es/commands/GetProtocolsListCommand.js +2 -2
- package/dist-es/commands/GetResourceSetCommand.js +2 -2
- package/dist-es/commands/GetThirdPartyFirewallAssociationStatusCommand.js +2 -2
- package/dist-es/commands/GetViolationDetailsCommand.js +2 -2
- package/dist-es/commands/ListAdminAccountsForOrganizationCommand.js +2 -2
- package/dist-es/commands/ListAdminsManagingAccountCommand.js +2 -2
- package/dist-es/commands/ListAppsListsCommand.js +2 -2
- package/dist-es/commands/ListComplianceStatusCommand.js +2 -2
- package/dist-es/commands/ListDiscoveredResourcesCommand.js +2 -2
- package/dist-es/commands/ListMemberAccountsCommand.js +2 -2
- package/dist-es/commands/ListPoliciesCommand.js +2 -2
- package/dist-es/commands/ListProtocolsListsCommand.js +2 -2
- package/dist-es/commands/ListResourceSetResourcesCommand.js +2 -2
- package/dist-es/commands/ListResourceSetsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListThirdPartyFirewallFirewallPoliciesCommand.js +2 -2
- package/dist-es/commands/PutAdminAccountCommand.js +2 -2
- package/dist-es/commands/PutAppsListCommand.js +2 -2
- package/dist-es/commands/PutNotificationChannelCommand.js +2 -2
- package/dist-es/commands/PutPolicyCommand.js +2 -2
- package/dist-es/commands/PutProtocolsListCommand.js +2 -2
- package/dist-es/commands/PutResourceSetCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +444 -414
- package/dist-types/FMSClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +215 -269
- package/dist-types/ts3.4/FMSClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +214 -270
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.fms",
|
|
32
|
+
version: "2018-01-01",
|
|
33
|
+
serviceTarget: "AWSFMS_20180101",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "FMS",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateAdminAccount } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateAdminAccount$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateAdminAccountCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateAdminAccountCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "AssociateAdminAccount", {})
|
|
13
13
|
.n("FMSClient", "AssociateAdminAccountCommand")
|
|
14
|
-
.sc(AssociateAdminAccount)
|
|
14
|
+
.sc(AssociateAdminAccount$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateThirdPartyFirewall } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateThirdPartyFirewall$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateThirdPartyFirewallCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateThirdPartyFirewallCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "AssociateThirdPartyFirewall", {})
|
|
13
13
|
.n("FMSClient", "AssociateThirdPartyFirewallCommand")
|
|
14
|
-
.sc(AssociateThirdPartyFirewall)
|
|
14
|
+
.sc(AssociateThirdPartyFirewall$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchAssociateResource } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchAssociateResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchAssociateResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchAssociateResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "BatchAssociateResource", {})
|
|
13
13
|
.n("FMSClient", "BatchAssociateResourceCommand")
|
|
14
|
-
.sc(BatchAssociateResource)
|
|
14
|
+
.sc(BatchAssociateResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchDisassociateResource } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchDisassociateResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchDisassociateResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchDisassociateResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "BatchDisassociateResource", {})
|
|
13
13
|
.n("FMSClient", "BatchDisassociateResourceCommand")
|
|
14
|
-
.sc(BatchDisassociateResource)
|
|
14
|
+
.sc(BatchDisassociateResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAppsList } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAppsList$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAppsListCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAppsListCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "DeleteAppsList", {})
|
|
13
13
|
.n("FMSClient", "DeleteAppsListCommand")
|
|
14
|
-
.sc(DeleteAppsList)
|
|
14
|
+
.sc(DeleteAppsList$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteNotificationChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteNotificationChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteNotificationChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteNotificationChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "DeleteNotificationChannel", {})
|
|
13
13
|
.n("FMSClient", "DeleteNotificationChannelCommand")
|
|
14
|
-
.sc(DeleteNotificationChannel)
|
|
14
|
+
.sc(DeleteNotificationChannel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "DeletePolicy", {})
|
|
13
13
|
.n("FMSClient", "DeletePolicyCommand")
|
|
14
|
-
.sc(DeletePolicy)
|
|
14
|
+
.sc(DeletePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteProtocolsList } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteProtocolsList$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteProtocolsListCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteProtocolsListCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "DeleteProtocolsList", {})
|
|
13
13
|
.n("FMSClient", "DeleteProtocolsListCommand")
|
|
14
|
-
.sc(DeleteProtocolsList)
|
|
14
|
+
.sc(DeleteProtocolsList$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteResourceSet } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResourceSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResourceSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteResourceSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "DeleteResourceSet", {})
|
|
13
13
|
.n("FMSClient", "DeleteResourceSetCommand")
|
|
14
|
-
.sc(DeleteResourceSet)
|
|
14
|
+
.sc(DeleteResourceSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateAdminAccount } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateAdminAccount$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateAdminAccountCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateAdminAccountCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "DisassociateAdminAccount", {})
|
|
13
13
|
.n("FMSClient", "DisassociateAdminAccountCommand")
|
|
14
|
-
.sc(DisassociateAdminAccount)
|
|
14
|
+
.sc(DisassociateAdminAccount$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateThirdPartyFirewall } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateThirdPartyFirewall$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateThirdPartyFirewallCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateThirdPartyFirewallCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "DisassociateThirdPartyFirewall", {})
|
|
13
13
|
.n("FMSClient", "DisassociateThirdPartyFirewallCommand")
|
|
14
|
-
.sc(DisassociateThirdPartyFirewall)
|
|
14
|
+
.sc(DisassociateThirdPartyFirewall$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAdminAccount } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAdminAccount$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAdminAccountCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAdminAccountCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetAdminAccount", {})
|
|
13
13
|
.n("FMSClient", "GetAdminAccountCommand")
|
|
14
|
-
.sc(GetAdminAccount)
|
|
14
|
+
.sc(GetAdminAccount$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAdminScope } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAdminScope$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAdminScopeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAdminScopeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetAdminScope", {})
|
|
13
13
|
.n("FMSClient", "GetAdminScopeCommand")
|
|
14
|
-
.sc(GetAdminScope)
|
|
14
|
+
.sc(GetAdminScope$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAppsList } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAppsList$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAppsListCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAppsListCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetAppsList", {})
|
|
13
13
|
.n("FMSClient", "GetAppsListCommand")
|
|
14
|
-
.sc(GetAppsList)
|
|
14
|
+
.sc(GetAppsList$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetComplianceDetail } from "../schemas/schemas_0";
|
|
4
|
+
import { GetComplianceDetail$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetComplianceDetailCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetComplianceDetailCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetComplianceDetail", {})
|
|
13
13
|
.n("FMSClient", "GetComplianceDetailCommand")
|
|
14
|
-
.sc(GetComplianceDetail)
|
|
14
|
+
.sc(GetComplianceDetail$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetNotificationChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { GetNotificationChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetNotificationChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetNotificationChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetNotificationChannel", {})
|
|
13
13
|
.n("FMSClient", "GetNotificationChannelCommand")
|
|
14
|
-
.sc(GetNotificationChannel)
|
|
14
|
+
.sc(GetNotificationChannel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetPolicy", {})
|
|
13
13
|
.n("FMSClient", "GetPolicyCommand")
|
|
14
|
-
.sc(GetPolicy)
|
|
14
|
+
.sc(GetPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetProtectionStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetProtectionStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetProtectionStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetProtectionStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetProtectionStatus", {})
|
|
13
13
|
.n("FMSClient", "GetProtectionStatusCommand")
|
|
14
|
-
.sc(GetProtectionStatus)
|
|
14
|
+
.sc(GetProtectionStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetProtocolsList } from "../schemas/schemas_0";
|
|
4
|
+
import { GetProtocolsList$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetProtocolsListCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetProtocolsListCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetProtocolsList", {})
|
|
13
13
|
.n("FMSClient", "GetProtocolsListCommand")
|
|
14
|
-
.sc(GetProtocolsList)
|
|
14
|
+
.sc(GetProtocolsList$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResourceSet } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResourceSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourceSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourceSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetResourceSet", {})
|
|
13
13
|
.n("FMSClient", "GetResourceSetCommand")
|
|
14
|
-
.sc(GetResourceSet)
|
|
14
|
+
.sc(GetResourceSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetThirdPartyFirewallAssociationStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetThirdPartyFirewallAssociationStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetThirdPartyFirewallAssociationStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetThirdPartyFirewallAssociationStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetThirdPartyFirewallAssociationStatus", {})
|
|
13
13
|
.n("FMSClient", "GetThirdPartyFirewallAssociationStatusCommand")
|
|
14
|
-
.sc(GetThirdPartyFirewallAssociationStatus)
|
|
14
|
+
.sc(GetThirdPartyFirewallAssociationStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetViolationDetails } from "../schemas/schemas_0";
|
|
4
|
+
import { GetViolationDetails$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetViolationDetailsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetViolationDetailsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "GetViolationDetails", {})
|
|
13
13
|
.n("FMSClient", "GetViolationDetailsCommand")
|
|
14
|
-
.sc(GetViolationDetails)
|
|
14
|
+
.sc(GetViolationDetails$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAdminAccountsForOrganization } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAdminAccountsForOrganization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAdminAccountsForOrganizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAdminAccountsForOrganizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListAdminAccountsForOrganization", {})
|
|
13
13
|
.n("FMSClient", "ListAdminAccountsForOrganizationCommand")
|
|
14
|
-
.sc(ListAdminAccountsForOrganization)
|
|
14
|
+
.sc(ListAdminAccountsForOrganization$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAdminsManagingAccount } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAdminsManagingAccount$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAdminsManagingAccountCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAdminsManagingAccountCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListAdminsManagingAccount", {})
|
|
13
13
|
.n("FMSClient", "ListAdminsManagingAccountCommand")
|
|
14
|
-
.sc(ListAdminsManagingAccount)
|
|
14
|
+
.sc(ListAdminsManagingAccount$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAppsLists } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAppsLists$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppsListsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppsListsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListAppsLists", {})
|
|
13
13
|
.n("FMSClient", "ListAppsListsCommand")
|
|
14
|
-
.sc(ListAppsLists)
|
|
14
|
+
.sc(ListAppsLists$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListComplianceStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { ListComplianceStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListComplianceStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListComplianceStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListComplianceStatus", {})
|
|
13
13
|
.n("FMSClient", "ListComplianceStatusCommand")
|
|
14
|
-
.sc(ListComplianceStatus)
|
|
14
|
+
.sc(ListComplianceStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDiscoveredResources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDiscoveredResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDiscoveredResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDiscoveredResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListDiscoveredResources", {})
|
|
13
13
|
.n("FMSClient", "ListDiscoveredResourcesCommand")
|
|
14
|
-
.sc(ListDiscoveredResources)
|
|
14
|
+
.sc(ListDiscoveredResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMemberAccounts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMemberAccounts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMemberAccountsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMemberAccountsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListMemberAccounts", {})
|
|
13
13
|
.n("FMSClient", "ListMemberAccountsCommand")
|
|
14
|
-
.sc(ListMemberAccounts)
|
|
14
|
+
.sc(ListMemberAccounts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPolicies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPolicies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPoliciesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPoliciesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListPolicies", {})
|
|
13
13
|
.n("FMSClient", "ListPoliciesCommand")
|
|
14
|
-
.sc(ListPolicies)
|
|
14
|
+
.sc(ListPolicies$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListProtocolsLists } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProtocolsLists$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProtocolsListsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProtocolsListsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListProtocolsLists", {})
|
|
13
13
|
.n("FMSClient", "ListProtocolsListsCommand")
|
|
14
|
-
.sc(ListProtocolsLists)
|
|
14
|
+
.sc(ListProtocolsLists$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResourceSetResources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResourceSetResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourceSetResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourceSetResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListResourceSetResources", {})
|
|
13
13
|
.n("FMSClient", "ListResourceSetResourcesCommand")
|
|
14
|
-
.sc(ListResourceSetResources)
|
|
14
|
+
.sc(ListResourceSetResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResourceSets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResourceSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourceSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourceSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListResourceSets", {})
|
|
13
13
|
.n("FMSClient", "ListResourceSetsCommand")
|
|
14
|
-
.sc(ListResourceSets)
|
|
14
|
+
.sc(ListResourceSets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListTagsForResource", {})
|
|
13
13
|
.n("FMSClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListThirdPartyFirewallFirewallPolicies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListThirdPartyFirewallFirewallPolicies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListThirdPartyFirewallFirewallPoliciesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListThirdPartyFirewallFirewallPoliciesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "ListThirdPartyFirewallFirewallPolicies", {})
|
|
13
13
|
.n("FMSClient", "ListThirdPartyFirewallFirewallPoliciesCommand")
|
|
14
|
-
.sc(ListThirdPartyFirewallFirewallPolicies)
|
|
14
|
+
.sc(ListThirdPartyFirewallFirewallPolicies$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutAdminAccount } from "../schemas/schemas_0";
|
|
4
|
+
import { PutAdminAccount$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutAdminAccountCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutAdminAccountCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSFMS_20180101", "PutAdminAccount", {})
|
|
13
13
|
.n("FMSClient", "PutAdminAccountCommand")
|
|
14
|
-
.sc(PutAdminAccount)
|
|
14
|
+
.sc(PutAdminAccount$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|