@aws-sdk/client-ssm-quicksetup 3.622.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/LICENSE +201 -0
- package/README.md +303 -0
- package/dist-cjs/SSMQuickSetup.js +35 -0
- package/dist-cjs/SSMQuickSetupClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateConfigurationManagerCommand.js +29 -0
- package/dist-cjs/commands/DeleteConfigurationManagerCommand.js +28 -0
- package/dist-cjs/commands/GetConfigurationManagerCommand.js +29 -0
- package/dist-cjs/commands/GetServiceSettingsCommand.js +28 -0
- package/dist-cjs/commands/ListConfigurationManagersCommand.js +28 -0
- package/dist-cjs/commands/ListQuickSetupTypesCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
- package/dist-cjs/commands/TagResourceCommand.js +29 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateConfigurationDefinitionCommand.js +28 -0
- package/dist-cjs/commands/UpdateConfigurationManagerCommand.js +28 -0
- package/dist-cjs/commands/UpdateServiceSettingsCommand.js +28 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/SSMQuickSetupServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +131 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListConfigurationManagersPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_restJson1.js +494 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/SSMQuickSetup.js +31 -0
- package/dist-es/SSMQuickSetupClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateConfigurationManagerCommand.js +25 -0
- package/dist-es/commands/DeleteConfigurationManagerCommand.js +24 -0
- package/dist-es/commands/GetConfigurationManagerCommand.js +25 -0
- package/dist-es/commands/GetServiceSettingsCommand.js +24 -0
- package/dist-es/commands/ListConfigurationManagersCommand.js +24 -0
- package/dist-es/commands/ListQuickSetupTypesCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
- package/dist-es/commands/TagResourceCommand.js +25 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +24 -0
- package/dist-es/commands/UpdateConfigurationManagerCommand.js +24 -0
- package/dist-es/commands/UpdateServiceSettingsCommand.js +24 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/SSMQuickSetupServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +117 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListConfigurationManagersPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +467 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/SSMQuickSetup.d.ts +100 -0
- package/dist-types/SSMQuickSetupClient.d.ts +183 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateConfigurationManagerCommand.d.ts +93 -0
- package/dist-types/commands/DeleteConfigurationManagerCommand.d.ts +77 -0
- package/dist-types/commands/GetConfigurationManagerCommand.d.ts +109 -0
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +72 -0
- package/dist-types/commands/ListConfigurationManagersCommand.d.ts +113 -0
- package/dist-types/commands/ListQuickSetupTypesCommand.d.ts +75 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
- package/dist-types/commands/TagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UpdateConfigurationDefinitionCommand.d.ts +84 -0
- package/dist-types/commands/UpdateConfigurationManagerCommand.d.ts +79 -0
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +74 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/SSMQuickSetupServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2014 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListConfigurationManagersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/SSMQuickSetup.d.ts +215 -0
- package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +191 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateConfigurationManagerCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationManagerCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetConfigurationManagerCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListConfigurationManagersCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListQuickSetupTypesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationDefinitionCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationManagerCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/SSMQuickSetupServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +201 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConfigurationManagersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +101 -0
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
StreamCollector as __StreamCollector,
|
|
41
|
+
UrlParser as __UrlParser,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
CreateConfigurationManagerCommandInput,
|
|
50
|
+
CreateConfigurationManagerCommandOutput,
|
|
51
|
+
} from "./commands/CreateConfigurationManagerCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeleteConfigurationManagerCommandInput,
|
|
54
|
+
DeleteConfigurationManagerCommandOutput,
|
|
55
|
+
} from "./commands/DeleteConfigurationManagerCommand";
|
|
56
|
+
import {
|
|
57
|
+
GetConfigurationManagerCommandInput,
|
|
58
|
+
GetConfigurationManagerCommandOutput,
|
|
59
|
+
} from "./commands/GetConfigurationManagerCommand";
|
|
60
|
+
import {
|
|
61
|
+
GetServiceSettingsCommandInput,
|
|
62
|
+
GetServiceSettingsCommandOutput,
|
|
63
|
+
} from "./commands/GetServiceSettingsCommand";
|
|
64
|
+
import {
|
|
65
|
+
ListConfigurationManagersCommandInput,
|
|
66
|
+
ListConfigurationManagersCommandOutput,
|
|
67
|
+
} from "./commands/ListConfigurationManagersCommand";
|
|
68
|
+
import {
|
|
69
|
+
ListQuickSetupTypesCommandInput,
|
|
70
|
+
ListQuickSetupTypesCommandOutput,
|
|
71
|
+
} from "./commands/ListQuickSetupTypesCommand";
|
|
72
|
+
import {
|
|
73
|
+
ListTagsForResourceCommandInput,
|
|
74
|
+
ListTagsForResourceCommandOutput,
|
|
75
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
76
|
+
import {
|
|
77
|
+
TagResourceCommandInput,
|
|
78
|
+
TagResourceCommandOutput,
|
|
79
|
+
} from "./commands/TagResourceCommand";
|
|
80
|
+
import {
|
|
81
|
+
UntagResourceCommandInput,
|
|
82
|
+
UntagResourceCommandOutput,
|
|
83
|
+
} from "./commands/UntagResourceCommand";
|
|
84
|
+
import {
|
|
85
|
+
UpdateConfigurationDefinitionCommandInput,
|
|
86
|
+
UpdateConfigurationDefinitionCommandOutput,
|
|
87
|
+
} from "./commands/UpdateConfigurationDefinitionCommand";
|
|
88
|
+
import {
|
|
89
|
+
UpdateConfigurationManagerCommandInput,
|
|
90
|
+
UpdateConfigurationManagerCommandOutput,
|
|
91
|
+
} from "./commands/UpdateConfigurationManagerCommand";
|
|
92
|
+
import {
|
|
93
|
+
UpdateServiceSettingsCommandInput,
|
|
94
|
+
UpdateServiceSettingsCommandOutput,
|
|
95
|
+
} from "./commands/UpdateServiceSettingsCommand";
|
|
96
|
+
import {
|
|
97
|
+
ClientInputEndpointParameters,
|
|
98
|
+
ClientResolvedEndpointParameters,
|
|
99
|
+
EndpointParameters,
|
|
100
|
+
} from "./endpoint/EndpointParameters";
|
|
101
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
102
|
+
export { __Client };
|
|
103
|
+
export type ServiceInputTypes =
|
|
104
|
+
| CreateConfigurationManagerCommandInput
|
|
105
|
+
| DeleteConfigurationManagerCommandInput
|
|
106
|
+
| GetConfigurationManagerCommandInput
|
|
107
|
+
| GetServiceSettingsCommandInput
|
|
108
|
+
| ListConfigurationManagersCommandInput
|
|
109
|
+
| ListQuickSetupTypesCommandInput
|
|
110
|
+
| ListTagsForResourceCommandInput
|
|
111
|
+
| TagResourceCommandInput
|
|
112
|
+
| UntagResourceCommandInput
|
|
113
|
+
| UpdateConfigurationDefinitionCommandInput
|
|
114
|
+
| UpdateConfigurationManagerCommandInput
|
|
115
|
+
| UpdateServiceSettingsCommandInput;
|
|
116
|
+
export type ServiceOutputTypes =
|
|
117
|
+
| CreateConfigurationManagerCommandOutput
|
|
118
|
+
| DeleteConfigurationManagerCommandOutput
|
|
119
|
+
| GetConfigurationManagerCommandOutput
|
|
120
|
+
| GetServiceSettingsCommandOutput
|
|
121
|
+
| ListConfigurationManagersCommandOutput
|
|
122
|
+
| ListQuickSetupTypesCommandOutput
|
|
123
|
+
| ListTagsForResourceCommandOutput
|
|
124
|
+
| TagResourceCommandOutput
|
|
125
|
+
| UntagResourceCommandOutput
|
|
126
|
+
| UpdateConfigurationDefinitionCommandOutput
|
|
127
|
+
| UpdateConfigurationManagerCommandOutput
|
|
128
|
+
| UpdateServiceSettingsCommandOutput;
|
|
129
|
+
export interface ClientDefaults
|
|
130
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
131
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
132
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
133
|
+
urlParser?: __UrlParser;
|
|
134
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
135
|
+
streamCollector?: __StreamCollector;
|
|
136
|
+
base64Decoder?: __Decoder;
|
|
137
|
+
base64Encoder?: __Encoder;
|
|
138
|
+
utf8Decoder?: __Decoder;
|
|
139
|
+
utf8Encoder?: __Encoder;
|
|
140
|
+
runtime?: string;
|
|
141
|
+
disableHostPrefix?: boolean;
|
|
142
|
+
serviceId?: string;
|
|
143
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
144
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
145
|
+
region?: string | __Provider<string>;
|
|
146
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
147
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
148
|
+
maxAttempts?: number | __Provider<number>;
|
|
149
|
+
retryMode?: string | __Provider<string>;
|
|
150
|
+
logger?: __Logger;
|
|
151
|
+
extensions?: RuntimeExtension[];
|
|
152
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
153
|
+
}
|
|
154
|
+
export type SSMQuickSetupClientConfigType = Partial<
|
|
155
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
156
|
+
> &
|
|
157
|
+
ClientDefaults &
|
|
158
|
+
UserAgentInputConfig &
|
|
159
|
+
RetryInputConfig &
|
|
160
|
+
RegionInputConfig &
|
|
161
|
+
HostHeaderInputConfig &
|
|
162
|
+
EndpointInputConfig<EndpointParameters> &
|
|
163
|
+
HttpAuthSchemeInputConfig &
|
|
164
|
+
ClientInputEndpointParameters;
|
|
165
|
+
export interface SSMQuickSetupClientConfig
|
|
166
|
+
extends SSMQuickSetupClientConfigType {}
|
|
167
|
+
export type SSMQuickSetupClientResolvedConfigType =
|
|
168
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
169
|
+
Required<ClientDefaults> &
|
|
170
|
+
RuntimeExtensionsConfig &
|
|
171
|
+
UserAgentResolvedConfig &
|
|
172
|
+
RetryResolvedConfig &
|
|
173
|
+
RegionResolvedConfig &
|
|
174
|
+
HostHeaderResolvedConfig &
|
|
175
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
176
|
+
HttpAuthSchemeResolvedConfig &
|
|
177
|
+
ClientResolvedEndpointParameters;
|
|
178
|
+
export interface SSMQuickSetupClientResolvedConfig
|
|
179
|
+
extends SSMQuickSetupClientResolvedConfigType {}
|
|
180
|
+
export declare class SSMQuickSetupClient extends __Client<
|
|
181
|
+
__HttpHandlerOptions,
|
|
182
|
+
ServiceInputTypes,
|
|
183
|
+
ServiceOutputTypes,
|
|
184
|
+
SSMQuickSetupClientResolvedConfig
|
|
185
|
+
> {
|
|
186
|
+
readonly config: SSMQuickSetupClientResolvedConfig;
|
|
187
|
+
constructor(
|
|
188
|
+
...[configuration]: __CheckOptionalClientConfig<SSMQuickSetupClientConfig>
|
|
189
|
+
);
|
|
190
|
+
destroy(): void;
|
|
191
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { SSMQuickSetupHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): SSMQuickSetupHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
} from "@smithy/types";
|
|
13
|
+
import { SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
|
|
14
|
+
export interface SSMQuickSetupHttpAuthSchemeParameters
|
|
15
|
+
extends HttpAuthSchemeParameters {
|
|
16
|
+
region?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface SSMQuickSetupHttpAuthSchemeParametersProvider
|
|
19
|
+
extends HttpAuthSchemeParametersProvider<
|
|
20
|
+
SSMQuickSetupClientResolvedConfig,
|
|
21
|
+
HandlerExecutionContext,
|
|
22
|
+
SSMQuickSetupHttpAuthSchemeParameters,
|
|
23
|
+
object
|
|
24
|
+
> {}
|
|
25
|
+
export declare const defaultSSMQuickSetupHttpAuthSchemeParametersProvider: (
|
|
26
|
+
config: SSMQuickSetupClientResolvedConfig,
|
|
27
|
+
context: HandlerExecutionContext,
|
|
28
|
+
input: object
|
|
29
|
+
) => Promise<SSMQuickSetupHttpAuthSchemeParameters>;
|
|
30
|
+
export interface SSMQuickSetupHttpAuthSchemeProvider
|
|
31
|
+
extends HttpAuthSchemeProvider<SSMQuickSetupHttpAuthSchemeParameters> {}
|
|
32
|
+
export declare const defaultSSMQuickSetupHttpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider;
|
|
33
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
35
|
+
httpAuthSchemeProvider?: SSMQuickSetupHttpAuthSchemeProvider;
|
|
36
|
+
}
|
|
37
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
38
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
39
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
40
|
+
readonly httpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider;
|
|
41
|
+
}
|
|
42
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
43
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
44
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateConfigurationManagerInput,
|
|
5
|
+
CreateConfigurationManagerOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SSMQuickSetupClientResolvedConfig,
|
|
11
|
+
} from "../SSMQuickSetupClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateConfigurationManagerCommandInput
|
|
15
|
+
extends CreateConfigurationManagerInput {}
|
|
16
|
+
export interface CreateConfigurationManagerCommandOutput
|
|
17
|
+
extends CreateConfigurationManagerOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateConfigurationManagerCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateConfigurationManagerCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateConfigurationManagerCommandInput,
|
|
24
|
+
CreateConfigurationManagerCommandOutput,
|
|
25
|
+
SSMQuickSetupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateConfigurationManagerCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateConfigurationManagerCommandInput,
|
|
33
|
+
CreateConfigurationManagerCommandOutput,
|
|
34
|
+
SSMQuickSetupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateConfigurationManagerCommand extends CreateConfigurationManagerCommand_base {}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteConfigurationManagerInput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMQuickSetupClientResolvedConfig,
|
|
8
|
+
} from "../SSMQuickSetupClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteConfigurationManagerCommandInput
|
|
12
|
+
extends DeleteConfigurationManagerInput {}
|
|
13
|
+
export interface DeleteConfigurationManagerCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteConfigurationManagerCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteConfigurationManagerCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteConfigurationManagerCommandInput,
|
|
20
|
+
DeleteConfigurationManagerCommandOutput,
|
|
21
|
+
SSMQuickSetupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: DeleteConfigurationManagerCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteConfigurationManagerCommandInput,
|
|
29
|
+
DeleteConfigurationManagerCommandOutput,
|
|
30
|
+
SSMQuickSetupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteConfigurationManagerCommand extends DeleteConfigurationManagerCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetConfigurationManagerInput,
|
|
5
|
+
GetConfigurationManagerOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SSMQuickSetupClientResolvedConfig,
|
|
11
|
+
} from "../SSMQuickSetupClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetConfigurationManagerCommandInput
|
|
15
|
+
extends GetConfigurationManagerInput {}
|
|
16
|
+
export interface GetConfigurationManagerCommandOutput
|
|
17
|
+
extends GetConfigurationManagerOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetConfigurationManagerCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetConfigurationManagerCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetConfigurationManagerCommandInput,
|
|
24
|
+
GetConfigurationManagerCommandOutput,
|
|
25
|
+
SSMQuickSetupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetConfigurationManagerCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetConfigurationManagerCommandInput,
|
|
33
|
+
GetConfigurationManagerCommandOutput,
|
|
34
|
+
SSMQuickSetupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetConfigurationManagerCommand extends GetConfigurationManagerCommand_base {}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetServiceSettingsOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMQuickSetupClientResolvedConfig,
|
|
8
|
+
} from "../SSMQuickSetupClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetServiceSettingsCommandInput {}
|
|
12
|
+
export interface GetServiceSettingsCommandOutput
|
|
13
|
+
extends GetServiceSettingsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetServiceSettingsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetServiceSettingsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetServiceSettingsCommandInput,
|
|
20
|
+
GetServiceSettingsCommandOutput,
|
|
21
|
+
SSMQuickSetupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [GetServiceSettingsCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetServiceSettingsCommandInput,
|
|
29
|
+
GetServiceSettingsCommandOutput,
|
|
30
|
+
SSMQuickSetupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetServiceSettingsCommand extends GetServiceSettingsCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListConfigurationManagersInput,
|
|
5
|
+
ListConfigurationManagersOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SSMQuickSetupClientResolvedConfig,
|
|
11
|
+
} from "../SSMQuickSetupClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListConfigurationManagersCommandInput
|
|
15
|
+
extends ListConfigurationManagersInput {}
|
|
16
|
+
export interface ListConfigurationManagersCommandOutput
|
|
17
|
+
extends ListConfigurationManagersOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListConfigurationManagersCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListConfigurationManagersCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListConfigurationManagersCommandInput,
|
|
24
|
+
ListConfigurationManagersCommandOutput,
|
|
25
|
+
SSMQuickSetupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListConfigurationManagersCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListConfigurationManagersCommandInput,
|
|
33
|
+
ListConfigurationManagersCommandOutput,
|
|
34
|
+
SSMQuickSetupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListConfigurationManagersCommand extends ListConfigurationManagersCommand_base {}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListQuickSetupTypesOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMQuickSetupClientResolvedConfig,
|
|
8
|
+
} from "../SSMQuickSetupClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListQuickSetupTypesCommandInput {}
|
|
12
|
+
export interface ListQuickSetupTypesCommandOutput
|
|
13
|
+
extends ListQuickSetupTypesOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListQuickSetupTypesCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListQuickSetupTypesCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListQuickSetupTypesCommandInput,
|
|
20
|
+
ListQuickSetupTypesCommandOutput,
|
|
21
|
+
SSMQuickSetupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListQuickSetupTypesCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListQuickSetupTypesCommandInput,
|
|
29
|
+
ListQuickSetupTypesCommandOutput,
|
|
30
|
+
SSMQuickSetupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListQuickSetupTypesCommand extends ListQuickSetupTypesCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListTagsForResourceRequest,
|
|
5
|
+
ListTagsForResourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SSMQuickSetupClientResolvedConfig,
|
|
11
|
+
} from "../SSMQuickSetupClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTagsForResourceCommandInput
|
|
15
|
+
extends ListTagsForResourceRequest {}
|
|
16
|
+
export interface ListTagsForResourceCommandOutput
|
|
17
|
+
extends ListTagsForResourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTagsForResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTagsForResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
SSMQuickSetupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListTagsForResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListTagsForResourceCommandInput,
|
|
33
|
+
ListTagsForResourceCommandOutput,
|
|
34
|
+
SSMQuickSetupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { TagResourceInput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMQuickSetupClientResolvedConfig,
|
|
8
|
+
} from "../SSMQuickSetupClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
12
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const TagResourceCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: TagResourceCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
TagResourceCommandInput,
|
|
18
|
+
TagResourceCommandOutput,
|
|
19
|
+
SSMQuickSetupClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: TagResourceCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
TagResourceCommandInput,
|
|
27
|
+
TagResourceCommandOutput,
|
|
28
|
+
SSMQuickSetupClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UntagResourceInput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMQuickSetupClientResolvedConfig,
|
|
8
|
+
} from "../SSMQuickSetupClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
12
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const UntagResourceCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: UntagResourceCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
UntagResourceCommandInput,
|
|
18
|
+
UntagResourceCommandOutput,
|
|
19
|
+
SSMQuickSetupClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: UntagResourceCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
UntagResourceCommandInput,
|
|
27
|
+
UntagResourceCommandOutput,
|
|
28
|
+
SSMQuickSetupClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateConfigurationDefinitionInput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMQuickSetupClientResolvedConfig,
|
|
8
|
+
} from "../SSMQuickSetupClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateConfigurationDefinitionCommandInput
|
|
12
|
+
extends UpdateConfigurationDefinitionInput {}
|
|
13
|
+
export interface UpdateConfigurationDefinitionCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const UpdateConfigurationDefinitionCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateConfigurationDefinitionCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateConfigurationDefinitionCommandInput,
|
|
20
|
+
UpdateConfigurationDefinitionCommandOutput,
|
|
21
|
+
SSMQuickSetupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: UpdateConfigurationDefinitionCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateConfigurationDefinitionCommandInput,
|
|
29
|
+
UpdateConfigurationDefinitionCommandOutput,
|
|
30
|
+
SSMQuickSetupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateConfigurationDefinitionCommand extends UpdateConfigurationDefinitionCommand_base {}
|