@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.
Files changed (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +303 -0
  3. package/dist-cjs/SSMQuickSetup.js +35 -0
  4. package/dist-cjs/SSMQuickSetupClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateConfigurationManagerCommand.js +29 -0
  8. package/dist-cjs/commands/DeleteConfigurationManagerCommand.js +28 -0
  9. package/dist-cjs/commands/GetConfigurationManagerCommand.js +29 -0
  10. package/dist-cjs/commands/GetServiceSettingsCommand.js +28 -0
  11. package/dist-cjs/commands/ListConfigurationManagersCommand.js +28 -0
  12. package/dist-cjs/commands/ListQuickSetupTypesCommand.js +28 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
  14. package/dist-cjs/commands/TagResourceCommand.js +29 -0
  15. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  16. package/dist-cjs/commands/UpdateConfigurationDefinitionCommand.js +28 -0
  17. package/dist-cjs/commands/UpdateConfigurationManagerCommand.js +28 -0
  18. package/dist-cjs/commands/UpdateServiceSettingsCommand.js +28 -0
  19. package/dist-cjs/commands/index.js +15 -0
  20. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  21. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  22. package/dist-cjs/endpoint/ruleset.js +7 -0
  23. package/dist-cjs/extensionConfiguration.js +2 -0
  24. package/dist-cjs/index.js +11 -0
  25. package/dist-cjs/models/SSMQuickSetupServiceException.js +12 -0
  26. package/dist-cjs/models/index.js +4 -0
  27. package/dist-cjs/models/models_0.js +131 -0
  28. package/dist-cjs/pagination/Interfaces.js +2 -0
  29. package/dist-cjs/pagination/ListConfigurationManagersPaginator.js +7 -0
  30. package/dist-cjs/pagination/index.js +5 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +494 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +49 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +34 -0
  36. package/dist-cjs/runtimeExtensions.js +25 -0
  37. package/dist-es/SSMQuickSetup.js +31 -0
  38. package/dist-es/SSMQuickSetupClient.js +46 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  41. package/dist-es/commands/CreateConfigurationManagerCommand.js +25 -0
  42. package/dist-es/commands/DeleteConfigurationManagerCommand.js +24 -0
  43. package/dist-es/commands/GetConfigurationManagerCommand.js +25 -0
  44. package/dist-es/commands/GetServiceSettingsCommand.js +24 -0
  45. package/dist-es/commands/ListConfigurationManagersCommand.js +24 -0
  46. package/dist-es/commands/ListQuickSetupTypesCommand.js +24 -0
  47. package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
  48. package/dist-es/commands/TagResourceCommand.js +25 -0
  49. package/dist-es/commands/UntagResourceCommand.js +24 -0
  50. package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +24 -0
  51. package/dist-es/commands/UpdateConfigurationManagerCommand.js +24 -0
  52. package/dist-es/commands/UpdateServiceSettingsCommand.js +24 -0
  53. package/dist-es/commands/index.js +12 -0
  54. package/dist-es/endpoint/EndpointParameters.js +14 -0
  55. package/dist-es/endpoint/endpointResolver.js +10 -0
  56. package/dist-es/endpoint/ruleset.js +4 -0
  57. package/dist-es/extensionConfiguration.js +1 -0
  58. package/dist-es/index.js +6 -0
  59. package/dist-es/models/SSMQuickSetupServiceException.js +8 -0
  60. package/dist-es/models/index.js +1 -0
  61. package/dist-es/models/models_0.js +117 -0
  62. package/dist-es/pagination/Interfaces.js +1 -0
  63. package/dist-es/pagination/ListConfigurationManagersPaginator.js +4 -0
  64. package/dist-es/pagination/index.js +2 -0
  65. package/dist-es/protocols/Aws_restJson1.js +467 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +44 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +30 -0
  70. package/dist-es/runtimeExtensions.js +21 -0
  71. package/dist-types/SSMQuickSetup.d.ts +100 -0
  72. package/dist-types/SSMQuickSetupClient.d.ts +183 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  75. package/dist-types/commands/CreateConfigurationManagerCommand.d.ts +93 -0
  76. package/dist-types/commands/DeleteConfigurationManagerCommand.d.ts +77 -0
  77. package/dist-types/commands/GetConfigurationManagerCommand.d.ts +109 -0
  78. package/dist-types/commands/GetServiceSettingsCommand.d.ts +72 -0
  79. package/dist-types/commands/ListConfigurationManagersCommand.d.ts +113 -0
  80. package/dist-types/commands/ListQuickSetupTypesCommand.d.ts +75 -0
  81. package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
  82. package/dist-types/commands/TagResourceCommand.d.ts +80 -0
  83. package/dist-types/commands/UntagResourceCommand.d.ts +80 -0
  84. package/dist-types/commands/UpdateConfigurationDefinitionCommand.d.ts +84 -0
  85. package/dist-types/commands/UpdateConfigurationManagerCommand.d.ts +79 -0
  86. package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +74 -0
  87. package/dist-types/commands/index.d.ts +12 -0
  88. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  89. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  90. package/dist-types/endpoint/ruleset.d.ts +2 -0
  91. package/dist-types/extensionConfiguration.d.ts +9 -0
  92. package/dist-types/index.d.ts +16 -0
  93. package/dist-types/models/SSMQuickSetupServiceException.d.ts +14 -0
  94. package/dist-types/models/index.d.ts +1 -0
  95. package/dist-types/models/models_0.d.ts +2014 -0
  96. package/dist-types/pagination/Interfaces.d.ts +8 -0
  97. package/dist-types/pagination/ListConfigurationManagersPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +2 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  101. package/dist-types/runtimeConfig.d.ts +45 -0
  102. package/dist-types/runtimeConfig.native.d.ts +44 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/SSMQuickSetup.d.ts +215 -0
  106. package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +191 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  109. package/dist-types/ts3.4/commands/CreateConfigurationManagerCommand.d.ts +40 -0
  110. package/dist-types/ts3.4/commands/DeleteConfigurationManagerCommand.d.ts +36 -0
  111. package/dist-types/ts3.4/commands/GetConfigurationManagerCommand.d.ts +40 -0
  112. package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +36 -0
  113. package/dist-types/ts3.4/commands/ListConfigurationManagersCommand.d.ts +40 -0
  114. package/dist-types/ts3.4/commands/ListQuickSetupTypesCommand.d.ts +36 -0
  115. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
  116. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  117. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  118. package/dist-types/ts3.4/commands/UpdateConfigurationDefinitionCommand.d.ts +36 -0
  119. package/dist-types/ts3.4/commands/UpdateConfigurationManagerCommand.d.ts +36 -0
  120. package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +35 -0
  121. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  122. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  123. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  124. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  125. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  126. package/dist-types/ts3.4/index.d.ts +9 -0
  127. package/dist-types/ts3.4/models/SSMQuickSetupServiceException.d.ts +9 -0
  128. package/dist-types/ts3.4/models/index.d.ts +1 -0
  129. package/dist-types/ts3.4/models/models_0.d.ts +201 -0
  130. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  131. package/dist-types/ts3.4/pagination/ListConfigurationManagersPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  133. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  139. package/package.json +101 -0
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./Interfaces"), exports);
5
+ tslib_1.__exportStar(require("./ListConfigurationManagersPaginator"), exports);
@@ -0,0 +1,494 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.de_UpdateServiceSettingsCommand = exports.de_UpdateConfigurationManagerCommand = exports.de_UpdateConfigurationDefinitionCommand = exports.de_UntagResourceCommand = exports.de_TagResourceCommand = exports.de_ListTagsForResourceCommand = exports.de_ListQuickSetupTypesCommand = exports.de_ListConfigurationManagersCommand = exports.de_GetServiceSettingsCommand = exports.de_GetConfigurationManagerCommand = exports.de_DeleteConfigurationManagerCommand = exports.de_CreateConfigurationManagerCommand = exports.se_UpdateServiceSettingsCommand = exports.se_UpdateConfigurationManagerCommand = exports.se_UpdateConfigurationDefinitionCommand = exports.se_UntagResourceCommand = exports.se_TagResourceCommand = exports.se_ListTagsForResourceCommand = exports.se_ListQuickSetupTypesCommand = exports.se_ListConfigurationManagersCommand = exports.se_GetServiceSettingsCommand = exports.se_GetConfigurationManagerCommand = exports.se_DeleteConfigurationManagerCommand = exports.se_CreateConfigurationManagerCommand = void 0;
4
+ const core_1 = require("@aws-sdk/core");
5
+ const core_2 = require("@smithy/core");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ const models_0_1 = require("../models/models_0");
8
+ const SSMQuickSetupServiceException_1 = require("../models/SSMQuickSetupServiceException");
9
+ const se_CreateConfigurationManagerCommand = async (input, context) => {
10
+ const b = (0, core_2.requestBuilder)(input, context);
11
+ const headers = {
12
+ "content-type": "application/json",
13
+ };
14
+ b.bp("/configurationManager");
15
+ let body;
16
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
17
+ ConfigurationDefinitions: (_) => (0, smithy_client_1._json)(_),
18
+ Description: [],
19
+ Name: [],
20
+ Tags: (_) => (0, smithy_client_1._json)(_),
21
+ }));
22
+ b.m("POST").h(headers).b(body);
23
+ return b.build();
24
+ };
25
+ exports.se_CreateConfigurationManagerCommand = se_CreateConfigurationManagerCommand;
26
+ const se_DeleteConfigurationManagerCommand = async (input, context) => {
27
+ const b = (0, core_2.requestBuilder)(input, context);
28
+ const headers = {};
29
+ b.bp("/configurationManager/{ManagerArn}");
30
+ b.p("ManagerArn", () => input.ManagerArn, "{ManagerArn}", false);
31
+ let body;
32
+ b.m("DELETE").h(headers).b(body);
33
+ return b.build();
34
+ };
35
+ exports.se_DeleteConfigurationManagerCommand = se_DeleteConfigurationManagerCommand;
36
+ const se_GetConfigurationManagerCommand = async (input, context) => {
37
+ const b = (0, core_2.requestBuilder)(input, context);
38
+ const headers = {};
39
+ b.bp("/configurationManager/{ManagerArn}");
40
+ b.p("ManagerArn", () => input.ManagerArn, "{ManagerArn}", false);
41
+ let body;
42
+ b.m("GET").h(headers).b(body);
43
+ return b.build();
44
+ };
45
+ exports.se_GetConfigurationManagerCommand = se_GetConfigurationManagerCommand;
46
+ const se_GetServiceSettingsCommand = async (input, context) => {
47
+ const b = (0, core_2.requestBuilder)(input, context);
48
+ const headers = {};
49
+ b.bp("/serviceSettings");
50
+ let body;
51
+ b.m("GET").h(headers).b(body);
52
+ return b.build();
53
+ };
54
+ exports.se_GetServiceSettingsCommand = se_GetServiceSettingsCommand;
55
+ const se_ListConfigurationManagersCommand = async (input, context) => {
56
+ const b = (0, core_2.requestBuilder)(input, context);
57
+ const headers = {
58
+ "content-type": "application/json",
59
+ };
60
+ b.bp("/listConfigurationManagers");
61
+ let body;
62
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
63
+ Filters: (_) => (0, smithy_client_1._json)(_),
64
+ MaxItems: [],
65
+ StartingToken: [],
66
+ }));
67
+ b.m("POST").h(headers).b(body);
68
+ return b.build();
69
+ };
70
+ exports.se_ListConfigurationManagersCommand = se_ListConfigurationManagersCommand;
71
+ const se_ListQuickSetupTypesCommand = async (input, context) => {
72
+ const b = (0, core_2.requestBuilder)(input, context);
73
+ const headers = {};
74
+ b.bp("/listQuickSetupTypes");
75
+ let body;
76
+ b.m("GET").h(headers).b(body);
77
+ return b.build();
78
+ };
79
+ exports.se_ListQuickSetupTypesCommand = se_ListQuickSetupTypesCommand;
80
+ const se_ListTagsForResourceCommand = async (input, context) => {
81
+ const b = (0, core_2.requestBuilder)(input, context);
82
+ const headers = {};
83
+ b.bp("/tags/{ResourceArn}");
84
+ b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
85
+ let body;
86
+ b.m("GET").h(headers).b(body);
87
+ return b.build();
88
+ };
89
+ exports.se_ListTagsForResourceCommand = se_ListTagsForResourceCommand;
90
+ const se_TagResourceCommand = async (input, context) => {
91
+ const b = (0, core_2.requestBuilder)(input, context);
92
+ const headers = {
93
+ "content-type": "application/json",
94
+ };
95
+ b.bp("/tags/{ResourceArn}");
96
+ b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
97
+ let body;
98
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
99
+ Tags: (_) => (0, smithy_client_1._json)(_),
100
+ }));
101
+ b.m("PUT").h(headers).b(body);
102
+ return b.build();
103
+ };
104
+ exports.se_TagResourceCommand = se_TagResourceCommand;
105
+ const se_UntagResourceCommand = async (input, context) => {
106
+ const b = (0, core_2.requestBuilder)(input, context);
107
+ const headers = {};
108
+ b.bp("/tags/{ResourceArn}");
109
+ b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
110
+ const query = (0, smithy_client_1.map)({
111
+ [_tK]: [
112
+ (0, smithy_client_1.expectNonNull)(input.TagKeys, `TagKeys`) != null,
113
+ () => (input[_TK] || []).map((_entry) => _entry),
114
+ ],
115
+ });
116
+ let body;
117
+ b.m("DELETE").h(headers).q(query).b(body);
118
+ return b.build();
119
+ };
120
+ exports.se_UntagResourceCommand = se_UntagResourceCommand;
121
+ const se_UpdateConfigurationDefinitionCommand = async (input, context) => {
122
+ const b = (0, core_2.requestBuilder)(input, context);
123
+ const headers = {
124
+ "content-type": "application/json",
125
+ };
126
+ b.bp("/configurationDefinition/{ManagerArn}/{Id}");
127
+ b.p("ManagerArn", () => input.ManagerArn, "{ManagerArn}", false);
128
+ b.p("Id", () => input.Id, "{Id}", false);
129
+ let body;
130
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
131
+ LocalDeploymentAdministrationRoleArn: [],
132
+ LocalDeploymentExecutionRoleName: [],
133
+ Parameters: (_) => (0, smithy_client_1._json)(_),
134
+ TypeVersion: [],
135
+ }));
136
+ b.m("PUT").h(headers).b(body);
137
+ return b.build();
138
+ };
139
+ exports.se_UpdateConfigurationDefinitionCommand = se_UpdateConfigurationDefinitionCommand;
140
+ const se_UpdateConfigurationManagerCommand = async (input, context) => {
141
+ const b = (0, core_2.requestBuilder)(input, context);
142
+ const headers = {
143
+ "content-type": "application/json",
144
+ };
145
+ b.bp("/configurationManager/{ManagerArn}");
146
+ b.p("ManagerArn", () => input.ManagerArn, "{ManagerArn}", false);
147
+ let body;
148
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
149
+ Description: [],
150
+ Name: [],
151
+ }));
152
+ b.m("PUT").h(headers).b(body);
153
+ return b.build();
154
+ };
155
+ exports.se_UpdateConfigurationManagerCommand = se_UpdateConfigurationManagerCommand;
156
+ const se_UpdateServiceSettingsCommand = async (input, context) => {
157
+ const b = (0, core_2.requestBuilder)(input, context);
158
+ const headers = {
159
+ "content-type": "application/json",
160
+ };
161
+ b.bp("/serviceSettings");
162
+ let body;
163
+ body = JSON.stringify((0, smithy_client_1.take)(input, {
164
+ ExplorerEnablingRoleArn: [],
165
+ }));
166
+ b.m("PUT").h(headers).b(body);
167
+ return b.build();
168
+ };
169
+ exports.se_UpdateServiceSettingsCommand = se_UpdateServiceSettingsCommand;
170
+ const de_CreateConfigurationManagerCommand = async (output, context) => {
171
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
172
+ return de_CommandError(output, context);
173
+ }
174
+ const contents = (0, smithy_client_1.map)({
175
+ $metadata: deserializeMetadata(output),
176
+ });
177
+ const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
178
+ const doc = (0, smithy_client_1.take)(data, {
179
+ ManagerArn: smithy_client_1.expectString,
180
+ });
181
+ Object.assign(contents, doc);
182
+ return contents;
183
+ };
184
+ exports.de_CreateConfigurationManagerCommand = de_CreateConfigurationManagerCommand;
185
+ const de_DeleteConfigurationManagerCommand = async (output, context) => {
186
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
187
+ return de_CommandError(output, context);
188
+ }
189
+ const contents = (0, smithy_client_1.map)({
190
+ $metadata: deserializeMetadata(output),
191
+ });
192
+ await (0, smithy_client_1.collectBody)(output.body, context);
193
+ return contents;
194
+ };
195
+ exports.de_DeleteConfigurationManagerCommand = de_DeleteConfigurationManagerCommand;
196
+ const de_GetConfigurationManagerCommand = async (output, context) => {
197
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
198
+ return de_CommandError(output, context);
199
+ }
200
+ const contents = (0, smithy_client_1.map)({
201
+ $metadata: deserializeMetadata(output),
202
+ });
203
+ const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
204
+ const doc = (0, smithy_client_1.take)(data, {
205
+ ConfigurationDefinitions: smithy_client_1._json,
206
+ CreatedAt: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
207
+ Description: smithy_client_1.expectString,
208
+ LastModifiedAt: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
209
+ ManagerArn: smithy_client_1.expectString,
210
+ Name: smithy_client_1.expectString,
211
+ StatusSummaries: (_) => de_StatusSummariesList(_, context),
212
+ Tags: smithy_client_1._json,
213
+ });
214
+ Object.assign(contents, doc);
215
+ return contents;
216
+ };
217
+ exports.de_GetConfigurationManagerCommand = de_GetConfigurationManagerCommand;
218
+ const de_GetServiceSettingsCommand = async (output, context) => {
219
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
220
+ return de_CommandError(output, context);
221
+ }
222
+ const contents = (0, smithy_client_1.map)({
223
+ $metadata: deserializeMetadata(output),
224
+ });
225
+ const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
226
+ const doc = (0, smithy_client_1.take)(data, {
227
+ ServiceSettings: smithy_client_1._json,
228
+ });
229
+ Object.assign(contents, doc);
230
+ return contents;
231
+ };
232
+ exports.de_GetServiceSettingsCommand = de_GetServiceSettingsCommand;
233
+ const de_ListConfigurationManagersCommand = async (output, context) => {
234
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
235
+ return de_CommandError(output, context);
236
+ }
237
+ const contents = (0, smithy_client_1.map)({
238
+ $metadata: deserializeMetadata(output),
239
+ });
240
+ const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
241
+ const doc = (0, smithy_client_1.take)(data, {
242
+ ConfigurationManagersList: (_) => de_ConfigurationManagerList(_, context),
243
+ NextToken: smithy_client_1.expectString,
244
+ });
245
+ Object.assign(contents, doc);
246
+ return contents;
247
+ };
248
+ exports.de_ListConfigurationManagersCommand = de_ListConfigurationManagersCommand;
249
+ const de_ListQuickSetupTypesCommand = async (output, context) => {
250
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
251
+ return de_CommandError(output, context);
252
+ }
253
+ const contents = (0, smithy_client_1.map)({
254
+ $metadata: deserializeMetadata(output),
255
+ });
256
+ const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
257
+ const doc = (0, smithy_client_1.take)(data, {
258
+ QuickSetupTypeList: smithy_client_1._json,
259
+ });
260
+ Object.assign(contents, doc);
261
+ return contents;
262
+ };
263
+ exports.de_ListQuickSetupTypesCommand = de_ListQuickSetupTypesCommand;
264
+ const de_ListTagsForResourceCommand = async (output, context) => {
265
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
266
+ return de_CommandError(output, context);
267
+ }
268
+ const contents = (0, smithy_client_1.map)({
269
+ $metadata: deserializeMetadata(output),
270
+ });
271
+ const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
272
+ const doc = (0, smithy_client_1.take)(data, {
273
+ Tags: smithy_client_1._json,
274
+ });
275
+ Object.assign(contents, doc);
276
+ return contents;
277
+ };
278
+ exports.de_ListTagsForResourceCommand = de_ListTagsForResourceCommand;
279
+ const de_TagResourceCommand = async (output, context) => {
280
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
281
+ return de_CommandError(output, context);
282
+ }
283
+ const contents = (0, smithy_client_1.map)({
284
+ $metadata: deserializeMetadata(output),
285
+ });
286
+ await (0, smithy_client_1.collectBody)(output.body, context);
287
+ return contents;
288
+ };
289
+ exports.de_TagResourceCommand = de_TagResourceCommand;
290
+ const de_UntagResourceCommand = async (output, context) => {
291
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
292
+ return de_CommandError(output, context);
293
+ }
294
+ const contents = (0, smithy_client_1.map)({
295
+ $metadata: deserializeMetadata(output),
296
+ });
297
+ await (0, smithy_client_1.collectBody)(output.body, context);
298
+ return contents;
299
+ };
300
+ exports.de_UntagResourceCommand = de_UntagResourceCommand;
301
+ const de_UpdateConfigurationDefinitionCommand = async (output, context) => {
302
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
303
+ return de_CommandError(output, context);
304
+ }
305
+ const contents = (0, smithy_client_1.map)({
306
+ $metadata: deserializeMetadata(output),
307
+ });
308
+ await (0, smithy_client_1.collectBody)(output.body, context);
309
+ return contents;
310
+ };
311
+ exports.de_UpdateConfigurationDefinitionCommand = de_UpdateConfigurationDefinitionCommand;
312
+ const de_UpdateConfigurationManagerCommand = async (output, context) => {
313
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
314
+ return de_CommandError(output, context);
315
+ }
316
+ const contents = (0, smithy_client_1.map)({
317
+ $metadata: deserializeMetadata(output),
318
+ });
319
+ await (0, smithy_client_1.collectBody)(output.body, context);
320
+ return contents;
321
+ };
322
+ exports.de_UpdateConfigurationManagerCommand = de_UpdateConfigurationManagerCommand;
323
+ const de_UpdateServiceSettingsCommand = async (output, context) => {
324
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
325
+ return de_CommandError(output, context);
326
+ }
327
+ const contents = (0, smithy_client_1.map)({
328
+ $metadata: deserializeMetadata(output),
329
+ });
330
+ await (0, smithy_client_1.collectBody)(output.body, context);
331
+ return contents;
332
+ };
333
+ exports.de_UpdateServiceSettingsCommand = de_UpdateServiceSettingsCommand;
334
+ const de_CommandError = async (output, context) => {
335
+ const parsedOutput = {
336
+ ...output,
337
+ body: await (0, core_1.parseJsonErrorBody)(output.body, context),
338
+ };
339
+ const errorCode = (0, core_1.loadRestJsonErrorCode)(output, parsedOutput.body);
340
+ switch (errorCode) {
341
+ case "AccessDeniedException":
342
+ case "com.amazonaws.ssmquicksetup#AccessDeniedException":
343
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
344
+ case "ConflictException":
345
+ case "com.amazonaws.ssmquicksetup#ConflictException":
346
+ throw await de_ConflictExceptionRes(parsedOutput, context);
347
+ case "InternalServerException":
348
+ case "com.amazonaws.ssmquicksetup#InternalServerException":
349
+ throw await de_InternalServerExceptionRes(parsedOutput, context);
350
+ case "ThrottlingException":
351
+ case "com.amazonaws.ssmquicksetup#ThrottlingException":
352
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
353
+ case "ValidationException":
354
+ case "com.amazonaws.ssmquicksetup#ValidationException":
355
+ throw await de_ValidationExceptionRes(parsedOutput, context);
356
+ case "ResourceNotFoundException":
357
+ case "com.amazonaws.ssmquicksetup#ResourceNotFoundException":
358
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
359
+ default:
360
+ const parsedBody = parsedOutput.body;
361
+ return throwDefaultError({
362
+ output,
363
+ parsedBody,
364
+ errorCode,
365
+ });
366
+ }
367
+ };
368
+ const throwDefaultError = (0, smithy_client_1.withBaseException)(SSMQuickSetupServiceException_1.SSMQuickSetupServiceException);
369
+ const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
370
+ const contents = (0, smithy_client_1.map)({});
371
+ const data = parsedOutput.body;
372
+ const doc = (0, smithy_client_1.take)(data, {
373
+ Message: smithy_client_1.expectString,
374
+ });
375
+ Object.assign(contents, doc);
376
+ const exception = new models_0_1.AccessDeniedException({
377
+ $metadata: deserializeMetadata(parsedOutput),
378
+ ...contents,
379
+ });
380
+ return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
381
+ };
382
+ const de_ConflictExceptionRes = async (parsedOutput, context) => {
383
+ const contents = (0, smithy_client_1.map)({});
384
+ const data = parsedOutput.body;
385
+ const doc = (0, smithy_client_1.take)(data, {
386
+ Message: smithy_client_1.expectString,
387
+ });
388
+ Object.assign(contents, doc);
389
+ const exception = new models_0_1.ConflictException({
390
+ $metadata: deserializeMetadata(parsedOutput),
391
+ ...contents,
392
+ });
393
+ return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
394
+ };
395
+ const de_InternalServerExceptionRes = async (parsedOutput, context) => {
396
+ const contents = (0, smithy_client_1.map)({});
397
+ const data = parsedOutput.body;
398
+ const doc = (0, smithy_client_1.take)(data, {
399
+ Message: smithy_client_1.expectString,
400
+ });
401
+ Object.assign(contents, doc);
402
+ const exception = new models_0_1.InternalServerException({
403
+ $metadata: deserializeMetadata(parsedOutput),
404
+ ...contents,
405
+ });
406
+ return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
407
+ };
408
+ const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
409
+ const contents = (0, smithy_client_1.map)({});
410
+ const data = parsedOutput.body;
411
+ const doc = (0, smithy_client_1.take)(data, {
412
+ Message: smithy_client_1.expectString,
413
+ });
414
+ Object.assign(contents, doc);
415
+ const exception = new models_0_1.ResourceNotFoundException({
416
+ $metadata: deserializeMetadata(parsedOutput),
417
+ ...contents,
418
+ });
419
+ return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
420
+ };
421
+ const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
422
+ const contents = (0, smithy_client_1.map)({});
423
+ const data = parsedOutput.body;
424
+ const doc = (0, smithy_client_1.take)(data, {
425
+ Message: smithy_client_1.expectString,
426
+ });
427
+ Object.assign(contents, doc);
428
+ const exception = new models_0_1.ThrottlingException({
429
+ $metadata: deserializeMetadata(parsedOutput),
430
+ ...contents,
431
+ });
432
+ return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
433
+ };
434
+ const de_ValidationExceptionRes = async (parsedOutput, context) => {
435
+ const contents = (0, smithy_client_1.map)({});
436
+ const data = parsedOutput.body;
437
+ const doc = (0, smithy_client_1.take)(data, {
438
+ Message: smithy_client_1.expectString,
439
+ });
440
+ Object.assign(contents, doc);
441
+ const exception = new models_0_1.ValidationException({
442
+ $metadata: deserializeMetadata(parsedOutput),
443
+ ...contents,
444
+ });
445
+ return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
446
+ };
447
+ const de_ConfigurationManagerList = (output, context) => {
448
+ const retVal = (output || [])
449
+ .filter((e) => e != null)
450
+ .map((entry) => {
451
+ return de_ConfigurationManagerSummary(entry, context);
452
+ });
453
+ return retVal;
454
+ };
455
+ const de_ConfigurationManagerSummary = (output, context) => {
456
+ return (0, smithy_client_1.take)(output, {
457
+ ConfigurationDefinitionSummaries: smithy_client_1._json,
458
+ Description: smithy_client_1.expectString,
459
+ ManagerArn: smithy_client_1.expectString,
460
+ Name: smithy_client_1.expectString,
461
+ StatusSummaries: (_) => de_StatusSummariesList(_, context),
462
+ });
463
+ };
464
+ const de_StatusSummariesList = (output, context) => {
465
+ const retVal = (output || [])
466
+ .filter((e) => e != null)
467
+ .map((entry) => {
468
+ return de_StatusSummary(entry, context);
469
+ });
470
+ return retVal;
471
+ };
472
+ const de_StatusSummary = (output, context) => {
473
+ return (0, smithy_client_1.take)(output, {
474
+ LastUpdatedAt: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
475
+ Status: smithy_client_1.expectString,
476
+ StatusDetails: smithy_client_1._json,
477
+ StatusMessage: smithy_client_1.expectString,
478
+ StatusType: smithy_client_1.expectString,
479
+ });
480
+ };
481
+ const deserializeMetadata = (output) => ({
482
+ httpStatusCode: output.statusCode,
483
+ requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
484
+ extendedRequestId: output.headers["x-amz-id-2"],
485
+ cfId: output.headers["x-amz-cf-id"],
486
+ });
487
+ const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then((body) => context.utf8Encoder(body));
488
+ const isSerializableHeaderValue = (value) => value !== undefined &&
489
+ value !== null &&
490
+ value !== "" &&
491
+ (!Object.getOwnPropertyNames(value).includes("length") || value.length != 0) &&
492
+ (!Object.getOwnPropertyNames(value).includes("size") || value.size != 0);
493
+ const _TK = "TagKeys";
494
+ const _tK = "tagKeys";
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getRuntimeConfig = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
+ const sha256_browser_1 = require("@aws-crypto/sha256-browser");
7
+ const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
8
+ const config_resolver_1 = require("@smithy/config-resolver");
9
+ const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
10
+ const invalid_dependency_1 = require("@smithy/invalid-dependency");
11
+ const util_body_length_browser_1 = require("@smithy/util-body-length-browser");
12
+ const util_retry_1 = require("@smithy/util-retry");
13
+ const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
14
+ const smithy_client_1 = require("@smithy/smithy-client");
15
+ const util_defaults_mode_browser_1 = require("@smithy/util-defaults-mode-browser");
16
+ const getRuntimeConfig = (config) => {
17
+ const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config);
18
+ const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
19
+ const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
20
+ return {
21
+ ...clientSharedValues,
22
+ ...config,
23
+ runtime: "browser",
24
+ defaultsMode,
25
+ bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
26
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
27
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ??
28
+ (0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
29
+ maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
30
+ region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
31
+ requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
32
+ retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE),
33
+ sha256: config?.sha256 ?? sha256_browser_1.Sha256,
34
+ streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
35
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
36
+ useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)),
37
+ };
38
+ };
39
+ exports.getRuntimeConfig = getRuntimeConfig;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getRuntimeConfig = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
+ const core_1 = require("@aws-sdk/core");
7
+ const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
8
+ const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
9
+ const config_resolver_1 = require("@smithy/config-resolver");
10
+ const hash_node_1 = require("@smithy/hash-node");
11
+ const middleware_retry_1 = require("@smithy/middleware-retry");
12
+ const node_config_provider_1 = require("@smithy/node-config-provider");
13
+ const node_http_handler_1 = require("@smithy/node-http-handler");
14
+ const util_body_length_node_1 = require("@smithy/util-body-length-node");
15
+ const util_retry_1 = require("@smithy/util-retry");
16
+ const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
17
+ const smithy_client_1 = require("@smithy/smithy-client");
18
+ const util_defaults_mode_node_1 = require("@smithy/util-defaults-mode-node");
19
+ const smithy_client_2 = require("@smithy/smithy-client");
20
+ const getRuntimeConfig = (config) => {
21
+ (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
22
+ const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
23
+ const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
24
+ const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
25
+ (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
26
+ return {
27
+ ...clientSharedValues,
28
+ ...config,
29
+ runtime: "node",
30
+ defaultsMode,
31
+ bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
32
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
33
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ??
34
+ (0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
35
+ maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
36
+ region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
37
+ requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
38
+ retryMode: config?.retryMode ??
39
+ (0, node_config_provider_1.loadConfig)({
40
+ ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
41
+ default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE,
42
+ }),
43
+ sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
44
+ streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
45
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
46
+ useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
47
+ };
48
+ };
49
+ exports.getRuntimeConfig = getRuntimeConfig;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getRuntimeConfig = void 0;
4
+ const sha256_js_1 = require("@aws-crypto/sha256-js");
5
+ const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
6
+ const getRuntimeConfig = (config) => {
7
+ const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config);
8
+ return {
9
+ ...browserDefaults,
10
+ ...config,
11
+ runtime: "react-native",
12
+ sha256: config?.sha256 ?? sha256_js_1.Sha256,
13
+ };
14
+ };
15
+ exports.getRuntimeConfig = getRuntimeConfig;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getRuntimeConfig = void 0;
4
+ const core_1 = require("@aws-sdk/core");
5
+ const smithy_client_1 = require("@smithy/smithy-client");
6
+ const url_parser_1 = require("@smithy/url-parser");
7
+ const util_base64_1 = require("@smithy/util-base64");
8
+ const util_utf8_1 = require("@smithy/util-utf8");
9
+ const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
10
+ const endpointResolver_1 = require("./endpoint/endpointResolver");
11
+ const getRuntimeConfig = (config) => {
12
+ return {
13
+ apiVersion: "2018-05-10",
14
+ base64Decoder: config?.base64Decoder ?? util_base64_1.fromBase64,
15
+ base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64,
16
+ disableHostPrefix: config?.disableHostPrefix ?? false,
17
+ endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
18
+ extensions: config?.extensions ?? [],
19
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? httpAuthSchemeProvider_1.defaultSSMQuickSetupHttpAuthSchemeProvider,
20
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
21
+ {
22
+ schemeId: "aws.auth#sigv4",
23
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
24
+ signer: new core_1.AwsSdkSigV4Signer(),
25
+ },
26
+ ],
27
+ logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
28
+ serviceId: config?.serviceId ?? "SSM QuickSetup",
29
+ urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
+ utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
31
+ utf8Encoder: config?.utf8Encoder ?? util_utf8_1.toUtf8,
32
+ };
33
+ };
34
+ exports.getRuntimeConfig = getRuntimeConfig;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.resolveRuntimeExtensions = void 0;
4
+ const region_config_resolver_1 = require("@aws-sdk/region-config-resolver");
5
+ const protocol_http_1 = require("@smithy/protocol-http");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ const httpAuthExtensionConfiguration_1 = require("./auth/httpAuthExtensionConfiguration");
8
+ const asPartial = (t) => t;
9
+ const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
10
+ const extensionConfiguration = {
11
+ ...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)),
12
+ ...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)),
13
+ ...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
14
+ ...asPartial((0, httpAuthExtensionConfiguration_1.getHttpAuthExtensionConfiguration)(runtimeConfig)),
15
+ };
16
+ extensions.forEach((extension) => extension.configure(extensionConfiguration));
17
+ return {
18
+ ...runtimeConfig,
19
+ ...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
20
+ ...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration),
21
+ ...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
22
+ ...(0, httpAuthExtensionConfiguration_1.resolveHttpAuthRuntimeConfig)(extensionConfiguration),
23
+ };
24
+ };
25
+ exports.resolveRuntimeExtensions = resolveRuntimeExtensions;