@aws-sdk/client-codeconnections 3.1074.0 → 3.1076.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 +1319 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CodeConnectionsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -239
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -853
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultCodeConnectionsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "codeconnections",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultCodeConnectionsHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1141 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://codeconnections-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://codeconnections-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://codeconnections.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://codeconnections.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class CodeConnectionsServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, CodeConnectionsServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends CodeConnectionsServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class LimitExceededException extends CodeConnectionsServiceException {
|
|
154
|
+
name = "LimitExceededException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "LimitExceededException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class ResourceNotFoundException extends CodeConnectionsServiceException {
|
|
168
|
+
name = "ResourceNotFoundException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "ResourceNotFoundException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class ResourceUnavailableException extends CodeConnectionsServiceException {
|
|
182
|
+
name = "ResourceUnavailableException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ResourceUnavailableException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class ConcurrentModificationException extends CodeConnectionsServiceException {
|
|
196
|
+
name = "ConcurrentModificationException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ConcurrentModificationException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class InternalServerException extends CodeConnectionsServiceException {
|
|
210
|
+
name = "InternalServerException";
|
|
211
|
+
$fault = "server";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "InternalServerException",
|
|
216
|
+
$fault: "server",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class InvalidInputException extends CodeConnectionsServiceException {
|
|
224
|
+
name = "InvalidInputException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "InvalidInputException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class ResourceAlreadyExistsException extends CodeConnectionsServiceException {
|
|
238
|
+
name = "ResourceAlreadyExistsException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ResourceAlreadyExistsException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class ThrottlingException extends CodeConnectionsServiceException {
|
|
252
|
+
name = "ThrottlingException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Message;
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "ThrottlingException",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
262
|
+
this.Message = opts.Message;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class SyncConfigurationStillExistsException extends CodeConnectionsServiceException {
|
|
266
|
+
name = "SyncConfigurationStillExistsException";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
Message;
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "SyncConfigurationStillExistsException",
|
|
272
|
+
$fault: "client",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
Object.setPrototypeOf(this, SyncConfigurationStillExistsException.prototype);
|
|
276
|
+
this.Message = opts.Message;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
class UnsupportedProviderTypeException extends CodeConnectionsServiceException {
|
|
280
|
+
name = "UnsupportedProviderTypeException";
|
|
281
|
+
$fault = "client";
|
|
282
|
+
Message;
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "UnsupportedProviderTypeException",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
Object.setPrototypeOf(this, UnsupportedProviderTypeException.prototype);
|
|
290
|
+
this.Message = opts.Message;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
class ConflictException extends CodeConnectionsServiceException {
|
|
294
|
+
name = "ConflictException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
Message;
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "ConflictException",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
304
|
+
this.Message = opts.Message;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
class UnsupportedOperationException extends CodeConnectionsServiceException {
|
|
308
|
+
name = "UnsupportedOperationException";
|
|
309
|
+
$fault = "client";
|
|
310
|
+
Message;
|
|
311
|
+
constructor(opts) {
|
|
312
|
+
super({
|
|
313
|
+
name: "UnsupportedOperationException",
|
|
314
|
+
$fault: "client",
|
|
315
|
+
...opts,
|
|
316
|
+
});
|
|
317
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
318
|
+
this.Message = opts.Message;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
class ConditionalCheckFailedException extends CodeConnectionsServiceException {
|
|
322
|
+
name = "ConditionalCheckFailedException";
|
|
323
|
+
$fault = "client";
|
|
324
|
+
Message;
|
|
325
|
+
constructor(opts) {
|
|
326
|
+
super({
|
|
327
|
+
name: "ConditionalCheckFailedException",
|
|
328
|
+
$fault: "client",
|
|
329
|
+
...opts,
|
|
330
|
+
});
|
|
331
|
+
Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
|
|
332
|
+
this.Message = opts.Message;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
class UpdateOutOfSyncException extends CodeConnectionsServiceException {
|
|
336
|
+
name = "UpdateOutOfSyncException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
Message;
|
|
339
|
+
constructor(opts) {
|
|
340
|
+
super({
|
|
341
|
+
name: "UpdateOutOfSyncException",
|
|
342
|
+
$fault: "client",
|
|
343
|
+
...opts,
|
|
344
|
+
});
|
|
345
|
+
Object.setPrototypeOf(this, UpdateOutOfSyncException.prototype);
|
|
346
|
+
this.Message = opts.Message;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
class RetryLatestCommitFailedException extends CodeConnectionsServiceException {
|
|
350
|
+
name = "RetryLatestCommitFailedException";
|
|
351
|
+
$fault = "server";
|
|
352
|
+
Message;
|
|
353
|
+
constructor(opts) {
|
|
354
|
+
super({
|
|
355
|
+
name: "RetryLatestCommitFailedException",
|
|
356
|
+
$fault: "server",
|
|
357
|
+
...opts,
|
|
358
|
+
});
|
|
359
|
+
Object.setPrototypeOf(this, RetryLatestCommitFailedException.prototype);
|
|
360
|
+
this.Message = opts.Message;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
class SyncBlockerDoesNotExistException extends CodeConnectionsServiceException {
|
|
364
|
+
name = "SyncBlockerDoesNotExistException";
|
|
365
|
+
$fault = "client";
|
|
366
|
+
Message;
|
|
367
|
+
constructor(opts) {
|
|
368
|
+
super({
|
|
369
|
+
name: "SyncBlockerDoesNotExistException",
|
|
370
|
+
$fault: "client",
|
|
371
|
+
...opts,
|
|
372
|
+
});
|
|
373
|
+
Object.setPrototypeOf(this, SyncBlockerDoesNotExistException.prototype);
|
|
374
|
+
this.Message = opts.Message;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
const _ADE = "AccessDeniedException";
|
|
379
|
+
const _B = "Branch";
|
|
380
|
+
const _C = "Connection";
|
|
381
|
+
const _CA = "ConnectionArn";
|
|
382
|
+
const _CAr = "CreatedAt";
|
|
383
|
+
const _CC = "CreateConnection";
|
|
384
|
+
const _CCFE = "ConditionalCheckFailedException";
|
|
385
|
+
const _CCI = "CreateConnectionInput";
|
|
386
|
+
const _CCO = "CreateConnectionOutput";
|
|
387
|
+
const _CE = "ConflictException";
|
|
388
|
+
const _CF = "ConfigFile";
|
|
389
|
+
const _CH = "CreateHost";
|
|
390
|
+
const _CHI = "CreateHostInput";
|
|
391
|
+
const _CHO = "CreateHostOutput";
|
|
392
|
+
const _CL = "ConnectionList";
|
|
393
|
+
const _CME = "ConcurrentModificationException";
|
|
394
|
+
const _CN = "ConnectionName";
|
|
395
|
+
const _CR = "CreatedReason";
|
|
396
|
+
const _CRL = "CreateRepositoryLink";
|
|
397
|
+
const _CRLI = "CreateRepositoryLinkInput";
|
|
398
|
+
const _CRLO = "CreateRepositoryLinkOutput";
|
|
399
|
+
const _CS = "ConnectionStatus";
|
|
400
|
+
const _CSC = "CreateSyncConfiguration";
|
|
401
|
+
const _CSCI = "CreateSyncConfigurationInput";
|
|
402
|
+
const _CSCO = "CreateSyncConfigurationOutput";
|
|
403
|
+
const _Co = "Connections";
|
|
404
|
+
const _Con = "Contexts";
|
|
405
|
+
const _D = "Directory";
|
|
406
|
+
const _DC = "DeleteConnection";
|
|
407
|
+
const _DCI = "DeleteConnectionInput";
|
|
408
|
+
const _DCO = "DeleteConnectionOutput";
|
|
409
|
+
const _DH = "DeleteHost";
|
|
410
|
+
const _DHI = "DeleteHostInput";
|
|
411
|
+
const _DHO = "DeleteHostOutput";
|
|
412
|
+
const _DRL = "DeleteRepositoryLink";
|
|
413
|
+
const _DRLI = "DeleteRepositoryLinkInput";
|
|
414
|
+
const _DRLO = "DeleteRepositoryLinkOutput";
|
|
415
|
+
const _DS = "DesiredState";
|
|
416
|
+
const _DSC = "DeleteSyncConfiguration";
|
|
417
|
+
const _DSCI = "DeleteSyncConfigurationInput";
|
|
418
|
+
const _DSCO = "DeleteSyncConfigurationOutput";
|
|
419
|
+
const _E = "Events";
|
|
420
|
+
const _EI = "ExternalId";
|
|
421
|
+
const _EKA = "EncryptionKeyArn";
|
|
422
|
+
const _Ev = "Event";
|
|
423
|
+
const _GC = "GetConnection";
|
|
424
|
+
const _GCI = "GetConnectionInput";
|
|
425
|
+
const _GCO = "GetConnectionOutput";
|
|
426
|
+
const _GH = "GetHost";
|
|
427
|
+
const _GHI = "GetHostInput";
|
|
428
|
+
const _GHO = "GetHostOutput";
|
|
429
|
+
const _GRL = "GetRepositoryLink";
|
|
430
|
+
const _GRLI = "GetRepositoryLinkInput";
|
|
431
|
+
const _GRLO = "GetRepositoryLinkOutput";
|
|
432
|
+
const _GRSS = "GetRepositorySyncStatus";
|
|
433
|
+
const _GRSSI = "GetRepositorySyncStatusInput";
|
|
434
|
+
const _GRSSIe = "GetResourceSyncStatusInput";
|
|
435
|
+
const _GRSSO = "GetRepositorySyncStatusOutput";
|
|
436
|
+
const _GRSSOe = "GetResourceSyncStatusOutput";
|
|
437
|
+
const _GRSSe = "GetResourceSyncStatus";
|
|
438
|
+
const _GSBS = "GetSyncBlockerSummary";
|
|
439
|
+
const _GSBSI = "GetSyncBlockerSummaryInput";
|
|
440
|
+
const _GSBSO = "GetSyncBlockerSummaryOutput";
|
|
441
|
+
const _GSC = "GetSyncConfiguration";
|
|
442
|
+
const _GSCI = "GetSyncConfigurationInput";
|
|
443
|
+
const _GSCO = "GetSyncConfigurationOutput";
|
|
444
|
+
const _H = "Host";
|
|
445
|
+
const _HA = "HostArn";
|
|
446
|
+
const _HAF = "HostArnFilter";
|
|
447
|
+
const _HL = "HostList";
|
|
448
|
+
const _Ho = "Hosts";
|
|
449
|
+
const _I = "Id";
|
|
450
|
+
const _IIE = "InvalidInputException";
|
|
451
|
+
const _IR = "InitialRevision";
|
|
452
|
+
const _ISE = "InternalServerException";
|
|
453
|
+
const _K = "Key";
|
|
454
|
+
const _LB = "LatestBlockers";
|
|
455
|
+
const _LC = "ListConnections";
|
|
456
|
+
const _LCI = "ListConnectionsInput";
|
|
457
|
+
const _LCO = "ListConnectionsOutput";
|
|
458
|
+
const _LEE = "LimitExceededException";
|
|
459
|
+
const _LH = "ListHosts";
|
|
460
|
+
const _LHI = "ListHostsInput";
|
|
461
|
+
const _LHO = "ListHostsOutput";
|
|
462
|
+
const _LRL = "ListRepositoryLinks";
|
|
463
|
+
const _LRLI = "ListRepositoryLinksInput";
|
|
464
|
+
const _LRLO = "ListRepositoryLinksOutput";
|
|
465
|
+
const _LRSD = "ListRepositorySyncDefinitions";
|
|
466
|
+
const _LRSDI = "ListRepositorySyncDefinitionsInput";
|
|
467
|
+
const _LRSDO = "ListRepositorySyncDefinitionsOutput";
|
|
468
|
+
const _LS = "LatestSync";
|
|
469
|
+
const _LSBL = "LatestSyncBlockerList";
|
|
470
|
+
const _LSC = "ListSyncConfigurations";
|
|
471
|
+
const _LSCI = "ListSyncConfigurationsInput";
|
|
472
|
+
const _LSCO = "ListSyncConfigurationsOutput";
|
|
473
|
+
const _LSS = "LatestSuccessfulSync";
|
|
474
|
+
const _LTFR = "ListTagsForResource";
|
|
475
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
476
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
477
|
+
const _M = "Message";
|
|
478
|
+
const _MR = "MaxResults";
|
|
479
|
+
const _N = "Name";
|
|
480
|
+
const _NT = "NextToken";
|
|
481
|
+
const _OAI = "OwnerAccountId";
|
|
482
|
+
const _OI = "OwnerId";
|
|
483
|
+
const _P = "Parent";
|
|
484
|
+
const _PDS = "PublishDeploymentStatus";
|
|
485
|
+
const _PE = "ProviderEndpoint";
|
|
486
|
+
const _PRC = "PullRequestComment";
|
|
487
|
+
const _PRN = "ParentResourceName";
|
|
488
|
+
const _PT = "ProviderType";
|
|
489
|
+
const _PTF = "ProviderTypeFilter";
|
|
490
|
+
const _R = "Revision";
|
|
491
|
+
const _RA = "RoleArn";
|
|
492
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
493
|
+
const _RAe = "ResourceArn";
|
|
494
|
+
const _RAes = "ResolvedAt";
|
|
495
|
+
const _RL = "RepositoryLinks";
|
|
496
|
+
const _RLA = "RepositoryLinkArn";
|
|
497
|
+
const _RLCFE = "RetryLatestCommitFailedException";
|
|
498
|
+
const _RLI = "RepositoryLinkInfo";
|
|
499
|
+
const _RLIe = "RepositoryLinkId";
|
|
500
|
+
const _RLL = "RepositoryLinkList";
|
|
501
|
+
const _RN = "RepositoryName";
|
|
502
|
+
const _RNFE = "ResourceNotFoundException";
|
|
503
|
+
const _RNe = "ResourceName";
|
|
504
|
+
const _RR = "ResolvedReason";
|
|
505
|
+
const _RSA = "RepositorySyncAttempt";
|
|
506
|
+
const _RSAe = "ResourceSyncAttempt";
|
|
507
|
+
const _RSD = "RepositorySyncDefinitions";
|
|
508
|
+
const _RSDL = "RepositorySyncDefinitionList";
|
|
509
|
+
const _RSDe = "RepositorySyncDefinition";
|
|
510
|
+
const _RSE = "RepositorySyncEvent";
|
|
511
|
+
const _RSEL = "RepositorySyncEventList";
|
|
512
|
+
const _RSELe = "ResourceSyncEventList";
|
|
513
|
+
const _RSEe = "ResourceSyncEvent";
|
|
514
|
+
const _RUE = "ResourceUnavailableException";
|
|
515
|
+
const _S = "Status";
|
|
516
|
+
const _SA = "StartedAt";
|
|
517
|
+
const _SB = "SyncBlocker";
|
|
518
|
+
const _SBC = "SyncBlockerContext";
|
|
519
|
+
const _SBCL = "SyncBlockerContextList";
|
|
520
|
+
const _SBDNEE = "SyncBlockerDoesNotExistException";
|
|
521
|
+
const _SBS = "SyncBlockerSummary";
|
|
522
|
+
const _SC = "SyncConfiguration";
|
|
523
|
+
const _SCL = "SyncConfigurationList";
|
|
524
|
+
const _SCSEE = "SyncConfigurationStillExistsException";
|
|
525
|
+
const _SCy = "SyncConfigurations";
|
|
526
|
+
const _SGI = "SecurityGroupIds";
|
|
527
|
+
const _SI = "SubnetIds";
|
|
528
|
+
const _SM = "StatusMessage";
|
|
529
|
+
const _ST = "SyncType";
|
|
530
|
+
const _Sh = "Sha";
|
|
531
|
+
const _T = "Tags";
|
|
532
|
+
const _TC = "TlsCertificate";
|
|
533
|
+
const _TE = "ThrottlingException";
|
|
534
|
+
const _TK = "TagKeys";
|
|
535
|
+
const _TL = "TagList";
|
|
536
|
+
const _TR = "TargetRevision";
|
|
537
|
+
const _TRI = "TagResourceInput";
|
|
538
|
+
const _TRO = "TagResourceOutput";
|
|
539
|
+
const _TRUO = "TriggerResourceUpdateOn";
|
|
540
|
+
const _TRa = "TagResource";
|
|
541
|
+
const _Ta = "Target";
|
|
542
|
+
const _Tag = "Tag";
|
|
543
|
+
const _Ti = "Time";
|
|
544
|
+
const _Ty = "Type";
|
|
545
|
+
const _UH = "UpdateHost";
|
|
546
|
+
const _UHI = "UpdateHostInput";
|
|
547
|
+
const _UHO = "UpdateHostOutput";
|
|
548
|
+
const _UOE = "UnsupportedOperationException";
|
|
549
|
+
const _UOOSE = "UpdateOutOfSyncException";
|
|
550
|
+
const _UPTE = "UnsupportedProviderTypeException";
|
|
551
|
+
const _UR = "UntagResource";
|
|
552
|
+
const _URI = "UntagResourceInput";
|
|
553
|
+
const _URL = "UpdateRepositoryLink";
|
|
554
|
+
const _URLI = "UpdateRepositoryLinkInput";
|
|
555
|
+
const _URLO = "UpdateRepositoryLinkOutput";
|
|
556
|
+
const _URO = "UntagResourceOutput";
|
|
557
|
+
const _USB = "UpdateSyncBlocker";
|
|
558
|
+
const _USBI = "UpdateSyncBlockerInput";
|
|
559
|
+
const _USBO = "UpdateSyncBlockerOutput";
|
|
560
|
+
const _USC = "UpdateSyncConfiguration";
|
|
561
|
+
const _USCI = "UpdateSyncConfigurationInput";
|
|
562
|
+
const _USCO = "UpdateSyncConfigurationOutput";
|
|
563
|
+
const _V = "Value";
|
|
564
|
+
const _VC = "VpcConfiguration";
|
|
565
|
+
const _VI = "VpcId";
|
|
566
|
+
const _c = "client";
|
|
567
|
+
const _e = "error";
|
|
568
|
+
const _hE = "httpError";
|
|
569
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.codeconnections";
|
|
570
|
+
const _se = "server";
|
|
571
|
+
const n0 = "com.amazonaws.codeconnections";
|
|
572
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
573
|
+
var CodeConnectionsServiceException$ = [-3, _s, "CodeConnectionsServiceException", 0, [], []];
|
|
574
|
+
_s_registry.registerError(CodeConnectionsServiceException$, CodeConnectionsServiceException);
|
|
575
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
576
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
577
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
578
|
+
[_M],
|
|
579
|
+
[0]
|
|
580
|
+
];
|
|
581
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
582
|
+
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
583
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
584
|
+
[_M],
|
|
585
|
+
[0]
|
|
586
|
+
];
|
|
587
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
588
|
+
var ConditionalCheckFailedException$ = [-3, n0, _CCFE,
|
|
589
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
590
|
+
[_M],
|
|
591
|
+
[0]
|
|
592
|
+
];
|
|
593
|
+
n0_registry.registerError(ConditionalCheckFailedException$, ConditionalCheckFailedException);
|
|
594
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
595
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
596
|
+
[_M],
|
|
597
|
+
[0]
|
|
598
|
+
];
|
|
599
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
600
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
601
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
602
|
+
[_M],
|
|
603
|
+
[0]
|
|
604
|
+
];
|
|
605
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
606
|
+
var InvalidInputException$ = [-3, n0, _IIE,
|
|
607
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
608
|
+
[_M],
|
|
609
|
+
[0]
|
|
610
|
+
];
|
|
611
|
+
n0_registry.registerError(InvalidInputException$, InvalidInputException);
|
|
612
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
613
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
614
|
+
[_M],
|
|
615
|
+
[0]
|
|
616
|
+
];
|
|
617
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
618
|
+
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
619
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
620
|
+
[_M],
|
|
621
|
+
[0]
|
|
622
|
+
];
|
|
623
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
624
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
625
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
626
|
+
[_M],
|
|
627
|
+
[0]
|
|
628
|
+
];
|
|
629
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
630
|
+
var ResourceUnavailableException$ = [-3, n0, _RUE,
|
|
631
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
632
|
+
[_M],
|
|
633
|
+
[0]
|
|
634
|
+
];
|
|
635
|
+
n0_registry.registerError(ResourceUnavailableException$, ResourceUnavailableException);
|
|
636
|
+
var RetryLatestCommitFailedException$ = [-3, n0, _RLCFE,
|
|
637
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
638
|
+
[_M],
|
|
639
|
+
[0]
|
|
640
|
+
];
|
|
641
|
+
n0_registry.registerError(RetryLatestCommitFailedException$, RetryLatestCommitFailedException);
|
|
642
|
+
var SyncBlockerDoesNotExistException$ = [-3, n0, _SBDNEE,
|
|
643
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
644
|
+
[_M],
|
|
645
|
+
[0]
|
|
646
|
+
];
|
|
647
|
+
n0_registry.registerError(SyncBlockerDoesNotExistException$, SyncBlockerDoesNotExistException);
|
|
648
|
+
var SyncConfigurationStillExistsException$ = [-3, n0, _SCSEE,
|
|
649
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
650
|
+
[_M],
|
|
651
|
+
[0]
|
|
652
|
+
];
|
|
653
|
+
n0_registry.registerError(SyncConfigurationStillExistsException$, SyncConfigurationStillExistsException);
|
|
654
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
655
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
656
|
+
[_M],
|
|
657
|
+
[0]
|
|
658
|
+
];
|
|
659
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
660
|
+
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
661
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
662
|
+
[_M],
|
|
663
|
+
[0]
|
|
664
|
+
];
|
|
665
|
+
n0_registry.registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
666
|
+
var UnsupportedProviderTypeException$ = [-3, n0, _UPTE,
|
|
667
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
668
|
+
[_M],
|
|
669
|
+
[0]
|
|
670
|
+
];
|
|
671
|
+
n0_registry.registerError(UnsupportedProviderTypeException$, UnsupportedProviderTypeException);
|
|
672
|
+
var UpdateOutOfSyncException$ = [-3, n0, _UOOSE,
|
|
673
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
674
|
+
[_M],
|
|
675
|
+
[0]
|
|
676
|
+
];
|
|
677
|
+
n0_registry.registerError(UpdateOutOfSyncException$, UpdateOutOfSyncException);
|
|
678
|
+
const errorTypeRegistries = [
|
|
679
|
+
_s_registry,
|
|
680
|
+
n0_registry,
|
|
681
|
+
];
|
|
682
|
+
var Connection$ = [3, n0, _C,
|
|
683
|
+
0,
|
|
684
|
+
[_CN, _CA, _PT, _OAI, _CS, _HA],
|
|
685
|
+
[0, 0, 0, 0, 0, 0]
|
|
686
|
+
];
|
|
687
|
+
var CreateConnectionInput$ = [3, n0, _CCI,
|
|
688
|
+
0,
|
|
689
|
+
[_CN, _PT, _T, _HA],
|
|
690
|
+
[0, 0, () => TagList, 0], 1
|
|
691
|
+
];
|
|
692
|
+
var CreateConnectionOutput$ = [3, n0, _CCO,
|
|
693
|
+
0,
|
|
694
|
+
[_CA, _T],
|
|
695
|
+
[0, () => TagList], 1
|
|
696
|
+
];
|
|
697
|
+
var CreateHostInput$ = [3, n0, _CHI,
|
|
698
|
+
0,
|
|
699
|
+
[_N, _PT, _PE, _VC, _T],
|
|
700
|
+
[0, 0, 0, () => VpcConfiguration$, () => TagList], 3
|
|
701
|
+
];
|
|
702
|
+
var CreateHostOutput$ = [3, n0, _CHO,
|
|
703
|
+
0,
|
|
704
|
+
[_HA, _T],
|
|
705
|
+
[0, () => TagList]
|
|
706
|
+
];
|
|
707
|
+
var CreateRepositoryLinkInput$ = [3, n0, _CRLI,
|
|
708
|
+
0,
|
|
709
|
+
[_CA, _OI, _RN, _EKA, _T],
|
|
710
|
+
[0, 0, 0, 0, () => TagList], 3
|
|
711
|
+
];
|
|
712
|
+
var CreateRepositoryLinkOutput$ = [3, n0, _CRLO,
|
|
713
|
+
0,
|
|
714
|
+
[_RLI],
|
|
715
|
+
[() => RepositoryLinkInfo$], 1
|
|
716
|
+
];
|
|
717
|
+
var CreateSyncConfigurationInput$ = [3, n0, _CSCI,
|
|
718
|
+
0,
|
|
719
|
+
[_B, _CF, _RLIe, _RNe, _RA, _ST, _PDS, _TRUO, _PRC],
|
|
720
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0], 6
|
|
721
|
+
];
|
|
722
|
+
var CreateSyncConfigurationOutput$ = [3, n0, _CSCO,
|
|
723
|
+
0,
|
|
724
|
+
[_SC],
|
|
725
|
+
[() => SyncConfiguration$], 1
|
|
726
|
+
];
|
|
727
|
+
var DeleteConnectionInput$ = [3, n0, _DCI,
|
|
728
|
+
0,
|
|
729
|
+
[_CA],
|
|
730
|
+
[0], 1
|
|
731
|
+
];
|
|
732
|
+
var DeleteConnectionOutput$ = [3, n0, _DCO,
|
|
733
|
+
0,
|
|
734
|
+
[],
|
|
735
|
+
[]
|
|
736
|
+
];
|
|
737
|
+
var DeleteHostInput$ = [3, n0, _DHI,
|
|
738
|
+
0,
|
|
739
|
+
[_HA],
|
|
740
|
+
[0], 1
|
|
741
|
+
];
|
|
742
|
+
var DeleteHostOutput$ = [3, n0, _DHO,
|
|
743
|
+
0,
|
|
744
|
+
[],
|
|
745
|
+
[]
|
|
746
|
+
];
|
|
747
|
+
var DeleteRepositoryLinkInput$ = [3, n0, _DRLI,
|
|
748
|
+
0,
|
|
749
|
+
[_RLIe],
|
|
750
|
+
[0], 1
|
|
751
|
+
];
|
|
752
|
+
var DeleteRepositoryLinkOutput$ = [3, n0, _DRLO,
|
|
753
|
+
0,
|
|
754
|
+
[],
|
|
755
|
+
[]
|
|
756
|
+
];
|
|
757
|
+
var DeleteSyncConfigurationInput$ = [3, n0, _DSCI,
|
|
758
|
+
0,
|
|
759
|
+
[_ST, _RNe],
|
|
760
|
+
[0, 0], 2
|
|
761
|
+
];
|
|
762
|
+
var DeleteSyncConfigurationOutput$ = [3, n0, _DSCO,
|
|
763
|
+
0,
|
|
764
|
+
[],
|
|
765
|
+
[]
|
|
766
|
+
];
|
|
767
|
+
var GetConnectionInput$ = [3, n0, _GCI,
|
|
768
|
+
0,
|
|
769
|
+
[_CA],
|
|
770
|
+
[0], 1
|
|
771
|
+
];
|
|
772
|
+
var GetConnectionOutput$ = [3, n0, _GCO,
|
|
773
|
+
0,
|
|
774
|
+
[_C],
|
|
775
|
+
[() => Connection$]
|
|
776
|
+
];
|
|
777
|
+
var GetHostInput$ = [3, n0, _GHI,
|
|
778
|
+
0,
|
|
779
|
+
[_HA],
|
|
780
|
+
[0], 1
|
|
781
|
+
];
|
|
782
|
+
var GetHostOutput$ = [3, n0, _GHO,
|
|
783
|
+
0,
|
|
784
|
+
[_N, _S, _PT, _PE, _VC],
|
|
785
|
+
[0, 0, 0, 0, () => VpcConfiguration$]
|
|
786
|
+
];
|
|
787
|
+
var GetRepositoryLinkInput$ = [3, n0, _GRLI,
|
|
788
|
+
0,
|
|
789
|
+
[_RLIe],
|
|
790
|
+
[0], 1
|
|
791
|
+
];
|
|
792
|
+
var GetRepositoryLinkOutput$ = [3, n0, _GRLO,
|
|
793
|
+
0,
|
|
794
|
+
[_RLI],
|
|
795
|
+
[() => RepositoryLinkInfo$], 1
|
|
796
|
+
];
|
|
797
|
+
var GetRepositorySyncStatusInput$ = [3, n0, _GRSSI,
|
|
798
|
+
0,
|
|
799
|
+
[_B, _RLIe, _ST],
|
|
800
|
+
[0, 0, 0], 3
|
|
801
|
+
];
|
|
802
|
+
var GetRepositorySyncStatusOutput$ = [3, n0, _GRSSO,
|
|
803
|
+
0,
|
|
804
|
+
[_LS],
|
|
805
|
+
[() => RepositorySyncAttempt$], 1
|
|
806
|
+
];
|
|
807
|
+
var GetResourceSyncStatusInput$ = [3, n0, _GRSSIe,
|
|
808
|
+
0,
|
|
809
|
+
[_RNe, _ST],
|
|
810
|
+
[0, 0], 2
|
|
811
|
+
];
|
|
812
|
+
var GetResourceSyncStatusOutput$ = [3, n0, _GRSSOe,
|
|
813
|
+
0,
|
|
814
|
+
[_LS, _DS, _LSS],
|
|
815
|
+
[() => ResourceSyncAttempt$, () => Revision$, () => ResourceSyncAttempt$], 1
|
|
816
|
+
];
|
|
817
|
+
var GetSyncBlockerSummaryInput$ = [3, n0, _GSBSI,
|
|
818
|
+
0,
|
|
819
|
+
[_ST, _RNe],
|
|
820
|
+
[0, 0], 2
|
|
821
|
+
];
|
|
822
|
+
var GetSyncBlockerSummaryOutput$ = [3, n0, _GSBSO,
|
|
823
|
+
0,
|
|
824
|
+
[_SBS],
|
|
825
|
+
[() => SyncBlockerSummary$], 1
|
|
826
|
+
];
|
|
827
|
+
var GetSyncConfigurationInput$ = [3, n0, _GSCI,
|
|
828
|
+
0,
|
|
829
|
+
[_ST, _RNe],
|
|
830
|
+
[0, 0], 2
|
|
831
|
+
];
|
|
832
|
+
var GetSyncConfigurationOutput$ = [3, n0, _GSCO,
|
|
833
|
+
0,
|
|
834
|
+
[_SC],
|
|
835
|
+
[() => SyncConfiguration$], 1
|
|
836
|
+
];
|
|
837
|
+
var Host$ = [3, n0, _H,
|
|
838
|
+
0,
|
|
839
|
+
[_N, _HA, _PT, _PE, _VC, _S, _SM],
|
|
840
|
+
[0, 0, 0, 0, () => VpcConfiguration$, 0, 0]
|
|
841
|
+
];
|
|
842
|
+
var ListConnectionsInput$ = [3, n0, _LCI,
|
|
843
|
+
0,
|
|
844
|
+
[_PTF, _HAF, _MR, _NT],
|
|
845
|
+
[0, 0, 1, 0]
|
|
846
|
+
];
|
|
847
|
+
var ListConnectionsOutput$ = [3, n0, _LCO,
|
|
848
|
+
0,
|
|
849
|
+
[_Co, _NT],
|
|
850
|
+
[() => ConnectionList, 0]
|
|
851
|
+
];
|
|
852
|
+
var ListHostsInput$ = [3, n0, _LHI,
|
|
853
|
+
0,
|
|
854
|
+
[_MR, _NT],
|
|
855
|
+
[1, 0]
|
|
856
|
+
];
|
|
857
|
+
var ListHostsOutput$ = [3, n0, _LHO,
|
|
858
|
+
0,
|
|
859
|
+
[_Ho, _NT],
|
|
860
|
+
[() => HostList, 0]
|
|
861
|
+
];
|
|
862
|
+
var ListRepositoryLinksInput$ = [3, n0, _LRLI,
|
|
863
|
+
0,
|
|
864
|
+
[_MR, _NT],
|
|
865
|
+
[1, 0]
|
|
866
|
+
];
|
|
867
|
+
var ListRepositoryLinksOutput$ = [3, n0, _LRLO,
|
|
868
|
+
0,
|
|
869
|
+
[_RL, _NT],
|
|
870
|
+
[() => RepositoryLinkList, 0], 1
|
|
871
|
+
];
|
|
872
|
+
var ListRepositorySyncDefinitionsInput$ = [3, n0, _LRSDI,
|
|
873
|
+
0,
|
|
874
|
+
[_RLIe, _ST],
|
|
875
|
+
[0, 0], 2
|
|
876
|
+
];
|
|
877
|
+
var ListRepositorySyncDefinitionsOutput$ = [3, n0, _LRSDO,
|
|
878
|
+
0,
|
|
879
|
+
[_RSD, _NT],
|
|
880
|
+
[() => RepositorySyncDefinitionList, 0], 1
|
|
881
|
+
];
|
|
882
|
+
var ListSyncConfigurationsInput$ = [3, n0, _LSCI,
|
|
883
|
+
0,
|
|
884
|
+
[_RLIe, _ST, _MR, _NT],
|
|
885
|
+
[0, 0, 1, 0], 2
|
|
886
|
+
];
|
|
887
|
+
var ListSyncConfigurationsOutput$ = [3, n0, _LSCO,
|
|
888
|
+
0,
|
|
889
|
+
[_SCy, _NT],
|
|
890
|
+
[() => SyncConfigurationList, 0], 1
|
|
891
|
+
];
|
|
892
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
893
|
+
0,
|
|
894
|
+
[_RAe],
|
|
895
|
+
[0], 1
|
|
896
|
+
];
|
|
897
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
898
|
+
0,
|
|
899
|
+
[_T],
|
|
900
|
+
[() => TagList]
|
|
901
|
+
];
|
|
902
|
+
var RepositoryLinkInfo$ = [3, n0, _RLI,
|
|
903
|
+
0,
|
|
904
|
+
[_CA, _OI, _PT, _RLA, _RLIe, _RN, _EKA],
|
|
905
|
+
[0, 0, 0, 0, 0, 0, 0], 6
|
|
906
|
+
];
|
|
907
|
+
var RepositorySyncAttempt$ = [3, n0, _RSA,
|
|
908
|
+
0,
|
|
909
|
+
[_SA, _S, _E],
|
|
910
|
+
[4, 0, () => RepositorySyncEventList], 3
|
|
911
|
+
];
|
|
912
|
+
var RepositorySyncDefinition$ = [3, n0, _RSDe,
|
|
913
|
+
0,
|
|
914
|
+
[_B, _D, _P, _Ta],
|
|
915
|
+
[0, 0, 0, 0], 4
|
|
916
|
+
];
|
|
917
|
+
var RepositorySyncEvent$ = [3, n0, _RSE,
|
|
918
|
+
0,
|
|
919
|
+
[_Ev, _Ti, _Ty, _EI],
|
|
920
|
+
[0, 4, 0, 0], 3
|
|
921
|
+
];
|
|
922
|
+
var ResourceSyncAttempt$ = [3, n0, _RSAe,
|
|
923
|
+
0,
|
|
924
|
+
[_E, _IR, _SA, _S, _TR, _Ta],
|
|
925
|
+
[() => ResourceSyncEventList, () => Revision$, 4, 0, () => Revision$, 0], 6
|
|
926
|
+
];
|
|
927
|
+
var ResourceSyncEvent$ = [3, n0, _RSEe,
|
|
928
|
+
0,
|
|
929
|
+
[_Ev, _Ti, _Ty, _EI],
|
|
930
|
+
[0, 4, 0, 0], 3
|
|
931
|
+
];
|
|
932
|
+
var Revision$ = [3, n0, _R,
|
|
933
|
+
0,
|
|
934
|
+
[_B, _D, _OI, _RN, _PT, _Sh],
|
|
935
|
+
[0, 0, 0, 0, 0, 0], 6
|
|
936
|
+
];
|
|
937
|
+
var SyncBlocker$ = [3, n0, _SB,
|
|
938
|
+
0,
|
|
939
|
+
[_I, _Ty, _S, _CR, _CAr, _Con, _RR, _RAes],
|
|
940
|
+
[0, 0, 0, 0, 4, () => SyncBlockerContextList, 0, 4], 5
|
|
941
|
+
];
|
|
942
|
+
var SyncBlockerContext$ = [3, n0, _SBC,
|
|
943
|
+
0,
|
|
944
|
+
[_K, _V],
|
|
945
|
+
[0, 0], 2
|
|
946
|
+
];
|
|
947
|
+
var SyncBlockerSummary$ = [3, n0, _SBS,
|
|
948
|
+
0,
|
|
949
|
+
[_RNe, _PRN, _LB],
|
|
950
|
+
[0, 0, () => LatestSyncBlockerList], 1
|
|
951
|
+
];
|
|
952
|
+
var SyncConfiguration$ = [3, n0, _SC,
|
|
953
|
+
0,
|
|
954
|
+
[_B, _OI, _PT, _RLIe, _RN, _RNe, _RA, _ST, _CF, _PDS, _TRUO, _PRC],
|
|
955
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 8
|
|
956
|
+
];
|
|
957
|
+
var Tag$ = [3, n0, _Tag,
|
|
958
|
+
0,
|
|
959
|
+
[_K, _V],
|
|
960
|
+
[0, 0], 2
|
|
961
|
+
];
|
|
962
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
963
|
+
0,
|
|
964
|
+
[_RAe, _T],
|
|
965
|
+
[0, () => TagList], 2
|
|
966
|
+
];
|
|
967
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
968
|
+
0,
|
|
969
|
+
[],
|
|
970
|
+
[]
|
|
971
|
+
];
|
|
972
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
973
|
+
0,
|
|
974
|
+
[_RAe, _TK],
|
|
975
|
+
[0, 64 | 0], 2
|
|
976
|
+
];
|
|
977
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
978
|
+
0,
|
|
979
|
+
[],
|
|
980
|
+
[]
|
|
981
|
+
];
|
|
982
|
+
var UpdateHostInput$ = [3, n0, _UHI,
|
|
983
|
+
0,
|
|
984
|
+
[_HA, _PE, _VC],
|
|
985
|
+
[0, 0, () => VpcConfiguration$], 1
|
|
986
|
+
];
|
|
987
|
+
var UpdateHostOutput$ = [3, n0, _UHO,
|
|
988
|
+
0,
|
|
989
|
+
[],
|
|
990
|
+
[]
|
|
991
|
+
];
|
|
992
|
+
var UpdateRepositoryLinkInput$ = [3, n0, _URLI,
|
|
993
|
+
0,
|
|
994
|
+
[_RLIe, _CA, _EKA],
|
|
995
|
+
[0, 0, 0], 1
|
|
996
|
+
];
|
|
997
|
+
var UpdateRepositoryLinkOutput$ = [3, n0, _URLO,
|
|
998
|
+
0,
|
|
999
|
+
[_RLI],
|
|
1000
|
+
[() => RepositoryLinkInfo$], 1
|
|
1001
|
+
];
|
|
1002
|
+
var UpdateSyncBlockerInput$ = [3, n0, _USBI,
|
|
1003
|
+
0,
|
|
1004
|
+
[_I, _ST, _RNe, _RR],
|
|
1005
|
+
[0, 0, 0, 0], 4
|
|
1006
|
+
];
|
|
1007
|
+
var UpdateSyncBlockerOutput$ = [3, n0, _USBO,
|
|
1008
|
+
0,
|
|
1009
|
+
[_RNe, _SB, _PRN],
|
|
1010
|
+
[0, () => SyncBlocker$, 0], 2
|
|
1011
|
+
];
|
|
1012
|
+
var UpdateSyncConfigurationInput$ = [3, n0, _USCI,
|
|
1013
|
+
0,
|
|
1014
|
+
[_RNe, _ST, _B, _CF, _RLIe, _RA, _PDS, _TRUO, _PRC],
|
|
1015
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0], 2
|
|
1016
|
+
];
|
|
1017
|
+
var UpdateSyncConfigurationOutput$ = [3, n0, _USCO,
|
|
1018
|
+
0,
|
|
1019
|
+
[_SC],
|
|
1020
|
+
[() => SyncConfiguration$], 1
|
|
1021
|
+
];
|
|
1022
|
+
var VpcConfiguration$ = [3, n0, _VC,
|
|
1023
|
+
0,
|
|
1024
|
+
[_VI, _SI, _SGI, _TC],
|
|
1025
|
+
[0, 64 | 0, 64 | 0, 0], 3
|
|
1026
|
+
];
|
|
1027
|
+
var ConnectionList = [1, n0, _CL,
|
|
1028
|
+
0, () => Connection$
|
|
1029
|
+
];
|
|
1030
|
+
var HostList = [1, n0, _HL,
|
|
1031
|
+
0, () => Host$
|
|
1032
|
+
];
|
|
1033
|
+
var LatestSyncBlockerList = [1, n0, _LSBL,
|
|
1034
|
+
0, () => SyncBlocker$
|
|
1035
|
+
];
|
|
1036
|
+
var RepositoryLinkList = [1, n0, _RLL,
|
|
1037
|
+
0, () => RepositoryLinkInfo$
|
|
1038
|
+
];
|
|
1039
|
+
var RepositorySyncDefinitionList = [1, n0, _RSDL,
|
|
1040
|
+
0, () => RepositorySyncDefinition$
|
|
1041
|
+
];
|
|
1042
|
+
var RepositorySyncEventList = [1, n0, _RSEL,
|
|
1043
|
+
0, () => RepositorySyncEvent$
|
|
1044
|
+
];
|
|
1045
|
+
var ResourceSyncEventList = [1, n0, _RSELe,
|
|
1046
|
+
0, () => ResourceSyncEvent$
|
|
1047
|
+
];
|
|
1048
|
+
var SyncBlockerContextList = [1, n0, _SBCL,
|
|
1049
|
+
0, () => SyncBlockerContext$
|
|
1050
|
+
];
|
|
1051
|
+
var SyncConfigurationList = [1, n0, _SCL,
|
|
1052
|
+
0, () => SyncConfiguration$
|
|
1053
|
+
];
|
|
1054
|
+
var TagList = [1, n0, _TL,
|
|
1055
|
+
0, () => Tag$
|
|
1056
|
+
];
|
|
1057
|
+
var CreateConnection$ = [9, n0, _CC,
|
|
1058
|
+
0, () => CreateConnectionInput$, () => CreateConnectionOutput$
|
|
1059
|
+
];
|
|
1060
|
+
var CreateHost$ = [9, n0, _CH,
|
|
1061
|
+
0, () => CreateHostInput$, () => CreateHostOutput$
|
|
1062
|
+
];
|
|
1063
|
+
var CreateRepositoryLink$ = [9, n0, _CRL,
|
|
1064
|
+
0, () => CreateRepositoryLinkInput$, () => CreateRepositoryLinkOutput$
|
|
1065
|
+
];
|
|
1066
|
+
var CreateSyncConfiguration$ = [9, n0, _CSC,
|
|
1067
|
+
0, () => CreateSyncConfigurationInput$, () => CreateSyncConfigurationOutput$
|
|
1068
|
+
];
|
|
1069
|
+
var DeleteConnection$ = [9, n0, _DC,
|
|
1070
|
+
0, () => DeleteConnectionInput$, () => DeleteConnectionOutput$
|
|
1071
|
+
];
|
|
1072
|
+
var DeleteHost$ = [9, n0, _DH,
|
|
1073
|
+
0, () => DeleteHostInput$, () => DeleteHostOutput$
|
|
1074
|
+
];
|
|
1075
|
+
var DeleteRepositoryLink$ = [9, n0, _DRL,
|
|
1076
|
+
0, () => DeleteRepositoryLinkInput$, () => DeleteRepositoryLinkOutput$
|
|
1077
|
+
];
|
|
1078
|
+
var DeleteSyncConfiguration$ = [9, n0, _DSC,
|
|
1079
|
+
0, () => DeleteSyncConfigurationInput$, () => DeleteSyncConfigurationOutput$
|
|
1080
|
+
];
|
|
1081
|
+
var GetConnection$ = [9, n0, _GC,
|
|
1082
|
+
0, () => GetConnectionInput$, () => GetConnectionOutput$
|
|
1083
|
+
];
|
|
1084
|
+
var GetHost$ = [9, n0, _GH,
|
|
1085
|
+
0, () => GetHostInput$, () => GetHostOutput$
|
|
1086
|
+
];
|
|
1087
|
+
var GetRepositoryLink$ = [9, n0, _GRL,
|
|
1088
|
+
0, () => GetRepositoryLinkInput$, () => GetRepositoryLinkOutput$
|
|
1089
|
+
];
|
|
1090
|
+
var GetRepositorySyncStatus$ = [9, n0, _GRSS,
|
|
1091
|
+
0, () => GetRepositorySyncStatusInput$, () => GetRepositorySyncStatusOutput$
|
|
1092
|
+
];
|
|
1093
|
+
var GetResourceSyncStatus$ = [9, n0, _GRSSe,
|
|
1094
|
+
0, () => GetResourceSyncStatusInput$, () => GetResourceSyncStatusOutput$
|
|
1095
|
+
];
|
|
1096
|
+
var GetSyncBlockerSummary$ = [9, n0, _GSBS,
|
|
1097
|
+
0, () => GetSyncBlockerSummaryInput$, () => GetSyncBlockerSummaryOutput$
|
|
1098
|
+
];
|
|
1099
|
+
var GetSyncConfiguration$ = [9, n0, _GSC,
|
|
1100
|
+
0, () => GetSyncConfigurationInput$, () => GetSyncConfigurationOutput$
|
|
1101
|
+
];
|
|
1102
|
+
var ListConnections$ = [9, n0, _LC,
|
|
1103
|
+
0, () => ListConnectionsInput$, () => ListConnectionsOutput$
|
|
1104
|
+
];
|
|
1105
|
+
var ListHosts$ = [9, n0, _LH,
|
|
1106
|
+
0, () => ListHostsInput$, () => ListHostsOutput$
|
|
1107
|
+
];
|
|
1108
|
+
var ListRepositoryLinks$ = [9, n0, _LRL,
|
|
1109
|
+
0, () => ListRepositoryLinksInput$, () => ListRepositoryLinksOutput$
|
|
1110
|
+
];
|
|
1111
|
+
var ListRepositorySyncDefinitions$ = [9, n0, _LRSD,
|
|
1112
|
+
0, () => ListRepositorySyncDefinitionsInput$, () => ListRepositorySyncDefinitionsOutput$
|
|
1113
|
+
];
|
|
1114
|
+
var ListSyncConfigurations$ = [9, n0, _LSC,
|
|
1115
|
+
0, () => ListSyncConfigurationsInput$, () => ListSyncConfigurationsOutput$
|
|
1116
|
+
];
|
|
1117
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1118
|
+
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1119
|
+
];
|
|
1120
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1121
|
+
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
1122
|
+
];
|
|
1123
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1124
|
+
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
1125
|
+
];
|
|
1126
|
+
var UpdateHost$ = [9, n0, _UH,
|
|
1127
|
+
0, () => UpdateHostInput$, () => UpdateHostOutput$
|
|
1128
|
+
];
|
|
1129
|
+
var UpdateRepositoryLink$ = [9, n0, _URL,
|
|
1130
|
+
0, () => UpdateRepositoryLinkInput$, () => UpdateRepositoryLinkOutput$
|
|
1131
|
+
];
|
|
1132
|
+
var UpdateSyncBlocker$ = [9, n0, _USB,
|
|
1133
|
+
0, () => UpdateSyncBlockerInput$, () => UpdateSyncBlockerOutput$
|
|
1134
|
+
];
|
|
1135
|
+
var UpdateSyncConfiguration$ = [9, n0, _USC,
|
|
1136
|
+
0, () => UpdateSyncConfigurationInput$, () => UpdateSyncConfigurationOutput$
|
|
1137
|
+
];
|
|
1138
|
+
|
|
1139
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1140
|
+
return {
|
|
1141
|
+
apiVersion: "2023-12-01",
|
|
1142
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1143
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1144
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1145
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1146
|
+
extensions: config?.extensions ?? [],
|
|
1147
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCodeConnectionsHttpAuthSchemeProvider,
|
|
1148
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1149
|
+
{
|
|
1150
|
+
schemeId: "aws.auth#sigv4",
|
|
1151
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1152
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1153
|
+
},
|
|
1154
|
+
],
|
|
1155
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1156
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
1157
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1158
|
+
defaultNamespace: "com.amazonaws.codeconnections",
|
|
1159
|
+
errorTypeRegistries,
|
|
1160
|
+
version: "2023-12-01",
|
|
1161
|
+
serviceTarget: "CodeConnections_20231201",
|
|
1162
|
+
},
|
|
1163
|
+
serviceId: config?.serviceId ?? "CodeConnections",
|
|
1164
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1165
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1166
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1167
|
+
};
|
|
1168
|
+
};
|
|
1169
|
+
|
|
1170
|
+
const getRuntimeConfig = (config) => {
|
|
1171
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1172
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1173
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1174
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1175
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1176
|
+
const loaderConfig = {
|
|
1177
|
+
profile: config?.profile,
|
|
1178
|
+
logger: clientSharedValues.logger,
|
|
1179
|
+
};
|
|
1180
|
+
return {
|
|
1181
|
+
...clientSharedValues,
|
|
1182
|
+
...config,
|
|
1183
|
+
runtime: "node",
|
|
1184
|
+
defaultsMode,
|
|
1185
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1186
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1187
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1188
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1189
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1190
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1191
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1192
|
+
retryMode: config?.retryMode ??
|
|
1193
|
+
loadConfig({
|
|
1194
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1195
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1196
|
+
}, config),
|
|
1197
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1198
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1199
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1200
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1201
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1202
|
+
};
|
|
1203
|
+
};
|
|
1204
|
+
|
|
34
1205
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1206
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1207
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -531,45 +1702,178 @@ const ResourceSyncStatus = {
|
|
|
531
1702
|
SUCCEEDED: "SUCCEEDED",
|
|
532
1703
|
};
|
|
533
1704
|
|
|
1705
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1706
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
534
1707
|
exports.BlockerStatus = BlockerStatus;
|
|
535
1708
|
exports.BlockerType = BlockerType;
|
|
536
1709
|
exports.CodeConnections = CodeConnections;
|
|
537
1710
|
exports.CodeConnectionsClient = CodeConnectionsClient;
|
|
1711
|
+
exports.CodeConnectionsServiceException = CodeConnectionsServiceException;
|
|
1712
|
+
exports.CodeConnectionsServiceException$ = CodeConnectionsServiceException$;
|
|
1713
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
1714
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
1715
|
+
exports.ConditionalCheckFailedException = ConditionalCheckFailedException;
|
|
1716
|
+
exports.ConditionalCheckFailedException$ = ConditionalCheckFailedException$;
|
|
1717
|
+
exports.ConflictException = ConflictException;
|
|
1718
|
+
exports.ConflictException$ = ConflictException$;
|
|
1719
|
+
exports.Connection$ = Connection$;
|
|
538
1720
|
exports.ConnectionStatus = ConnectionStatus;
|
|
1721
|
+
exports.CreateConnection$ = CreateConnection$;
|
|
539
1722
|
exports.CreateConnectionCommand = CreateConnectionCommand;
|
|
1723
|
+
exports.CreateConnectionInput$ = CreateConnectionInput$;
|
|
1724
|
+
exports.CreateConnectionOutput$ = CreateConnectionOutput$;
|
|
1725
|
+
exports.CreateHost$ = CreateHost$;
|
|
540
1726
|
exports.CreateHostCommand = CreateHostCommand;
|
|
1727
|
+
exports.CreateHostInput$ = CreateHostInput$;
|
|
1728
|
+
exports.CreateHostOutput$ = CreateHostOutput$;
|
|
1729
|
+
exports.CreateRepositoryLink$ = CreateRepositoryLink$;
|
|
541
1730
|
exports.CreateRepositoryLinkCommand = CreateRepositoryLinkCommand;
|
|
1731
|
+
exports.CreateRepositoryLinkInput$ = CreateRepositoryLinkInput$;
|
|
1732
|
+
exports.CreateRepositoryLinkOutput$ = CreateRepositoryLinkOutput$;
|
|
1733
|
+
exports.CreateSyncConfiguration$ = CreateSyncConfiguration$;
|
|
542
1734
|
exports.CreateSyncConfigurationCommand = CreateSyncConfigurationCommand;
|
|
1735
|
+
exports.CreateSyncConfigurationInput$ = CreateSyncConfigurationInput$;
|
|
1736
|
+
exports.CreateSyncConfigurationOutput$ = CreateSyncConfigurationOutput$;
|
|
1737
|
+
exports.DeleteConnection$ = DeleteConnection$;
|
|
543
1738
|
exports.DeleteConnectionCommand = DeleteConnectionCommand;
|
|
1739
|
+
exports.DeleteConnectionInput$ = DeleteConnectionInput$;
|
|
1740
|
+
exports.DeleteConnectionOutput$ = DeleteConnectionOutput$;
|
|
1741
|
+
exports.DeleteHost$ = DeleteHost$;
|
|
544
1742
|
exports.DeleteHostCommand = DeleteHostCommand;
|
|
1743
|
+
exports.DeleteHostInput$ = DeleteHostInput$;
|
|
1744
|
+
exports.DeleteHostOutput$ = DeleteHostOutput$;
|
|
1745
|
+
exports.DeleteRepositoryLink$ = DeleteRepositoryLink$;
|
|
545
1746
|
exports.DeleteRepositoryLinkCommand = DeleteRepositoryLinkCommand;
|
|
1747
|
+
exports.DeleteRepositoryLinkInput$ = DeleteRepositoryLinkInput$;
|
|
1748
|
+
exports.DeleteRepositoryLinkOutput$ = DeleteRepositoryLinkOutput$;
|
|
1749
|
+
exports.DeleteSyncConfiguration$ = DeleteSyncConfiguration$;
|
|
546
1750
|
exports.DeleteSyncConfigurationCommand = DeleteSyncConfigurationCommand;
|
|
1751
|
+
exports.DeleteSyncConfigurationInput$ = DeleteSyncConfigurationInput$;
|
|
1752
|
+
exports.DeleteSyncConfigurationOutput$ = DeleteSyncConfigurationOutput$;
|
|
1753
|
+
exports.GetConnection$ = GetConnection$;
|
|
547
1754
|
exports.GetConnectionCommand = GetConnectionCommand;
|
|
1755
|
+
exports.GetConnectionInput$ = GetConnectionInput$;
|
|
1756
|
+
exports.GetConnectionOutput$ = GetConnectionOutput$;
|
|
1757
|
+
exports.GetHost$ = GetHost$;
|
|
548
1758
|
exports.GetHostCommand = GetHostCommand;
|
|
1759
|
+
exports.GetHostInput$ = GetHostInput$;
|
|
1760
|
+
exports.GetHostOutput$ = GetHostOutput$;
|
|
1761
|
+
exports.GetRepositoryLink$ = GetRepositoryLink$;
|
|
549
1762
|
exports.GetRepositoryLinkCommand = GetRepositoryLinkCommand;
|
|
1763
|
+
exports.GetRepositoryLinkInput$ = GetRepositoryLinkInput$;
|
|
1764
|
+
exports.GetRepositoryLinkOutput$ = GetRepositoryLinkOutput$;
|
|
1765
|
+
exports.GetRepositorySyncStatus$ = GetRepositorySyncStatus$;
|
|
550
1766
|
exports.GetRepositorySyncStatusCommand = GetRepositorySyncStatusCommand;
|
|
1767
|
+
exports.GetRepositorySyncStatusInput$ = GetRepositorySyncStatusInput$;
|
|
1768
|
+
exports.GetRepositorySyncStatusOutput$ = GetRepositorySyncStatusOutput$;
|
|
1769
|
+
exports.GetResourceSyncStatus$ = GetResourceSyncStatus$;
|
|
551
1770
|
exports.GetResourceSyncStatusCommand = GetResourceSyncStatusCommand;
|
|
1771
|
+
exports.GetResourceSyncStatusInput$ = GetResourceSyncStatusInput$;
|
|
1772
|
+
exports.GetResourceSyncStatusOutput$ = GetResourceSyncStatusOutput$;
|
|
1773
|
+
exports.GetSyncBlockerSummary$ = GetSyncBlockerSummary$;
|
|
552
1774
|
exports.GetSyncBlockerSummaryCommand = GetSyncBlockerSummaryCommand;
|
|
1775
|
+
exports.GetSyncBlockerSummaryInput$ = GetSyncBlockerSummaryInput$;
|
|
1776
|
+
exports.GetSyncBlockerSummaryOutput$ = GetSyncBlockerSummaryOutput$;
|
|
1777
|
+
exports.GetSyncConfiguration$ = GetSyncConfiguration$;
|
|
553
1778
|
exports.GetSyncConfigurationCommand = GetSyncConfigurationCommand;
|
|
1779
|
+
exports.GetSyncConfigurationInput$ = GetSyncConfigurationInput$;
|
|
1780
|
+
exports.GetSyncConfigurationOutput$ = GetSyncConfigurationOutput$;
|
|
1781
|
+
exports.Host$ = Host$;
|
|
1782
|
+
exports.InternalServerException = InternalServerException;
|
|
1783
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1784
|
+
exports.InvalidInputException = InvalidInputException;
|
|
1785
|
+
exports.InvalidInputException$ = InvalidInputException$;
|
|
1786
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1787
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1788
|
+
exports.ListConnections$ = ListConnections$;
|
|
554
1789
|
exports.ListConnectionsCommand = ListConnectionsCommand;
|
|
1790
|
+
exports.ListConnectionsInput$ = ListConnectionsInput$;
|
|
1791
|
+
exports.ListConnectionsOutput$ = ListConnectionsOutput$;
|
|
1792
|
+
exports.ListHosts$ = ListHosts$;
|
|
555
1793
|
exports.ListHostsCommand = ListHostsCommand;
|
|
1794
|
+
exports.ListHostsInput$ = ListHostsInput$;
|
|
1795
|
+
exports.ListHostsOutput$ = ListHostsOutput$;
|
|
1796
|
+
exports.ListRepositoryLinks$ = ListRepositoryLinks$;
|
|
556
1797
|
exports.ListRepositoryLinksCommand = ListRepositoryLinksCommand;
|
|
1798
|
+
exports.ListRepositoryLinksInput$ = ListRepositoryLinksInput$;
|
|
1799
|
+
exports.ListRepositoryLinksOutput$ = ListRepositoryLinksOutput$;
|
|
1800
|
+
exports.ListRepositorySyncDefinitions$ = ListRepositorySyncDefinitions$;
|
|
557
1801
|
exports.ListRepositorySyncDefinitionsCommand = ListRepositorySyncDefinitionsCommand;
|
|
1802
|
+
exports.ListRepositorySyncDefinitionsInput$ = ListRepositorySyncDefinitionsInput$;
|
|
1803
|
+
exports.ListRepositorySyncDefinitionsOutput$ = ListRepositorySyncDefinitionsOutput$;
|
|
1804
|
+
exports.ListSyncConfigurations$ = ListSyncConfigurations$;
|
|
558
1805
|
exports.ListSyncConfigurationsCommand = ListSyncConfigurationsCommand;
|
|
1806
|
+
exports.ListSyncConfigurationsInput$ = ListSyncConfigurationsInput$;
|
|
1807
|
+
exports.ListSyncConfigurationsOutput$ = ListSyncConfigurationsOutput$;
|
|
1808
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
559
1809
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1810
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1811
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
560
1812
|
exports.ProviderType = ProviderType;
|
|
561
1813
|
exports.PublishDeploymentStatus = PublishDeploymentStatus;
|
|
562
1814
|
exports.PullRequestComment = PullRequestComment;
|
|
1815
|
+
exports.RepositoryLinkInfo$ = RepositoryLinkInfo$;
|
|
1816
|
+
exports.RepositorySyncAttempt$ = RepositorySyncAttempt$;
|
|
1817
|
+
exports.RepositorySyncDefinition$ = RepositorySyncDefinition$;
|
|
1818
|
+
exports.RepositorySyncEvent$ = RepositorySyncEvent$;
|
|
563
1819
|
exports.RepositorySyncStatus = RepositorySyncStatus;
|
|
1820
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
1821
|
+
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
1822
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1823
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1824
|
+
exports.ResourceSyncAttempt$ = ResourceSyncAttempt$;
|
|
1825
|
+
exports.ResourceSyncEvent$ = ResourceSyncEvent$;
|
|
564
1826
|
exports.ResourceSyncStatus = ResourceSyncStatus;
|
|
1827
|
+
exports.ResourceUnavailableException = ResourceUnavailableException;
|
|
1828
|
+
exports.ResourceUnavailableException$ = ResourceUnavailableException$;
|
|
1829
|
+
exports.RetryLatestCommitFailedException = RetryLatestCommitFailedException;
|
|
1830
|
+
exports.RetryLatestCommitFailedException$ = RetryLatestCommitFailedException$;
|
|
1831
|
+
exports.Revision$ = Revision$;
|
|
1832
|
+
exports.SyncBlocker$ = SyncBlocker$;
|
|
1833
|
+
exports.SyncBlockerContext$ = SyncBlockerContext$;
|
|
1834
|
+
exports.SyncBlockerDoesNotExistException = SyncBlockerDoesNotExistException;
|
|
1835
|
+
exports.SyncBlockerDoesNotExistException$ = SyncBlockerDoesNotExistException$;
|
|
1836
|
+
exports.SyncBlockerSummary$ = SyncBlockerSummary$;
|
|
1837
|
+
exports.SyncConfiguration$ = SyncConfiguration$;
|
|
1838
|
+
exports.SyncConfigurationStillExistsException = SyncConfigurationStillExistsException;
|
|
1839
|
+
exports.SyncConfigurationStillExistsException$ = SyncConfigurationStillExistsException$;
|
|
565
1840
|
exports.SyncConfigurationType = SyncConfigurationType;
|
|
1841
|
+
exports.Tag$ = Tag$;
|
|
1842
|
+
exports.TagResource$ = TagResource$;
|
|
566
1843
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1844
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1845
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1846
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1847
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
567
1848
|
exports.TriggerResourceUpdateOn = TriggerResourceUpdateOn;
|
|
1849
|
+
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
1850
|
+
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
1851
|
+
exports.UnsupportedProviderTypeException = UnsupportedProviderTypeException;
|
|
1852
|
+
exports.UnsupportedProviderTypeException$ = UnsupportedProviderTypeException$;
|
|
1853
|
+
exports.UntagResource$ = UntagResource$;
|
|
568
1854
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1855
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1856
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1857
|
+
exports.UpdateHost$ = UpdateHost$;
|
|
569
1858
|
exports.UpdateHostCommand = UpdateHostCommand;
|
|
1859
|
+
exports.UpdateHostInput$ = UpdateHostInput$;
|
|
1860
|
+
exports.UpdateHostOutput$ = UpdateHostOutput$;
|
|
1861
|
+
exports.UpdateOutOfSyncException = UpdateOutOfSyncException;
|
|
1862
|
+
exports.UpdateOutOfSyncException$ = UpdateOutOfSyncException$;
|
|
1863
|
+
exports.UpdateRepositoryLink$ = UpdateRepositoryLink$;
|
|
570
1864
|
exports.UpdateRepositoryLinkCommand = UpdateRepositoryLinkCommand;
|
|
1865
|
+
exports.UpdateRepositoryLinkInput$ = UpdateRepositoryLinkInput$;
|
|
1866
|
+
exports.UpdateRepositoryLinkOutput$ = UpdateRepositoryLinkOutput$;
|
|
1867
|
+
exports.UpdateSyncBlocker$ = UpdateSyncBlocker$;
|
|
571
1868
|
exports.UpdateSyncBlockerCommand = UpdateSyncBlockerCommand;
|
|
1869
|
+
exports.UpdateSyncBlockerInput$ = UpdateSyncBlockerInput$;
|
|
1870
|
+
exports.UpdateSyncBlockerOutput$ = UpdateSyncBlockerOutput$;
|
|
1871
|
+
exports.UpdateSyncConfiguration$ = UpdateSyncConfiguration$;
|
|
572
1872
|
exports.UpdateSyncConfigurationCommand = UpdateSyncConfigurationCommand;
|
|
1873
|
+
exports.UpdateSyncConfigurationInput$ = UpdateSyncConfigurationInput$;
|
|
1874
|
+
exports.UpdateSyncConfigurationOutput$ = UpdateSyncConfigurationOutput$;
|
|
1875
|
+
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
1876
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
573
1877
|
exports.paginateListConnections = paginateListConnections;
|
|
574
1878
|
exports.paginateListHosts = paginateListHosts;
|
|
575
1879
|
exports.paginateListRepositoryLinks = paginateListRepositoryLinks;
|