@aws-sdk/client-ssm-quicksetup 3.696.0 → 3.698.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/README.md +23 -7
- package/dist-cjs/SSMQuickSetup.js +4 -0
- package/dist-cjs/commands/GetConfigurationCommand.js +26 -0
- package/dist-cjs/commands/ListConfigurationsCommand.js +26 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/pagination/ListConfigurationsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +92 -1
- package/dist-es/SSMQuickSetup.js +4 -0
- package/dist-es/commands/GetConfigurationCommand.js +22 -0
- package/dist-es/commands/ListConfigurationsCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/pagination/ListConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +87 -0
- package/dist-types/SSMQuickSetup.d.ts +15 -0
- package/dist-types/SSMQuickSetupClient.d.ts +4 -2
- package/dist-types/commands/GetConfigurationCommand.d.ts +112 -0
- package/dist-types/commands/ListConfigurationsCommand.d.ts +124 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +184 -5
- package/dist-types/pagination/ListConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/SSMQuickSetup.d.ts +35 -0
- package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +39 -0
- package/dist-types/ts3.4/pagination/ListConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +1 -1
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetConfigurationInput,
|
|
5
|
+
GetConfigurationOutput,
|
|
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 GetConfigurationCommandInput extends GetConfigurationInput {}
|
|
15
|
+
export interface GetConfigurationCommandOutput
|
|
16
|
+
extends GetConfigurationOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetConfigurationCommandInput,
|
|
23
|
+
GetConfigurationCommandOutput,
|
|
24
|
+
SSMQuickSetupClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetConfigurationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetConfigurationCommandInput,
|
|
32
|
+
GetConfigurationCommandOutput,
|
|
33
|
+
SSMQuickSetupClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetConfigurationCommand extends GetConfigurationCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetConfigurationInput;
|
|
43
|
+
output: GetConfigurationOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetConfigurationCommandInput;
|
|
47
|
+
output: GetConfigurationCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListConfigurationsInput,
|
|
5
|
+
ListConfigurationsOutput,
|
|
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 ListConfigurationsCommandInput
|
|
15
|
+
extends ListConfigurationsInput {}
|
|
16
|
+
export interface ListConfigurationsCommandOutput
|
|
17
|
+
extends ListConfigurationsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListConfigurationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListConfigurationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListConfigurationsCommandInput,
|
|
24
|
+
ListConfigurationsCommandOutput,
|
|
25
|
+
SSMQuickSetupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListConfigurationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListConfigurationsCommandInput,
|
|
33
|
+
ListConfigurationsCommandOutput,
|
|
34
|
+
SSMQuickSetupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListConfigurationsCommand extends ListConfigurationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListConfigurationsInput;
|
|
44
|
+
output: ListConfigurationsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListConfigurationsCommandInput;
|
|
48
|
+
output: ListConfigurationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export * from "./CreateConfigurationManagerCommand";
|
|
2
2
|
export * from "./DeleteConfigurationManagerCommand";
|
|
3
|
+
export * from "./GetConfigurationCommand";
|
|
3
4
|
export * from "./GetConfigurationManagerCommand";
|
|
4
5
|
export * from "./GetServiceSettingsCommand";
|
|
5
6
|
export * from "./ListConfigurationManagersCommand";
|
|
7
|
+
export * from "./ListConfigurationsCommand";
|
|
6
8
|
export * from "./ListQuickSetupTypesCommand";
|
|
7
9
|
export * from "./ListTagsForResourceCommand";
|
|
8
10
|
export * from "./TagResourceCommand";
|
|
@@ -63,6 +63,18 @@ export interface ConfigurationManagerSummary {
|
|
|
63
63
|
| ConfigurationDefinitionSummary[]
|
|
64
64
|
| undefined;
|
|
65
65
|
}
|
|
66
|
+
export interface ConfigurationSummary {
|
|
67
|
+
Id?: string | undefined;
|
|
68
|
+
ManagerArn?: string | undefined;
|
|
69
|
+
ConfigurationDefinitionId?: string | undefined;
|
|
70
|
+
Type?: string | undefined;
|
|
71
|
+
TypeVersion?: string | undefined;
|
|
72
|
+
Region?: string | undefined;
|
|
73
|
+
Account?: string | undefined;
|
|
74
|
+
CreatedAt?: Date | undefined;
|
|
75
|
+
FirstClassParameters?: Record<string, string> | undefined;
|
|
76
|
+
StatusSummaries?: StatusSummary[] | undefined;
|
|
77
|
+
}
|
|
66
78
|
export declare class ConflictException extends __BaseException {
|
|
67
79
|
readonly name: "ConflictException";
|
|
68
80
|
readonly $fault: "client";
|
|
@@ -119,6 +131,22 @@ export interface Filter {
|
|
|
119
131
|
Key: string | undefined;
|
|
120
132
|
Values: string[] | undefined;
|
|
121
133
|
}
|
|
134
|
+
export interface GetConfigurationInput {
|
|
135
|
+
ConfigurationId: string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface GetConfigurationOutput {
|
|
138
|
+
Id?: string | undefined;
|
|
139
|
+
ManagerArn?: string | undefined;
|
|
140
|
+
ConfigurationDefinitionId?: string | undefined;
|
|
141
|
+
Type?: string | undefined;
|
|
142
|
+
TypeVersion?: string | undefined;
|
|
143
|
+
Account?: string | undefined;
|
|
144
|
+
Region?: string | undefined;
|
|
145
|
+
CreatedAt?: Date | undefined;
|
|
146
|
+
LastModifiedAt?: Date | undefined;
|
|
147
|
+
StatusSummaries?: StatusSummary[] | undefined;
|
|
148
|
+
Parameters?: Record<string, string> | undefined;
|
|
149
|
+
}
|
|
122
150
|
export interface GetConfigurationManagerInput {
|
|
123
151
|
ManagerArn: string | undefined;
|
|
124
152
|
}
|
|
@@ -147,6 +175,17 @@ export interface ListConfigurationManagersOutput {
|
|
|
147
175
|
ConfigurationManagersList?: ConfigurationManagerSummary[] | undefined;
|
|
148
176
|
NextToken?: string | undefined;
|
|
149
177
|
}
|
|
178
|
+
export interface ListConfigurationsInput {
|
|
179
|
+
StartingToken?: string | undefined;
|
|
180
|
+
MaxItems?: number | undefined;
|
|
181
|
+
Filters?: Filter[] | undefined;
|
|
182
|
+
ManagerArn?: string | undefined;
|
|
183
|
+
ConfigurationDefinitionId?: string | undefined;
|
|
184
|
+
}
|
|
185
|
+
export interface ListConfigurationsOutput {
|
|
186
|
+
ConfigurationsList?: ConfigurationSummary[] | undefined;
|
|
187
|
+
NextToken?: string | undefined;
|
|
188
|
+
}
|
|
150
189
|
export interface QuickSetupTypeOutput {
|
|
151
190
|
Type?: string | undefined;
|
|
152
191
|
LatestVersion?: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConfigurationsCommandInput,
|
|
4
|
+
ListConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListConfigurationsCommand";
|
|
6
|
+
import { SSMQuickSetupPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConfigurations: (
|
|
8
|
+
config: SSMQuickSetupPaginationConfiguration,
|
|
9
|
+
input: ListConfigurationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConfigurationsCommandOutput>;
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
DeleteConfigurationManagerCommandInput,
|
|
12
12
|
DeleteConfigurationManagerCommandOutput,
|
|
13
13
|
} from "../commands/DeleteConfigurationManagerCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetConfigurationCommandInput,
|
|
16
|
+
GetConfigurationCommandOutput,
|
|
17
|
+
} from "../commands/GetConfigurationCommand";
|
|
14
18
|
import {
|
|
15
19
|
GetConfigurationManagerCommandInput,
|
|
16
20
|
GetConfigurationManagerCommandOutput,
|
|
@@ -23,6 +27,10 @@ import {
|
|
|
23
27
|
ListConfigurationManagersCommandInput,
|
|
24
28
|
ListConfigurationManagersCommandOutput,
|
|
25
29
|
} from "../commands/ListConfigurationManagersCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListConfigurationsCommandInput,
|
|
32
|
+
ListConfigurationsCommandOutput,
|
|
33
|
+
} from "../commands/ListConfigurationsCommand";
|
|
26
34
|
import {
|
|
27
35
|
ListQuickSetupTypesCommandInput,
|
|
28
36
|
ListQuickSetupTypesCommandOutput,
|
|
@@ -59,6 +67,10 @@ export declare const se_DeleteConfigurationManagerCommand: (
|
|
|
59
67
|
input: DeleteConfigurationManagerCommandInput,
|
|
60
68
|
context: __SerdeContext
|
|
61
69
|
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const se_GetConfigurationCommand: (
|
|
71
|
+
input: GetConfigurationCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
62
74
|
export declare const se_GetConfigurationManagerCommand: (
|
|
63
75
|
input: GetConfigurationManagerCommandInput,
|
|
64
76
|
context: __SerdeContext
|
|
@@ -71,6 +83,10 @@ export declare const se_ListConfigurationManagersCommand: (
|
|
|
71
83
|
input: ListConfigurationManagersCommandInput,
|
|
72
84
|
context: __SerdeContext
|
|
73
85
|
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_ListConfigurationsCommand: (
|
|
87
|
+
input: ListConfigurationsCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
74
90
|
export declare const se_ListQuickSetupTypesCommand: (
|
|
75
91
|
input: ListQuickSetupTypesCommandInput,
|
|
76
92
|
context: __SerdeContext
|
|
@@ -107,6 +123,10 @@ export declare const de_DeleteConfigurationManagerCommand: (
|
|
|
107
123
|
output: __HttpResponse,
|
|
108
124
|
context: __SerdeContext
|
|
109
125
|
) => Promise<DeleteConfigurationManagerCommandOutput>;
|
|
126
|
+
export declare const de_GetConfigurationCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<GetConfigurationCommandOutput>;
|
|
110
130
|
export declare const de_GetConfigurationManagerCommand: (
|
|
111
131
|
output: __HttpResponse,
|
|
112
132
|
context: __SerdeContext
|
|
@@ -119,6 +139,10 @@ export declare const de_ListConfigurationManagersCommand: (
|
|
|
119
139
|
output: __HttpResponse,
|
|
120
140
|
context: __SerdeContext
|
|
121
141
|
) => Promise<ListConfigurationManagersCommandOutput>;
|
|
142
|
+
export declare const de_ListConfigurationsCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<ListConfigurationsCommandOutput>;
|
|
122
146
|
export declare const de_ListQuickSetupTypesCommand: (
|
|
123
147
|
output: __HttpResponse,
|
|
124
148
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-quicksetup",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Quicksetup Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.698.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|