@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,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateConfigurationManagerInput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMQuickSetupClientResolvedConfig,
|
|
8
|
+
} from "../SSMQuickSetupClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateConfigurationManagerCommandInput
|
|
12
|
+
extends UpdateConfigurationManagerInput {}
|
|
13
|
+
export interface UpdateConfigurationManagerCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const UpdateConfigurationManagerCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateConfigurationManagerCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateConfigurationManagerCommandInput,
|
|
20
|
+
UpdateConfigurationManagerCommandOutput,
|
|
21
|
+
SSMQuickSetupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: UpdateConfigurationManagerCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateConfigurationManagerCommandInput,
|
|
29
|
+
UpdateConfigurationManagerCommandOutput,
|
|
30
|
+
SSMQuickSetupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateConfigurationManagerCommand extends UpdateConfigurationManagerCommand_base {}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateServiceSettingsInput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMQuickSetupClientResolvedConfig,
|
|
8
|
+
} from "../SSMQuickSetupClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateServiceSettingsCommandInput
|
|
12
|
+
extends UpdateServiceSettingsInput {}
|
|
13
|
+
export interface UpdateServiceSettingsCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const UpdateServiceSettingsCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: UpdateServiceSettingsCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
UpdateServiceSettingsCommandInput,
|
|
19
|
+
UpdateServiceSettingsCommandOutput,
|
|
20
|
+
SSMQuickSetupClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
...[input]: [] | [UpdateServiceSettingsCommandInput]
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdateServiceSettingsCommandInput,
|
|
28
|
+
UpdateServiceSettingsCommandOutput,
|
|
29
|
+
SSMQuickSetupClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class UpdateServiceSettingsCommand extends UpdateServiceSettingsCommand_base {}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./CreateConfigurationManagerCommand";
|
|
2
|
+
export * from "./DeleteConfigurationManagerCommand";
|
|
3
|
+
export * from "./GetConfigurationManagerCommand";
|
|
4
|
+
export * from "./GetServiceSettingsCommand";
|
|
5
|
+
export * from "./ListConfigurationManagersCommand";
|
|
6
|
+
export * from "./ListQuickSetupTypesCommand";
|
|
7
|
+
export * from "./ListTagsForResourceCommand";
|
|
8
|
+
export * from "./TagResourceCommand";
|
|
9
|
+
export * from "./UntagResourceCommand";
|
|
10
|
+
export * from "./UpdateConfigurationDefinitionCommand";
|
|
11
|
+
export * from "./UpdateConfigurationManagerCommand";
|
|
12
|
+
export * from "./UpdateServiceSettingsCommand";
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
47
|
+
Region?: string;
|
|
48
|
+
UseDualStack?: boolean;
|
|
49
|
+
UseFIPS?: boolean;
|
|
50
|
+
Endpoint?: string;
|
|
51
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface SSMQuickSetupExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./SSMQuickSetupClient";
|
|
2
|
+
export * from "./SSMQuickSetup";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { SSMQuickSetupExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
export { SSMQuickSetupServiceException } from "./models/SSMQuickSetupServiceException";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
7
|
+
export declare class SSMQuickSetupServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export interface ConfigurationDefinition {
|
|
12
|
+
Type: string | undefined;
|
|
13
|
+
Parameters: Record<string, string> | undefined;
|
|
14
|
+
TypeVersion?: string;
|
|
15
|
+
LocalDeploymentExecutionRoleName?: string;
|
|
16
|
+
LocalDeploymentAdministrationRoleArn?: string;
|
|
17
|
+
Id?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface ConfigurationDefinitionInput {
|
|
20
|
+
Type: string | undefined;
|
|
21
|
+
Parameters: Record<string, string> | undefined;
|
|
22
|
+
TypeVersion?: string;
|
|
23
|
+
LocalDeploymentExecutionRoleName?: string;
|
|
24
|
+
LocalDeploymentAdministrationRoleArn?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface ConfigurationDefinitionSummary {
|
|
27
|
+
Id?: string;
|
|
28
|
+
Type?: string;
|
|
29
|
+
TypeVersion?: string;
|
|
30
|
+
FirstClassParameters?: Record<string, string>;
|
|
31
|
+
}
|
|
32
|
+
export declare const Status: {
|
|
33
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
34
|
+
readonly DELETING: "DELETING";
|
|
35
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
36
|
+
readonly FAILED: "FAILED";
|
|
37
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
38
|
+
readonly NONE: "NONE";
|
|
39
|
+
readonly STOPPED: "STOPPED";
|
|
40
|
+
readonly STOPPING: "STOPPING";
|
|
41
|
+
readonly STOP_FAILED: "STOP_FAILED";
|
|
42
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
43
|
+
};
|
|
44
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
45
|
+
export declare const StatusType: {
|
|
46
|
+
readonly ASYNC_EXECUTIONS: "AsyncExecutions";
|
|
47
|
+
readonly DEPLOYMENT: "Deployment";
|
|
48
|
+
};
|
|
49
|
+
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
50
|
+
export interface StatusSummary {
|
|
51
|
+
StatusType: StatusType | undefined;
|
|
52
|
+
Status?: Status;
|
|
53
|
+
StatusMessage?: string;
|
|
54
|
+
LastUpdatedAt: Date | undefined;
|
|
55
|
+
StatusDetails?: Record<string, string>;
|
|
56
|
+
}
|
|
57
|
+
export interface ConfigurationManagerSummary {
|
|
58
|
+
ManagerArn: string | undefined;
|
|
59
|
+
Description?: string;
|
|
60
|
+
Name?: string;
|
|
61
|
+
StatusSummaries?: StatusSummary[];
|
|
62
|
+
ConfigurationDefinitionSummaries?: ConfigurationDefinitionSummary[];
|
|
63
|
+
}
|
|
64
|
+
export declare class ConflictException extends __BaseException {
|
|
65
|
+
readonly name: "ConflictException";
|
|
66
|
+
readonly $fault: "client";
|
|
67
|
+
Message?: string;
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
export interface CreateConfigurationManagerInput {
|
|
71
|
+
Name?: string;
|
|
72
|
+
Description?: string;
|
|
73
|
+
ConfigurationDefinitions: ConfigurationDefinitionInput[] | undefined;
|
|
74
|
+
Tags?: Record<string, string>;
|
|
75
|
+
}
|
|
76
|
+
export interface CreateConfigurationManagerOutput {
|
|
77
|
+
ManagerArn: string | undefined;
|
|
78
|
+
}
|
|
79
|
+
export declare class InternalServerException extends __BaseException {
|
|
80
|
+
readonly name: "InternalServerException";
|
|
81
|
+
readonly $fault: "server";
|
|
82
|
+
$retryable: {};
|
|
83
|
+
Message?: string;
|
|
84
|
+
constructor(
|
|
85
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
export declare class ThrottlingException extends __BaseException {
|
|
89
|
+
readonly name: "ThrottlingException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
$retryable: {};
|
|
92
|
+
Message: string | undefined;
|
|
93
|
+
constructor(
|
|
94
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
95
|
+
);
|
|
96
|
+
}
|
|
97
|
+
export declare class ValidationException extends __BaseException {
|
|
98
|
+
readonly name: "ValidationException";
|
|
99
|
+
readonly $fault: "client";
|
|
100
|
+
Message?: string;
|
|
101
|
+
constructor(
|
|
102
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
export interface DeleteConfigurationManagerInput {
|
|
106
|
+
ManagerArn: string | undefined;
|
|
107
|
+
}
|
|
108
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
109
|
+
readonly name: "ResourceNotFoundException";
|
|
110
|
+
readonly $fault: "client";
|
|
111
|
+
Message?: string;
|
|
112
|
+
constructor(
|
|
113
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
114
|
+
);
|
|
115
|
+
}
|
|
116
|
+
export interface Filter {
|
|
117
|
+
Key: string | undefined;
|
|
118
|
+
Values: string[] | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface GetConfigurationManagerInput {
|
|
121
|
+
ManagerArn: string | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface GetConfigurationManagerOutput {
|
|
124
|
+
ManagerArn: string | undefined;
|
|
125
|
+
Description?: string;
|
|
126
|
+
Name?: string;
|
|
127
|
+
CreatedAt?: Date;
|
|
128
|
+
LastModifiedAt?: Date;
|
|
129
|
+
StatusSummaries?: StatusSummary[];
|
|
130
|
+
ConfigurationDefinitions?: ConfigurationDefinition[];
|
|
131
|
+
Tags?: Record<string, string>;
|
|
132
|
+
}
|
|
133
|
+
export interface ServiceSettings {
|
|
134
|
+
ExplorerEnablingRoleArn?: string;
|
|
135
|
+
}
|
|
136
|
+
export interface GetServiceSettingsOutput {
|
|
137
|
+
ServiceSettings?: ServiceSettings;
|
|
138
|
+
}
|
|
139
|
+
export interface ListConfigurationManagersInput {
|
|
140
|
+
StartingToken?: string;
|
|
141
|
+
MaxItems?: number;
|
|
142
|
+
Filters?: Filter[];
|
|
143
|
+
}
|
|
144
|
+
export interface ListConfigurationManagersOutput {
|
|
145
|
+
ConfigurationManagersList?: ConfigurationManagerSummary[];
|
|
146
|
+
NextToken?: string;
|
|
147
|
+
}
|
|
148
|
+
export interface QuickSetupTypeOutput {
|
|
149
|
+
Type?: string;
|
|
150
|
+
LatestVersion?: string;
|
|
151
|
+
}
|
|
152
|
+
export interface ListQuickSetupTypesOutput {
|
|
153
|
+
QuickSetupTypeList?: QuickSetupTypeOutput[];
|
|
154
|
+
}
|
|
155
|
+
export interface ListTagsForResourceRequest {
|
|
156
|
+
ResourceArn: string | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface TagEntry {
|
|
159
|
+
Key?: string;
|
|
160
|
+
Value?: string;
|
|
161
|
+
}
|
|
162
|
+
export interface ListTagsForResourceResponse {
|
|
163
|
+
Tags?: TagEntry[];
|
|
164
|
+
}
|
|
165
|
+
export interface TagResourceInput {
|
|
166
|
+
ResourceArn: string | undefined;
|
|
167
|
+
Tags: Record<string, string> | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface UntagResourceInput {
|
|
170
|
+
ResourceArn: string | undefined;
|
|
171
|
+
TagKeys: string[] | undefined;
|
|
172
|
+
}
|
|
173
|
+
export interface UpdateConfigurationDefinitionInput {
|
|
174
|
+
ManagerArn: string | undefined;
|
|
175
|
+
Id: string | undefined;
|
|
176
|
+
TypeVersion?: string;
|
|
177
|
+
Parameters?: Record<string, string>;
|
|
178
|
+
LocalDeploymentExecutionRoleName?: string;
|
|
179
|
+
LocalDeploymentAdministrationRoleArn?: string;
|
|
180
|
+
}
|
|
181
|
+
export interface UpdateConfigurationManagerInput {
|
|
182
|
+
ManagerArn: string | undefined;
|
|
183
|
+
Name?: string;
|
|
184
|
+
Description?: string;
|
|
185
|
+
}
|
|
186
|
+
export interface UpdateServiceSettingsInput {
|
|
187
|
+
ExplorerEnablingRoleArn?: string;
|
|
188
|
+
}
|
|
189
|
+
export declare const CreateConfigurationManagerInputFilterSensitiveLog: (
|
|
190
|
+
obj: CreateConfigurationManagerInput
|
|
191
|
+
) => any;
|
|
192
|
+
export declare const GetConfigurationManagerOutputFilterSensitiveLog: (
|
|
193
|
+
obj: GetConfigurationManagerOutput
|
|
194
|
+
) => any;
|
|
195
|
+
export declare const TagEntryFilterSensitiveLog: (obj: TagEntry) => any;
|
|
196
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
197
|
+
obj: ListTagsForResourceResponse
|
|
198
|
+
) => any;
|
|
199
|
+
export declare const TagResourceInputFilterSensitiveLog: (
|
|
200
|
+
obj: TagResourceInput
|
|
201
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConfigurationManagersCommandInput,
|
|
4
|
+
ListConfigurationManagersCommandOutput,
|
|
5
|
+
} from "../commands/ListConfigurationManagersCommand";
|
|
6
|
+
import { SSMQuickSetupPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConfigurationManagers: (
|
|
8
|
+
config: SSMQuickSetupPaginationConfiguration,
|
|
9
|
+
input: ListConfigurationManagersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConfigurationManagersCommandOutput>;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateConfigurationManagerCommandInput,
|
|
8
|
+
CreateConfigurationManagerCommandOutput,
|
|
9
|
+
} from "../commands/CreateConfigurationManagerCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteConfigurationManagerCommandInput,
|
|
12
|
+
DeleteConfigurationManagerCommandOutput,
|
|
13
|
+
} from "../commands/DeleteConfigurationManagerCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetConfigurationManagerCommandInput,
|
|
16
|
+
GetConfigurationManagerCommandOutput,
|
|
17
|
+
} from "../commands/GetConfigurationManagerCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetServiceSettingsCommandInput,
|
|
20
|
+
GetServiceSettingsCommandOutput,
|
|
21
|
+
} from "../commands/GetServiceSettingsCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListConfigurationManagersCommandInput,
|
|
24
|
+
ListConfigurationManagersCommandOutput,
|
|
25
|
+
} from "../commands/ListConfigurationManagersCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListQuickSetupTypesCommandInput,
|
|
28
|
+
ListQuickSetupTypesCommandOutput,
|
|
29
|
+
} from "../commands/ListQuickSetupTypesCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
34
|
+
import {
|
|
35
|
+
TagResourceCommandInput,
|
|
36
|
+
TagResourceCommandOutput,
|
|
37
|
+
} from "../commands/TagResourceCommand";
|
|
38
|
+
import {
|
|
39
|
+
UntagResourceCommandInput,
|
|
40
|
+
UntagResourceCommandOutput,
|
|
41
|
+
} from "../commands/UntagResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
UpdateConfigurationDefinitionCommandInput,
|
|
44
|
+
UpdateConfigurationDefinitionCommandOutput,
|
|
45
|
+
} from "../commands/UpdateConfigurationDefinitionCommand";
|
|
46
|
+
import {
|
|
47
|
+
UpdateConfigurationManagerCommandInput,
|
|
48
|
+
UpdateConfigurationManagerCommandOutput,
|
|
49
|
+
} from "../commands/UpdateConfigurationManagerCommand";
|
|
50
|
+
import {
|
|
51
|
+
UpdateServiceSettingsCommandInput,
|
|
52
|
+
UpdateServiceSettingsCommandOutput,
|
|
53
|
+
} from "../commands/UpdateServiceSettingsCommand";
|
|
54
|
+
export declare const se_CreateConfigurationManagerCommand: (
|
|
55
|
+
input: CreateConfigurationManagerCommandInput,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const se_DeleteConfigurationManagerCommand: (
|
|
59
|
+
input: DeleteConfigurationManagerCommandInput,
|
|
60
|
+
context: __SerdeContext
|
|
61
|
+
) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const se_GetConfigurationManagerCommand: (
|
|
63
|
+
input: GetConfigurationManagerCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const se_GetServiceSettingsCommand: (
|
|
67
|
+
input: GetServiceSettingsCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const se_ListConfigurationManagersCommand: (
|
|
71
|
+
input: ListConfigurationManagersCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_ListQuickSetupTypesCommand: (
|
|
75
|
+
input: ListQuickSetupTypesCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
79
|
+
input: ListTagsForResourceCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_TagResourceCommand: (
|
|
83
|
+
input: TagResourceCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_UntagResourceCommand: (
|
|
87
|
+
input: UntagResourceCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_UpdateConfigurationDefinitionCommand: (
|
|
91
|
+
input: UpdateConfigurationDefinitionCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_UpdateConfigurationManagerCommand: (
|
|
95
|
+
input: UpdateConfigurationManagerCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_UpdateServiceSettingsCommand: (
|
|
99
|
+
input: UpdateServiceSettingsCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const de_CreateConfigurationManagerCommand: (
|
|
103
|
+
output: __HttpResponse,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<CreateConfigurationManagerCommandOutput>;
|
|
106
|
+
export declare const de_DeleteConfigurationManagerCommand: (
|
|
107
|
+
output: __HttpResponse,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<DeleteConfigurationManagerCommandOutput>;
|
|
110
|
+
export declare const de_GetConfigurationManagerCommand: (
|
|
111
|
+
output: __HttpResponse,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<GetConfigurationManagerCommandOutput>;
|
|
114
|
+
export declare const de_GetServiceSettingsCommand: (
|
|
115
|
+
output: __HttpResponse,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<GetServiceSettingsCommandOutput>;
|
|
118
|
+
export declare const de_ListConfigurationManagersCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<ListConfigurationManagersCommandOutput>;
|
|
122
|
+
export declare const de_ListQuickSetupTypesCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<ListQuickSetupTypesCommandOutput>;
|
|
126
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
130
|
+
export declare const de_TagResourceCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<TagResourceCommandOutput>;
|
|
134
|
+
export declare const de_UntagResourceCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
138
|
+
export declare const de_UpdateConfigurationDefinitionCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<UpdateConfigurationDefinitionCommandOutput>;
|
|
142
|
+
export declare const de_UpdateConfigurationManagerCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<UpdateConfigurationManagerCommandOutput>;
|
|
146
|
+
export declare const de_UpdateServiceSettingsCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<UpdateServiceSettingsCommandOutput>;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: SSMQuickSetupClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider: (
|
|
10
|
+
input: any
|
|
11
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
13
|
+
import("@smithy/types").UserAgent
|
|
14
|
+
>;
|
|
15
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
17
|
+
requestHandler:
|
|
18
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
19
|
+
| RequestHandler;
|
|
20
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
21
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
22
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
23
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
|
+
apiVersion: string;
|
|
26
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
27
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
29
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
31
|
+
disableHostPrefix: boolean;
|
|
32
|
+
serviceId: string;
|
|
33
|
+
logger: import("@smithy/types").Logger;
|
|
34
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?:
|
|
37
|
+
| import("@smithy/types").RetryStrategy
|
|
38
|
+
| import("@smithy/types").RetryStrategyV2
|
|
39
|
+
| undefined;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| ((
|
|
42
|
+
| string
|
|
43
|
+
| import("@smithy/types").Endpoint
|
|
44
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
45
|
+
| import("@smithy/types").EndpointV2
|
|
46
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
47
|
+
) &
|
|
48
|
+
(
|
|
49
|
+
| string
|
|
50
|
+
| import("@smithy/types").Provider<string>
|
|
51
|
+
| import("@smithy/types").Endpoint
|
|
52
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
53
|
+
| import("@smithy/types").EndpointV2
|
|
54
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
55
|
+
))
|
|
56
|
+
| undefined;
|
|
57
|
+
endpointProvider: (
|
|
58
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
59
|
+
context?: {
|
|
60
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
61
|
+
}
|
|
62
|
+
) => import("@smithy/types").EndpointV2;
|
|
63
|
+
tls?: boolean | undefined;
|
|
64
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMQuickSetupHttpAuthSchemeProvider;
|
|
66
|
+
credentials?:
|
|
67
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
68
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
69
|
+
| undefined;
|
|
70
|
+
signer?:
|
|
71
|
+
| import("@smithy/types").RequestSigner
|
|
72
|
+
| ((
|
|
73
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
74
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
75
|
+
| undefined;
|
|
76
|
+
signingEscapePath?: boolean | undefined;
|
|
77
|
+
systemClockOffset?: number | undefined;
|
|
78
|
+
signingRegion?: string | undefined;
|
|
79
|
+
signerConstructor?:
|
|
80
|
+
| (new (
|
|
81
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
82
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
83
|
+
) => import("@smithy/types").RequestSigner)
|
|
84
|
+
| undefined;
|
|
85
|
+
};
|