@aws-sdk/client-ssm-quicksetup 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +173 -128
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateConfigurationManagerCommand.js +2 -2
- package/dist-es/commands/DeleteConfigurationManagerCommand.js +2 -2
- package/dist-es/commands/GetConfigurationCommand.js +2 -2
- package/dist-es/commands/GetConfigurationManagerCommand.js +2 -2
- package/dist-es/commands/GetServiceSettingsCommand.js +2 -2
- package/dist-es/commands/ListConfigurationManagersCommand.js +2 -2
- package/dist-es/commands/ListConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListQuickSetupTypesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +2 -2
- package/dist-es/commands/UpdateConfigurationManagerCommand.js +2 -2
- package/dist-es/commands/UpdateServiceSettingsCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +95 -101
- package/dist-types/SSMQuickSetupClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +52 -67
- package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +51 -68
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateConfigurationManager } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateConfigurationManager$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateConfigurationManagerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateConfigurationManagerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "CreateConfigurationManager", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "CreateConfigurationManagerCommand")
|
|
14
|
-
.sc(CreateConfigurationManager)
|
|
14
|
+
.sc(CreateConfigurationManager$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteConfigurationManager } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConfigurationManager$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConfigurationManagerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConfigurationManagerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "DeleteConfigurationManager", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "DeleteConfigurationManagerCommand")
|
|
14
|
-
.sc(DeleteConfigurationManager)
|
|
14
|
+
.sc(DeleteConfigurationManager$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "GetConfiguration", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "GetConfigurationCommand")
|
|
14
|
-
.sc(GetConfiguration)
|
|
14
|
+
.sc(GetConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetConfigurationManager } from "../schemas/schemas_0";
|
|
4
|
+
import { GetConfigurationManager$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetConfigurationManagerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetConfigurationManagerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "GetConfigurationManager", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "GetConfigurationManagerCommand")
|
|
14
|
-
.sc(GetConfigurationManager)
|
|
14
|
+
.sc(GetConfigurationManager$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetServiceSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { GetServiceSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetServiceSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetServiceSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "GetServiceSettings", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "GetServiceSettingsCommand")
|
|
14
|
-
.sc(GetServiceSettings)
|
|
14
|
+
.sc(GetServiceSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurationManagers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurationManagers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationManagersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationManagersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "ListConfigurationManagers", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "ListConfigurationManagersCommand")
|
|
14
|
-
.sc(ListConfigurationManagers)
|
|
14
|
+
.sc(ListConfigurationManagers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "ListConfigurations", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "ListConfigurationsCommand")
|
|
14
|
-
.sc(ListConfigurations)
|
|
14
|
+
.sc(ListConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListQuickSetupTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListQuickSetupTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListQuickSetupTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListQuickSetupTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "ListQuickSetupTypes", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "ListQuickSetupTypesCommand")
|
|
14
|
-
.sc(ListQuickSetupTypes)
|
|
14
|
+
.sc(ListQuickSetupTypes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "ListTagsForResource", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "TagResource", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "UntagResource", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateConfigurationDefinition } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateConfigurationDefinition$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateConfigurationDefinitionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateConfigurationDefinitionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "UpdateConfigurationDefinition", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "UpdateConfigurationDefinitionCommand")
|
|
14
|
-
.sc(UpdateConfigurationDefinition)
|
|
14
|
+
.sc(UpdateConfigurationDefinition$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateConfigurationManager } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateConfigurationManager$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateConfigurationManagerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateConfigurationManagerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "UpdateConfigurationManager", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "UpdateConfigurationManagerCommand")
|
|
14
|
-
.sc(UpdateConfigurationManager)
|
|
14
|
+
.sc(UpdateConfigurationManager$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateServiceSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateServiceSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateServiceSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateServiceSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("QuickSetup", "UpdateServiceSettings", {})
|
|
13
13
|
.n("SSMQuickSetupClient", "UpdateServiceSettingsCommand")
|
|
14
|
-
.sc(UpdateServiceSettings)
|
|
14
|
+
.sc(UpdateServiceSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.ssmquicksetup",
|
|
29
|
+
version: "2018-05-10",
|
|
30
|
+
serviceTarget: "QuickSetup",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "SSM QuickSetup",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -105,11 +105,11 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmquicksetup";
|
|
|
105
105
|
const _tK = "tagKeys";
|
|
106
106
|
const n0 = "com.amazonaws.ssmquicksetup";
|
|
107
107
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
108
|
-
import { AccessDeniedException
|
|
109
|
-
import { SSMQuickSetupServiceException
|
|
110
|
-
export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
111
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
112
|
-
export var ConfigurationDefinition = [
|
|
108
|
+
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
109
|
+
import { SSMQuickSetupServiceException } from "../models/SSMQuickSetupServiceException";
|
|
110
|
+
export var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
111
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
112
|
+
export var ConfigurationDefinition$ = [
|
|
113
113
|
3,
|
|
114
114
|
n0,
|
|
115
115
|
_CD,
|
|
@@ -117,7 +117,7 @@ export var ConfigurationDefinition = [
|
|
|
117
117
|
[_T, _P, _TV, _LDERN, _LDARA, _I],
|
|
118
118
|
[0, 128 | 0, 0, 0, 0, 0],
|
|
119
119
|
];
|
|
120
|
-
export var ConfigurationDefinitionInput = [
|
|
120
|
+
export var ConfigurationDefinitionInput$ = [
|
|
121
121
|
3,
|
|
122
122
|
n0,
|
|
123
123
|
_CDI,
|
|
@@ -125,7 +125,7 @@ export var ConfigurationDefinitionInput = [
|
|
|
125
125
|
[_T, _P, _TV, _LDERN, _LDARA],
|
|
126
126
|
[0, 128 | 0, 0, 0, 0],
|
|
127
127
|
];
|
|
128
|
-
export var ConfigurationDefinitionSummary = [
|
|
128
|
+
export var ConfigurationDefinitionSummary$ = [
|
|
129
129
|
3,
|
|
130
130
|
n0,
|
|
131
131
|
_CDS,
|
|
@@ -133,7 +133,7 @@ export var ConfigurationDefinitionSummary = [
|
|
|
133
133
|
[_I, _T, _TV, _FCP],
|
|
134
134
|
[0, 0, 0, 128 | 0],
|
|
135
135
|
];
|
|
136
|
-
export var ConfigurationManagerSummary = [
|
|
136
|
+
export var ConfigurationManagerSummary$ = [
|
|
137
137
|
3,
|
|
138
138
|
n0,
|
|
139
139
|
_CMS,
|
|
@@ -141,7 +141,7 @@ export var ConfigurationManagerSummary = [
|
|
|
141
141
|
[_MA, _D, _N, _SS, _CDSo],
|
|
142
142
|
[0, 0, 0, () => StatusSummariesList, () => ConfigurationDefinitionSummariesList],
|
|
143
143
|
];
|
|
144
|
-
export var ConfigurationSummary = [
|
|
144
|
+
export var ConfigurationSummary$ = [
|
|
145
145
|
3,
|
|
146
146
|
n0,
|
|
147
147
|
_CS,
|
|
@@ -149,9 +149,9 @@ export var ConfigurationSummary = [
|
|
|
149
149
|
[_I, _MA, _CDIo, _T, _TV, _R, _A, _CA, _FCP, _SS],
|
|
150
150
|
[0, 0, 0, 0, 0, 0, 0, 5, 128 | 0, () => StatusSummariesList],
|
|
151
151
|
];
|
|
152
|
-
export var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
153
|
-
TypeRegistry.for(n0).registerError(ConflictException
|
|
154
|
-
export var CreateConfigurationManagerInput = [
|
|
152
|
+
export var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
153
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
154
|
+
export var CreateConfigurationManagerInput$ = [
|
|
155
155
|
3,
|
|
156
156
|
n0,
|
|
157
157
|
_CCMI,
|
|
@@ -159,12 +159,12 @@ export var CreateConfigurationManagerInput = [
|
|
|
159
159
|
[_N, _D, _CDo, _Ta],
|
|
160
160
|
[0, 0, () => ConfigurationDefinitionsInputList, [() => TagsMap, 0]],
|
|
161
161
|
];
|
|
162
|
-
export var CreateConfigurationManagerOutput = [3, n0, _CCMO, 0, [_MA], [0]];
|
|
163
|
-
export var DeleteConfigurationManagerInput = [3, n0, _DCMI, 0, [_MA], [[0, 1]]];
|
|
164
|
-
export var Filter = [3, n0, _F, 0, [_K, _V], [0, 64 | 0]];
|
|
165
|
-
export var GetConfigurationInput = [3, n0, _GCI, 0, [_CI], [[0, 1]]];
|
|
166
|
-
export var GetConfigurationManagerInput = [3, n0, _GCMI, 0, [_MA], [[0, 1]]];
|
|
167
|
-
export var GetConfigurationManagerOutput = [
|
|
162
|
+
export var CreateConfigurationManagerOutput$ = [3, n0, _CCMO, 0, [_MA], [0]];
|
|
163
|
+
export var DeleteConfigurationManagerInput$ = [3, n0, _DCMI, 0, [_MA], [[0, 1]]];
|
|
164
|
+
export var Filter$ = [3, n0, _F, 0, [_K, _V], [0, 64 | 0]];
|
|
165
|
+
export var GetConfigurationInput$ = [3, n0, _GCI, 0, [_CI], [[0, 1]]];
|
|
166
|
+
export var GetConfigurationManagerInput$ = [3, n0, _GCMI, 0, [_MA], [[0, 1]]];
|
|
167
|
+
export var GetConfigurationManagerOutput$ = [
|
|
168
168
|
3,
|
|
169
169
|
n0,
|
|
170
170
|
_GCMO,
|
|
@@ -172,7 +172,7 @@ export var GetConfigurationManagerOutput = [
|
|
|
172
172
|
[_MA, _D, _N, _CA, _LMA, _SS, _CDo, _Ta],
|
|
173
173
|
[0, 0, 0, 5, 5, () => StatusSummariesList, () => ConfigurationDefinitionsList, [() => TagsMap, 0]],
|
|
174
174
|
];
|
|
175
|
-
export var GetConfigurationOutput = [
|
|
175
|
+
export var GetConfigurationOutput$ = [
|
|
176
176
|
3,
|
|
177
177
|
n0,
|
|
178
178
|
_GCO,
|
|
@@ -180,10 +180,10 @@ export var GetConfigurationOutput = [
|
|
|
180
180
|
[_I, _MA, _CDIo, _T, _TV, _A, _R, _CA, _LMA, _SS, _P],
|
|
181
181
|
[0, 0, 0, 0, 0, 0, 0, 5, 5, () => StatusSummariesList, 128 | 0],
|
|
182
182
|
];
|
|
183
|
-
export var GetServiceSettingsOutput = [3, n0, _GSSO, 0, [_SSe], [() => ServiceSettings]];
|
|
184
|
-
export var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
185
|
-
TypeRegistry.for(n0).registerError(InternalServerException
|
|
186
|
-
export var ListConfigurationManagersInput = [
|
|
183
|
+
export var GetServiceSettingsOutput$ = [3, n0, _GSSO, 0, [_SSe], [() => ServiceSettings$]];
|
|
184
|
+
export var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
185
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
186
|
+
export var ListConfigurationManagersInput$ = [
|
|
187
187
|
3,
|
|
188
188
|
n0,
|
|
189
189
|
_LCMI,
|
|
@@ -191,7 +191,7 @@ export var ListConfigurationManagersInput = [
|
|
|
191
191
|
[_ST, _MI, _Fi],
|
|
192
192
|
[0, 1, () => FiltersList],
|
|
193
193
|
];
|
|
194
|
-
export var ListConfigurationManagersOutput = [
|
|
194
|
+
export var ListConfigurationManagersOutput$ = [
|
|
195
195
|
3,
|
|
196
196
|
n0,
|
|
197
197
|
_LCMO,
|
|
@@ -199,7 +199,7 @@ export var ListConfigurationManagersOutput = [
|
|
|
199
199
|
[_CML, _NT],
|
|
200
200
|
[() => ConfigurationManagerList, 0],
|
|
201
201
|
];
|
|
202
|
-
export var ListConfigurationsInput = [
|
|
202
|
+
export var ListConfigurationsInput$ = [
|
|
203
203
|
3,
|
|
204
204
|
n0,
|
|
205
205
|
_LCI,
|
|
@@ -207,7 +207,7 @@ export var ListConfigurationsInput = [
|
|
|
207
207
|
[_ST, _MI, _Fi, _MA, _CDIo],
|
|
208
208
|
[0, 1, () => FiltersList, 0, 0],
|
|
209
209
|
];
|
|
210
|
-
export var ListConfigurationsOutput = [
|
|
210
|
+
export var ListConfigurationsOutput$ = [
|
|
211
211
|
3,
|
|
212
212
|
n0,
|
|
213
213
|
_LCO,
|
|
@@ -215,16 +215,16 @@ export var ListConfigurationsOutput = [
|
|
|
215
215
|
[_CL, _NT],
|
|
216
216
|
[() => ConfigurationsList, 0],
|
|
217
217
|
];
|
|
218
|
-
export var ListQuickSetupTypesOutput = [3, n0, _LQSTO, 0, [_QSTL], [() => QuickSetupTypeList]];
|
|
219
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
220
|
-
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [[() => Tags, 0]]];
|
|
221
|
-
export var QuickSetupTypeOutput = [3, n0, _QSTO, 0, [_T, _LV], [0, 0]];
|
|
222
|
-
export var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
|
|
223
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
224
|
-
export var ServiceSettings = [3, n0, _SSe, 0, [_EERA], [0]];
|
|
225
|
-
export var StatusSummary = [3, n0, _SSt, 0, [_STt, _S, _SM, _LUA, _SD], [0, 0, 0, 5, 128 | 0]];
|
|
226
|
-
export var TagEntry = [3, n0, _TE, 8, [_K, _Va], [0, 0]];
|
|
227
|
-
export var TagResourceInput = [
|
|
218
|
+
export var ListQuickSetupTypesOutput$ = [3, n0, _LQSTO, 0, [_QSTL], [() => QuickSetupTypeList]];
|
|
219
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
220
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta], [[() => Tags, 0]]];
|
|
221
|
+
export var QuickSetupTypeOutput$ = [3, n0, _QSTO, 0, [_T, _LV], [0, 0]];
|
|
222
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
|
|
223
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
224
|
+
export var ServiceSettings$ = [3, n0, _SSe, 0, [_EERA], [0]];
|
|
225
|
+
export var StatusSummary$ = [3, n0, _SSt, 0, [_STt, _S, _SM, _LUA, _SD], [0, 0, 0, 5, 128 | 0]];
|
|
226
|
+
export var TagEntry$ = [3, n0, _TE, 8, [_K, _Va], [0, 0]];
|
|
227
|
+
export var TagResourceInput$ = [
|
|
228
228
|
3,
|
|
229
229
|
n0,
|
|
230
230
|
_TRI,
|
|
@@ -235,9 +235,9 @@ export var TagResourceInput = [
|
|
|
235
235
|
[() => TagsMap, 0],
|
|
236
236
|
],
|
|
237
237
|
];
|
|
238
|
-
export var ThrottlingException = [-3, n0, _TEh, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
239
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
240
|
-
export var UntagResourceInput = [
|
|
238
|
+
export var ThrottlingException$ = [-3, n0, _TEh, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
239
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
240
|
+
export var UntagResourceInput$ = [
|
|
241
241
|
3,
|
|
242
242
|
n0,
|
|
243
243
|
_URI,
|
|
@@ -248,7 +248,7 @@ export var UntagResourceInput = [
|
|
|
248
248
|
[64 | 0, { [_hQ]: _tK }],
|
|
249
249
|
],
|
|
250
250
|
];
|
|
251
|
-
export var UpdateConfigurationDefinitionInput = [
|
|
251
|
+
export var UpdateConfigurationDefinitionInput$ = [
|
|
252
252
|
3,
|
|
253
253
|
n0,
|
|
254
254
|
_UCDI,
|
|
@@ -256,142 +256,136 @@ export var UpdateConfigurationDefinitionInput = [
|
|
|
256
256
|
[_MA, _I, _TV, _P, _LDERN, _LDARA],
|
|
257
257
|
[[0, 1], [0, 1], 0, 128 | 0, 0, 0],
|
|
258
258
|
];
|
|
259
|
-
export var UpdateConfigurationManagerInput = [3, n0, _UCMI, 0, [_MA, _N, _D], [[0, 1], 0, 0]];
|
|
260
|
-
export var UpdateServiceSettingsInput = [3, n0, _USSI, 0, [_EERA], [0]];
|
|
261
|
-
export var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
262
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
263
|
-
|
|
264
|
-
export var SSMQuickSetupServiceException = [-3, _sm, "SSMQuickSetupServiceException", 0, [], []];
|
|
265
|
-
TypeRegistry.for(_sm).registerError(SSMQuickSetupServiceException
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
];
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
export var
|
|
281
|
-
export var TagKeys = 64 | 0;
|
|
282
|
-
export var Tags = [1, n0, _Ta, 8, [() => TagEntry, 0]];
|
|
283
|
-
export var ConfigurationParametersMap = 128 | 0;
|
|
284
|
-
export var StatusDetails = 128 | 0;
|
|
285
|
-
export var TagsMap = [2, n0, _TM, 8, 0, 0];
|
|
286
|
-
export var CreateConfigurationManager = [
|
|
259
|
+
export var UpdateConfigurationManagerInput$ = [3, n0, _UCMI, 0, [_MA, _N, _D], [[0, 1], 0, 0]];
|
|
260
|
+
export var UpdateServiceSettingsInput$ = [3, n0, _USSI, 0, [_EERA], [0]];
|
|
261
|
+
export var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
262
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
263
|
+
var __Unit = "unit";
|
|
264
|
+
export var SSMQuickSetupServiceException$ = [-3, _sm, "SSMQuickSetupServiceException", 0, [], []];
|
|
265
|
+
TypeRegistry.for(_sm).registerError(SSMQuickSetupServiceException$, SSMQuickSetupServiceException);
|
|
266
|
+
var ConfigurationDefinitionsInputList = [1, n0, _CDIL, 0, () => ConfigurationDefinitionInput$];
|
|
267
|
+
var ConfigurationDefinitionsList = [1, n0, _CDL, 0, () => ConfigurationDefinition$];
|
|
268
|
+
var ConfigurationDefinitionSummariesList = [1, n0, _CDSL, 0, () => ConfigurationDefinitionSummary$];
|
|
269
|
+
var ConfigurationManagerList = [1, n0, _CMLo, 0, () => ConfigurationManagerSummary$];
|
|
270
|
+
var ConfigurationsList = [1, n0, _CL, 0, () => ConfigurationSummary$];
|
|
271
|
+
var FiltersList = [1, n0, _FL, 0, () => Filter$];
|
|
272
|
+
var FilterValues = 64 | 0;
|
|
273
|
+
var QuickSetupTypeList = [1, n0, _QSTL, 0, () => QuickSetupTypeOutput$];
|
|
274
|
+
var StatusSummariesList = [1, n0, _SSL, 0, () => StatusSummary$];
|
|
275
|
+
var TagKeys = 64 | 0;
|
|
276
|
+
var Tags = [1, n0, _Ta, 8, [() => TagEntry$, 0]];
|
|
277
|
+
var ConfigurationParametersMap = 128 | 0;
|
|
278
|
+
var StatusDetails = 128 | 0;
|
|
279
|
+
var TagsMap = [2, n0, _TM, 8, 0, 0];
|
|
280
|
+
export var CreateConfigurationManager$ = [
|
|
287
281
|
9,
|
|
288
282
|
n0,
|
|
289
283
|
_CCM,
|
|
290
284
|
{ [_h]: ["POST", "/configurationManager", 200] },
|
|
291
|
-
() => CreateConfigurationManagerInput
|
|
292
|
-
() => CreateConfigurationManagerOutput
|
|
285
|
+
() => CreateConfigurationManagerInput$,
|
|
286
|
+
() => CreateConfigurationManagerOutput$,
|
|
293
287
|
];
|
|
294
|
-
export var DeleteConfigurationManager = [
|
|
288
|
+
export var DeleteConfigurationManager$ = [
|
|
295
289
|
9,
|
|
296
290
|
n0,
|
|
297
291
|
_DCM,
|
|
298
292
|
{ [_h]: ["DELETE", "/configurationManager/{ManagerArn}", 200] },
|
|
299
|
-
() => DeleteConfigurationManagerInput
|
|
293
|
+
() => DeleteConfigurationManagerInput$,
|
|
300
294
|
() => __Unit,
|
|
301
295
|
];
|
|
302
|
-
export var GetConfiguration = [
|
|
296
|
+
export var GetConfiguration$ = [
|
|
303
297
|
9,
|
|
304
298
|
n0,
|
|
305
299
|
_GC,
|
|
306
300
|
{ [_h]: ["GET", "/getConfiguration/{ConfigurationId}", 200] },
|
|
307
|
-
() => GetConfigurationInput
|
|
308
|
-
() => GetConfigurationOutput
|
|
301
|
+
() => GetConfigurationInput$,
|
|
302
|
+
() => GetConfigurationOutput$,
|
|
309
303
|
];
|
|
310
|
-
export var GetConfigurationManager = [
|
|
304
|
+
export var GetConfigurationManager$ = [
|
|
311
305
|
9,
|
|
312
306
|
n0,
|
|
313
307
|
_GCM,
|
|
314
308
|
{ [_h]: ["GET", "/configurationManager/{ManagerArn}", 200] },
|
|
315
|
-
() => GetConfigurationManagerInput
|
|
316
|
-
() => GetConfigurationManagerOutput
|
|
309
|
+
() => GetConfigurationManagerInput$,
|
|
310
|
+
() => GetConfigurationManagerOutput$,
|
|
317
311
|
];
|
|
318
|
-
export var GetServiceSettings = [
|
|
312
|
+
export var GetServiceSettings$ = [
|
|
319
313
|
9,
|
|
320
314
|
n0,
|
|
321
315
|
_GSS,
|
|
322
316
|
{ [_h]: ["GET", "/serviceSettings", 200] },
|
|
323
317
|
() => __Unit,
|
|
324
|
-
() => GetServiceSettingsOutput
|
|
318
|
+
() => GetServiceSettingsOutput$,
|
|
325
319
|
];
|
|
326
|
-
export var ListConfigurationManagers = [
|
|
320
|
+
export var ListConfigurationManagers$ = [
|
|
327
321
|
9,
|
|
328
322
|
n0,
|
|
329
323
|
_LCM,
|
|
330
324
|
{ [_h]: ["POST", "/listConfigurationManagers", 200] },
|
|
331
|
-
() => ListConfigurationManagersInput
|
|
332
|
-
() => ListConfigurationManagersOutput
|
|
325
|
+
() => ListConfigurationManagersInput$,
|
|
326
|
+
() => ListConfigurationManagersOutput$,
|
|
333
327
|
];
|
|
334
|
-
export var ListConfigurations = [
|
|
328
|
+
export var ListConfigurations$ = [
|
|
335
329
|
9,
|
|
336
330
|
n0,
|
|
337
331
|
_LC,
|
|
338
332
|
{ [_h]: ["POST", "/listConfigurations", 200] },
|
|
339
|
-
() => ListConfigurationsInput
|
|
340
|
-
() => ListConfigurationsOutput
|
|
333
|
+
() => ListConfigurationsInput$,
|
|
334
|
+
() => ListConfigurationsOutput$,
|
|
341
335
|
];
|
|
342
|
-
export var ListQuickSetupTypes = [
|
|
336
|
+
export var ListQuickSetupTypes$ = [
|
|
343
337
|
9,
|
|
344
338
|
n0,
|
|
345
339
|
_LQST,
|
|
346
340
|
{ [_h]: ["GET", "/listQuickSetupTypes", 200] },
|
|
347
341
|
() => __Unit,
|
|
348
|
-
() => ListQuickSetupTypesOutput
|
|
342
|
+
() => ListQuickSetupTypesOutput$,
|
|
349
343
|
];
|
|
350
|
-
export var ListTagsForResource = [
|
|
344
|
+
export var ListTagsForResource$ = [
|
|
351
345
|
9,
|
|
352
346
|
n0,
|
|
353
347
|
_LTFR,
|
|
354
348
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] },
|
|
355
|
-
() => ListTagsForResourceRequest
|
|
356
|
-
() => ListTagsForResourceResponse
|
|
349
|
+
() => ListTagsForResourceRequest$,
|
|
350
|
+
() => ListTagsForResourceResponse$,
|
|
357
351
|
];
|
|
358
|
-
export var TagResource = [
|
|
352
|
+
export var TagResource$ = [
|
|
359
353
|
9,
|
|
360
354
|
n0,
|
|
361
355
|
_TR,
|
|
362
356
|
{ [_h]: ["PUT", "/tags/{ResourceArn}", 200] },
|
|
363
|
-
() => TagResourceInput
|
|
357
|
+
() => TagResourceInput$,
|
|
364
358
|
() => __Unit,
|
|
365
359
|
];
|
|
366
|
-
export var UntagResource = [
|
|
360
|
+
export var UntagResource$ = [
|
|
367
361
|
9,
|
|
368
362
|
n0,
|
|
369
363
|
_UR,
|
|
370
364
|
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
|
|
371
|
-
() => UntagResourceInput
|
|
365
|
+
() => UntagResourceInput$,
|
|
372
366
|
() => __Unit,
|
|
373
367
|
];
|
|
374
|
-
export var UpdateConfigurationDefinition = [
|
|
368
|
+
export var UpdateConfigurationDefinition$ = [
|
|
375
369
|
9,
|
|
376
370
|
n0,
|
|
377
371
|
_UCD,
|
|
378
372
|
{ [_h]: ["PUT", "/configurationDefinition/{ManagerArn}/{Id}", 200] },
|
|
379
|
-
() => UpdateConfigurationDefinitionInput
|
|
373
|
+
() => UpdateConfigurationDefinitionInput$,
|
|
380
374
|
() => __Unit,
|
|
381
375
|
];
|
|
382
|
-
export var UpdateConfigurationManager = [
|
|
376
|
+
export var UpdateConfigurationManager$ = [
|
|
383
377
|
9,
|
|
384
378
|
n0,
|
|
385
379
|
_UCM,
|
|
386
380
|
{ [_h]: ["PUT", "/configurationManager/{ManagerArn}", 200] },
|
|
387
|
-
() => UpdateConfigurationManagerInput
|
|
381
|
+
() => UpdateConfigurationManagerInput$,
|
|
388
382
|
() => __Unit,
|
|
389
383
|
];
|
|
390
|
-
export var UpdateServiceSettings = [
|
|
384
|
+
export var UpdateServiceSettings$ = [
|
|
391
385
|
9,
|
|
392
386
|
n0,
|
|
393
387
|
_USS,
|
|
394
388
|
{ [_h]: ["PUT", "/serviceSettings", 200] },
|
|
395
|
-
() => UpdateServiceSettingsInput
|
|
389
|
+
() => UpdateServiceSettingsInput$,
|
|
396
390
|
() => __Unit,
|
|
397
391
|
];
|