@aws-sdk/client-controlcatalog 3.1077.0 → 3.1078.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 +14 -63
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/GetControlCommand.js +2 -14
- package/dist-es/commands/ListCommonControlsCommand.js +2 -14
- package/dist-es/commands/ListControlMappingsCommand.js +2 -14
- package/dist-es/commands/ListControlsCommand.js +2 -14
- package/dist-es/commands/ListDomainsCommand.js +2 -14
- package/dist-es/commands/ListObjectivesCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/GetControlCommand.d.ts +3 -8
- package/dist-types/commands/ListCommonControlsCommand.d.ts +3 -8
- package/dist-types/commands/ListControlMappingsCommand.d.ts +3 -8
- package/dist-types/commands/ListControlsCommand.d.ts +3 -8
- package/dist-types/commands/ListDomainsCommand.d.ts +3 -8
- package/dist-types/commands/ListObjectivesCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetControlCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListCommonControlsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListControlMappingsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListControlsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListObjectivesCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1077.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -713,76 +714,26 @@ class ControlCatalogClient extends Client {
|
|
|
713
714
|
}
|
|
714
715
|
}
|
|
715
716
|
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
})
|
|
722
|
-
.s("ControlCatalog", "GetControl", {})
|
|
723
|
-
.n("ControlCatalogClient", "GetControlCommand")
|
|
724
|
-
.sc(GetControl$)
|
|
725
|
-
.build() {
|
|
717
|
+
const command = makeBuilder(commonParams, "ControlCatalog", "ControlCatalogClient", getEndpointPlugin);
|
|
718
|
+
const _ep0 = {};
|
|
719
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
720
|
+
|
|
721
|
+
class GetControlCommand extends command(_ep0, _mw0, "GetControl", GetControl$) {
|
|
726
722
|
}
|
|
727
723
|
|
|
728
|
-
class ListCommonControlsCommand extends
|
|
729
|
-
.classBuilder()
|
|
730
|
-
.ep(commonParams)
|
|
731
|
-
.m(function (Command, cs, config, o) {
|
|
732
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
733
|
-
})
|
|
734
|
-
.s("ControlCatalog", "ListCommonControls", {})
|
|
735
|
-
.n("ControlCatalogClient", "ListCommonControlsCommand")
|
|
736
|
-
.sc(ListCommonControls$)
|
|
737
|
-
.build() {
|
|
724
|
+
class ListCommonControlsCommand extends command(_ep0, _mw0, "ListCommonControls", ListCommonControls$) {
|
|
738
725
|
}
|
|
739
726
|
|
|
740
|
-
class ListControlMappingsCommand extends
|
|
741
|
-
.classBuilder()
|
|
742
|
-
.ep(commonParams)
|
|
743
|
-
.m(function (Command, cs, config, o) {
|
|
744
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
745
|
-
})
|
|
746
|
-
.s("ControlCatalog", "ListControlMappings", {})
|
|
747
|
-
.n("ControlCatalogClient", "ListControlMappingsCommand")
|
|
748
|
-
.sc(ListControlMappings$)
|
|
749
|
-
.build() {
|
|
727
|
+
class ListControlMappingsCommand extends command(_ep0, _mw0, "ListControlMappings", ListControlMappings$) {
|
|
750
728
|
}
|
|
751
729
|
|
|
752
|
-
class ListControlsCommand extends
|
|
753
|
-
.classBuilder()
|
|
754
|
-
.ep(commonParams)
|
|
755
|
-
.m(function (Command, cs, config, o) {
|
|
756
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
757
|
-
})
|
|
758
|
-
.s("ControlCatalog", "ListControls", {})
|
|
759
|
-
.n("ControlCatalogClient", "ListControlsCommand")
|
|
760
|
-
.sc(ListControls$)
|
|
761
|
-
.build() {
|
|
730
|
+
class ListControlsCommand extends command(_ep0, _mw0, "ListControls", ListControls$) {
|
|
762
731
|
}
|
|
763
732
|
|
|
764
|
-
class ListDomainsCommand extends
|
|
765
|
-
.classBuilder()
|
|
766
|
-
.ep(commonParams)
|
|
767
|
-
.m(function (Command, cs, config, o) {
|
|
768
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
769
|
-
})
|
|
770
|
-
.s("ControlCatalog", "ListDomains", {})
|
|
771
|
-
.n("ControlCatalogClient", "ListDomainsCommand")
|
|
772
|
-
.sc(ListDomains$)
|
|
773
|
-
.build() {
|
|
733
|
+
class ListDomainsCommand extends command(_ep0, _mw0, "ListDomains", ListDomains$) {
|
|
774
734
|
}
|
|
775
735
|
|
|
776
|
-
class ListObjectivesCommand extends
|
|
777
|
-
.classBuilder()
|
|
778
|
-
.ep(commonParams)
|
|
779
|
-
.m(function (Command, cs, config, o) {
|
|
780
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
781
|
-
})
|
|
782
|
-
.s("ControlCatalog", "ListObjectives", {})
|
|
783
|
-
.n("ControlCatalogClient", "ListObjectivesCommand")
|
|
784
|
-
.sc(ListObjectives$)
|
|
785
|
-
.build() {
|
|
736
|
+
class ListObjectivesCommand extends command(_ep0, _mw0, "ListObjectives", ListObjectives$) {
|
|
786
737
|
}
|
|
787
738
|
|
|
788
739
|
const paginateListCommonControls = createPaginator(ControlCatalogClient, ListCommonControlsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "ControlCatalog", "ControlCatalogClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetControl$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetControlCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ControlCatalog", "GetControl", {})
|
|
13
|
-
.n("ControlCatalogClient", "GetControlCommand")
|
|
14
|
-
.sc(GetControl$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetControlCommand extends command(_ep0, _mw0, "GetControl", GetControl$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListCommonControls$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListCommonControlsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ControlCatalog", "ListCommonControls", {})
|
|
13
|
-
.n("ControlCatalogClient", "ListCommonControlsCommand")
|
|
14
|
-
.sc(ListCommonControls$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListCommonControlsCommand extends command(_ep0, _mw0, "ListCommonControls", ListCommonControls$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListControlMappings$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListControlMappingsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ControlCatalog", "ListControlMappings", {})
|
|
13
|
-
.n("ControlCatalogClient", "ListControlMappingsCommand")
|
|
14
|
-
.sc(ListControlMappings$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListControlMappingsCommand extends command(_ep0, _mw0, "ListControlMappings", ListControlMappings$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListControls$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListControlsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ControlCatalog", "ListControls", {})
|
|
13
|
-
.n("ControlCatalogClient", "ListControlsCommand")
|
|
14
|
-
.sc(ListControls$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListControlsCommand extends command(_ep0, _mw0, "ListControls", ListControls$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListDomains$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListDomainsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ControlCatalog", "ListDomains", {})
|
|
13
|
-
.n("ControlCatalogClient", "ListDomainsCommand")
|
|
14
|
-
.sc(ListDomains$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListDomainsCommand extends command(_ep0, _mw0, "ListDomains", ListDomains$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListObjectives$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListObjectivesCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ControlCatalog", "ListObjectives", {})
|
|
13
|
-
.n("ControlCatalogClient", "ListObjectivesCommand")
|
|
14
|
-
.sc(ListObjectives$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListObjectivesCommand extends command(_ep0, _mw0, "ListObjectives", ListObjectives$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./ControlCatalogClient";
|
|
2
2
|
export * from "./ControlCatalog";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./pagination";
|
|
6
7
|
export * from "./models/enums";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./ControlCatalogClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient";
|
|
4
2
|
import type { GetControlRequest, GetControlResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetControlCommandInput extends GetControlRequest {
|
|
|
22
19
|
export interface GetControlCommandOutput extends GetControlResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetControlCommand_base: {
|
|
25
|
-
new (input: GetControlCommandInput): import("@smithy/core/client").CommandImpl<GetControlCommandInput, GetControlCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetControlCommandInput): import("@smithy/core/client").CommandImpl<GetControlCommandInput, GetControlCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetControlCommandInput): import("@smithy/core/client").CommandImpl<GetControlCommandInput, GetControlCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetControlCommandInput): import("@smithy/core/client").CommandImpl<GetControlCommandInput, GetControlCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns details about a specific control, most notably a list of Amazon Web Services Regions where this control is supported. Input a value for the <i>ControlArn</i> parameter, in ARN form. <code>GetControl</code> accepts <i>controltower</i> or <i>controlcatalog</i> control ARNs as input. Returns a <i>controlcatalog</i> ARN format.</p> <p>In the API response, controls that have the value <code>GLOBAL</code> in the <code>Scope</code> field do not show the <code>DeployableRegions</code> field, because it does not apply. Controls that have the value <code>REGIONAL</code> in the <code>Scope</code> field return a value for the <code>DeployableRegions</code> field, as shown in the example.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient";
|
|
4
2
|
import type { ListCommonControlsRequest, ListCommonControlsResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListCommonControlsCommandInput extends ListCommonControlsReques
|
|
|
22
19
|
export interface ListCommonControlsCommandOutput extends ListCommonControlsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListCommonControlsCommand_base: {
|
|
25
|
-
new (input: ListCommonControlsCommandInput): import("@smithy/core/client").CommandImpl<ListCommonControlsCommandInput, ListCommonControlsCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListCommonControlsCommandInput]): import("@smithy/core/client").CommandImpl<ListCommonControlsCommandInput, ListCommonControlsCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListCommonControlsCommandInput): import("@smithy/core/client").CommandImpl<ListCommonControlsCommandInput, ListCommonControlsCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListCommonControlsCommandInput]): import("@smithy/core/client").CommandImpl<ListCommonControlsCommandInput, ListCommonControlsCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a paginated list of common controls from the Amazon Web Services Control Catalog.</p> <p>You can apply an optional filter to see common controls that have a specific objective. If you don’t provide a filter, the operation returns all common controls. </p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient";
|
|
4
2
|
import type { ListControlMappingsRequest, ListControlMappingsResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListControlMappingsCommandInput extends ListControlMappingsRequ
|
|
|
22
19
|
export interface ListControlMappingsCommandOutput extends ListControlMappingsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListControlMappingsCommand_base: {
|
|
25
|
-
new (input: ListControlMappingsCommandInput): import("@smithy/core/client").CommandImpl<ListControlMappingsCommandInput, ListControlMappingsCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListControlMappingsCommandInput]): import("@smithy/core/client").CommandImpl<ListControlMappingsCommandInput, ListControlMappingsCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListControlMappingsCommandInput): import("@smithy/core/client").CommandImpl<ListControlMappingsCommandInput, ListControlMappingsCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListControlMappingsCommandInput]): import("@smithy/core/client").CommandImpl<ListControlMappingsCommandInput, ListControlMappingsCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a paginated list of control mappings from the Control Catalog. Control mappings show relationships between controls and other entities, such as common controls or compliance frameworks.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient";
|
|
4
2
|
import type { ListControlsRequest, ListControlsResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListControlsCommandInput extends ListControlsRequest {
|
|
|
22
19
|
export interface ListControlsCommandOutput extends ListControlsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListControlsCommand_base: {
|
|
25
|
-
new (input: ListControlsCommandInput): import("@smithy/core/client").CommandImpl<ListControlsCommandInput, ListControlsCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListControlsCommandInput]): import("@smithy/core/client").CommandImpl<ListControlsCommandInput, ListControlsCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListControlsCommandInput): import("@smithy/core/client").CommandImpl<ListControlsCommandInput, ListControlsCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListControlsCommandInput]): import("@smithy/core/client").CommandImpl<ListControlsCommandInput, ListControlsCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a paginated list of all available controls in the Control Catalog library. Allows you to discover available controls. The list of controls is given as structures of type <i>controlSummary</i>. The ARN is returned in the global <i>controlcatalog</i> format, as shown in the examples.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient";
|
|
4
2
|
import type { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListDomainsCommandInput extends ListDomainsRequest {
|
|
|
22
19
|
export interface ListDomainsCommandOutput extends ListDomainsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListDomainsCommand_base: {
|
|
25
|
-
new (input: ListDomainsCommandInput): import("@smithy/core/client").CommandImpl<ListDomainsCommandInput, ListDomainsCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListDomainsCommandInput]): import("@smithy/core/client").CommandImpl<ListDomainsCommandInput, ListDomainsCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListDomainsCommandInput): import("@smithy/core/client").CommandImpl<ListDomainsCommandInput, ListDomainsCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListDomainsCommandInput]): import("@smithy/core/client").CommandImpl<ListDomainsCommandInput, ListDomainsCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a paginated list of domains from the Control Catalog.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient";
|
|
4
2
|
import type { ListObjectivesRequest, ListObjectivesResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListObjectivesCommandInput extends ListObjectivesRequest {
|
|
|
22
19
|
export interface ListObjectivesCommandOutput extends ListObjectivesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListObjectivesCommand_base: {
|
|
25
|
-
new (input: ListObjectivesCommandInput): import("@smithy/core/client").CommandImpl<ListObjectivesCommandInput, ListObjectivesCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListObjectivesCommandInput]): import("@smithy/core/client").CommandImpl<ListObjectivesCommandInput, ListObjectivesCommandOutput, ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListObjectivesCommandInput): import("@smithy/core/client").CommandImpl<ListObjectivesCommandInput, ListObjectivesCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListObjectivesCommandInput]): import("@smithy/core/client").CommandImpl<ListObjectivesCommandInput, ListObjectivesCommandOutput, import("..").ControlCatalogClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a paginated list of objectives from the Control Catalog.</p> <p>You can apply an optional filter to see the objectives that belong to a specific domain. If you don’t provide a filter, the operation returns all objectives. </p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { ControlCatalogExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
12
13
|
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./pagination";
|
|
14
15
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ControlCatalogClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./ControlCatalogClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
ControlCatalogClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
ControlCatalogClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ControlCatalogClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ControlCatalogClient";
|
|
8
2
|
import { GetControlRequest, GetControlResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetControlCommandInput extends GetControlRequest {}
|
|
12
5
|
export interface GetControlCommandOutput
|
|
13
6
|
extends GetControlResponse,
|
|
@@ -18,22 +11,20 @@ declare const GetControlCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
GetControlCommandInput,
|
|
20
13
|
GetControlCommandOutput,
|
|
21
|
-
ControlCatalogClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: GetControlCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
GetControlCommandInput,
|
|
29
22
|
GetControlCommandOutput,
|
|
30
|
-
ControlCatalogClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class GetControlCommand extends GetControlCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ControlCatalogClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ControlCatalogClient";
|
|
8
2
|
import {
|
|
9
3
|
ListCommonControlsRequest,
|
|
10
4
|
ListCommonControlsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListCommonControlsCommandInput
|
|
15
8
|
extends ListCommonControlsRequest {}
|
|
16
9
|
export interface ListCommonControlsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListCommonControlsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListCommonControlsCommandInput,
|
|
24
17
|
ListCommonControlsCommandOutput,
|
|
25
|
-
ControlCatalogClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListCommonControlsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListCommonControlsCommandInput,
|
|
33
26
|
ListCommonControlsCommandOutput,
|
|
34
|
-
ControlCatalogClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListCommonControlsCommand extends ListCommonControlsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ControlCatalogClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ControlCatalogClient";
|
|
8
2
|
import {
|
|
9
3
|
ListControlMappingsRequest,
|
|
10
4
|
ListControlMappingsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListControlMappingsCommandInput
|
|
15
8
|
extends ListControlMappingsRequest {}
|
|
16
9
|
export interface ListControlMappingsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListControlMappingsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListControlMappingsCommandInput,
|
|
24
17
|
ListControlMappingsCommandOutput,
|
|
25
|
-
ControlCatalogClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListControlMappingsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListControlMappingsCommandInput,
|
|
33
26
|
ListControlMappingsCommandOutput,
|
|
34
|
-
ControlCatalogClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListControlMappingsCommand extends ListControlMappingsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ControlCatalogClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ControlCatalogClient";
|
|
8
2
|
import { ListControlsRequest, ListControlsResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListControlsCommandInput extends ListControlsRequest {}
|
|
12
5
|
export interface ListControlsCommandOutput
|
|
13
6
|
extends ListControlsResponse,
|
|
@@ -18,22 +11,20 @@ declare const ListControlsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListControlsCommandInput,
|
|
20
13
|
ListControlsCommandOutput,
|
|
21
|
-
ControlCatalogClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
...[input]: [] | [ListControlsCommandInput]
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListControlsCommandInput,
|
|
29
22
|
ListControlsCommandOutput,
|
|
30
|
-
ControlCatalogClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class ListControlsCommand extends ListControlsCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ControlCatalogClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ControlCatalogClient";
|
|
8
2
|
import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListDomainsCommandInput extends ListDomainsRequest {}
|
|
12
5
|
export interface ListDomainsCommandOutput
|
|
13
6
|
extends ListDomainsResponse,
|
|
@@ -18,22 +11,20 @@ declare const ListDomainsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListDomainsCommandInput,
|
|
20
13
|
ListDomainsCommandOutput,
|
|
21
|
-
ControlCatalogClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
...[input]: [] | [ListDomainsCommandInput]
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListDomainsCommandInput,
|
|
29
22
|
ListDomainsCommandOutput,
|
|
30
|
-
ControlCatalogClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class ListDomainsCommand extends ListDomainsCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ControlCatalogClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ControlCatalogClient";
|
|
8
2
|
import {
|
|
9
3
|
ListObjectivesRequest,
|
|
10
4
|
ListObjectivesResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListObjectivesCommandInput extends ListObjectivesRequest {}
|
|
15
8
|
export interface ListObjectivesCommandOutput
|
|
16
9
|
extends ListObjectivesResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListObjectivesCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListObjectivesCommandInput,
|
|
23
16
|
ListObjectivesCommandOutput,
|
|
24
|
-
ControlCatalogClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [ListObjectivesCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListObjectivesCommandInput,
|
|
32
25
|
ListObjectivesCommandOutput,
|
|
33
|
-
ControlCatalogClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ControlCatalogClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ListObjectivesCommand extends ListObjectivesCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { ControlCatalogExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-controlcatalog",
|
|
3
3
|
"description": "AWS SDK for JavaScript Controlcatalog Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.26",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|