@aws-sdk/client-controlcatalog 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/ControlCatalog.d.ts +26 -34
- package/dist-types/ts3.4/ControlCatalogClient.d.ts +8 -24
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/GetControlCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListCommonControlsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListControlMappingsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListControlsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListObjectivesCommand.d.ts +3 -8
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -3,10 +3,7 @@ import {
|
|
|
3
3
|
PaginationConfiguration,
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
GetControlCommandInput,
|
|
8
|
-
GetControlCommandOutput,
|
|
9
|
-
} from "./commands/GetControlCommand";
|
|
6
|
+
import { GetControlCommandInput, GetControlCommandOutput } from "./commands/GetControlCommand";
|
|
10
7
|
import {
|
|
11
8
|
ListCommonControlsCommandInput,
|
|
12
9
|
ListCommonControlsCommandOutput,
|
|
@@ -19,10 +16,7 @@ import {
|
|
|
19
16
|
ListControlsCommandInput,
|
|
20
17
|
ListControlsCommandOutput,
|
|
21
18
|
} from "./commands/ListControlsCommand";
|
|
22
|
-
import {
|
|
23
|
-
ListDomainsCommandInput,
|
|
24
|
-
ListDomainsCommandOutput,
|
|
25
|
-
} from "./commands/ListDomainsCommand";
|
|
19
|
+
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
26
20
|
import {
|
|
27
21
|
ListObjectivesCommandInput,
|
|
28
22
|
ListObjectivesCommandOutput,
|
|
@@ -31,123 +25,121 @@ import { ControlCatalogClient } from "./ControlCatalogClient";
|
|
|
31
25
|
export interface ControlCatalog {
|
|
32
26
|
getControl(
|
|
33
27
|
args: GetControlCommandInput,
|
|
34
|
-
options?: __HttpHandlerOptions
|
|
28
|
+
options?: __HttpHandlerOptions,
|
|
35
29
|
): Promise<GetControlCommandOutput>;
|
|
36
30
|
getControl(
|
|
37
31
|
args: GetControlCommandInput,
|
|
38
|
-
cb: (err: any, data?: GetControlCommandOutput) => void
|
|
32
|
+
cb: (err: any, data?: GetControlCommandOutput) => void,
|
|
39
33
|
): void;
|
|
40
34
|
getControl(
|
|
41
35
|
args: GetControlCommandInput,
|
|
42
36
|
options: __HttpHandlerOptions,
|
|
43
|
-
cb: (err: any, data?: GetControlCommandOutput) => void
|
|
37
|
+
cb: (err: any, data?: GetControlCommandOutput) => void,
|
|
44
38
|
): void;
|
|
45
39
|
listCommonControls(): Promise<ListCommonControlsCommandOutput>;
|
|
46
40
|
listCommonControls(
|
|
47
41
|
args: ListCommonControlsCommandInput,
|
|
48
|
-
options?: __HttpHandlerOptions
|
|
42
|
+
options?: __HttpHandlerOptions,
|
|
49
43
|
): Promise<ListCommonControlsCommandOutput>;
|
|
50
44
|
listCommonControls(
|
|
51
45
|
args: ListCommonControlsCommandInput,
|
|
52
|
-
cb: (err: any, data?: ListCommonControlsCommandOutput) => void
|
|
46
|
+
cb: (err: any, data?: ListCommonControlsCommandOutput) => void,
|
|
53
47
|
): void;
|
|
54
48
|
listCommonControls(
|
|
55
49
|
args: ListCommonControlsCommandInput,
|
|
56
50
|
options: __HttpHandlerOptions,
|
|
57
|
-
cb: (err: any, data?: ListCommonControlsCommandOutput) => void
|
|
51
|
+
cb: (err: any, data?: ListCommonControlsCommandOutput) => void,
|
|
58
52
|
): void;
|
|
59
53
|
listControlMappings(): Promise<ListControlMappingsCommandOutput>;
|
|
60
54
|
listControlMappings(
|
|
61
55
|
args: ListControlMappingsCommandInput,
|
|
62
|
-
options?: __HttpHandlerOptions
|
|
56
|
+
options?: __HttpHandlerOptions,
|
|
63
57
|
): Promise<ListControlMappingsCommandOutput>;
|
|
64
58
|
listControlMappings(
|
|
65
59
|
args: ListControlMappingsCommandInput,
|
|
66
|
-
cb: (err: any, data?: ListControlMappingsCommandOutput) => void
|
|
60
|
+
cb: (err: any, data?: ListControlMappingsCommandOutput) => void,
|
|
67
61
|
): void;
|
|
68
62
|
listControlMappings(
|
|
69
63
|
args: ListControlMappingsCommandInput,
|
|
70
64
|
options: __HttpHandlerOptions,
|
|
71
|
-
cb: (err: any, data?: ListControlMappingsCommandOutput) => void
|
|
65
|
+
cb: (err: any, data?: ListControlMappingsCommandOutput) => void,
|
|
72
66
|
): void;
|
|
73
67
|
listControls(): Promise<ListControlsCommandOutput>;
|
|
74
68
|
listControls(
|
|
75
69
|
args: ListControlsCommandInput,
|
|
76
|
-
options?: __HttpHandlerOptions
|
|
70
|
+
options?: __HttpHandlerOptions,
|
|
77
71
|
): Promise<ListControlsCommandOutput>;
|
|
78
72
|
listControls(
|
|
79
73
|
args: ListControlsCommandInput,
|
|
80
|
-
cb: (err: any, data?: ListControlsCommandOutput) => void
|
|
74
|
+
cb: (err: any, data?: ListControlsCommandOutput) => void,
|
|
81
75
|
): void;
|
|
82
76
|
listControls(
|
|
83
77
|
args: ListControlsCommandInput,
|
|
84
78
|
options: __HttpHandlerOptions,
|
|
85
|
-
cb: (err: any, data?: ListControlsCommandOutput) => void
|
|
79
|
+
cb: (err: any, data?: ListControlsCommandOutput) => void,
|
|
86
80
|
): void;
|
|
87
81
|
listDomains(): Promise<ListDomainsCommandOutput>;
|
|
88
82
|
listDomains(
|
|
89
83
|
args: ListDomainsCommandInput,
|
|
90
|
-
options?: __HttpHandlerOptions
|
|
84
|
+
options?: __HttpHandlerOptions,
|
|
91
85
|
): Promise<ListDomainsCommandOutput>;
|
|
92
86
|
listDomains(
|
|
93
87
|
args: ListDomainsCommandInput,
|
|
94
|
-
cb: (err: any, data?: ListDomainsCommandOutput) => void
|
|
88
|
+
cb: (err: any, data?: ListDomainsCommandOutput) => void,
|
|
95
89
|
): void;
|
|
96
90
|
listDomains(
|
|
97
91
|
args: ListDomainsCommandInput,
|
|
98
92
|
options: __HttpHandlerOptions,
|
|
99
|
-
cb: (err: any, data?: ListDomainsCommandOutput) => void
|
|
93
|
+
cb: (err: any, data?: ListDomainsCommandOutput) => void,
|
|
100
94
|
): void;
|
|
101
95
|
listObjectives(): Promise<ListObjectivesCommandOutput>;
|
|
102
96
|
listObjectives(
|
|
103
97
|
args: ListObjectivesCommandInput,
|
|
104
|
-
options?: __HttpHandlerOptions
|
|
98
|
+
options?: __HttpHandlerOptions,
|
|
105
99
|
): Promise<ListObjectivesCommandOutput>;
|
|
106
100
|
listObjectives(
|
|
107
101
|
args: ListObjectivesCommandInput,
|
|
108
|
-
cb: (err: any, data?: ListObjectivesCommandOutput) => void
|
|
102
|
+
cb: (err: any, data?: ListObjectivesCommandOutput) => void,
|
|
109
103
|
): void;
|
|
110
104
|
listObjectives(
|
|
111
105
|
args: ListObjectivesCommandInput,
|
|
112
106
|
options: __HttpHandlerOptions,
|
|
113
|
-
cb: (err: any, data?: ListObjectivesCommandOutput) => void
|
|
107
|
+
cb: (err: any, data?: ListObjectivesCommandOutput) => void,
|
|
114
108
|
): void;
|
|
115
109
|
paginateListCommonControls(
|
|
116
110
|
args?: ListCommonControlsCommandInput,
|
|
117
111
|
paginationConfig?: Pick<
|
|
118
112
|
PaginationConfiguration,
|
|
119
113
|
Exclude<keyof PaginationConfiguration, "client">
|
|
120
|
-
|
|
114
|
+
>,
|
|
121
115
|
): Paginator<ListCommonControlsCommandOutput>;
|
|
122
116
|
paginateListControlMappings(
|
|
123
117
|
args?: ListControlMappingsCommandInput,
|
|
124
118
|
paginationConfig?: Pick<
|
|
125
119
|
PaginationConfiguration,
|
|
126
120
|
Exclude<keyof PaginationConfiguration, "client">
|
|
127
|
-
|
|
121
|
+
>,
|
|
128
122
|
): Paginator<ListControlMappingsCommandOutput>;
|
|
129
123
|
paginateListControls(
|
|
130
124
|
args?: ListControlsCommandInput,
|
|
131
125
|
paginationConfig?: Pick<
|
|
132
126
|
PaginationConfiguration,
|
|
133
127
|
Exclude<keyof PaginationConfiguration, "client">
|
|
134
|
-
|
|
128
|
+
>,
|
|
135
129
|
): Paginator<ListControlsCommandOutput>;
|
|
136
130
|
paginateListDomains(
|
|
137
131
|
args?: ListDomainsCommandInput,
|
|
138
132
|
paginationConfig?: Pick<
|
|
139
133
|
PaginationConfiguration,
|
|
140
134
|
Exclude<keyof PaginationConfiguration, "client">
|
|
141
|
-
|
|
135
|
+
>,
|
|
142
136
|
): Paginator<ListDomainsCommandOutput>;
|
|
143
137
|
paginateListObjectives(
|
|
144
138
|
args?: ListObjectivesCommandInput,
|
|
145
139
|
paginationConfig?: Pick<
|
|
146
140
|
PaginationConfiguration,
|
|
147
141
|
Exclude<keyof PaginationConfiguration, "client">
|
|
148
|
-
|
|
142
|
+
>,
|
|
149
143
|
): Paginator<ListObjectivesCommandOutput>;
|
|
150
144
|
}
|
|
151
|
-
export declare class ControlCatalog
|
|
152
|
-
extends ControlCatalogClient
|
|
153
|
-
implements ControlCatalog {}
|
|
145
|
+
export declare class ControlCatalog extends ControlCatalogClient implements ControlCatalog {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -36,10 +33,7 @@ import {
|
|
|
36
33
|
HttpAuthSchemeInputConfig,
|
|
37
34
|
HttpAuthSchemeResolvedConfig,
|
|
38
35
|
} from "./auth/httpAuthSchemeProvider";
|
|
39
|
-
import {
|
|
40
|
-
GetControlCommandInput,
|
|
41
|
-
GetControlCommandOutput,
|
|
42
|
-
} from "./commands/GetControlCommand";
|
|
36
|
+
import { GetControlCommandInput, GetControlCommandOutput } from "./commands/GetControlCommand";
|
|
43
37
|
import {
|
|
44
38
|
ListCommonControlsCommandInput,
|
|
45
39
|
ListCommonControlsCommandOutput,
|
|
@@ -52,10 +46,7 @@ import {
|
|
|
52
46
|
ListControlsCommandInput,
|
|
53
47
|
ListControlsCommandOutput,
|
|
54
48
|
} from "./commands/ListControlsCommand";
|
|
55
|
-
import {
|
|
56
|
-
ListDomainsCommandInput,
|
|
57
|
-
ListDomainsCommandOutput,
|
|
58
|
-
} from "./commands/ListDomainsCommand";
|
|
49
|
+
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
59
50
|
import {
|
|
60
51
|
ListObjectivesCommandInput,
|
|
61
52
|
ListObjectivesCommandOutput,
|
|
@@ -81,8 +72,7 @@ export type ServiceOutputTypes =
|
|
|
81
72
|
| ListControlsCommandOutput
|
|
82
73
|
| ListDomainsCommandOutput
|
|
83
74
|
| ListObjectivesCommandOutput;
|
|
84
|
-
export interface ClientDefaults
|
|
85
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
75
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
86
76
|
requestHandler?: __HttpHandlerUserInput;
|
|
87
77
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
88
78
|
urlParser?: __UrlParser;
|
|
@@ -107,9 +97,7 @@ export interface ClientDefaults
|
|
|
107
97
|
extensions?: RuntimeExtension[];
|
|
108
98
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
109
99
|
}
|
|
110
|
-
export type ControlCatalogClientConfigType = Partial<
|
|
111
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
112
|
-
> &
|
|
100
|
+
export type ControlCatalogClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
113
101
|
ClientDefaults &
|
|
114
102
|
UserAgentInputConfig &
|
|
115
103
|
RetryInputConfig &
|
|
@@ -118,8 +106,7 @@ export type ControlCatalogClientConfigType = Partial<
|
|
|
118
106
|
EndpointInputConfig<EndpointParameters> &
|
|
119
107
|
HttpAuthSchemeInputConfig &
|
|
120
108
|
ClientInputEndpointParameters;
|
|
121
|
-
export interface ControlCatalogClientConfig
|
|
122
|
-
extends ControlCatalogClientConfigType {}
|
|
109
|
+
export interface ControlCatalogClientConfig extends ControlCatalogClientConfigType {}
|
|
123
110
|
export type ControlCatalogClientResolvedConfigType =
|
|
124
111
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
125
112
|
Required<ClientDefaults> &
|
|
@@ -131,8 +118,7 @@ export type ControlCatalogClientResolvedConfigType =
|
|
|
131
118
|
EndpointResolvedConfig<EndpointParameters> &
|
|
132
119
|
HttpAuthSchemeResolvedConfig &
|
|
133
120
|
ClientResolvedEndpointParameters;
|
|
134
|
-
export interface ControlCatalogClientResolvedConfig
|
|
135
|
-
extends ControlCatalogClientResolvedConfigType {}
|
|
121
|
+
export interface ControlCatalogClientResolvedConfig extends ControlCatalogClientResolvedConfigType {}
|
|
136
122
|
export declare class ControlCatalogClient extends __Client<
|
|
137
123
|
__HttpHandlerOptions,
|
|
138
124
|
ServiceInputTypes,
|
|
@@ -140,8 +126,6 @@ export declare class ControlCatalogClient extends __Client<
|
|
|
140
126
|
ControlCatalogClientResolvedConfig
|
|
141
127
|
> {
|
|
142
128
|
readonly config: ControlCatalogClientResolvedConfig;
|
|
143
|
-
constructor(
|
|
144
|
-
...[configuration]: __CheckOptionalClientConfig<ControlCatalogClientConfig>
|
|
145
|
-
);
|
|
129
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<ControlCatalogClientConfig>);
|
|
146
130
|
destroy(): void;
|
|
147
131
|
}
|
|
@@ -7,17 +7,10 @@ import { ControlCatalogHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ControlCatalogHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: ControlCatalogHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): ControlCatalogHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ControlCatalogClientResolvedConfig } from "../ControlCatalogClient";
|
|
15
|
-
export interface ControlCatalogHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ControlCatalogHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ControlCatalogHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ControlCatalogHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ControlCatalogClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ControlCatalogHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultControlCatalogHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ControlCatalogClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ControlCatalogHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ControlCatalogHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ControlCatalogHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ControlCatalogHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ControlCatalogHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultControlCatalogHttpAuthSchemeProvider: ControlCatalogHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ControlCatalogHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ControlCatalogHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ControlCatalogClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ControlCatalogClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetControlRequest, GetControlResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetControlCommandInput extends GetControlRequest {}
|
|
5
|
-
export interface GetControlCommandOutput
|
|
6
|
-
extends GetControlResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetControlCommandOutput extends GetControlResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetControlCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetControlCommandInput
|
|
8
|
+
input: GetControlCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetControlCommandInput,
|
|
13
11
|
GetControlCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetControlCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetControlCommandInput
|
|
17
|
+
input: GetControlCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetControlCommandInput,
|
|
22
20
|
GetControlCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListCommonControlsRequest,
|
|
4
|
-
ListCommonControlsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListCommonControlsRequest, ListCommonControlsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListCommonControlsCommandInput
|
|
8
|
-
extends ListCommonControlsRequest {}
|
|
4
|
+
export interface ListCommonControlsCommandInput extends ListCommonControlsRequest {}
|
|
9
5
|
export interface ListCommonControlsCommandOutput
|
|
10
|
-
extends ListCommonControlsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListCommonControlsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListCommonControlsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListCommonControlsCommandInput
|
|
9
|
+
input: ListCommonControlsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListCommonControlsCommandInput,
|
|
17
12
|
ListCommonControlsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListControlMappingsRequest,
|
|
4
|
-
ListControlMappingsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListControlMappingsRequest, ListControlMappingsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListControlMappingsCommandInput
|
|
8
|
-
extends ListControlMappingsRequest {}
|
|
4
|
+
export interface ListControlMappingsCommandInput extends ListControlMappingsRequest {}
|
|
9
5
|
export interface ListControlMappingsCommandOutput
|
|
10
|
-
extends ListControlMappingsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListControlMappingsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListControlMappingsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListControlMappingsCommandInput
|
|
9
|
+
input: ListControlMappingsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListControlMappingsCommandInput,
|
|
17
12
|
ListControlMappingsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListControlsRequest, ListControlsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListControlsCommandInput extends ListControlsRequest {}
|
|
5
|
-
export interface ListControlsCommandOutput
|
|
6
|
-
extends ListControlsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListControlsCommandOutput extends ListControlsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListControlsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListControlsCommandInput
|
|
8
|
+
input: ListControlsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListControlsCommandInput,
|
|
13
11
|
ListControlsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListDomainsCommandInput extends ListDomainsRequest {}
|
|
5
|
-
export interface ListDomainsCommandOutput
|
|
6
|
-
extends ListDomainsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDomainsCommandOutput extends ListDomainsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListDomainsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListDomainsCommandInput
|
|
8
|
+
input: ListDomainsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListDomainsCommandInput,
|
|
13
11
|
ListDomainsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListObjectivesRequest,
|
|
4
|
-
ListObjectivesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListObjectivesRequest, ListObjectivesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListObjectivesCommandInput extends ListObjectivesRequest {}
|
|
8
|
-
export interface ListObjectivesCommandOutput
|
|
9
|
-
extends ListObjectivesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListObjectivesCommandOutput extends ListObjectivesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListObjectivesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListObjectivesCommandInput
|
|
8
|
+
input: ListObjectivesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListObjectivesCommandInput,
|
|
16
11
|
ListObjectivesCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ControlCatalogExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,8 +3,7 @@ export declare const ControlBehavior: {
|
|
|
3
3
|
readonly PREVENTIVE: "PREVENTIVE";
|
|
4
4
|
readonly PROACTIVE: "PROACTIVE";
|
|
5
5
|
};
|
|
6
|
-
export type ControlBehavior =
|
|
7
|
-
(typeof ControlBehavior)[keyof typeof ControlBehavior];
|
|
6
|
+
export type ControlBehavior = (typeof ControlBehavior)[keyof typeof ControlBehavior];
|
|
8
7
|
export declare const ParameterRequirementSummary: {
|
|
9
8
|
readonly NONE: "NONE";
|
|
10
9
|
readonly OPTIONAL: "OPTIONAL";
|
|
@@ -29,8 +28,7 @@ export declare const ControlSeverity: {
|
|
|
29
28
|
readonly LOW: "LOW";
|
|
30
29
|
readonly MEDIUM: "MEDIUM";
|
|
31
30
|
};
|
|
32
|
-
export type ControlSeverity =
|
|
33
|
-
(typeof ControlSeverity)[keyof typeof ControlSeverity];
|
|
31
|
+
export type ControlSeverity = (typeof ControlSeverity)[keyof typeof ControlSeverity];
|
|
34
32
|
export declare const MappingType: {
|
|
35
33
|
readonly COMMON_CONTROL: "COMMON_CONTROL";
|
|
36
34
|
readonly FRAMEWORK: "FRAMEWORK";
|
|
@@ -42,5 +40,4 @@ export declare const ControlRelationType: {
|
|
|
42
40
|
readonly COMPLEMENTARY: "COMPLEMENTARY";
|
|
43
41
|
readonly MUTUALLY_EXCLUSIVE: "MUTUALLY_EXCLUSIVE";
|
|
44
42
|
};
|
|
45
|
-
export type ControlRelationType =
|
|
46
|
-
(typeof ControlRelationType)[keyof typeof ControlRelationType];
|
|
43
|
+
export type ControlRelationType = (typeof ControlRelationType)[keyof typeof ControlRelationType];
|
|
@@ -4,18 +4,14 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InternalServerException extends __BaseException {
|
|
12
10
|
readonly name: "InternalServerException";
|
|
13
11
|
readonly $fault: "server";
|
|
14
12
|
$retryable: {};
|
|
15
13
|
Message?: string | undefined;
|
|
16
|
-
constructor(
|
|
17
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
18
|
-
);
|
|
14
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
19
15
|
}
|
|
20
16
|
export declare class ThrottlingException extends __BaseException {
|
|
21
17
|
readonly name: "ThrottlingException";
|
|
@@ -24,23 +20,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
24
20
|
throttling: boolean;
|
|
25
21
|
};
|
|
26
22
|
Message?: string | undefined;
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
29
|
-
);
|
|
23
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
30
24
|
}
|
|
31
25
|
export declare class ValidationException extends __BaseException {
|
|
32
26
|
readonly name: "ValidationException";
|
|
33
27
|
readonly $fault: "client";
|
|
34
28
|
Message?: string | undefined;
|
|
35
|
-
constructor(
|
|
36
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
37
|
-
);
|
|
29
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
38
30
|
}
|
|
39
31
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
40
32
|
readonly name: "ResourceNotFoundException";
|
|
41
33
|
readonly $fault: "client";
|
|
42
34
|
Message?: string | undefined;
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
45
|
-
);
|
|
35
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
46
36
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ControlCatalogClient } from "../ControlCatalogClient";
|
|
3
|
-
export interface ControlCatalogPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ControlCatalogPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ControlCatalogClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDomainsCommandInput,
|
|
4
|
-
ListDomainsCommandOutput,
|
|
5
|
-
} from "../commands/ListDomainsCommand";
|
|
2
|
+
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
|
|
6
3
|
import { ControlCatalogPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListDomains: (
|
|
8
5
|
config: ControlCatalogPaginationConfiguration,
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: ControlCatalogClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlCatalogHttpAuthSchemeProvider;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-controlcatalog",
|
|
3
|
+
"version": "3.1089.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Controlcatalog Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-controlcatalog",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-controlcatalog"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
5
36
|
"scripts": {
|
|
6
37
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
38
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -14,17 +45,13 @@
|
|
|
14
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
47
|
},
|
|
17
|
-
"main": "./dist-cjs/index.js",
|
|
18
|
-
"types": "./dist-types/index.d.ts",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"sideEffects": false,
|
|
21
48
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.975.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.974.
|
|
25
|
-
"@smithy/core": "^3.29.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
49
|
+
"@aws-sdk/core": "^3.975.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.70",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.29.4",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.6",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.6",
|
|
28
55
|
"@smithy/types": "^4.16.1",
|
|
29
56
|
"tslib": "^2.6.2"
|
|
30
57
|
},
|
|
@@ -38,32 +65,5 @@
|
|
|
38
65
|
},
|
|
39
66
|
"engines": {
|
|
40
67
|
"node": ">=20.0.0"
|
|
41
|
-
},
|
|
42
|
-
"typesVersions": {
|
|
43
|
-
"<4.5": {
|
|
44
|
-
"dist-types/*": [
|
|
45
|
-
"dist-types/ts3.4/*"
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"files": [
|
|
50
|
-
"dist-*/**"
|
|
51
|
-
],
|
|
52
|
-
"author": {
|
|
53
|
-
"name": "AWS SDK for JavaScript Team",
|
|
54
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
55
|
-
},
|
|
56
|
-
"license": "Apache-2.0",
|
|
57
|
-
"browser": {
|
|
58
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
59
|
-
},
|
|
60
|
-
"react-native": {
|
|
61
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-controlcatalog",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-controlcatalog"
|
|
68
68
|
}
|
|
69
69
|
}
|