@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,30 @@
|
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
|
+
import { parseUrl } from "@smithy/url-parser";
|
|
4
|
+
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
5
|
+
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
6
|
+
import { defaultSSMQuickSetupHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
7
|
+
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
8
|
+
export const getRuntimeConfig = (config) => {
|
|
9
|
+
return {
|
|
10
|
+
apiVersion: "2018-05-10",
|
|
11
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
12
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
13
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
14
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
15
|
+
extensions: config?.extensions ?? [],
|
|
16
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSSMQuickSetupHttpAuthSchemeProvider,
|
|
17
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
18
|
+
{
|
|
19
|
+
schemeId: "aws.auth#sigv4",
|
|
20
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
21
|
+
signer: new AwsSdkSigV4Signer(),
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
25
|
+
serviceId: config?.serviceId ?? "SSM QuickSetup",
|
|
26
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
27
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
28
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver";
|
|
2
|
+
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
3
|
+
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
4
|
+
import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
const asPartial = (t) => t;
|
|
6
|
+
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
+
const extensionConfiguration = {
|
|
8
|
+
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
9
|
+
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
10
|
+
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
11
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
|
|
12
|
+
};
|
|
13
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
14
|
+
return {
|
|
15
|
+
...runtimeConfig,
|
|
16
|
+
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
17
|
+
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
18
|
+
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
19
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration),
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput } from "./commands/CreateConfigurationManagerCommand";
|
|
3
|
+
import { DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput } from "./commands/DeleteConfigurationManagerCommand";
|
|
4
|
+
import { GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput } from "./commands/GetConfigurationManagerCommand";
|
|
5
|
+
import { GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput } from "./commands/GetServiceSettingsCommand";
|
|
6
|
+
import { ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput } from "./commands/ListConfigurationManagersCommand";
|
|
7
|
+
import { ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput } from "./commands/ListQuickSetupTypesCommand";
|
|
8
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
9
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
10
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
11
|
+
import { UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput } from "./commands/UpdateConfigurationDefinitionCommand";
|
|
12
|
+
import { UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput } from "./commands/UpdateConfigurationManagerCommand";
|
|
13
|
+
import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput } from "./commands/UpdateServiceSettingsCommand";
|
|
14
|
+
import { SSMQuickSetupClient } from "./SSMQuickSetupClient";
|
|
15
|
+
export interface SSMQuickSetup {
|
|
16
|
+
/**
|
|
17
|
+
* @see {@link CreateConfigurationManagerCommand}
|
|
18
|
+
*/
|
|
19
|
+
createConfigurationManager(args: CreateConfigurationManagerCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationManagerCommandOutput>;
|
|
20
|
+
createConfigurationManager(args: CreateConfigurationManagerCommandInput, cb: (err: any, data?: CreateConfigurationManagerCommandOutput) => void): void;
|
|
21
|
+
createConfigurationManager(args: CreateConfigurationManagerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationManagerCommandOutput) => void): void;
|
|
22
|
+
/**
|
|
23
|
+
* @see {@link DeleteConfigurationManagerCommand}
|
|
24
|
+
*/
|
|
25
|
+
deleteConfigurationManager(args: DeleteConfigurationManagerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationManagerCommandOutput>;
|
|
26
|
+
deleteConfigurationManager(args: DeleteConfigurationManagerCommandInput, cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void): void;
|
|
27
|
+
deleteConfigurationManager(args: DeleteConfigurationManagerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void): void;
|
|
28
|
+
/**
|
|
29
|
+
* @see {@link GetConfigurationManagerCommand}
|
|
30
|
+
*/
|
|
31
|
+
getConfigurationManager(args: GetConfigurationManagerCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationManagerCommandOutput>;
|
|
32
|
+
getConfigurationManager(args: GetConfigurationManagerCommandInput, cb: (err: any, data?: GetConfigurationManagerCommandOutput) => void): void;
|
|
33
|
+
getConfigurationManager(args: GetConfigurationManagerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationManagerCommandOutput) => void): void;
|
|
34
|
+
/**
|
|
35
|
+
* @see {@link GetServiceSettingsCommand}
|
|
36
|
+
*/
|
|
37
|
+
getServiceSettings(): Promise<GetServiceSettingsCommandOutput>;
|
|
38
|
+
getServiceSettings(args: GetServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceSettingsCommandOutput>;
|
|
39
|
+
getServiceSettings(args: GetServiceSettingsCommandInput, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
|
|
40
|
+
getServiceSettings(args: GetServiceSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
|
|
41
|
+
/**
|
|
42
|
+
* @see {@link ListConfigurationManagersCommand}
|
|
43
|
+
*/
|
|
44
|
+
listConfigurationManagers(): Promise<ListConfigurationManagersCommandOutput>;
|
|
45
|
+
listConfigurationManagers(args: ListConfigurationManagersCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationManagersCommandOutput>;
|
|
46
|
+
listConfigurationManagers(args: ListConfigurationManagersCommandInput, cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void): void;
|
|
47
|
+
listConfigurationManagers(args: ListConfigurationManagersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void): void;
|
|
48
|
+
/**
|
|
49
|
+
* @see {@link ListQuickSetupTypesCommand}
|
|
50
|
+
*/
|
|
51
|
+
listQuickSetupTypes(): Promise<ListQuickSetupTypesCommandOutput>;
|
|
52
|
+
listQuickSetupTypes(args: ListQuickSetupTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListQuickSetupTypesCommandOutput>;
|
|
53
|
+
listQuickSetupTypes(args: ListQuickSetupTypesCommandInput, cb: (err: any, data?: ListQuickSetupTypesCommandOutput) => void): void;
|
|
54
|
+
listQuickSetupTypes(args: ListQuickSetupTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQuickSetupTypesCommandOutput) => void): void;
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link ListTagsForResourceCommand}
|
|
57
|
+
*/
|
|
58
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
59
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
60
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
61
|
+
/**
|
|
62
|
+
* @see {@link TagResourceCommand}
|
|
63
|
+
*/
|
|
64
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
65
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
66
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
67
|
+
/**
|
|
68
|
+
* @see {@link UntagResourceCommand}
|
|
69
|
+
*/
|
|
70
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
71
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
72
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
73
|
+
/**
|
|
74
|
+
* @see {@link UpdateConfigurationDefinitionCommand}
|
|
75
|
+
*/
|
|
76
|
+
updateConfigurationDefinition(args: UpdateConfigurationDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationDefinitionCommandOutput>;
|
|
77
|
+
updateConfigurationDefinition(args: UpdateConfigurationDefinitionCommandInput, cb: (err: any, data?: UpdateConfigurationDefinitionCommandOutput) => void): void;
|
|
78
|
+
updateConfigurationDefinition(args: UpdateConfigurationDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationDefinitionCommandOutput) => void): void;
|
|
79
|
+
/**
|
|
80
|
+
* @see {@link UpdateConfigurationManagerCommand}
|
|
81
|
+
*/
|
|
82
|
+
updateConfigurationManager(args: UpdateConfigurationManagerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationManagerCommandOutput>;
|
|
83
|
+
updateConfigurationManager(args: UpdateConfigurationManagerCommandInput, cb: (err: any, data?: UpdateConfigurationManagerCommandOutput) => void): void;
|
|
84
|
+
updateConfigurationManager(args: UpdateConfigurationManagerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationManagerCommandOutput) => void): void;
|
|
85
|
+
/**
|
|
86
|
+
* @see {@link UpdateServiceSettingsCommand}
|
|
87
|
+
*/
|
|
88
|
+
updateServiceSettings(): Promise<UpdateServiceSettingsCommandOutput>;
|
|
89
|
+
updateServiceSettings(args: UpdateServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceSettingsCommandOutput>;
|
|
90
|
+
updateServiceSettings(args: UpdateServiceSettingsCommandInput, cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void): void;
|
|
91
|
+
updateServiceSettings(args: UpdateServiceSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void): void;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* <p>Quick Setup helps you quickly configure frequently used services and features with
|
|
95
|
+
* recommended best practices. Quick Setup simplifies setting up services, including
|
|
96
|
+
* Systems Manager, by automating common or recommended tasks.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export declare class SSMQuickSetup extends SSMQuickSetupClient implements SSMQuickSetup {
|
|
100
|
+
}
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
2
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
3
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
|
|
4
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
|
|
5
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
|
+
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
+
import { CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput } from "./commands/CreateConfigurationManagerCommand";
|
|
11
|
+
import { DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput } from "./commands/DeleteConfigurationManagerCommand";
|
|
12
|
+
import { GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput } from "./commands/GetConfigurationManagerCommand";
|
|
13
|
+
import { GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput } from "./commands/GetServiceSettingsCommand";
|
|
14
|
+
import { ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput } from "./commands/ListConfigurationManagersCommand";
|
|
15
|
+
import { ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput } from "./commands/ListQuickSetupTypesCommand";
|
|
16
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
17
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
18
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
19
|
+
import { UpdateConfigurationDefinitionCommandInput, UpdateConfigurationDefinitionCommandOutput } from "./commands/UpdateConfigurationDefinitionCommand";
|
|
20
|
+
import { UpdateConfigurationManagerCommandInput, UpdateConfigurationManagerCommandOutput } from "./commands/UpdateConfigurationManagerCommand";
|
|
21
|
+
import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput } from "./commands/UpdateServiceSettingsCommand";
|
|
22
|
+
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
23
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
24
|
+
export { __Client };
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type ServiceInputTypes = CreateConfigurationManagerCommandInput | DeleteConfigurationManagerCommandInput | GetConfigurationManagerCommandInput | GetServiceSettingsCommandInput | ListConfigurationManagersCommandInput | ListQuickSetupTypesCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConfigurationDefinitionCommandInput | UpdateConfigurationManagerCommandInput | UpdateServiceSettingsCommandInput;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export type ServiceOutputTypes = CreateConfigurationManagerCommandOutput | DeleteConfigurationManagerCommandOutput | GetConfigurationManagerCommandOutput | GetServiceSettingsCommandOutput | ListConfigurationManagersCommandOutput | ListQuickSetupTypesCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConfigurationDefinitionCommandOutput | UpdateConfigurationManagerCommandOutput | UpdateServiceSettingsCommandOutput;
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
37
|
+
/**
|
|
38
|
+
* The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
|
|
39
|
+
*/
|
|
40
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
41
|
+
/**
|
|
42
|
+
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
|
|
43
|
+
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
47
|
+
/**
|
|
48
|
+
* The function that will be used to convert strings into HTTP endpoints.
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
urlParser?: __UrlParser;
|
|
52
|
+
/**
|
|
53
|
+
* A function that can calculate the length of a request body.
|
|
54
|
+
* @internal
|
|
55
|
+
*/
|
|
56
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
57
|
+
/**
|
|
58
|
+
* A function that converts a stream into an array of bytes.
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
streamCollector?: __StreamCollector;
|
|
62
|
+
/**
|
|
63
|
+
* The function that will be used to convert a base64-encoded string to a byte array.
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
base64Decoder?: __Decoder;
|
|
67
|
+
/**
|
|
68
|
+
* The function that will be used to convert binary data to a base64-encoded string.
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
base64Encoder?: __Encoder;
|
|
72
|
+
/**
|
|
73
|
+
* The function that will be used to convert a UTF8-encoded string to a byte array.
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
76
|
+
utf8Decoder?: __Decoder;
|
|
77
|
+
/**
|
|
78
|
+
* The function that will be used to convert binary data to a UTF-8 encoded string.
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
utf8Encoder?: __Encoder;
|
|
82
|
+
/**
|
|
83
|
+
* The runtime environment.
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
runtime?: string;
|
|
87
|
+
/**
|
|
88
|
+
* Disable dynamically changing the endpoint of the client based on the hostPrefix
|
|
89
|
+
* trait of an operation.
|
|
90
|
+
*/
|
|
91
|
+
disableHostPrefix?: boolean;
|
|
92
|
+
/**
|
|
93
|
+
* Unique service identifier.
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
serviceId?: string;
|
|
97
|
+
/**
|
|
98
|
+
* Enables IPv6/IPv4 dualstack endpoint.
|
|
99
|
+
*/
|
|
100
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
101
|
+
/**
|
|
102
|
+
* Enables FIPS compatible endpoints.
|
|
103
|
+
*/
|
|
104
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
105
|
+
/**
|
|
106
|
+
* The AWS region to which this client will send requests
|
|
107
|
+
*/
|
|
108
|
+
region?: string | __Provider<string>;
|
|
109
|
+
/**
|
|
110
|
+
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
113
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
114
|
+
/**
|
|
115
|
+
* Default credentials provider; Not available in browser runtime.
|
|
116
|
+
* @deprecated
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
119
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
120
|
+
/**
|
|
121
|
+
* Value for how many times a request will be made at most in case of retry.
|
|
122
|
+
*/
|
|
123
|
+
maxAttempts?: number | __Provider<number>;
|
|
124
|
+
/**
|
|
125
|
+
* Specifies which retry algorithm to use.
|
|
126
|
+
* @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
|
|
127
|
+
*
|
|
128
|
+
*/
|
|
129
|
+
retryMode?: string | __Provider<string>;
|
|
130
|
+
/**
|
|
131
|
+
* Optional logger for logging debug/info/warn/error.
|
|
132
|
+
*/
|
|
133
|
+
logger?: __Logger;
|
|
134
|
+
/**
|
|
135
|
+
* Optional extensions
|
|
136
|
+
*/
|
|
137
|
+
extensions?: RuntimeExtension[];
|
|
138
|
+
/**
|
|
139
|
+
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
140
|
+
*/
|
|
141
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
export type SSMQuickSetupClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*
|
|
150
|
+
* The configuration interface of SSMQuickSetupClient class constructor that set the region, credentials and other options.
|
|
151
|
+
*/
|
|
152
|
+
export interface SSMQuickSetupClientConfig extends SSMQuickSetupClientConfigType {
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
157
|
+
export type SSMQuickSetupClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*
|
|
161
|
+
* The resolved configuration interface of SSMQuickSetupClient class. This is resolved and normalized from the {@link SSMQuickSetupClientConfig | constructor configuration interface}.
|
|
162
|
+
*/
|
|
163
|
+
export interface SSMQuickSetupClientResolvedConfig extends SSMQuickSetupClientResolvedConfigType {
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* <p>Quick Setup helps you quickly configure frequently used services and features with
|
|
167
|
+
* recommended best practices. Quick Setup simplifies setting up services, including
|
|
168
|
+
* Systems Manager, by automating common or recommended tasks.</p>
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export declare class SSMQuickSetupClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig> {
|
|
172
|
+
/**
|
|
173
|
+
* The resolved configuration of SSMQuickSetupClient class. This is resolved and normalized from the {@link SSMQuickSetupClientConfig | constructor configuration interface}.
|
|
174
|
+
*/
|
|
175
|
+
readonly config: SSMQuickSetupClientResolvedConfig;
|
|
176
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<SSMQuickSetupClientConfig>);
|
|
177
|
+
/**
|
|
178
|
+
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
179
|
+
* However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
|
|
180
|
+
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
181
|
+
*/
|
|
182
|
+
destroy(): void;
|
|
183
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
|
+
import { SSMQuickSetupHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export interface HttpAuthExtensionConfiguration {
|
|
7
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
8
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
9
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider): void;
|
|
10
|
+
httpAuthSchemeProvider(): SSMQuickSetupHttpAuthSchemeProvider;
|
|
11
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
12
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
18
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
19
|
+
httpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider;
|
|
20
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
21
|
+
}>;
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
2
|
+
import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types";
|
|
3
|
+
import { SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
|
|
4
|
+
/**
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
export interface SSMQuickSetupHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
8
|
+
region?: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
export interface SSMQuickSetupHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<SSMQuickSetupClientResolvedConfig, HandlerExecutionContext, SSMQuickSetupHttpAuthSchemeParameters, object> {
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const defaultSSMQuickSetupHttpAuthSchemeParametersProvider: (config: SSMQuickSetupClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<SSMQuickSetupHttpAuthSchemeParameters>;
|
|
19
|
+
/**
|
|
20
|
+
* @internal
|
|
21
|
+
*/
|
|
22
|
+
export interface SSMQuickSetupHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SSMQuickSetupHttpAuthSchemeParameters> {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
export declare const defaultSSMQuickSetupHttpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider;
|
|
28
|
+
/**
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
|
+
/**
|
|
33
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
/**
|
|
38
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
39
|
+
* @internal
|
|
40
|
+
*/
|
|
41
|
+
httpAuthSchemeProvider?: SSMQuickSetupHttpAuthSchemeProvider;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
46
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
47
|
+
/**
|
|
48
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
52
|
+
/**
|
|
53
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
54
|
+
* @internal
|
|
55
|
+
*/
|
|
56
|
+
readonly httpAuthSchemeProvider: SSMQuickSetupHttpAuthSchemeProvider;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateConfigurationManagerInput, CreateConfigurationManagerOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateConfigurationManagerCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateConfigurationManagerCommandInput extends CreateConfigurationManagerInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateConfigurationManagerCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateConfigurationManagerCommandOutput extends CreateConfigurationManagerOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateConfigurationManagerCommand_base: {
|
|
25
|
+
new (input: CreateConfigurationManagerCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateConfigurationManagerCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a Quick Setup configuration manager resource. This object is a collection
|
|
31
|
+
* of desired state configurations for multiple configuration definitions and
|
|
32
|
+
* summaries describing the deployments of those definitions.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { SSMQuickSetupClient, CreateConfigurationManagerCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
37
|
+
* // const { SSMQuickSetupClient, CreateConfigurationManagerCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
38
|
+
* const client = new SSMQuickSetupClient(config);
|
|
39
|
+
* const input = { // CreateConfigurationManagerInput
|
|
40
|
+
* Name: "STRING_VALUE",
|
|
41
|
+
* Description: "STRING_VALUE",
|
|
42
|
+
* ConfigurationDefinitions: [ // ConfigurationDefinitionsInputList // required
|
|
43
|
+
* { // ConfigurationDefinitionInput
|
|
44
|
+
* Type: "STRING_VALUE", // required
|
|
45
|
+
* Parameters: { // ConfigurationParametersMap // required
|
|
46
|
+
* "<keys>": "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* TypeVersion: "STRING_VALUE",
|
|
49
|
+
* LocalDeploymentExecutionRoleName: "STRING_VALUE",
|
|
50
|
+
* LocalDeploymentAdministrationRoleArn: "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* Tags: { // TagsMap
|
|
54
|
+
* "<keys>": "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* };
|
|
57
|
+
* const command = new CreateConfigurationManagerCommand(input);
|
|
58
|
+
* const response = await client.send(command);
|
|
59
|
+
* // { // CreateConfigurationManagerOutput
|
|
60
|
+
* // ManagerArn: "STRING_VALUE", // required
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
65
|
+
* @param CreateConfigurationManagerCommandInput - {@link CreateConfigurationManagerCommandInput}
|
|
66
|
+
* @returns {@link CreateConfigurationManagerCommandOutput}
|
|
67
|
+
* @see {@link CreateConfigurationManagerCommandInput} for command's `input` shape.
|
|
68
|
+
* @see {@link CreateConfigurationManagerCommandOutput} for command's `response` shape.
|
|
69
|
+
* @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
72
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ConflictException} (client fault)
|
|
75
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InternalServerException} (server fault)
|
|
78
|
+
* <p>An error occurred on the server side.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
81
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ValidationException} (client fault)
|
|
84
|
+
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
85
|
+
* accurate.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link SSMQuickSetupServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
|
|
89
|
+
*
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class CreateConfigurationManagerCommand extends CreateConfigurationManagerCommand_base {
|
|
93
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
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 { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteConfigurationManagerCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteConfigurationManagerCommandInput extends DeleteConfigurationManagerInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteConfigurationManagerCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteConfigurationManagerCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteConfigurationManagerCommand_base: {
|
|
25
|
+
new (input: DeleteConfigurationManagerCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteConfigurationManagerCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes a configuration manager.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SSMQuickSetupClient, DeleteConfigurationManagerCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
|
|
35
|
+
* // const { SSMQuickSetupClient, DeleteConfigurationManagerCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
|
|
36
|
+
* const client = new SSMQuickSetupClient(config);
|
|
37
|
+
* const input = { // DeleteConfigurationManagerInput
|
|
38
|
+
* ManagerArn: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DeleteConfigurationManagerCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param DeleteConfigurationManagerCommandInput - {@link DeleteConfigurationManagerCommandInput}
|
|
47
|
+
* @returns {@link DeleteConfigurationManagerCommandOutput}
|
|
48
|
+
* @see {@link DeleteConfigurationManagerCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link DeleteConfigurationManagerCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ConflictException} (client fault)
|
|
56
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InternalServerException} (server fault)
|
|
59
|
+
* <p>An error occurred on the server side.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
62
|
+
* <p>The resource couldn't be found. Check the ID or name and try again.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
65
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ValidationException} (client fault)
|
|
68
|
+
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
69
|
+
* accurate.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link SSMQuickSetupServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
|
|
73
|
+
*
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export declare class DeleteConfigurationManagerCommand extends DeleteConfigurationManagerCommand_base {
|
|
77
|
+
}
|