@aws-sdk/client-appsync 3.1075.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 +2564 -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/AppSyncServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -161
- 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 -39
- package/dist-cjs/schemas/schemas_0.js +0 -2138
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 { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultAppSyncHttpAuthSchemeParametersProvider = 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: "appsync",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultAppSyncHttpAuthSchemeProvider = (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,2211 @@ 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://appsync-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://appsync-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://appsync.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://appsync.{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 AppSyncServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, AppSyncServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends AppSyncServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class ApiKeyLimitExceededException extends AppSyncServiceException {
|
|
152
|
+
name = "ApiKeyLimitExceededException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "ApiKeyLimitExceededException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, ApiKeyLimitExceededException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class ApiKeyValidityOutOfBoundsException extends AppSyncServiceException {
|
|
164
|
+
name = "ApiKeyValidityOutOfBoundsException";
|
|
165
|
+
$fault = "client";
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "ApiKeyValidityOutOfBoundsException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, ApiKeyValidityOutOfBoundsException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class ApiLimitExceededException extends AppSyncServiceException {
|
|
176
|
+
name = "ApiLimitExceededException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
constructor(opts) {
|
|
179
|
+
super({
|
|
180
|
+
name: "ApiLimitExceededException",
|
|
181
|
+
$fault: "client",
|
|
182
|
+
...opts,
|
|
183
|
+
});
|
|
184
|
+
Object.setPrototypeOf(this, ApiLimitExceededException.prototype);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class BadRequestException extends AppSyncServiceException {
|
|
188
|
+
name = "BadRequestException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
reason;
|
|
191
|
+
detail;
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "BadRequestException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
199
|
+
this.reason = opts.reason;
|
|
200
|
+
this.detail = opts.detail;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class InternalFailureException extends AppSyncServiceException {
|
|
204
|
+
name = "InternalFailureException";
|
|
205
|
+
$fault = "server";
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "InternalFailureException",
|
|
209
|
+
$fault: "server",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class NotFoundException extends AppSyncServiceException {
|
|
216
|
+
name = "NotFoundException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "NotFoundException",
|
|
221
|
+
$fault: "client",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class ConcurrentModificationException extends AppSyncServiceException {
|
|
228
|
+
name = "ConcurrentModificationException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "ConcurrentModificationException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
class LimitExceededException extends AppSyncServiceException {
|
|
240
|
+
name = "LimitExceededException";
|
|
241
|
+
$fault = "client";
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "LimitExceededException",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class UnauthorizedException extends AppSyncServiceException {
|
|
252
|
+
name = "UnauthorizedException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "UnauthorizedException",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class ServiceQuotaExceededException extends AppSyncServiceException {
|
|
264
|
+
name = "ServiceQuotaExceededException";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "ServiceQuotaExceededException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
class ConflictException extends AppSyncServiceException {
|
|
276
|
+
name = "ConflictException";
|
|
277
|
+
$fault = "client";
|
|
278
|
+
constructor(opts) {
|
|
279
|
+
super({
|
|
280
|
+
name: "ConflictException",
|
|
281
|
+
$fault: "client",
|
|
282
|
+
...opts,
|
|
283
|
+
});
|
|
284
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
class GraphQLSchemaException extends AppSyncServiceException {
|
|
288
|
+
name = "GraphQLSchemaException";
|
|
289
|
+
$fault = "client";
|
|
290
|
+
constructor(opts) {
|
|
291
|
+
super({
|
|
292
|
+
name: "GraphQLSchemaException",
|
|
293
|
+
$fault: "client",
|
|
294
|
+
...opts,
|
|
295
|
+
});
|
|
296
|
+
Object.setPrototypeOf(this, GraphQLSchemaException.prototype);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
const _A = "Api";
|
|
301
|
+
const _AA = "ApiAssociation";
|
|
302
|
+
const _AAP = "AdditionalAuthenticationProvider";
|
|
303
|
+
const _AAPd = "AdditionalAuthenticationProviders";
|
|
304
|
+
const _AAR = "AssociateApiRequest";
|
|
305
|
+
const _AARs = "AssociateApiResponse";
|
|
306
|
+
const _AAs = "AssociateApi";
|
|
307
|
+
const _AC = "ApiCache";
|
|
308
|
+
const _ACu = "AuthorizationConfig";
|
|
309
|
+
const _ADE = "AccessDeniedException";
|
|
310
|
+
const _AIC = "AwsIamConfig";
|
|
311
|
+
const _AK = "ApiKey";
|
|
312
|
+
const _AKLEE = "ApiKeyLimitExceededException";
|
|
313
|
+
const _AKVOOBE = "ApiKeyValidityOutOfBoundsException";
|
|
314
|
+
const _AKp = "ApiKeys";
|
|
315
|
+
const _ALEE = "ApiLimitExceededException";
|
|
316
|
+
const _AM = "AuthMode";
|
|
317
|
+
const _AMGA = "AssociateMergedGraphqlApi";
|
|
318
|
+
const _AMGAR = "AssociateMergedGraphqlApiRequest";
|
|
319
|
+
const _AMGARs = "AssociateMergedGraphqlApiResponse";
|
|
320
|
+
const _AMu = "AuthModes";
|
|
321
|
+
const _AP = "AuthProvider";
|
|
322
|
+
const _APu = "AuthProviders";
|
|
323
|
+
const _ASGA = "AssociateSourceGraphqlApi";
|
|
324
|
+
const _ASGAR = "AssociateSourceGraphqlApiRequest";
|
|
325
|
+
const _ASGARs = "AssociateSourceGraphqlApiResponse";
|
|
326
|
+
const _ASR = "AppSyncRuntime";
|
|
327
|
+
const _Ap = "Apis";
|
|
328
|
+
const _BRD = "BadRequestDetail";
|
|
329
|
+
const _BRE = "BadRequestException";
|
|
330
|
+
const _CA = "CreateApi";
|
|
331
|
+
const _CAC = "CreateApiCache";
|
|
332
|
+
const _CACR = "CreateApiCacheRequest";
|
|
333
|
+
const _CACRr = "CreateApiCacheResponse";
|
|
334
|
+
const _CAK = "CreateApiKey";
|
|
335
|
+
const _CAKR = "CreateApiKeyRequest";
|
|
336
|
+
const _CAKRr = "CreateApiKeyResponse";
|
|
337
|
+
const _CAR = "CreateApiRequest";
|
|
338
|
+
const _CARr = "CreateApiResponse";
|
|
339
|
+
const _CC = "CachingConfig";
|
|
340
|
+
const _CCN = "CreateChannelNamespace";
|
|
341
|
+
const _CCNR = "CreateChannelNamespaceRequest";
|
|
342
|
+
const _CCNRr = "CreateChannelNamespaceResponse";
|
|
343
|
+
const _CCo = "CognitoConfig";
|
|
344
|
+
const _CDN = "CreateDomainName";
|
|
345
|
+
const _CDNR = "CreateDomainNameRequest";
|
|
346
|
+
const _CDNRr = "CreateDomainNameResponse";
|
|
347
|
+
const _CDS = "CreateDataSource";
|
|
348
|
+
const _CDSR = "CreateDataSourceRequest";
|
|
349
|
+
const _CDSRr = "CreateDataSourceResponse";
|
|
350
|
+
const _CE = "ConflictException";
|
|
351
|
+
const _CEL = "CodeErrorLocation";
|
|
352
|
+
const _CEo = "CodeError";
|
|
353
|
+
const _CEod = "CodeErrors";
|
|
354
|
+
const _CF = "CreateFunction";
|
|
355
|
+
const _CFR = "CreateFunctionRequest";
|
|
356
|
+
const _CFRr = "CreateFunctionResponse";
|
|
357
|
+
const _CGA = "CreateGraphqlApi";
|
|
358
|
+
const _CGAR = "CreateGraphqlApiRequest";
|
|
359
|
+
const _CGARr = "CreateGraphqlApiResponse";
|
|
360
|
+
const _CME = "ConcurrentModificationException";
|
|
361
|
+
const _CN = "ChannelNamespace";
|
|
362
|
+
const _CNh = "ChannelNamespaces";
|
|
363
|
+
const _CR = "CreateResolver";
|
|
364
|
+
const _CRR = "CreateResolverRequest";
|
|
365
|
+
const _CRRr = "CreateResolverResponse";
|
|
366
|
+
const _CT = "CreateType";
|
|
367
|
+
const _CTR = "CreateTypeRequest";
|
|
368
|
+
const _CTRr = "CreateTypeResponse";
|
|
369
|
+
const _CUPC = "CognitoUserPoolConfig";
|
|
370
|
+
const _DA = "DeleteApi";
|
|
371
|
+
const _DAC = "DeleteApiCache";
|
|
372
|
+
const _DACR = "DeleteApiCacheRequest";
|
|
373
|
+
const _DACRe = "DeleteApiCacheResponse";
|
|
374
|
+
const _DAK = "DeleteApiKey";
|
|
375
|
+
const _DAKR = "DeleteApiKeyRequest";
|
|
376
|
+
const _DAKRe = "DeleteApiKeyResponse";
|
|
377
|
+
const _DAR = "DeleteApiRequest";
|
|
378
|
+
const _DARe = "DeleteApiResponse";
|
|
379
|
+
const _DARi = "DisassociateApiRequest";
|
|
380
|
+
const _DARis = "DisassociateApiResponse";
|
|
381
|
+
const _DAi = "DisassociateApi";
|
|
382
|
+
const _DCN = "DeleteChannelNamespace";
|
|
383
|
+
const _DCNR = "DeleteChannelNamespaceRequest";
|
|
384
|
+
const _DCNRe = "DeleteChannelNamespaceResponse";
|
|
385
|
+
const _DDN = "DeleteDomainName";
|
|
386
|
+
const _DDNR = "DeleteDomainNameRequest";
|
|
387
|
+
const _DDNRe = "DeleteDomainNameResponse";
|
|
388
|
+
const _DDS = "DeleteDataSource";
|
|
389
|
+
const _DDSC = "DynamodbDataSourceConfig";
|
|
390
|
+
const _DDSR = "DeleteDataSourceRequest";
|
|
391
|
+
const _DDSRe = "DeleteDataSourceResponse";
|
|
392
|
+
const _DF = "DeleteFunction";
|
|
393
|
+
const _DFR = "DeleteFunctionRequest";
|
|
394
|
+
const _DFRe = "DeleteFunctionResponse";
|
|
395
|
+
const _DGA = "DeleteGraphqlApi";
|
|
396
|
+
const _DGAR = "DeleteGraphqlApiRequest";
|
|
397
|
+
const _DGARe = "DeleteGraphqlApiResponse";
|
|
398
|
+
const _DMGA = "DisassociateMergedGraphqlApi";
|
|
399
|
+
const _DMGAR = "DisassociateMergedGraphqlApiRequest";
|
|
400
|
+
const _DMGARi = "DisassociateMergedGraphqlApiResponse";
|
|
401
|
+
const _DNC = "DomainNameConfig";
|
|
402
|
+
const _DNCo = "DomainNameConfigs";
|
|
403
|
+
const _DR = "DeleteResolver";
|
|
404
|
+
const _DRR = "DeleteResolverRequest";
|
|
405
|
+
const _DRRe = "DeleteResolverResponse";
|
|
406
|
+
const _DS = "DataSource";
|
|
407
|
+
const _DSC = "DeltaSyncConfig";
|
|
408
|
+
const _DSGA = "DisassociateSourceGraphqlApi";
|
|
409
|
+
const _DSGAR = "DisassociateSourceGraphqlApiRequest";
|
|
410
|
+
const _DSGARi = "DisassociateSourceGraphqlApiResponse";
|
|
411
|
+
const _DSIM = "DataSourceIntrospectionModel";
|
|
412
|
+
const _DSIMF = "DataSourceIntrospectionModelField";
|
|
413
|
+
const _DSIMFT = "DataSourceIntrospectionModelFieldType";
|
|
414
|
+
const _DSIMFa = "DataSourceIntrospectionModelFields";
|
|
415
|
+
const _DSIMI = "DataSourceIntrospectionModelIndex";
|
|
416
|
+
const _DSIMIa = "DataSourceIntrospectionModelIndexes";
|
|
417
|
+
const _DSIMa = "DataSourceIntrospectionModels";
|
|
418
|
+
const _DSIR = "DataSourceIntrospectionResult";
|
|
419
|
+
const _DSa = "DataSources";
|
|
420
|
+
const _DT = "DeleteType";
|
|
421
|
+
const _DTR = "DeleteTypeRequest";
|
|
422
|
+
const _DTRe = "DeleteTypeResponse";
|
|
423
|
+
const _EBDSC = "EventBridgeDataSourceConfig";
|
|
424
|
+
const _EC = "EventConfig";
|
|
425
|
+
const _ECED = "EvaluateCodeErrorDetail";
|
|
426
|
+
const _ECR = "EvaluateCodeRequest";
|
|
427
|
+
const _ECRv = "EvaluateCodeResponse";
|
|
428
|
+
const _ECv = "EvaluateCode";
|
|
429
|
+
const _ED = "ErrorDetail";
|
|
430
|
+
const _EDSC = "ElasticsearchDataSourceConfig";
|
|
431
|
+
const _ELC = "EventLogConfig";
|
|
432
|
+
const _EMC = "EnhancedMetricsConfig";
|
|
433
|
+
const _EMT = "EvaluateMappingTemplate";
|
|
434
|
+
const _EMTR = "EvaluateMappingTemplateRequest";
|
|
435
|
+
const _EMTRv = "EvaluateMappingTemplateResponse";
|
|
436
|
+
const _F = "Functions";
|
|
437
|
+
const _FAC = "FlushApiCache";
|
|
438
|
+
const _FACR = "FlushApiCacheRequest";
|
|
439
|
+
const _FACRl = "FlushApiCacheResponse";
|
|
440
|
+
const _FC = "FunctionConfiguration";
|
|
441
|
+
const _GA = "GraphqlApi";
|
|
442
|
+
const _GAA = "GetApiAssociation";
|
|
443
|
+
const _GAAR = "GetApiAssociationRequest";
|
|
444
|
+
const _GAARe = "GetApiAssociationResponse";
|
|
445
|
+
const _GAC = "GetApiCache";
|
|
446
|
+
const _GACR = "GetApiCacheRequest";
|
|
447
|
+
const _GACRe = "GetApiCacheResponse";
|
|
448
|
+
const _GAR = "GetApiRequest";
|
|
449
|
+
const _GARe = "GetApiResponse";
|
|
450
|
+
const _GAe = "GetApi";
|
|
451
|
+
const _GAr = "GraphqlApis";
|
|
452
|
+
const _GCN = "GetChannelNamespace";
|
|
453
|
+
const _GCNR = "GetChannelNamespaceRequest";
|
|
454
|
+
const _GCNRe = "GetChannelNamespaceResponse";
|
|
455
|
+
const _GDN = "GetDomainName";
|
|
456
|
+
const _GDNR = "GetDomainNameRequest";
|
|
457
|
+
const _GDNRe = "GetDomainNameResponse";
|
|
458
|
+
const _GDS = "GetDataSource";
|
|
459
|
+
const _GDSI = "GetDataSourceIntrospection";
|
|
460
|
+
const _GDSIR = "GetDataSourceIntrospectionRequest";
|
|
461
|
+
const _GDSIRe = "GetDataSourceIntrospectionResponse";
|
|
462
|
+
const _GDSR = "GetDataSourceRequest";
|
|
463
|
+
const _GDSRe = "GetDataSourceResponse";
|
|
464
|
+
const _GF = "GetFunction";
|
|
465
|
+
const _GFR = "GetFunctionRequest";
|
|
466
|
+
const _GFRe = "GetFunctionResponse";
|
|
467
|
+
const _GGA = "GetGraphqlApi";
|
|
468
|
+
const _GGAEV = "GetGraphqlApiEnvironmentVariables";
|
|
469
|
+
const _GGAEVR = "GetGraphqlApiEnvironmentVariablesRequest";
|
|
470
|
+
const _GGAEVRe = "GetGraphqlApiEnvironmentVariablesResponse";
|
|
471
|
+
const _GGAR = "GetGraphqlApiRequest";
|
|
472
|
+
const _GGARe = "GetGraphqlApiResponse";
|
|
473
|
+
const _GIS = "GetIntrospectionSchema";
|
|
474
|
+
const _GISR = "GetIntrospectionSchemaRequest";
|
|
475
|
+
const _GISRe = "GetIntrospectionSchemaResponse";
|
|
476
|
+
const _GQLSE = "GraphQLSchemaException";
|
|
477
|
+
const _GR = "GetResolver";
|
|
478
|
+
const _GRR = "GetResolverRequest";
|
|
479
|
+
const _GRRe = "GetResolverResponse";
|
|
480
|
+
const _GSAA = "GetSourceApiAssociation";
|
|
481
|
+
const _GSAAR = "GetSourceApiAssociationRequest";
|
|
482
|
+
const _GSAARe = "GetSourceApiAssociationResponse";
|
|
483
|
+
const _GSCS = "GetSchemaCreationStatus";
|
|
484
|
+
const _GSCSR = "GetSchemaCreationStatusRequest";
|
|
485
|
+
const _GSCSRe = "GetSchemaCreationStatusResponse";
|
|
486
|
+
const _GT = "GetType";
|
|
487
|
+
const _GTR = "GetTypeRequest";
|
|
488
|
+
const _GTRe = "GetTypeResponse";
|
|
489
|
+
const _HC = "HandlerConfig";
|
|
490
|
+
const _HCa = "HandlerConfigs";
|
|
491
|
+
const _HDSC = "HttpDataSourceConfig";
|
|
492
|
+
const _I = "Integration";
|
|
493
|
+
const _IFE = "InternalFailureException";
|
|
494
|
+
const _LA = "ListApis";
|
|
495
|
+
const _LAC = "LambdaAuthorizerConfig";
|
|
496
|
+
const _LAK = "ListApiKeys";
|
|
497
|
+
const _LAKR = "ListApiKeysRequest";
|
|
498
|
+
const _LAKRi = "ListApiKeysResponse";
|
|
499
|
+
const _LAR = "ListApisRequest";
|
|
500
|
+
const _LARi = "ListApisResponse";
|
|
501
|
+
const _LC = "LambdaConfig";
|
|
502
|
+
const _LCHC = "LambdaConflictHandlerConfig";
|
|
503
|
+
const _LCN = "ListChannelNamespaces";
|
|
504
|
+
const _LCNR = "ListChannelNamespacesRequest";
|
|
505
|
+
const _LCNRi = "ListChannelNamespacesResponse";
|
|
506
|
+
const _LCo = "LogConfig";
|
|
507
|
+
const _LDN = "ListDomainNames";
|
|
508
|
+
const _LDNR = "ListDomainNamesRequest";
|
|
509
|
+
const _LDNRi = "ListDomainNamesResponse";
|
|
510
|
+
const _LDS = "ListDataSources";
|
|
511
|
+
const _LDSC = "LambdaDataSourceConfig";
|
|
512
|
+
const _LDSR = "ListDataSourcesRequest";
|
|
513
|
+
const _LDSRi = "ListDataSourcesResponse";
|
|
514
|
+
const _LEE = "LimitExceededException";
|
|
515
|
+
const _LF = "ListFunctions";
|
|
516
|
+
const _LFR = "ListFunctionsRequest";
|
|
517
|
+
const _LFRi = "ListFunctionsResponse";
|
|
518
|
+
const _LGA = "ListGraphqlApis";
|
|
519
|
+
const _LGAR = "ListGraphqlApisRequest";
|
|
520
|
+
const _LGARi = "ListGraphqlApisResponse";
|
|
521
|
+
const _LR = "ListResolvers";
|
|
522
|
+
const _LRBF = "ListResolversByFunction";
|
|
523
|
+
const _LRBFR = "ListResolversByFunctionRequest";
|
|
524
|
+
const _LRBFRi = "ListResolversByFunctionResponse";
|
|
525
|
+
const _LRR = "ListResolversRequest";
|
|
526
|
+
const _LRRi = "ListResolversResponse";
|
|
527
|
+
const _LSAA = "ListSourceApiAssociations";
|
|
528
|
+
const _LSAAR = "ListSourceApiAssociationsRequest";
|
|
529
|
+
const _LSAARi = "ListSourceApiAssociationsResponse";
|
|
530
|
+
const _LT = "ListTypes";
|
|
531
|
+
const _LTBA = "ListTypesByAssociation";
|
|
532
|
+
const _LTBAR = "ListTypesByAssociationRequest";
|
|
533
|
+
const _LTBARi = "ListTypesByAssociationResponse";
|
|
534
|
+
const _LTFR = "ListTagsForResource";
|
|
535
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
536
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
537
|
+
const _LTR = "ListTypesRequest";
|
|
538
|
+
const _LTRi = "ListTypesResponse";
|
|
539
|
+
const _NFE = "NotFoundException";
|
|
540
|
+
const _OIDCC = "OpenIDConnectConfig";
|
|
541
|
+
const _OSSDSC = "OpenSearchServiceDataSourceConfig";
|
|
542
|
+
const _PC = "PipelineConfig";
|
|
543
|
+
const _PGAEV = "PutGraphqlApiEnvironmentVariables";
|
|
544
|
+
const _PGAEVR = "PutGraphqlApiEnvironmentVariablesRequest";
|
|
545
|
+
const _PGAEVRu = "PutGraphqlApiEnvironmentVariablesResponse";
|
|
546
|
+
const _R = "Resolver";
|
|
547
|
+
const _RDAC = "RdsDataApiConfig";
|
|
548
|
+
const _RDDSC = "RelationalDatabaseDataSourceConfig";
|
|
549
|
+
const _RHEC = "RdsHttpEndpointConfig";
|
|
550
|
+
const _Re = "Resolvers";
|
|
551
|
+
const _SAA = "SourceApiAssociation";
|
|
552
|
+
const _SAAC = "SourceApiAssociationConfig";
|
|
553
|
+
const _SAAS = "SourceApiAssociationSummary";
|
|
554
|
+
const _SAASL = "SourceApiAssociationSummaryList";
|
|
555
|
+
const _SC = "SyncConfig";
|
|
556
|
+
const _SDSI = "StartDataSourceIntrospection";
|
|
557
|
+
const _SDSIR = "StartDataSourceIntrospectionRequest";
|
|
558
|
+
const _SDSIRt = "StartDataSourceIntrospectionResponse";
|
|
559
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
560
|
+
const _SSC = "StartSchemaCreation";
|
|
561
|
+
const _SSCR = "StartSchemaCreationRequest";
|
|
562
|
+
const _SSCRt = "StartSchemaCreationResponse";
|
|
563
|
+
const _SSM = "StartSchemaMerge";
|
|
564
|
+
const _SSMR = "StartSchemaMergeRequest";
|
|
565
|
+
const _SSMRt = "StartSchemaMergeResponse";
|
|
566
|
+
const _T = "Type";
|
|
567
|
+
const _TL = "TypeList";
|
|
568
|
+
const _TR = "TagResource";
|
|
569
|
+
const _TRR = "TagResourceRequest";
|
|
570
|
+
const _TRRa = "TagResourceResponse";
|
|
571
|
+
const _UA = "UpdateApi";
|
|
572
|
+
const _UAC = "UpdateApiCache";
|
|
573
|
+
const _UACR = "UpdateApiCacheRequest";
|
|
574
|
+
const _UACRp = "UpdateApiCacheResponse";
|
|
575
|
+
const _UAK = "UpdateApiKey";
|
|
576
|
+
const _UAKR = "UpdateApiKeyRequest";
|
|
577
|
+
const _UAKRp = "UpdateApiKeyResponse";
|
|
578
|
+
const _UAR = "UpdateApiRequest";
|
|
579
|
+
const _UARp = "UpdateApiResponse";
|
|
580
|
+
const _UCN = "UpdateChannelNamespace";
|
|
581
|
+
const _UCNR = "UpdateChannelNamespaceRequest";
|
|
582
|
+
const _UCNRp = "UpdateChannelNamespaceResponse";
|
|
583
|
+
const _UDN = "UpdateDomainName";
|
|
584
|
+
const _UDNR = "UpdateDomainNameRequest";
|
|
585
|
+
const _UDNRp = "UpdateDomainNameResponse";
|
|
586
|
+
const _UDS = "UpdateDataSource";
|
|
587
|
+
const _UDSR = "UpdateDataSourceRequest";
|
|
588
|
+
const _UDSRp = "UpdateDataSourceResponse";
|
|
589
|
+
const _UE = "UnauthorizedException";
|
|
590
|
+
const _UF = "UpdateFunction";
|
|
591
|
+
const _UFR = "UpdateFunctionRequest";
|
|
592
|
+
const _UFRp = "UpdateFunctionResponse";
|
|
593
|
+
const _UGA = "UpdateGraphqlApi";
|
|
594
|
+
const _UGAR = "UpdateGraphqlApiRequest";
|
|
595
|
+
const _UGARp = "UpdateGraphqlApiResponse";
|
|
596
|
+
const _UPC = "UserPoolConfig";
|
|
597
|
+
const _UR = "UntagResource";
|
|
598
|
+
const _URR = "UntagResourceRequest";
|
|
599
|
+
const _URRn = "UntagResourceResponse";
|
|
600
|
+
const _URRp = "UpdateResolverRequest";
|
|
601
|
+
const _URRpd = "UpdateResolverResponse";
|
|
602
|
+
const _URp = "UpdateResolver";
|
|
603
|
+
const _USAA = "UpdateSourceApiAssociation";
|
|
604
|
+
const _USAAR = "UpdateSourceApiAssociationRequest";
|
|
605
|
+
const _USAARp = "UpdateSourceApiAssociationResponse";
|
|
606
|
+
const _UT = "UpdateType";
|
|
607
|
+
const _UTR = "UpdateTypeRequest";
|
|
608
|
+
const _UTRp = "UpdateTypeResponse";
|
|
609
|
+
const _a = "api";
|
|
610
|
+
const _aA = "apiArn";
|
|
611
|
+
const _aAP = "additionalAuthenticationProviders";
|
|
612
|
+
const _aAp = "apiAssociation";
|
|
613
|
+
const _aAs = "associationArn";
|
|
614
|
+
const _aC = "apiCache";
|
|
615
|
+
const _aCB = "apiCachingBehavior";
|
|
616
|
+
const _aCu = "authorizationConfig";
|
|
617
|
+
const _aDN = "appsyncDomainName";
|
|
618
|
+
const _aI = "apiId";
|
|
619
|
+
const _aIC = "awsIamConfig";
|
|
620
|
+
const _aICR = "appIdClientRegex";
|
|
621
|
+
const _aIs = "associationId";
|
|
622
|
+
const _aK = "apiKey";
|
|
623
|
+
const _aKp = "apiKeys";
|
|
624
|
+
const _aP = "authProviders";
|
|
625
|
+
const _aR = "awsRegion";
|
|
626
|
+
const _aREE = "atRestEncryptionEnabled";
|
|
627
|
+
const _aRTIS = "authorizerResultTtlInSeconds";
|
|
628
|
+
const _aS = "associationStatus";
|
|
629
|
+
const _aSSA = "awsSecretStoreArn";
|
|
630
|
+
const _aT = "authenticationType";
|
|
631
|
+
const _aTTL = "authTTL";
|
|
632
|
+
const _aTp = "apiType";
|
|
633
|
+
const _aTu = "authType";
|
|
634
|
+
const _aTut = "authorizationType";
|
|
635
|
+
const _aU = "authorizerUri";
|
|
636
|
+
const _ap = "apis";
|
|
637
|
+
const _ar = "arn";
|
|
638
|
+
const _b = "behavior";
|
|
639
|
+
const _bTTTL = "baseTableTTL";
|
|
640
|
+
const _c = "client";
|
|
641
|
+
const _cA = "certificateArn";
|
|
642
|
+
const _cAM = "connectionAuthModes";
|
|
643
|
+
const _cC = "cognitoConfig";
|
|
644
|
+
const _cCa = "cachingConfig";
|
|
645
|
+
const _cD = "conflictDetection";
|
|
646
|
+
const _cE = "codeErrors";
|
|
647
|
+
const _cH = "codeHandlers";
|
|
648
|
+
const _cHo = "conflictHandler";
|
|
649
|
+
const _cI = "clientId";
|
|
650
|
+
const _cK = "cachingKeys";
|
|
651
|
+
const _cN = "channelNamespace";
|
|
652
|
+
const _cNA = "channelNamespaceArn";
|
|
653
|
+
const _cNh = "channelNamespaces";
|
|
654
|
+
const _cWLRA = "cloudWatchLogsRoleArn";
|
|
655
|
+
const _co = "column";
|
|
656
|
+
const _cod = "code";
|
|
657
|
+
const _con = "context";
|
|
658
|
+
const _cr = "created";
|
|
659
|
+
const _d = "detail";
|
|
660
|
+
const _dA = "defaultAction";
|
|
661
|
+
const _dC = "dynamodbConfig";
|
|
662
|
+
const _dCI = "dbClusterIdentifier";
|
|
663
|
+
const _dD = "deploymentDetail";
|
|
664
|
+
const _dN = "domainName";
|
|
665
|
+
const _dNA = "domainNameArn";
|
|
666
|
+
const _dNC = "domainNameConfig";
|
|
667
|
+
const _dNCo = "domainNameConfigs";
|
|
668
|
+
const _dNa = "databaseName";
|
|
669
|
+
const _dPAM = "defaultPublishAuthModes";
|
|
670
|
+
const _dS = "dataSource";
|
|
671
|
+
const _dSA = "dataSourceArn";
|
|
672
|
+
const _dSAM = "defaultSubscribeAuthModes";
|
|
673
|
+
const _dSC = "deltaSyncConfig";
|
|
674
|
+
const _dSLMB = "dataSourceLevelMetricsBehavior";
|
|
675
|
+
const _dSN = "dataSourceName";
|
|
676
|
+
const _dSTN = "deltaSyncTableName";
|
|
677
|
+
const _dSTTTL = "deltaSyncTableTTL";
|
|
678
|
+
const _dSa = "dataSources";
|
|
679
|
+
const _de = "description";
|
|
680
|
+
const _def = "definition";
|
|
681
|
+
const _del = "deletes";
|
|
682
|
+
const _det = "details";
|
|
683
|
+
const _dn = "dns";
|
|
684
|
+
const _e = "error";
|
|
685
|
+
const _eBA = "eventBusArn";
|
|
686
|
+
const _eBC = "eventBridgeConfig";
|
|
687
|
+
const _eC = "eventConfig";
|
|
688
|
+
const _eCl = "elasticsearchConfig";
|
|
689
|
+
const _eMC = "enhancedMetricsConfig";
|
|
690
|
+
const _eR = "evaluationResult";
|
|
691
|
+
const _eT = "errorType";
|
|
692
|
+
const _eV = "environmentVariables";
|
|
693
|
+
const _eVC = "excludeVerboseContent";
|
|
694
|
+
const _en = "endpoint";
|
|
695
|
+
const _ex = "expires";
|
|
696
|
+
const _f = "format";
|
|
697
|
+
const _fA = "functionArn";
|
|
698
|
+
const _fC = "functionConfiguration";
|
|
699
|
+
const _fI = "functionId";
|
|
700
|
+
const _fLL = "fieldLogLevel";
|
|
701
|
+
const _fN = "fieldName";
|
|
702
|
+
const _fV = "functionVersion";
|
|
703
|
+
const _fi = "fields";
|
|
704
|
+
const _fu = "function";
|
|
705
|
+
const _fun = "functions";
|
|
706
|
+
const _gA = "graphqlApi";
|
|
707
|
+
const _gAr = "graphqlApis";
|
|
708
|
+
const _h = "http";
|
|
709
|
+
const _hC = "handlerConfigs";
|
|
710
|
+
const _hCt = "httpConfig";
|
|
711
|
+
const _hE = "httpError";
|
|
712
|
+
const _hMC = "healthMetricsConfig";
|
|
713
|
+
const _hQ = "httpQuery";
|
|
714
|
+
const _hZI = "hostedZoneId";
|
|
715
|
+
const _i = "id";
|
|
716
|
+
const _iC = "introspectionConfig";
|
|
717
|
+
const _iD = "includeDirectives";
|
|
718
|
+
const _iI = "introspectionId";
|
|
719
|
+
const _iMSDL = "includeModelsSDL";
|
|
720
|
+
const _iR = "introspectionResult";
|
|
721
|
+
const _iS = "introspectionStatus";
|
|
722
|
+
const _iSD = "introspectionStatusDetail";
|
|
723
|
+
const _iT = "invokeType";
|
|
724
|
+
const _iTTL = "iatTTL";
|
|
725
|
+
const _iVE = "identityValidationExpression";
|
|
726
|
+
const _in = "indexes";
|
|
727
|
+
const _int = "integration";
|
|
728
|
+
const _is = "issuer";
|
|
729
|
+
const _k = "kind";
|
|
730
|
+
const _l = "location";
|
|
731
|
+
const _lAC = "lambdaAuthorizerConfig";
|
|
732
|
+
const _lC = "lambdaConfig";
|
|
733
|
+
const _lCHA = "lambdaConflictHandlerArn";
|
|
734
|
+
const _lCHC = "lambdaConflictHandlerConfig";
|
|
735
|
+
const _lCo = "logConfig";
|
|
736
|
+
const _lFA = "lambdaFunctionArn";
|
|
737
|
+
const _lL = "logLevel";
|
|
738
|
+
const _lM = "lastModified";
|
|
739
|
+
const _lSMD = "lastSuccessfulMergeDate";
|
|
740
|
+
const _le = "length";
|
|
741
|
+
const _li = "line";
|
|
742
|
+
const _lo = "logs";
|
|
743
|
+
const _m = "message";
|
|
744
|
+
const _mAA = "mergedApiArn";
|
|
745
|
+
const _mAERA = "mergedApiExecutionRoleArn";
|
|
746
|
+
const _mAI = "mergedApiIdentifier";
|
|
747
|
+
const _mAIe = "mergedApiId";
|
|
748
|
+
const _mBS = "maxBatchSize";
|
|
749
|
+
const _mC = "metricsConfig";
|
|
750
|
+
const _mR = "maxResults";
|
|
751
|
+
const _mT = "mergeType";
|
|
752
|
+
const _mo = "models";
|
|
753
|
+
const _n = "name";
|
|
754
|
+
const _nT = "nextToken";
|
|
755
|
+
const _o = "owner";
|
|
756
|
+
const _oC = "ownerContact";
|
|
757
|
+
const _oE = "outErrors";
|
|
758
|
+
const _oIDCC = "openIDConnectConfig";
|
|
759
|
+
const _oLMC = "operationLevelMetricsConfig";
|
|
760
|
+
const _oP = "onPublish";
|
|
761
|
+
const _oS = "onSubscribe";
|
|
762
|
+
const _oSSC = "openSearchServiceConfig";
|
|
763
|
+
const _pAM = "publishAuthModes";
|
|
764
|
+
const _pC = "pipelineConfig";
|
|
765
|
+
const _pK = "primaryKey";
|
|
766
|
+
const _qDL = "queryDepthLimit";
|
|
767
|
+
const _r = "reason";
|
|
768
|
+
const _rA = "resourceArn";
|
|
769
|
+
const _rAe = "resolverArn";
|
|
770
|
+
const _rCL = "resolverCountLimit";
|
|
771
|
+
const _rDAC = "rdsDataApiConfig";
|
|
772
|
+
const _rDC = "relationalDatabaseConfig";
|
|
773
|
+
const _rDST = "relationalDatabaseSourceType";
|
|
774
|
+
const _rHEC = "rdsHttpEndpointConfig";
|
|
775
|
+
const _rLMB = "resolverLevelMetricsBehavior";
|
|
776
|
+
const _rMT = "requestMappingTemplate";
|
|
777
|
+
const _rMTe = "responseMappingTemplate";
|
|
778
|
+
const _rV = "runtimeVersion";
|
|
779
|
+
const _re = "resolver";
|
|
780
|
+
const _res = "resolvers";
|
|
781
|
+
const _ru = "runtime";
|
|
782
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.appsync";
|
|
783
|
+
const _sA = "secretArn";
|
|
784
|
+
const _sAA = "sourceApiAssociation";
|
|
785
|
+
const _sAAC = "sourceApiAssociationConfig";
|
|
786
|
+
const _sAAS = "sourceApiAssociationStatus";
|
|
787
|
+
const _sAASD = "sourceApiAssociationStatusDetail";
|
|
788
|
+
const _sAASo = "sourceApiAssociationSummaries";
|
|
789
|
+
const _sAAo = "sourceApiArn";
|
|
790
|
+
const _sAI = "sourceApiIdentifier";
|
|
791
|
+
const _sAIo = "sourceApiId";
|
|
792
|
+
const _sAM = "subscribeAuthModes";
|
|
793
|
+
const _sC = "syncConfig";
|
|
794
|
+
const _sR = "signingRegion";
|
|
795
|
+
const _sRA = "serviceRoleArn";
|
|
796
|
+
const _sSN = "signingServiceName";
|
|
797
|
+
const _sc = "schema";
|
|
798
|
+
const _sd = "sdl";
|
|
799
|
+
const _se = "server";
|
|
800
|
+
const _sp = "span";
|
|
801
|
+
const _st = "status";
|
|
802
|
+
const _sta = "stash";
|
|
803
|
+
const _t = "tags";
|
|
804
|
+
const _tEE = "transitEncryptionEnabled";
|
|
805
|
+
const _tK = "tagKeys";
|
|
806
|
+
const _tN = "typeName";
|
|
807
|
+
const _tNa = "tableName";
|
|
808
|
+
const _te = "template";
|
|
809
|
+
const _tt = "ttl";
|
|
810
|
+
const _ty = "type";
|
|
811
|
+
const _typ = "types";
|
|
812
|
+
const _u = "uris";
|
|
813
|
+
const _uCC = "useCallerCredentials";
|
|
814
|
+
const _uPC = "userPoolConfig";
|
|
815
|
+
const _uPI = "userPoolId";
|
|
816
|
+
const _v = "value";
|
|
817
|
+
const _va = "values";
|
|
818
|
+
const _ve = "versioned";
|
|
819
|
+
const _vi = "visibility";
|
|
820
|
+
const _wWAA = "wafWebAclArn";
|
|
821
|
+
const _xE = "xrayEnabled";
|
|
822
|
+
const n0 = "com.amazonaws.appsync";
|
|
823
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
824
|
+
var AppSyncServiceException$ = [-3, _s, "AppSyncServiceException", 0, [], []];
|
|
825
|
+
_s_registry.registerError(AppSyncServiceException$, AppSyncServiceException);
|
|
826
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
827
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
828
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
829
|
+
[_m],
|
|
830
|
+
[0]
|
|
831
|
+
];
|
|
832
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
833
|
+
var ApiKeyLimitExceededException$ = [-3, n0, _AKLEE,
|
|
834
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
835
|
+
[_m],
|
|
836
|
+
[0]
|
|
837
|
+
];
|
|
838
|
+
n0_registry.registerError(ApiKeyLimitExceededException$, ApiKeyLimitExceededException);
|
|
839
|
+
var ApiKeyValidityOutOfBoundsException$ = [-3, n0, _AKVOOBE,
|
|
840
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
841
|
+
[_m],
|
|
842
|
+
[0]
|
|
843
|
+
];
|
|
844
|
+
n0_registry.registerError(ApiKeyValidityOutOfBoundsException$, ApiKeyValidityOutOfBoundsException);
|
|
845
|
+
var ApiLimitExceededException$ = [-3, n0, _ALEE,
|
|
846
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
847
|
+
[_m],
|
|
848
|
+
[0]
|
|
849
|
+
];
|
|
850
|
+
n0_registry.registerError(ApiLimitExceededException$, ApiLimitExceededException);
|
|
851
|
+
var BadRequestException$ = [-3, n0, _BRE,
|
|
852
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
853
|
+
[_m, _r, _d],
|
|
854
|
+
[0, 0, () => BadRequestDetail$]
|
|
855
|
+
];
|
|
856
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
857
|
+
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
858
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
859
|
+
[_m],
|
|
860
|
+
[0]
|
|
861
|
+
];
|
|
862
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
863
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
864
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
865
|
+
[_m],
|
|
866
|
+
[0]
|
|
867
|
+
];
|
|
868
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
869
|
+
var GraphQLSchemaException$ = [-3, n0, _GQLSE,
|
|
870
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
871
|
+
[_m],
|
|
872
|
+
[0]
|
|
873
|
+
];
|
|
874
|
+
n0_registry.registerError(GraphQLSchemaException$, GraphQLSchemaException);
|
|
875
|
+
var InternalFailureException$ = [-3, n0, _IFE,
|
|
876
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
877
|
+
[_m],
|
|
878
|
+
[0]
|
|
879
|
+
];
|
|
880
|
+
n0_registry.registerError(InternalFailureException$, InternalFailureException);
|
|
881
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
882
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
883
|
+
[_m],
|
|
884
|
+
[0]
|
|
885
|
+
];
|
|
886
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
887
|
+
var NotFoundException$ = [-3, n0, _NFE,
|
|
888
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
889
|
+
[_m],
|
|
890
|
+
[0]
|
|
891
|
+
];
|
|
892
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
893
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
894
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
895
|
+
[_m],
|
|
896
|
+
[0]
|
|
897
|
+
];
|
|
898
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
899
|
+
var UnauthorizedException$ = [-3, n0, _UE,
|
|
900
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
901
|
+
[_m],
|
|
902
|
+
[0]
|
|
903
|
+
];
|
|
904
|
+
n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
|
|
905
|
+
const errorTypeRegistries = [
|
|
906
|
+
_s_registry,
|
|
907
|
+
n0_registry,
|
|
908
|
+
];
|
|
909
|
+
var AdditionalAuthenticationProvider$ = [3, n0, _AAP,
|
|
910
|
+
0,
|
|
911
|
+
[_aT, _oIDCC, _uPC, _lAC],
|
|
912
|
+
[0, () => OpenIDConnectConfig$, () => CognitoUserPoolConfig$, () => LambdaAuthorizerConfig$]
|
|
913
|
+
];
|
|
914
|
+
var Api$ = [3, n0, _A,
|
|
915
|
+
0,
|
|
916
|
+
[_aI, _n, _oC, _t, _dn, _aA, _cr, _xE, _wWAA, _eC],
|
|
917
|
+
[0, 0, 0, 128 | 0, 128 | 0, 0, 4, 2, 0, () => EventConfig$]
|
|
918
|
+
];
|
|
919
|
+
var ApiAssociation$ = [3, n0, _AA,
|
|
920
|
+
0,
|
|
921
|
+
[_dN, _aI, _aS, _dD],
|
|
922
|
+
[0, 0, 0, 0]
|
|
923
|
+
];
|
|
924
|
+
var ApiCache$ = [3, n0, _AC,
|
|
925
|
+
0,
|
|
926
|
+
[_tt, _aCB, _tEE, _aREE, _ty, _st, _hMC],
|
|
927
|
+
[1, 0, 2, 2, 0, 0, 0]
|
|
928
|
+
];
|
|
929
|
+
var ApiKey$ = [3, n0, _AK,
|
|
930
|
+
0,
|
|
931
|
+
[_i, _de, _ex, _del],
|
|
932
|
+
[0, 0, 1, 1]
|
|
933
|
+
];
|
|
934
|
+
var AppSyncRuntime$ = [3, n0, _ASR,
|
|
935
|
+
0,
|
|
936
|
+
[_n, _rV],
|
|
937
|
+
[0, 0], 2
|
|
938
|
+
];
|
|
939
|
+
var AssociateApiRequest$ = [3, n0, _AAR,
|
|
940
|
+
0,
|
|
941
|
+
[_dN, _aI],
|
|
942
|
+
[[0, 1], 0], 2
|
|
943
|
+
];
|
|
944
|
+
var AssociateApiResponse$ = [3, n0, _AARs,
|
|
945
|
+
0,
|
|
946
|
+
[_aAp],
|
|
947
|
+
[() => ApiAssociation$]
|
|
948
|
+
];
|
|
949
|
+
var AssociateMergedGraphqlApiRequest$ = [3, n0, _AMGAR,
|
|
950
|
+
0,
|
|
951
|
+
[_sAI, _mAI, _de, _sAAC],
|
|
952
|
+
[[0, 1], 0, 0, () => SourceApiAssociationConfig$], 2
|
|
953
|
+
];
|
|
954
|
+
var AssociateMergedGraphqlApiResponse$ = [3, n0, _AMGARs,
|
|
955
|
+
0,
|
|
956
|
+
[_sAA],
|
|
957
|
+
[() => SourceApiAssociation$]
|
|
958
|
+
];
|
|
959
|
+
var AssociateSourceGraphqlApiRequest$ = [3, n0, _ASGAR,
|
|
960
|
+
0,
|
|
961
|
+
[_mAI, _sAI, _de, _sAAC],
|
|
962
|
+
[[0, 1], 0, 0, () => SourceApiAssociationConfig$], 2
|
|
963
|
+
];
|
|
964
|
+
var AssociateSourceGraphqlApiResponse$ = [3, n0, _ASGARs,
|
|
965
|
+
0,
|
|
966
|
+
[_sAA],
|
|
967
|
+
[() => SourceApiAssociation$]
|
|
968
|
+
];
|
|
969
|
+
var AuthMode$ = [3, n0, _AM,
|
|
970
|
+
0,
|
|
971
|
+
[_aTu],
|
|
972
|
+
[0], 1
|
|
973
|
+
];
|
|
974
|
+
var AuthorizationConfig$ = [3, n0, _ACu,
|
|
975
|
+
0,
|
|
976
|
+
[_aTut, _aIC],
|
|
977
|
+
[0, () => AwsIamConfig$], 1
|
|
978
|
+
];
|
|
979
|
+
var AuthProvider$ = [3, n0, _AP,
|
|
980
|
+
0,
|
|
981
|
+
[_aTu, _cC, _oIDCC, _lAC],
|
|
982
|
+
[0, () => CognitoConfig$, () => OpenIDConnectConfig$, () => LambdaAuthorizerConfig$], 1
|
|
983
|
+
];
|
|
984
|
+
var AwsIamConfig$ = [3, n0, _AIC,
|
|
985
|
+
0,
|
|
986
|
+
[_sR, _sSN],
|
|
987
|
+
[0, 0]
|
|
988
|
+
];
|
|
989
|
+
var BadRequestDetail$ = [3, n0, _BRD,
|
|
990
|
+
0,
|
|
991
|
+
[_cE],
|
|
992
|
+
[() => CodeErrors]
|
|
993
|
+
];
|
|
994
|
+
var CachingConfig$ = [3, n0, _CC,
|
|
995
|
+
0,
|
|
996
|
+
[_tt, _cK],
|
|
997
|
+
[1, 64 | 0], 1
|
|
998
|
+
];
|
|
999
|
+
var ChannelNamespace$ = [3, n0, _CN,
|
|
1000
|
+
0,
|
|
1001
|
+
[_aI, _n, _sAM, _pAM, _cH, _t, _cNA, _cr, _lM, _hC],
|
|
1002
|
+
[0, 0, () => AuthModes, () => AuthModes, 0, 128 | 0, 0, 4, 4, () => HandlerConfigs$]
|
|
1003
|
+
];
|
|
1004
|
+
var CodeError$ = [3, n0, _CEo,
|
|
1005
|
+
0,
|
|
1006
|
+
[_eT, _v, _l],
|
|
1007
|
+
[0, 0, () => CodeErrorLocation$]
|
|
1008
|
+
];
|
|
1009
|
+
var CodeErrorLocation$ = [3, n0, _CEL,
|
|
1010
|
+
0,
|
|
1011
|
+
[_li, _co, _sp],
|
|
1012
|
+
[1, 1, 1]
|
|
1013
|
+
];
|
|
1014
|
+
var CognitoConfig$ = [3, n0, _CCo,
|
|
1015
|
+
0,
|
|
1016
|
+
[_uPI, _aR, _aICR],
|
|
1017
|
+
[0, 0, 0], 2
|
|
1018
|
+
];
|
|
1019
|
+
var CognitoUserPoolConfig$ = [3, n0, _CUPC,
|
|
1020
|
+
0,
|
|
1021
|
+
[_uPI, _aR, _aICR],
|
|
1022
|
+
[0, 0, 0], 2
|
|
1023
|
+
];
|
|
1024
|
+
var CreateApiCacheRequest$ = [3, n0, _CACR,
|
|
1025
|
+
0,
|
|
1026
|
+
[_aI, _tt, _aCB, _ty, _tEE, _aREE, _hMC],
|
|
1027
|
+
[[0, 1], 1, 0, 0, 2, 2, 0], 4
|
|
1028
|
+
];
|
|
1029
|
+
var CreateApiCacheResponse$ = [3, n0, _CACRr,
|
|
1030
|
+
0,
|
|
1031
|
+
[_aC],
|
|
1032
|
+
[() => ApiCache$]
|
|
1033
|
+
];
|
|
1034
|
+
var CreateApiKeyRequest$ = [3, n0, _CAKR,
|
|
1035
|
+
0,
|
|
1036
|
+
[_aI, _de, _ex],
|
|
1037
|
+
[[0, 1], 0, 1], 1
|
|
1038
|
+
];
|
|
1039
|
+
var CreateApiKeyResponse$ = [3, n0, _CAKRr,
|
|
1040
|
+
0,
|
|
1041
|
+
[_aK],
|
|
1042
|
+
[() => ApiKey$]
|
|
1043
|
+
];
|
|
1044
|
+
var CreateApiRequest$ = [3, n0, _CAR,
|
|
1045
|
+
0,
|
|
1046
|
+
[_n, _eC, _oC, _t],
|
|
1047
|
+
[0, () => EventConfig$, 0, 128 | 0], 2
|
|
1048
|
+
];
|
|
1049
|
+
var CreateApiResponse$ = [3, n0, _CARr,
|
|
1050
|
+
0,
|
|
1051
|
+
[_a],
|
|
1052
|
+
[() => Api$]
|
|
1053
|
+
];
|
|
1054
|
+
var CreateChannelNamespaceRequest$ = [3, n0, _CCNR,
|
|
1055
|
+
0,
|
|
1056
|
+
[_aI, _n, _sAM, _pAM, _cH, _t, _hC],
|
|
1057
|
+
[[0, 1], 0, () => AuthModes, () => AuthModes, 0, 128 | 0, () => HandlerConfigs$], 2
|
|
1058
|
+
];
|
|
1059
|
+
var CreateChannelNamespaceResponse$ = [3, n0, _CCNRr,
|
|
1060
|
+
0,
|
|
1061
|
+
[_cN],
|
|
1062
|
+
[() => ChannelNamespace$]
|
|
1063
|
+
];
|
|
1064
|
+
var CreateDataSourceRequest$ = [3, n0, _CDSR,
|
|
1065
|
+
0,
|
|
1066
|
+
[_aI, _n, _ty, _de, _sRA, _dC, _lC, _eCl, _oSSC, _hCt, _rDC, _eBC, _mC],
|
|
1067
|
+
[[0, 1], 0, 0, 0, 0, () => DynamodbDataSourceConfig$, () => LambdaDataSourceConfig$, () => ElasticsearchDataSourceConfig$, () => OpenSearchServiceDataSourceConfig$, () => HttpDataSourceConfig$, () => RelationalDatabaseDataSourceConfig$, () => EventBridgeDataSourceConfig$, 0], 3
|
|
1068
|
+
];
|
|
1069
|
+
var CreateDataSourceResponse$ = [3, n0, _CDSRr,
|
|
1070
|
+
0,
|
|
1071
|
+
[_dS],
|
|
1072
|
+
[() => DataSource$]
|
|
1073
|
+
];
|
|
1074
|
+
var CreateDomainNameRequest$ = [3, n0, _CDNR,
|
|
1075
|
+
0,
|
|
1076
|
+
[_dN, _cA, _de, _t],
|
|
1077
|
+
[0, 0, 0, 128 | 0], 2
|
|
1078
|
+
];
|
|
1079
|
+
var CreateDomainNameResponse$ = [3, n0, _CDNRr,
|
|
1080
|
+
0,
|
|
1081
|
+
[_dNC],
|
|
1082
|
+
[() => DomainNameConfig$]
|
|
1083
|
+
];
|
|
1084
|
+
var CreateFunctionRequest$ = [3, n0, _CFR,
|
|
1085
|
+
0,
|
|
1086
|
+
[_aI, _n, _dSN, _de, _rMT, _rMTe, _fV, _sC, _mBS, _ru, _cod],
|
|
1087
|
+
[[0, 1], 0, 0, 0, 0, 0, 0, () => SyncConfig$, 1, () => AppSyncRuntime$, 0], 3
|
|
1088
|
+
];
|
|
1089
|
+
var CreateFunctionResponse$ = [3, n0, _CFRr,
|
|
1090
|
+
0,
|
|
1091
|
+
[_fC],
|
|
1092
|
+
[() => FunctionConfiguration$]
|
|
1093
|
+
];
|
|
1094
|
+
var CreateGraphqlApiRequest$ = [3, n0, _CGAR,
|
|
1095
|
+
0,
|
|
1096
|
+
[_n, _aT, _lCo, _uPC, _oIDCC, _t, _aAP, _xE, _lAC, _aTp, _mAERA, _vi, _oC, _iC, _qDL, _rCL, _eMC],
|
|
1097
|
+
[0, 0, () => LogConfig$, () => UserPoolConfig$, () => OpenIDConnectConfig$, 128 | 0, () => AdditionalAuthenticationProviders, 2, () => LambdaAuthorizerConfig$, 0, 0, 0, 0, 0, 1, 1, () => EnhancedMetricsConfig$], 2
|
|
1098
|
+
];
|
|
1099
|
+
var CreateGraphqlApiResponse$ = [3, n0, _CGARr,
|
|
1100
|
+
0,
|
|
1101
|
+
[_gA],
|
|
1102
|
+
[() => GraphqlApi$]
|
|
1103
|
+
];
|
|
1104
|
+
var CreateResolverRequest$ = [3, n0, _CRR,
|
|
1105
|
+
0,
|
|
1106
|
+
[_aI, _tN, _fN, _dSN, _rMT, _rMTe, _k, _pC, _sC, _cCa, _mBS, _ru, _cod, _mC],
|
|
1107
|
+
[[0, 1], [0, 1], 0, 0, 0, 0, 0, () => PipelineConfig$, () => SyncConfig$, () => CachingConfig$, 1, () => AppSyncRuntime$, 0, 0], 3
|
|
1108
|
+
];
|
|
1109
|
+
var CreateResolverResponse$ = [3, n0, _CRRr,
|
|
1110
|
+
0,
|
|
1111
|
+
[_re],
|
|
1112
|
+
[() => Resolver$]
|
|
1113
|
+
];
|
|
1114
|
+
var CreateTypeRequest$ = [3, n0, _CTR,
|
|
1115
|
+
0,
|
|
1116
|
+
[_aI, _def, _f],
|
|
1117
|
+
[[0, 1], 0, 0], 3
|
|
1118
|
+
];
|
|
1119
|
+
var CreateTypeResponse$ = [3, n0, _CTRr,
|
|
1120
|
+
0,
|
|
1121
|
+
[_ty],
|
|
1122
|
+
[() => Type$]
|
|
1123
|
+
];
|
|
1124
|
+
var DataSource$ = [3, n0, _DS,
|
|
1125
|
+
0,
|
|
1126
|
+
[_dSA, _n, _de, _ty, _sRA, _dC, _lC, _eCl, _oSSC, _hCt, _rDC, _eBC, _mC],
|
|
1127
|
+
[0, 0, 0, 0, 0, () => DynamodbDataSourceConfig$, () => LambdaDataSourceConfig$, () => ElasticsearchDataSourceConfig$, () => OpenSearchServiceDataSourceConfig$, () => HttpDataSourceConfig$, () => RelationalDatabaseDataSourceConfig$, () => EventBridgeDataSourceConfig$, 0]
|
|
1128
|
+
];
|
|
1129
|
+
var DataSourceIntrospectionModel$ = [3, n0, _DSIM,
|
|
1130
|
+
0,
|
|
1131
|
+
[_n, _fi, _pK, _in, _sd],
|
|
1132
|
+
[0, () => DataSourceIntrospectionModelFields, () => DataSourceIntrospectionModelIndex$, () => DataSourceIntrospectionModelIndexes, 0]
|
|
1133
|
+
];
|
|
1134
|
+
var DataSourceIntrospectionModelField$ = [3, n0, _DSIMF,
|
|
1135
|
+
0,
|
|
1136
|
+
[_n, _ty, _le],
|
|
1137
|
+
[0, () => DataSourceIntrospectionModelFieldType$, 1]
|
|
1138
|
+
];
|
|
1139
|
+
var DataSourceIntrospectionModelFieldType$ = [3, n0, _DSIMFT,
|
|
1140
|
+
0,
|
|
1141
|
+
[_k, _n, _ty, _va],
|
|
1142
|
+
[0, 0, () => DataSourceIntrospectionModelFieldType$, 64 | 0]
|
|
1143
|
+
];
|
|
1144
|
+
var DataSourceIntrospectionModelIndex$ = [3, n0, _DSIMI,
|
|
1145
|
+
0,
|
|
1146
|
+
[_n, _fi],
|
|
1147
|
+
[0, 64 | 0]
|
|
1148
|
+
];
|
|
1149
|
+
var DataSourceIntrospectionResult$ = [3, n0, _DSIR,
|
|
1150
|
+
0,
|
|
1151
|
+
[_mo, _nT],
|
|
1152
|
+
[() => DataSourceIntrospectionModels, 0]
|
|
1153
|
+
];
|
|
1154
|
+
var DeleteApiCacheRequest$ = [3, n0, _DACR,
|
|
1155
|
+
0,
|
|
1156
|
+
[_aI],
|
|
1157
|
+
[[0, 1]], 1
|
|
1158
|
+
];
|
|
1159
|
+
var DeleteApiCacheResponse$ = [3, n0, _DACRe,
|
|
1160
|
+
0,
|
|
1161
|
+
[],
|
|
1162
|
+
[]
|
|
1163
|
+
];
|
|
1164
|
+
var DeleteApiKeyRequest$ = [3, n0, _DAKR,
|
|
1165
|
+
0,
|
|
1166
|
+
[_aI, _i],
|
|
1167
|
+
[[0, 1], [0, 1]], 2
|
|
1168
|
+
];
|
|
1169
|
+
var DeleteApiKeyResponse$ = [3, n0, _DAKRe,
|
|
1170
|
+
0,
|
|
1171
|
+
[],
|
|
1172
|
+
[]
|
|
1173
|
+
];
|
|
1174
|
+
var DeleteApiRequest$ = [3, n0, _DAR,
|
|
1175
|
+
0,
|
|
1176
|
+
[_aI],
|
|
1177
|
+
[[0, 1]], 1
|
|
1178
|
+
];
|
|
1179
|
+
var DeleteApiResponse$ = [3, n0, _DARe,
|
|
1180
|
+
0,
|
|
1181
|
+
[],
|
|
1182
|
+
[]
|
|
1183
|
+
];
|
|
1184
|
+
var DeleteChannelNamespaceRequest$ = [3, n0, _DCNR,
|
|
1185
|
+
0,
|
|
1186
|
+
[_aI, _n],
|
|
1187
|
+
[[0, 1], [0, 1]], 2
|
|
1188
|
+
];
|
|
1189
|
+
var DeleteChannelNamespaceResponse$ = [3, n0, _DCNRe,
|
|
1190
|
+
0,
|
|
1191
|
+
[],
|
|
1192
|
+
[]
|
|
1193
|
+
];
|
|
1194
|
+
var DeleteDataSourceRequest$ = [3, n0, _DDSR,
|
|
1195
|
+
0,
|
|
1196
|
+
[_aI, _n],
|
|
1197
|
+
[[0, 1], [0, 1]], 2
|
|
1198
|
+
];
|
|
1199
|
+
var DeleteDataSourceResponse$ = [3, n0, _DDSRe,
|
|
1200
|
+
0,
|
|
1201
|
+
[],
|
|
1202
|
+
[]
|
|
1203
|
+
];
|
|
1204
|
+
var DeleteDomainNameRequest$ = [3, n0, _DDNR,
|
|
1205
|
+
0,
|
|
1206
|
+
[_dN],
|
|
1207
|
+
[[0, 1]], 1
|
|
1208
|
+
];
|
|
1209
|
+
var DeleteDomainNameResponse$ = [3, n0, _DDNRe,
|
|
1210
|
+
0,
|
|
1211
|
+
[],
|
|
1212
|
+
[]
|
|
1213
|
+
];
|
|
1214
|
+
var DeleteFunctionRequest$ = [3, n0, _DFR,
|
|
1215
|
+
0,
|
|
1216
|
+
[_aI, _fI],
|
|
1217
|
+
[[0, 1], [0, 1]], 2
|
|
1218
|
+
];
|
|
1219
|
+
var DeleteFunctionResponse$ = [3, n0, _DFRe,
|
|
1220
|
+
0,
|
|
1221
|
+
[],
|
|
1222
|
+
[]
|
|
1223
|
+
];
|
|
1224
|
+
var DeleteGraphqlApiRequest$ = [3, n0, _DGAR,
|
|
1225
|
+
0,
|
|
1226
|
+
[_aI],
|
|
1227
|
+
[[0, 1]], 1
|
|
1228
|
+
];
|
|
1229
|
+
var DeleteGraphqlApiResponse$ = [3, n0, _DGARe,
|
|
1230
|
+
0,
|
|
1231
|
+
[],
|
|
1232
|
+
[]
|
|
1233
|
+
];
|
|
1234
|
+
var DeleteResolverRequest$ = [3, n0, _DRR,
|
|
1235
|
+
0,
|
|
1236
|
+
[_aI, _tN, _fN],
|
|
1237
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1238
|
+
];
|
|
1239
|
+
var DeleteResolverResponse$ = [3, n0, _DRRe,
|
|
1240
|
+
0,
|
|
1241
|
+
[],
|
|
1242
|
+
[]
|
|
1243
|
+
];
|
|
1244
|
+
var DeleteTypeRequest$ = [3, n0, _DTR,
|
|
1245
|
+
0,
|
|
1246
|
+
[_aI, _tN],
|
|
1247
|
+
[[0, 1], [0, 1]], 2
|
|
1248
|
+
];
|
|
1249
|
+
var DeleteTypeResponse$ = [3, n0, _DTRe,
|
|
1250
|
+
0,
|
|
1251
|
+
[],
|
|
1252
|
+
[]
|
|
1253
|
+
];
|
|
1254
|
+
var DeltaSyncConfig$ = [3, n0, _DSC,
|
|
1255
|
+
0,
|
|
1256
|
+
[_bTTTL, _dSTN, _dSTTTL],
|
|
1257
|
+
[1, 0, 1]
|
|
1258
|
+
];
|
|
1259
|
+
var DisassociateApiRequest$ = [3, n0, _DARi,
|
|
1260
|
+
0,
|
|
1261
|
+
[_dN],
|
|
1262
|
+
[[0, 1]], 1
|
|
1263
|
+
];
|
|
1264
|
+
var DisassociateApiResponse$ = [3, n0, _DARis,
|
|
1265
|
+
0,
|
|
1266
|
+
[],
|
|
1267
|
+
[]
|
|
1268
|
+
];
|
|
1269
|
+
var DisassociateMergedGraphqlApiRequest$ = [3, n0, _DMGAR,
|
|
1270
|
+
0,
|
|
1271
|
+
[_sAI, _aIs],
|
|
1272
|
+
[[0, 1], [0, 1]], 2
|
|
1273
|
+
];
|
|
1274
|
+
var DisassociateMergedGraphqlApiResponse$ = [3, n0, _DMGARi,
|
|
1275
|
+
0,
|
|
1276
|
+
[_sAAS],
|
|
1277
|
+
[0]
|
|
1278
|
+
];
|
|
1279
|
+
var DisassociateSourceGraphqlApiRequest$ = [3, n0, _DSGAR,
|
|
1280
|
+
0,
|
|
1281
|
+
[_mAI, _aIs],
|
|
1282
|
+
[[0, 1], [0, 1]], 2
|
|
1283
|
+
];
|
|
1284
|
+
var DisassociateSourceGraphqlApiResponse$ = [3, n0, _DSGARi,
|
|
1285
|
+
0,
|
|
1286
|
+
[_sAAS],
|
|
1287
|
+
[0]
|
|
1288
|
+
];
|
|
1289
|
+
var DomainNameConfig$ = [3, n0, _DNC,
|
|
1290
|
+
0,
|
|
1291
|
+
[_dN, _de, _cA, _aDN, _hZI, _t, _dNA],
|
|
1292
|
+
[0, 0, 0, 0, 0, 128 | 0, 0]
|
|
1293
|
+
];
|
|
1294
|
+
var DynamodbDataSourceConfig$ = [3, n0, _DDSC,
|
|
1295
|
+
0,
|
|
1296
|
+
[_tNa, _aR, _uCC, _dSC, _ve],
|
|
1297
|
+
[0, 0, 2, () => DeltaSyncConfig$, 2], 2
|
|
1298
|
+
];
|
|
1299
|
+
var ElasticsearchDataSourceConfig$ = [3, n0, _EDSC,
|
|
1300
|
+
0,
|
|
1301
|
+
[_en, _aR],
|
|
1302
|
+
[0, 0], 2
|
|
1303
|
+
];
|
|
1304
|
+
var EnhancedMetricsConfig$ = [3, n0, _EMC,
|
|
1305
|
+
0,
|
|
1306
|
+
[_rLMB, _dSLMB, _oLMC],
|
|
1307
|
+
[0, 0, 0], 3
|
|
1308
|
+
];
|
|
1309
|
+
var ErrorDetail$ = [3, n0, _ED,
|
|
1310
|
+
0,
|
|
1311
|
+
[_m],
|
|
1312
|
+
[0]
|
|
1313
|
+
];
|
|
1314
|
+
var EvaluateCodeErrorDetail$ = [3, n0, _ECED,
|
|
1315
|
+
0,
|
|
1316
|
+
[_m, _cE],
|
|
1317
|
+
[0, () => CodeErrors]
|
|
1318
|
+
];
|
|
1319
|
+
var EvaluateCodeRequest$ = [3, n0, _ECR,
|
|
1320
|
+
0,
|
|
1321
|
+
[_ru, _cod, _con, _fu],
|
|
1322
|
+
[() => AppSyncRuntime$, 0, 0, 0], 3
|
|
1323
|
+
];
|
|
1324
|
+
var EvaluateCodeResponse$ = [3, n0, _ECRv,
|
|
1325
|
+
0,
|
|
1326
|
+
[_eR, _e, _lo, _sta, _oE],
|
|
1327
|
+
[0, () => EvaluateCodeErrorDetail$, 64 | 0, 0, 0]
|
|
1328
|
+
];
|
|
1329
|
+
var EvaluateMappingTemplateRequest$ = [3, n0, _EMTR,
|
|
1330
|
+
0,
|
|
1331
|
+
[_te, _con],
|
|
1332
|
+
[0, 0], 2
|
|
1333
|
+
];
|
|
1334
|
+
var EvaluateMappingTemplateResponse$ = [3, n0, _EMTRv,
|
|
1335
|
+
0,
|
|
1336
|
+
[_eR, _e, _lo, _sta, _oE],
|
|
1337
|
+
[0, () => ErrorDetail$, 64 | 0, 0, 0]
|
|
1338
|
+
];
|
|
1339
|
+
var EventBridgeDataSourceConfig$ = [3, n0, _EBDSC,
|
|
1340
|
+
0,
|
|
1341
|
+
[_eBA],
|
|
1342
|
+
[0], 1
|
|
1343
|
+
];
|
|
1344
|
+
var EventConfig$ = [3, n0, _EC,
|
|
1345
|
+
0,
|
|
1346
|
+
[_aP, _cAM, _dPAM, _dSAM, _lCo],
|
|
1347
|
+
[() => AuthProviders, () => AuthModes, () => AuthModes, () => AuthModes, () => EventLogConfig$], 4
|
|
1348
|
+
];
|
|
1349
|
+
var EventLogConfig$ = [3, n0, _ELC,
|
|
1350
|
+
0,
|
|
1351
|
+
[_lL, _cWLRA],
|
|
1352
|
+
[0, 0], 2
|
|
1353
|
+
];
|
|
1354
|
+
var FlushApiCacheRequest$ = [3, n0, _FACR,
|
|
1355
|
+
0,
|
|
1356
|
+
[_aI],
|
|
1357
|
+
[[0, 1]], 1
|
|
1358
|
+
];
|
|
1359
|
+
var FlushApiCacheResponse$ = [3, n0, _FACRl,
|
|
1360
|
+
0,
|
|
1361
|
+
[],
|
|
1362
|
+
[]
|
|
1363
|
+
];
|
|
1364
|
+
var FunctionConfiguration$ = [3, n0, _FC,
|
|
1365
|
+
0,
|
|
1366
|
+
[_fI, _fA, _n, _de, _dSN, _rMT, _rMTe, _fV, _sC, _mBS, _ru, _cod],
|
|
1367
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => SyncConfig$, 1, () => AppSyncRuntime$, 0]
|
|
1368
|
+
];
|
|
1369
|
+
var GetApiAssociationRequest$ = [3, n0, _GAAR,
|
|
1370
|
+
0,
|
|
1371
|
+
[_dN],
|
|
1372
|
+
[[0, 1]], 1
|
|
1373
|
+
];
|
|
1374
|
+
var GetApiAssociationResponse$ = [3, n0, _GAARe,
|
|
1375
|
+
0,
|
|
1376
|
+
[_aAp],
|
|
1377
|
+
[() => ApiAssociation$]
|
|
1378
|
+
];
|
|
1379
|
+
var GetApiCacheRequest$ = [3, n0, _GACR,
|
|
1380
|
+
0,
|
|
1381
|
+
[_aI],
|
|
1382
|
+
[[0, 1]], 1
|
|
1383
|
+
];
|
|
1384
|
+
var GetApiCacheResponse$ = [3, n0, _GACRe,
|
|
1385
|
+
0,
|
|
1386
|
+
[_aC],
|
|
1387
|
+
[() => ApiCache$]
|
|
1388
|
+
];
|
|
1389
|
+
var GetApiRequest$ = [3, n0, _GAR,
|
|
1390
|
+
0,
|
|
1391
|
+
[_aI],
|
|
1392
|
+
[[0, 1]], 1
|
|
1393
|
+
];
|
|
1394
|
+
var GetApiResponse$ = [3, n0, _GARe,
|
|
1395
|
+
0,
|
|
1396
|
+
[_a],
|
|
1397
|
+
[() => Api$]
|
|
1398
|
+
];
|
|
1399
|
+
var GetChannelNamespaceRequest$ = [3, n0, _GCNR,
|
|
1400
|
+
0,
|
|
1401
|
+
[_aI, _n],
|
|
1402
|
+
[[0, 1], [0, 1]], 2
|
|
1403
|
+
];
|
|
1404
|
+
var GetChannelNamespaceResponse$ = [3, n0, _GCNRe,
|
|
1405
|
+
0,
|
|
1406
|
+
[_cN],
|
|
1407
|
+
[() => ChannelNamespace$]
|
|
1408
|
+
];
|
|
1409
|
+
var GetDataSourceIntrospectionRequest$ = [3, n0, _GDSIR,
|
|
1410
|
+
0,
|
|
1411
|
+
[_iI, _iMSDL, _nT, _mR],
|
|
1412
|
+
[[0, 1], [2, { [_hQ]: _iMSDL }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1413
|
+
];
|
|
1414
|
+
var GetDataSourceIntrospectionResponse$ = [3, n0, _GDSIRe,
|
|
1415
|
+
0,
|
|
1416
|
+
[_iI, _iS, _iSD, _iR],
|
|
1417
|
+
[0, 0, 0, () => DataSourceIntrospectionResult$]
|
|
1418
|
+
];
|
|
1419
|
+
var GetDataSourceRequest$ = [3, n0, _GDSR,
|
|
1420
|
+
0,
|
|
1421
|
+
[_aI, _n],
|
|
1422
|
+
[[0, 1], [0, 1]], 2
|
|
1423
|
+
];
|
|
1424
|
+
var GetDataSourceResponse$ = [3, n0, _GDSRe,
|
|
1425
|
+
0,
|
|
1426
|
+
[_dS],
|
|
1427
|
+
[() => DataSource$]
|
|
1428
|
+
];
|
|
1429
|
+
var GetDomainNameRequest$ = [3, n0, _GDNR,
|
|
1430
|
+
0,
|
|
1431
|
+
[_dN],
|
|
1432
|
+
[[0, 1]], 1
|
|
1433
|
+
];
|
|
1434
|
+
var GetDomainNameResponse$ = [3, n0, _GDNRe,
|
|
1435
|
+
0,
|
|
1436
|
+
[_dNC],
|
|
1437
|
+
[() => DomainNameConfig$]
|
|
1438
|
+
];
|
|
1439
|
+
var GetFunctionRequest$ = [3, n0, _GFR,
|
|
1440
|
+
0,
|
|
1441
|
+
[_aI, _fI],
|
|
1442
|
+
[[0, 1], [0, 1]], 2
|
|
1443
|
+
];
|
|
1444
|
+
var GetFunctionResponse$ = [3, n0, _GFRe,
|
|
1445
|
+
0,
|
|
1446
|
+
[_fC],
|
|
1447
|
+
[() => FunctionConfiguration$]
|
|
1448
|
+
];
|
|
1449
|
+
var GetGraphqlApiEnvironmentVariablesRequest$ = [3, n0, _GGAEVR,
|
|
1450
|
+
0,
|
|
1451
|
+
[_aI],
|
|
1452
|
+
[[0, 1]], 1
|
|
1453
|
+
];
|
|
1454
|
+
var GetGraphqlApiEnvironmentVariablesResponse$ = [3, n0, _GGAEVRe,
|
|
1455
|
+
0,
|
|
1456
|
+
[_eV],
|
|
1457
|
+
[128 | 0]
|
|
1458
|
+
];
|
|
1459
|
+
var GetGraphqlApiRequest$ = [3, n0, _GGAR,
|
|
1460
|
+
0,
|
|
1461
|
+
[_aI],
|
|
1462
|
+
[[0, 1]], 1
|
|
1463
|
+
];
|
|
1464
|
+
var GetGraphqlApiResponse$ = [3, n0, _GGARe,
|
|
1465
|
+
0,
|
|
1466
|
+
[_gA],
|
|
1467
|
+
[() => GraphqlApi$]
|
|
1468
|
+
];
|
|
1469
|
+
var GetIntrospectionSchemaRequest$ = [3, n0, _GISR,
|
|
1470
|
+
0,
|
|
1471
|
+
[_aI, _f, _iD],
|
|
1472
|
+
[[0, 1], [0, { [_hQ]: _f }], [2, { [_hQ]: _iD }]], 2
|
|
1473
|
+
];
|
|
1474
|
+
var GetIntrospectionSchemaResponse$ = [3, n0, _GISRe,
|
|
1475
|
+
0,
|
|
1476
|
+
[_sc],
|
|
1477
|
+
[[21, 16]]
|
|
1478
|
+
];
|
|
1479
|
+
var GetResolverRequest$ = [3, n0, _GRR,
|
|
1480
|
+
0,
|
|
1481
|
+
[_aI, _tN, _fN],
|
|
1482
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1483
|
+
];
|
|
1484
|
+
var GetResolverResponse$ = [3, n0, _GRRe,
|
|
1485
|
+
0,
|
|
1486
|
+
[_re],
|
|
1487
|
+
[() => Resolver$]
|
|
1488
|
+
];
|
|
1489
|
+
var GetSchemaCreationStatusRequest$ = [3, n0, _GSCSR,
|
|
1490
|
+
0,
|
|
1491
|
+
[_aI],
|
|
1492
|
+
[[0, 1]], 1
|
|
1493
|
+
];
|
|
1494
|
+
var GetSchemaCreationStatusResponse$ = [3, n0, _GSCSRe,
|
|
1495
|
+
0,
|
|
1496
|
+
[_st, _det],
|
|
1497
|
+
[0, 0]
|
|
1498
|
+
];
|
|
1499
|
+
var GetSourceApiAssociationRequest$ = [3, n0, _GSAAR,
|
|
1500
|
+
0,
|
|
1501
|
+
[_mAI, _aIs],
|
|
1502
|
+
[[0, 1], [0, 1]], 2
|
|
1503
|
+
];
|
|
1504
|
+
var GetSourceApiAssociationResponse$ = [3, n0, _GSAARe,
|
|
1505
|
+
0,
|
|
1506
|
+
[_sAA],
|
|
1507
|
+
[() => SourceApiAssociation$]
|
|
1508
|
+
];
|
|
1509
|
+
var GetTypeRequest$ = [3, n0, _GTR,
|
|
1510
|
+
0,
|
|
1511
|
+
[_aI, _tN, _f],
|
|
1512
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _f }]], 3
|
|
1513
|
+
];
|
|
1514
|
+
var GetTypeResponse$ = [3, n0, _GTRe,
|
|
1515
|
+
0,
|
|
1516
|
+
[_ty],
|
|
1517
|
+
[() => Type$]
|
|
1518
|
+
];
|
|
1519
|
+
var GraphqlApi$ = [3, n0, _GA,
|
|
1520
|
+
0,
|
|
1521
|
+
[_n, _aI, _aT, _lCo, _uPC, _oIDCC, _ar, _u, _t, _aAP, _xE, _wWAA, _lAC, _dn, _vi, _aTp, _mAERA, _o, _oC, _iC, _qDL, _rCL, _eMC],
|
|
1522
|
+
[0, 0, 0, () => LogConfig$, () => UserPoolConfig$, () => OpenIDConnectConfig$, 0, 128 | 0, 128 | 0, () => AdditionalAuthenticationProviders, 2, 0, () => LambdaAuthorizerConfig$, 128 | 0, 0, 0, 0, 0, 0, 0, 1, 1, () => EnhancedMetricsConfig$]
|
|
1523
|
+
];
|
|
1524
|
+
var HandlerConfig$ = [3, n0, _HC,
|
|
1525
|
+
0,
|
|
1526
|
+
[_b, _int],
|
|
1527
|
+
[0, () => Integration$], 2
|
|
1528
|
+
];
|
|
1529
|
+
var HandlerConfigs$ = [3, n0, _HCa,
|
|
1530
|
+
0,
|
|
1531
|
+
[_oP, _oS],
|
|
1532
|
+
[() => HandlerConfig$, () => HandlerConfig$]
|
|
1533
|
+
];
|
|
1534
|
+
var HttpDataSourceConfig$ = [3, n0, _HDSC,
|
|
1535
|
+
0,
|
|
1536
|
+
[_en, _aCu],
|
|
1537
|
+
[0, () => AuthorizationConfig$]
|
|
1538
|
+
];
|
|
1539
|
+
var Integration$ = [3, n0, _I,
|
|
1540
|
+
0,
|
|
1541
|
+
[_dSN, _lC],
|
|
1542
|
+
[0, () => LambdaConfig$], 1
|
|
1543
|
+
];
|
|
1544
|
+
var LambdaAuthorizerConfig$ = [3, n0, _LAC,
|
|
1545
|
+
0,
|
|
1546
|
+
[_aU, _aRTIS, _iVE],
|
|
1547
|
+
[0, 1, 0], 1
|
|
1548
|
+
];
|
|
1549
|
+
var LambdaConfig$ = [3, n0, _LC,
|
|
1550
|
+
0,
|
|
1551
|
+
[_iT],
|
|
1552
|
+
[0]
|
|
1553
|
+
];
|
|
1554
|
+
var LambdaConflictHandlerConfig$ = [3, n0, _LCHC,
|
|
1555
|
+
0,
|
|
1556
|
+
[_lCHA],
|
|
1557
|
+
[0]
|
|
1558
|
+
];
|
|
1559
|
+
var LambdaDataSourceConfig$ = [3, n0, _LDSC,
|
|
1560
|
+
0,
|
|
1561
|
+
[_lFA],
|
|
1562
|
+
[0], 1
|
|
1563
|
+
];
|
|
1564
|
+
var ListApiKeysRequest$ = [3, n0, _LAKR,
|
|
1565
|
+
0,
|
|
1566
|
+
[_aI, _nT, _mR],
|
|
1567
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1568
|
+
];
|
|
1569
|
+
var ListApiKeysResponse$ = [3, n0, _LAKRi,
|
|
1570
|
+
0,
|
|
1571
|
+
[_aKp, _nT],
|
|
1572
|
+
[() => ApiKeys, 0]
|
|
1573
|
+
];
|
|
1574
|
+
var ListApisRequest$ = [3, n0, _LAR,
|
|
1575
|
+
0,
|
|
1576
|
+
[_nT, _mR],
|
|
1577
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1578
|
+
];
|
|
1579
|
+
var ListApisResponse$ = [3, n0, _LARi,
|
|
1580
|
+
0,
|
|
1581
|
+
[_ap, _nT],
|
|
1582
|
+
[() => Apis, 0]
|
|
1583
|
+
];
|
|
1584
|
+
var ListChannelNamespacesRequest$ = [3, n0, _LCNR,
|
|
1585
|
+
0,
|
|
1586
|
+
[_aI, _nT, _mR],
|
|
1587
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1588
|
+
];
|
|
1589
|
+
var ListChannelNamespacesResponse$ = [3, n0, _LCNRi,
|
|
1590
|
+
0,
|
|
1591
|
+
[_cNh, _nT],
|
|
1592
|
+
[() => ChannelNamespaces, 0]
|
|
1593
|
+
];
|
|
1594
|
+
var ListDataSourcesRequest$ = [3, n0, _LDSR,
|
|
1595
|
+
0,
|
|
1596
|
+
[_aI, _nT, _mR],
|
|
1597
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1598
|
+
];
|
|
1599
|
+
var ListDataSourcesResponse$ = [3, n0, _LDSRi,
|
|
1600
|
+
0,
|
|
1601
|
+
[_dSa, _nT],
|
|
1602
|
+
[() => DataSources, 0]
|
|
1603
|
+
];
|
|
1604
|
+
var ListDomainNamesRequest$ = [3, n0, _LDNR,
|
|
1605
|
+
0,
|
|
1606
|
+
[_nT, _mR],
|
|
1607
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1608
|
+
];
|
|
1609
|
+
var ListDomainNamesResponse$ = [3, n0, _LDNRi,
|
|
1610
|
+
0,
|
|
1611
|
+
[_dNCo, _nT],
|
|
1612
|
+
[() => DomainNameConfigs, 0]
|
|
1613
|
+
];
|
|
1614
|
+
var ListFunctionsRequest$ = [3, n0, _LFR,
|
|
1615
|
+
0,
|
|
1616
|
+
[_aI, _nT, _mR],
|
|
1617
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1618
|
+
];
|
|
1619
|
+
var ListFunctionsResponse$ = [3, n0, _LFRi,
|
|
1620
|
+
0,
|
|
1621
|
+
[_fun, _nT],
|
|
1622
|
+
[() => Functions, 0]
|
|
1623
|
+
];
|
|
1624
|
+
var ListGraphqlApisRequest$ = [3, n0, _LGAR,
|
|
1625
|
+
0,
|
|
1626
|
+
[_nT, _mR, _aTp, _o],
|
|
1627
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _aTp }], [0, { [_hQ]: _o }]]
|
|
1628
|
+
];
|
|
1629
|
+
var ListGraphqlApisResponse$ = [3, n0, _LGARi,
|
|
1630
|
+
0,
|
|
1631
|
+
[_gAr, _nT],
|
|
1632
|
+
[() => GraphqlApis, 0]
|
|
1633
|
+
];
|
|
1634
|
+
var ListResolversByFunctionRequest$ = [3, n0, _LRBFR,
|
|
1635
|
+
0,
|
|
1636
|
+
[_aI, _fI, _nT, _mR],
|
|
1637
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1638
|
+
];
|
|
1639
|
+
var ListResolversByFunctionResponse$ = [3, n0, _LRBFRi,
|
|
1640
|
+
0,
|
|
1641
|
+
[_res, _nT],
|
|
1642
|
+
[() => Resolvers, 0]
|
|
1643
|
+
];
|
|
1644
|
+
var ListResolversRequest$ = [3, n0, _LRR,
|
|
1645
|
+
0,
|
|
1646
|
+
[_aI, _tN, _nT, _mR],
|
|
1647
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1648
|
+
];
|
|
1649
|
+
var ListResolversResponse$ = [3, n0, _LRRi,
|
|
1650
|
+
0,
|
|
1651
|
+
[_res, _nT],
|
|
1652
|
+
[() => Resolvers, 0]
|
|
1653
|
+
];
|
|
1654
|
+
var ListSourceApiAssociationsRequest$ = [3, n0, _LSAAR,
|
|
1655
|
+
0,
|
|
1656
|
+
[_aI, _nT, _mR],
|
|
1657
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1658
|
+
];
|
|
1659
|
+
var ListSourceApiAssociationsResponse$ = [3, n0, _LSAARi,
|
|
1660
|
+
0,
|
|
1661
|
+
[_sAASo, _nT],
|
|
1662
|
+
[() => SourceApiAssociationSummaryList, 0]
|
|
1663
|
+
];
|
|
1664
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1665
|
+
0,
|
|
1666
|
+
[_rA],
|
|
1667
|
+
[[0, 1]], 1
|
|
1668
|
+
];
|
|
1669
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1670
|
+
0,
|
|
1671
|
+
[_t],
|
|
1672
|
+
[128 | 0]
|
|
1673
|
+
];
|
|
1674
|
+
var ListTypesByAssociationRequest$ = [3, n0, _LTBAR,
|
|
1675
|
+
0,
|
|
1676
|
+
[_mAI, _aIs, _f, _nT, _mR],
|
|
1677
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _f }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 3
|
|
1678
|
+
];
|
|
1679
|
+
var ListTypesByAssociationResponse$ = [3, n0, _LTBARi,
|
|
1680
|
+
0,
|
|
1681
|
+
[_typ, _nT],
|
|
1682
|
+
[() => TypeList, 0]
|
|
1683
|
+
];
|
|
1684
|
+
var ListTypesRequest$ = [3, n0, _LTR,
|
|
1685
|
+
0,
|
|
1686
|
+
[_aI, _f, _nT, _mR],
|
|
1687
|
+
[[0, 1], [0, { [_hQ]: _f }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1688
|
+
];
|
|
1689
|
+
var ListTypesResponse$ = [3, n0, _LTRi,
|
|
1690
|
+
0,
|
|
1691
|
+
[_typ, _nT],
|
|
1692
|
+
[() => TypeList, 0]
|
|
1693
|
+
];
|
|
1694
|
+
var LogConfig$ = [3, n0, _LCo,
|
|
1695
|
+
0,
|
|
1696
|
+
[_fLL, _cWLRA, _eVC],
|
|
1697
|
+
[0, 0, 2], 2
|
|
1698
|
+
];
|
|
1699
|
+
var OpenIDConnectConfig$ = [3, n0, _OIDCC,
|
|
1700
|
+
0,
|
|
1701
|
+
[_is, _cI, _iTTL, _aTTL],
|
|
1702
|
+
[0, 0, 1, 1], 1
|
|
1703
|
+
];
|
|
1704
|
+
var OpenSearchServiceDataSourceConfig$ = [3, n0, _OSSDSC,
|
|
1705
|
+
0,
|
|
1706
|
+
[_en, _aR],
|
|
1707
|
+
[0, 0], 2
|
|
1708
|
+
];
|
|
1709
|
+
var PipelineConfig$ = [3, n0, _PC,
|
|
1710
|
+
0,
|
|
1711
|
+
[_fun],
|
|
1712
|
+
[64 | 0]
|
|
1713
|
+
];
|
|
1714
|
+
var PutGraphqlApiEnvironmentVariablesRequest$ = [3, n0, _PGAEVR,
|
|
1715
|
+
0,
|
|
1716
|
+
[_aI, _eV],
|
|
1717
|
+
[[0, 1], 128 | 0], 2
|
|
1718
|
+
];
|
|
1719
|
+
var PutGraphqlApiEnvironmentVariablesResponse$ = [3, n0, _PGAEVRu,
|
|
1720
|
+
0,
|
|
1721
|
+
[_eV],
|
|
1722
|
+
[128 | 0]
|
|
1723
|
+
];
|
|
1724
|
+
var RdsDataApiConfig$ = [3, n0, _RDAC,
|
|
1725
|
+
0,
|
|
1726
|
+
[_rA, _sA, _dNa],
|
|
1727
|
+
[0, 0, 0], 3
|
|
1728
|
+
];
|
|
1729
|
+
var RdsHttpEndpointConfig$ = [3, n0, _RHEC,
|
|
1730
|
+
0,
|
|
1731
|
+
[_aR, _dCI, _dNa, _sc, _aSSA],
|
|
1732
|
+
[0, 0, 0, 0, 0]
|
|
1733
|
+
];
|
|
1734
|
+
var RelationalDatabaseDataSourceConfig$ = [3, n0, _RDDSC,
|
|
1735
|
+
0,
|
|
1736
|
+
[_rDST, _rHEC],
|
|
1737
|
+
[0, () => RdsHttpEndpointConfig$]
|
|
1738
|
+
];
|
|
1739
|
+
var Resolver$ = [3, n0, _R,
|
|
1740
|
+
0,
|
|
1741
|
+
[_tN, _fN, _dSN, _rAe, _rMT, _rMTe, _k, _pC, _sC, _cCa, _mBS, _ru, _cod, _mC],
|
|
1742
|
+
[0, 0, 0, 0, 0, 0, 0, () => PipelineConfig$, () => SyncConfig$, () => CachingConfig$, 1, () => AppSyncRuntime$, 0, 0]
|
|
1743
|
+
];
|
|
1744
|
+
var SourceApiAssociation$ = [3, n0, _SAA,
|
|
1745
|
+
0,
|
|
1746
|
+
[_aIs, _aAs, _sAIo, _sAAo, _mAA, _mAIe, _de, _sAAC, _sAAS, _sAASD, _lSMD],
|
|
1747
|
+
[0, 0, 0, 0, 0, 0, 0, () => SourceApiAssociationConfig$, 0, 0, 4]
|
|
1748
|
+
];
|
|
1749
|
+
var SourceApiAssociationConfig$ = [3, n0, _SAAC,
|
|
1750
|
+
0,
|
|
1751
|
+
[_mT],
|
|
1752
|
+
[0]
|
|
1753
|
+
];
|
|
1754
|
+
var SourceApiAssociationSummary$ = [3, n0, _SAAS,
|
|
1755
|
+
0,
|
|
1756
|
+
[_aIs, _aAs, _sAIo, _sAAo, _mAIe, _mAA, _de],
|
|
1757
|
+
[0, 0, 0, 0, 0, 0, 0]
|
|
1758
|
+
];
|
|
1759
|
+
var StartDataSourceIntrospectionRequest$ = [3, n0, _SDSIR,
|
|
1760
|
+
0,
|
|
1761
|
+
[_rDAC],
|
|
1762
|
+
[() => RdsDataApiConfig$]
|
|
1763
|
+
];
|
|
1764
|
+
var StartDataSourceIntrospectionResponse$ = [3, n0, _SDSIRt,
|
|
1765
|
+
0,
|
|
1766
|
+
[_iI, _iS, _iSD],
|
|
1767
|
+
[0, 0, 0]
|
|
1768
|
+
];
|
|
1769
|
+
var StartSchemaCreationRequest$ = [3, n0, _SSCR,
|
|
1770
|
+
0,
|
|
1771
|
+
[_aI, _def],
|
|
1772
|
+
[[0, 1], 21], 2
|
|
1773
|
+
];
|
|
1774
|
+
var StartSchemaCreationResponse$ = [3, n0, _SSCRt,
|
|
1775
|
+
0,
|
|
1776
|
+
[_st],
|
|
1777
|
+
[0]
|
|
1778
|
+
];
|
|
1779
|
+
var StartSchemaMergeRequest$ = [3, n0, _SSMR,
|
|
1780
|
+
0,
|
|
1781
|
+
[_aIs, _mAI],
|
|
1782
|
+
[[0, 1], [0, 1]], 2
|
|
1783
|
+
];
|
|
1784
|
+
var StartSchemaMergeResponse$ = [3, n0, _SSMRt,
|
|
1785
|
+
0,
|
|
1786
|
+
[_sAAS],
|
|
1787
|
+
[0]
|
|
1788
|
+
];
|
|
1789
|
+
var SyncConfig$ = [3, n0, _SC,
|
|
1790
|
+
0,
|
|
1791
|
+
[_cHo, _cD, _lCHC],
|
|
1792
|
+
[0, 0, () => LambdaConflictHandlerConfig$]
|
|
1793
|
+
];
|
|
1794
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1795
|
+
0,
|
|
1796
|
+
[_rA, _t],
|
|
1797
|
+
[[0, 1], 128 | 0], 2
|
|
1798
|
+
];
|
|
1799
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1800
|
+
0,
|
|
1801
|
+
[],
|
|
1802
|
+
[]
|
|
1803
|
+
];
|
|
1804
|
+
var Type$ = [3, n0, _T,
|
|
1805
|
+
0,
|
|
1806
|
+
[_n, _de, _ar, _def, _f],
|
|
1807
|
+
[0, 0, 0, 0, 0]
|
|
1808
|
+
];
|
|
1809
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1810
|
+
0,
|
|
1811
|
+
[_rA, _tK],
|
|
1812
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1813
|
+
];
|
|
1814
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1815
|
+
0,
|
|
1816
|
+
[],
|
|
1817
|
+
[]
|
|
1818
|
+
];
|
|
1819
|
+
var UpdateApiCacheRequest$ = [3, n0, _UACR,
|
|
1820
|
+
0,
|
|
1821
|
+
[_aI, _tt, _aCB, _ty, _hMC],
|
|
1822
|
+
[[0, 1], 1, 0, 0, 0], 4
|
|
1823
|
+
];
|
|
1824
|
+
var UpdateApiCacheResponse$ = [3, n0, _UACRp,
|
|
1825
|
+
0,
|
|
1826
|
+
[_aC],
|
|
1827
|
+
[() => ApiCache$]
|
|
1828
|
+
];
|
|
1829
|
+
var UpdateApiKeyRequest$ = [3, n0, _UAKR,
|
|
1830
|
+
0,
|
|
1831
|
+
[_aI, _i, _de, _ex],
|
|
1832
|
+
[[0, 1], [0, 1], 0, 1], 2
|
|
1833
|
+
];
|
|
1834
|
+
var UpdateApiKeyResponse$ = [3, n0, _UAKRp,
|
|
1835
|
+
0,
|
|
1836
|
+
[_aK],
|
|
1837
|
+
[() => ApiKey$]
|
|
1838
|
+
];
|
|
1839
|
+
var UpdateApiRequest$ = [3, n0, _UAR,
|
|
1840
|
+
0,
|
|
1841
|
+
[_aI, _n, _eC, _oC],
|
|
1842
|
+
[[0, 1], 0, () => EventConfig$, 0], 3
|
|
1843
|
+
];
|
|
1844
|
+
var UpdateApiResponse$ = [3, n0, _UARp,
|
|
1845
|
+
0,
|
|
1846
|
+
[_a],
|
|
1847
|
+
[() => Api$]
|
|
1848
|
+
];
|
|
1849
|
+
var UpdateChannelNamespaceRequest$ = [3, n0, _UCNR,
|
|
1850
|
+
0,
|
|
1851
|
+
[_aI, _n, _sAM, _pAM, _cH, _hC],
|
|
1852
|
+
[[0, 1], [0, 1], () => AuthModes, () => AuthModes, 0, () => HandlerConfigs$], 2
|
|
1853
|
+
];
|
|
1854
|
+
var UpdateChannelNamespaceResponse$ = [3, n0, _UCNRp,
|
|
1855
|
+
0,
|
|
1856
|
+
[_cN],
|
|
1857
|
+
[() => ChannelNamespace$]
|
|
1858
|
+
];
|
|
1859
|
+
var UpdateDataSourceRequest$ = [3, n0, _UDSR,
|
|
1860
|
+
0,
|
|
1861
|
+
[_aI, _n, _ty, _de, _sRA, _dC, _lC, _eCl, _oSSC, _hCt, _rDC, _eBC, _mC],
|
|
1862
|
+
[[0, 1], [0, 1], 0, 0, 0, () => DynamodbDataSourceConfig$, () => LambdaDataSourceConfig$, () => ElasticsearchDataSourceConfig$, () => OpenSearchServiceDataSourceConfig$, () => HttpDataSourceConfig$, () => RelationalDatabaseDataSourceConfig$, () => EventBridgeDataSourceConfig$, 0], 3
|
|
1863
|
+
];
|
|
1864
|
+
var UpdateDataSourceResponse$ = [3, n0, _UDSRp,
|
|
1865
|
+
0,
|
|
1866
|
+
[_dS],
|
|
1867
|
+
[() => DataSource$]
|
|
1868
|
+
];
|
|
1869
|
+
var UpdateDomainNameRequest$ = [3, n0, _UDNR,
|
|
1870
|
+
0,
|
|
1871
|
+
[_dN, _de],
|
|
1872
|
+
[[0, 1], 0], 1
|
|
1873
|
+
];
|
|
1874
|
+
var UpdateDomainNameResponse$ = [3, n0, _UDNRp,
|
|
1875
|
+
0,
|
|
1876
|
+
[_dNC],
|
|
1877
|
+
[() => DomainNameConfig$]
|
|
1878
|
+
];
|
|
1879
|
+
var UpdateFunctionRequest$ = [3, n0, _UFR,
|
|
1880
|
+
0,
|
|
1881
|
+
[_aI, _n, _fI, _dSN, _de, _rMT, _rMTe, _fV, _sC, _mBS, _ru, _cod],
|
|
1882
|
+
[[0, 1], 0, [0, 1], 0, 0, 0, 0, 0, () => SyncConfig$, 1, () => AppSyncRuntime$, 0], 4
|
|
1883
|
+
];
|
|
1884
|
+
var UpdateFunctionResponse$ = [3, n0, _UFRp,
|
|
1885
|
+
0,
|
|
1886
|
+
[_fC],
|
|
1887
|
+
[() => FunctionConfiguration$]
|
|
1888
|
+
];
|
|
1889
|
+
var UpdateGraphqlApiRequest$ = [3, n0, _UGAR,
|
|
1890
|
+
0,
|
|
1891
|
+
[_aI, _n, _aT, _lCo, _uPC, _oIDCC, _aAP, _xE, _lAC, _mAERA, _oC, _iC, _qDL, _rCL, _eMC],
|
|
1892
|
+
[[0, 1], 0, 0, () => LogConfig$, () => UserPoolConfig$, () => OpenIDConnectConfig$, () => AdditionalAuthenticationProviders, 2, () => LambdaAuthorizerConfig$, 0, 0, 0, 1, 1, () => EnhancedMetricsConfig$], 3
|
|
1893
|
+
];
|
|
1894
|
+
var UpdateGraphqlApiResponse$ = [3, n0, _UGARp,
|
|
1895
|
+
0,
|
|
1896
|
+
[_gA],
|
|
1897
|
+
[() => GraphqlApi$]
|
|
1898
|
+
];
|
|
1899
|
+
var UpdateResolverRequest$ = [3, n0, _URRp,
|
|
1900
|
+
0,
|
|
1901
|
+
[_aI, _tN, _fN, _dSN, _rMT, _rMTe, _k, _pC, _sC, _cCa, _mBS, _ru, _cod, _mC],
|
|
1902
|
+
[[0, 1], [0, 1], [0, 1], 0, 0, 0, 0, () => PipelineConfig$, () => SyncConfig$, () => CachingConfig$, 1, () => AppSyncRuntime$, 0, 0], 3
|
|
1903
|
+
];
|
|
1904
|
+
var UpdateResolverResponse$ = [3, n0, _URRpd,
|
|
1905
|
+
0,
|
|
1906
|
+
[_re],
|
|
1907
|
+
[() => Resolver$]
|
|
1908
|
+
];
|
|
1909
|
+
var UpdateSourceApiAssociationRequest$ = [3, n0, _USAAR,
|
|
1910
|
+
0,
|
|
1911
|
+
[_aIs, _mAI, _de, _sAAC],
|
|
1912
|
+
[[0, 1], [0, 1], 0, () => SourceApiAssociationConfig$], 2
|
|
1913
|
+
];
|
|
1914
|
+
var UpdateSourceApiAssociationResponse$ = [3, n0, _USAARp,
|
|
1915
|
+
0,
|
|
1916
|
+
[_sAA],
|
|
1917
|
+
[() => SourceApiAssociation$]
|
|
1918
|
+
];
|
|
1919
|
+
var UpdateTypeRequest$ = [3, n0, _UTR,
|
|
1920
|
+
0,
|
|
1921
|
+
[_aI, _tN, _f, _def],
|
|
1922
|
+
[[0, 1], [0, 1], 0, 0], 3
|
|
1923
|
+
];
|
|
1924
|
+
var UpdateTypeResponse$ = [3, n0, _UTRp,
|
|
1925
|
+
0,
|
|
1926
|
+
[_ty],
|
|
1927
|
+
[() => Type$]
|
|
1928
|
+
];
|
|
1929
|
+
var UserPoolConfig$ = [3, n0, _UPC,
|
|
1930
|
+
0,
|
|
1931
|
+
[_uPI, _aR, _dA, _aICR],
|
|
1932
|
+
[0, 0, 0, 0], 3
|
|
1933
|
+
];
|
|
1934
|
+
var AdditionalAuthenticationProviders = [1, n0, _AAPd,
|
|
1935
|
+
0, () => AdditionalAuthenticationProvider$
|
|
1936
|
+
];
|
|
1937
|
+
var ApiKeys = [1, n0, _AKp,
|
|
1938
|
+
0, () => ApiKey$
|
|
1939
|
+
];
|
|
1940
|
+
var Apis = [1, n0, _Ap,
|
|
1941
|
+
0, () => Api$
|
|
1942
|
+
];
|
|
1943
|
+
var AuthModes = [1, n0, _AMu,
|
|
1944
|
+
0, () => AuthMode$
|
|
1945
|
+
];
|
|
1946
|
+
var AuthProviders = [1, n0, _APu,
|
|
1947
|
+
0, () => AuthProvider$
|
|
1948
|
+
];
|
|
1949
|
+
var ChannelNamespaces = [1, n0, _CNh,
|
|
1950
|
+
0, () => ChannelNamespace$
|
|
1951
|
+
];
|
|
1952
|
+
var CodeErrors = [1, n0, _CEod,
|
|
1953
|
+
0, () => CodeError$
|
|
1954
|
+
];
|
|
1955
|
+
var DataSourceIntrospectionModelFields = [1, n0, _DSIMFa,
|
|
1956
|
+
0, () => DataSourceIntrospectionModelField$
|
|
1957
|
+
];
|
|
1958
|
+
var DataSourceIntrospectionModelIndexes = [1, n0, _DSIMIa,
|
|
1959
|
+
0, () => DataSourceIntrospectionModelIndex$
|
|
1960
|
+
];
|
|
1961
|
+
var DataSourceIntrospectionModels = [1, n0, _DSIMa,
|
|
1962
|
+
0, () => DataSourceIntrospectionModel$
|
|
1963
|
+
];
|
|
1964
|
+
var DataSources = [1, n0, _DSa,
|
|
1965
|
+
0, () => DataSource$
|
|
1966
|
+
];
|
|
1967
|
+
var DomainNameConfigs = [1, n0, _DNCo,
|
|
1968
|
+
0, () => DomainNameConfig$
|
|
1969
|
+
];
|
|
1970
|
+
var Functions = [1, n0, _F,
|
|
1971
|
+
0, () => FunctionConfiguration$
|
|
1972
|
+
];
|
|
1973
|
+
var GraphqlApis = [1, n0, _GAr,
|
|
1974
|
+
0, () => GraphqlApi$
|
|
1975
|
+
];
|
|
1976
|
+
var Resolvers = [1, n0, _Re,
|
|
1977
|
+
0, () => Resolver$
|
|
1978
|
+
];
|
|
1979
|
+
var SourceApiAssociationSummaryList = [1, n0, _SAASL,
|
|
1980
|
+
0, () => SourceApiAssociationSummary$
|
|
1981
|
+
];
|
|
1982
|
+
var TypeList = [1, n0, _TL,
|
|
1983
|
+
0, () => Type$
|
|
1984
|
+
];
|
|
1985
|
+
var AssociateApi$ = [9, n0, _AAs,
|
|
1986
|
+
{ [_h]: ["POST", "/v1/domainnames/{domainName}/apiassociation", 200] }, () => AssociateApiRequest$, () => AssociateApiResponse$
|
|
1987
|
+
];
|
|
1988
|
+
var AssociateMergedGraphqlApi$ = [9, n0, _AMGA,
|
|
1989
|
+
{ [_h]: ["POST", "/v1/sourceApis/{sourceApiIdentifier}/mergedApiAssociations", 200] }, () => AssociateMergedGraphqlApiRequest$, () => AssociateMergedGraphqlApiResponse$
|
|
1990
|
+
];
|
|
1991
|
+
var AssociateSourceGraphqlApi$ = [9, n0, _ASGA,
|
|
1992
|
+
{ [_h]: ["POST", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations", 200] }, () => AssociateSourceGraphqlApiRequest$, () => AssociateSourceGraphqlApiResponse$
|
|
1993
|
+
];
|
|
1994
|
+
var CreateApi$ = [9, n0, _CA,
|
|
1995
|
+
{ [_h]: ["POST", "/v2/apis", 200] }, () => CreateApiRequest$, () => CreateApiResponse$
|
|
1996
|
+
];
|
|
1997
|
+
var CreateApiCache$ = [9, n0, _CAC,
|
|
1998
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/ApiCaches", 200] }, () => CreateApiCacheRequest$, () => CreateApiCacheResponse$
|
|
1999
|
+
];
|
|
2000
|
+
var CreateApiKey$ = [9, n0, _CAK,
|
|
2001
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/apikeys", 200] }, () => CreateApiKeyRequest$, () => CreateApiKeyResponse$
|
|
2002
|
+
];
|
|
2003
|
+
var CreateChannelNamespace$ = [9, n0, _CCN,
|
|
2004
|
+
{ [_h]: ["POST", "/v2/apis/{apiId}/channelNamespaces", 200] }, () => CreateChannelNamespaceRequest$, () => CreateChannelNamespaceResponse$
|
|
2005
|
+
];
|
|
2006
|
+
var CreateDataSource$ = [9, n0, _CDS,
|
|
2007
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/datasources", 200] }, () => CreateDataSourceRequest$, () => CreateDataSourceResponse$
|
|
2008
|
+
];
|
|
2009
|
+
var CreateDomainName$ = [9, n0, _CDN,
|
|
2010
|
+
{ [_h]: ["POST", "/v1/domainnames", 200] }, () => CreateDomainNameRequest$, () => CreateDomainNameResponse$
|
|
2011
|
+
];
|
|
2012
|
+
var CreateFunction$ = [9, n0, _CF,
|
|
2013
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/functions", 200] }, () => CreateFunctionRequest$, () => CreateFunctionResponse$
|
|
2014
|
+
];
|
|
2015
|
+
var CreateGraphqlApi$ = [9, n0, _CGA,
|
|
2016
|
+
{ [_h]: ["POST", "/v1/apis", 200] }, () => CreateGraphqlApiRequest$, () => CreateGraphqlApiResponse$
|
|
2017
|
+
];
|
|
2018
|
+
var CreateResolver$ = [9, n0, _CR,
|
|
2019
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/types/{typeName}/resolvers", 200] }, () => CreateResolverRequest$, () => CreateResolverResponse$
|
|
2020
|
+
];
|
|
2021
|
+
var CreateType$ = [9, n0, _CT,
|
|
2022
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/types", 200] }, () => CreateTypeRequest$, () => CreateTypeResponse$
|
|
2023
|
+
];
|
|
2024
|
+
var DeleteApi$ = [9, n0, _DA,
|
|
2025
|
+
{ [_h]: ["DELETE", "/v2/apis/{apiId}", 200] }, () => DeleteApiRequest$, () => DeleteApiResponse$
|
|
2026
|
+
];
|
|
2027
|
+
var DeleteApiCache$ = [9, n0, _DAC,
|
|
2028
|
+
{ [_h]: ["DELETE", "/v1/apis/{apiId}/ApiCaches", 200] }, () => DeleteApiCacheRequest$, () => DeleteApiCacheResponse$
|
|
2029
|
+
];
|
|
2030
|
+
var DeleteApiKey$ = [9, n0, _DAK,
|
|
2031
|
+
{ [_h]: ["DELETE", "/v1/apis/{apiId}/apikeys/{id}", 200] }, () => DeleteApiKeyRequest$, () => DeleteApiKeyResponse$
|
|
2032
|
+
];
|
|
2033
|
+
var DeleteChannelNamespace$ = [9, n0, _DCN,
|
|
2034
|
+
{ [_h]: ["DELETE", "/v2/apis/{apiId}/channelNamespaces/{name}", 200] }, () => DeleteChannelNamespaceRequest$, () => DeleteChannelNamespaceResponse$
|
|
2035
|
+
];
|
|
2036
|
+
var DeleteDataSource$ = [9, n0, _DDS,
|
|
2037
|
+
{ [_h]: ["DELETE", "/v1/apis/{apiId}/datasources/{name}", 200] }, () => DeleteDataSourceRequest$, () => DeleteDataSourceResponse$
|
|
2038
|
+
];
|
|
2039
|
+
var DeleteDomainName$ = [9, n0, _DDN,
|
|
2040
|
+
{ [_h]: ["DELETE", "/v1/domainnames/{domainName}", 200] }, () => DeleteDomainNameRequest$, () => DeleteDomainNameResponse$
|
|
2041
|
+
];
|
|
2042
|
+
var DeleteFunction$ = [9, n0, _DF,
|
|
2043
|
+
{ [_h]: ["DELETE", "/v1/apis/{apiId}/functions/{functionId}", 200] }, () => DeleteFunctionRequest$, () => DeleteFunctionResponse$
|
|
2044
|
+
];
|
|
2045
|
+
var DeleteGraphqlApi$ = [9, n0, _DGA,
|
|
2046
|
+
{ [_h]: ["DELETE", "/v1/apis/{apiId}", 200] }, () => DeleteGraphqlApiRequest$, () => DeleteGraphqlApiResponse$
|
|
2047
|
+
];
|
|
2048
|
+
var DeleteResolver$ = [9, n0, _DR,
|
|
2049
|
+
{ [_h]: ["DELETE", "/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}", 200] }, () => DeleteResolverRequest$, () => DeleteResolverResponse$
|
|
2050
|
+
];
|
|
2051
|
+
var DeleteType$ = [9, n0, _DT,
|
|
2052
|
+
{ [_h]: ["DELETE", "/v1/apis/{apiId}/types/{typeName}", 200] }, () => DeleteTypeRequest$, () => DeleteTypeResponse$
|
|
2053
|
+
];
|
|
2054
|
+
var DisassociateApi$ = [9, n0, _DAi,
|
|
2055
|
+
{ [_h]: ["DELETE", "/v1/domainnames/{domainName}/apiassociation", 200] }, () => DisassociateApiRequest$, () => DisassociateApiResponse$
|
|
2056
|
+
];
|
|
2057
|
+
var DisassociateMergedGraphqlApi$ = [9, n0, _DMGA,
|
|
2058
|
+
{ [_h]: ["DELETE", "/v1/sourceApis/{sourceApiIdentifier}/mergedApiAssociations/{associationId}", 200] }, () => DisassociateMergedGraphqlApiRequest$, () => DisassociateMergedGraphqlApiResponse$
|
|
2059
|
+
];
|
|
2060
|
+
var DisassociateSourceGraphqlApi$ = [9, n0, _DSGA,
|
|
2061
|
+
{ [_h]: ["DELETE", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}", 200] }, () => DisassociateSourceGraphqlApiRequest$, () => DisassociateSourceGraphqlApiResponse$
|
|
2062
|
+
];
|
|
2063
|
+
var EvaluateCode$ = [9, n0, _ECv,
|
|
2064
|
+
{ [_h]: ["POST", "/v1/dataplane-evaluatecode", 200] }, () => EvaluateCodeRequest$, () => EvaluateCodeResponse$
|
|
2065
|
+
];
|
|
2066
|
+
var EvaluateMappingTemplate$ = [9, n0, _EMT,
|
|
2067
|
+
{ [_h]: ["POST", "/v1/dataplane-evaluatetemplate", 200] }, () => EvaluateMappingTemplateRequest$, () => EvaluateMappingTemplateResponse$
|
|
2068
|
+
];
|
|
2069
|
+
var FlushApiCache$ = [9, n0, _FAC,
|
|
2070
|
+
{ [_h]: ["DELETE", "/v1/apis/{apiId}/FlushCache", 200] }, () => FlushApiCacheRequest$, () => FlushApiCacheResponse$
|
|
2071
|
+
];
|
|
2072
|
+
var GetApi$ = [9, n0, _GAe,
|
|
2073
|
+
{ [_h]: ["GET", "/v2/apis/{apiId}", 200] }, () => GetApiRequest$, () => GetApiResponse$
|
|
2074
|
+
];
|
|
2075
|
+
var GetApiAssociation$ = [9, n0, _GAA,
|
|
2076
|
+
{ [_h]: ["GET", "/v1/domainnames/{domainName}/apiassociation", 200] }, () => GetApiAssociationRequest$, () => GetApiAssociationResponse$
|
|
2077
|
+
];
|
|
2078
|
+
var GetApiCache$ = [9, n0, _GAC,
|
|
2079
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/ApiCaches", 200] }, () => GetApiCacheRequest$, () => GetApiCacheResponse$
|
|
2080
|
+
];
|
|
2081
|
+
var GetChannelNamespace$ = [9, n0, _GCN,
|
|
2082
|
+
{ [_h]: ["GET", "/v2/apis/{apiId}/channelNamespaces/{name}", 200] }, () => GetChannelNamespaceRequest$, () => GetChannelNamespaceResponse$
|
|
2083
|
+
];
|
|
2084
|
+
var GetDataSource$ = [9, n0, _GDS,
|
|
2085
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/datasources/{name}", 200] }, () => GetDataSourceRequest$, () => GetDataSourceResponse$
|
|
2086
|
+
];
|
|
2087
|
+
var GetDataSourceIntrospection$ = [9, n0, _GDSI,
|
|
2088
|
+
{ [_h]: ["GET", "/v1/datasources/introspections/{introspectionId}", 200] }, () => GetDataSourceIntrospectionRequest$, () => GetDataSourceIntrospectionResponse$
|
|
2089
|
+
];
|
|
2090
|
+
var GetDomainName$ = [9, n0, _GDN,
|
|
2091
|
+
{ [_h]: ["GET", "/v1/domainnames/{domainName}", 200] }, () => GetDomainNameRequest$, () => GetDomainNameResponse$
|
|
2092
|
+
];
|
|
2093
|
+
var GetFunction$ = [9, n0, _GF,
|
|
2094
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/functions/{functionId}", 200] }, () => GetFunctionRequest$, () => GetFunctionResponse$
|
|
2095
|
+
];
|
|
2096
|
+
var GetGraphqlApi$ = [9, n0, _GGA,
|
|
2097
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}", 200] }, () => GetGraphqlApiRequest$, () => GetGraphqlApiResponse$
|
|
2098
|
+
];
|
|
2099
|
+
var GetGraphqlApiEnvironmentVariables$ = [9, n0, _GGAEV,
|
|
2100
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/environmentVariables", 200] }, () => GetGraphqlApiEnvironmentVariablesRequest$, () => GetGraphqlApiEnvironmentVariablesResponse$
|
|
2101
|
+
];
|
|
2102
|
+
var GetIntrospectionSchema$ = [9, n0, _GIS,
|
|
2103
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/schema", 200] }, () => GetIntrospectionSchemaRequest$, () => GetIntrospectionSchemaResponse$
|
|
2104
|
+
];
|
|
2105
|
+
var GetResolver$ = [9, n0, _GR,
|
|
2106
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}", 200] }, () => GetResolverRequest$, () => GetResolverResponse$
|
|
2107
|
+
];
|
|
2108
|
+
var GetSchemaCreationStatus$ = [9, n0, _GSCS,
|
|
2109
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/schemacreation", 200] }, () => GetSchemaCreationStatusRequest$, () => GetSchemaCreationStatusResponse$
|
|
2110
|
+
];
|
|
2111
|
+
var GetSourceApiAssociation$ = [9, n0, _GSAA,
|
|
2112
|
+
{ [_h]: ["GET", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}", 200] }, () => GetSourceApiAssociationRequest$, () => GetSourceApiAssociationResponse$
|
|
2113
|
+
];
|
|
2114
|
+
var GetType$ = [9, n0, _GT,
|
|
2115
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/types/{typeName}", 200] }, () => GetTypeRequest$, () => GetTypeResponse$
|
|
2116
|
+
];
|
|
2117
|
+
var ListApiKeys$ = [9, n0, _LAK,
|
|
2118
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/apikeys", 200] }, () => ListApiKeysRequest$, () => ListApiKeysResponse$
|
|
2119
|
+
];
|
|
2120
|
+
var ListApis$ = [9, n0, _LA,
|
|
2121
|
+
{ [_h]: ["GET", "/v2/apis", 200] }, () => ListApisRequest$, () => ListApisResponse$
|
|
2122
|
+
];
|
|
2123
|
+
var ListChannelNamespaces$ = [9, n0, _LCN,
|
|
2124
|
+
{ [_h]: ["GET", "/v2/apis/{apiId}/channelNamespaces", 200] }, () => ListChannelNamespacesRequest$, () => ListChannelNamespacesResponse$
|
|
2125
|
+
];
|
|
2126
|
+
var ListDataSources$ = [9, n0, _LDS,
|
|
2127
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/datasources", 200] }, () => ListDataSourcesRequest$, () => ListDataSourcesResponse$
|
|
2128
|
+
];
|
|
2129
|
+
var ListDomainNames$ = [9, n0, _LDN,
|
|
2130
|
+
{ [_h]: ["GET", "/v1/domainnames", 200] }, () => ListDomainNamesRequest$, () => ListDomainNamesResponse$
|
|
2131
|
+
];
|
|
2132
|
+
var ListFunctions$ = [9, n0, _LF,
|
|
2133
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/functions", 200] }, () => ListFunctionsRequest$, () => ListFunctionsResponse$
|
|
2134
|
+
];
|
|
2135
|
+
var ListGraphqlApis$ = [9, n0, _LGA,
|
|
2136
|
+
{ [_h]: ["GET", "/v1/apis", 200] }, () => ListGraphqlApisRequest$, () => ListGraphqlApisResponse$
|
|
2137
|
+
];
|
|
2138
|
+
var ListResolvers$ = [9, n0, _LR,
|
|
2139
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/types/{typeName}/resolvers", 200] }, () => ListResolversRequest$, () => ListResolversResponse$
|
|
2140
|
+
];
|
|
2141
|
+
var ListResolversByFunction$ = [9, n0, _LRBF,
|
|
2142
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/functions/{functionId}/resolvers", 200] }, () => ListResolversByFunctionRequest$, () => ListResolversByFunctionResponse$
|
|
2143
|
+
];
|
|
2144
|
+
var ListSourceApiAssociations$ = [9, n0, _LSAA,
|
|
2145
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/sourceApiAssociations", 200] }, () => ListSourceApiAssociationsRequest$, () => ListSourceApiAssociationsResponse$
|
|
2146
|
+
];
|
|
2147
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2148
|
+
{ [_h]: ["GET", "/v1/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2149
|
+
];
|
|
2150
|
+
var ListTypes$ = [9, n0, _LT,
|
|
2151
|
+
{ [_h]: ["GET", "/v1/apis/{apiId}/types", 200] }, () => ListTypesRequest$, () => ListTypesResponse$
|
|
2152
|
+
];
|
|
2153
|
+
var ListTypesByAssociation$ = [9, n0, _LTBA,
|
|
2154
|
+
{ [_h]: ["GET", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}/types", 200] }, () => ListTypesByAssociationRequest$, () => ListTypesByAssociationResponse$
|
|
2155
|
+
];
|
|
2156
|
+
var PutGraphqlApiEnvironmentVariables$ = [9, n0, _PGAEV,
|
|
2157
|
+
{ [_h]: ["PUT", "/v1/apis/{apiId}/environmentVariables", 200] }, () => PutGraphqlApiEnvironmentVariablesRequest$, () => PutGraphqlApiEnvironmentVariablesResponse$
|
|
2158
|
+
];
|
|
2159
|
+
var StartDataSourceIntrospection$ = [9, n0, _SDSI,
|
|
2160
|
+
{ [_h]: ["POST", "/v1/datasources/introspections", 200] }, () => StartDataSourceIntrospectionRequest$, () => StartDataSourceIntrospectionResponse$
|
|
2161
|
+
];
|
|
2162
|
+
var StartSchemaCreation$ = [9, n0, _SSC,
|
|
2163
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/schemacreation", 200] }, () => StartSchemaCreationRequest$, () => StartSchemaCreationResponse$
|
|
2164
|
+
];
|
|
2165
|
+
var StartSchemaMerge$ = [9, n0, _SSM,
|
|
2166
|
+
{ [_h]: ["POST", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}/merge", 200] }, () => StartSchemaMergeRequest$, () => StartSchemaMergeResponse$
|
|
2167
|
+
];
|
|
2168
|
+
var TagResource$ = [9, n0, _TR,
|
|
2169
|
+
{ [_h]: ["POST", "/v1/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2170
|
+
];
|
|
2171
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2172
|
+
{ [_h]: ["DELETE", "/v1/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2173
|
+
];
|
|
2174
|
+
var UpdateApi$ = [9, n0, _UA,
|
|
2175
|
+
{ [_h]: ["POST", "/v2/apis/{apiId}", 200] }, () => UpdateApiRequest$, () => UpdateApiResponse$
|
|
2176
|
+
];
|
|
2177
|
+
var UpdateApiCache$ = [9, n0, _UAC,
|
|
2178
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/ApiCaches/update", 200] }, () => UpdateApiCacheRequest$, () => UpdateApiCacheResponse$
|
|
2179
|
+
];
|
|
2180
|
+
var UpdateApiKey$ = [9, n0, _UAK,
|
|
2181
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/apikeys/{id}", 200] }, () => UpdateApiKeyRequest$, () => UpdateApiKeyResponse$
|
|
2182
|
+
];
|
|
2183
|
+
var UpdateChannelNamespace$ = [9, n0, _UCN,
|
|
2184
|
+
{ [_h]: ["POST", "/v2/apis/{apiId}/channelNamespaces/{name}", 200] }, () => UpdateChannelNamespaceRequest$, () => UpdateChannelNamespaceResponse$
|
|
2185
|
+
];
|
|
2186
|
+
var UpdateDataSource$ = [9, n0, _UDS,
|
|
2187
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/datasources/{name}", 200] }, () => UpdateDataSourceRequest$, () => UpdateDataSourceResponse$
|
|
2188
|
+
];
|
|
2189
|
+
var UpdateDomainName$ = [9, n0, _UDN,
|
|
2190
|
+
{ [_h]: ["POST", "/v1/domainnames/{domainName}", 200] }, () => UpdateDomainNameRequest$, () => UpdateDomainNameResponse$
|
|
2191
|
+
];
|
|
2192
|
+
var UpdateFunction$ = [9, n0, _UF,
|
|
2193
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/functions/{functionId}", 200] }, () => UpdateFunctionRequest$, () => UpdateFunctionResponse$
|
|
2194
|
+
];
|
|
2195
|
+
var UpdateGraphqlApi$ = [9, n0, _UGA,
|
|
2196
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}", 200] }, () => UpdateGraphqlApiRequest$, () => UpdateGraphqlApiResponse$
|
|
2197
|
+
];
|
|
2198
|
+
var UpdateResolver$ = [9, n0, _URp,
|
|
2199
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}", 200] }, () => UpdateResolverRequest$, () => UpdateResolverResponse$
|
|
2200
|
+
];
|
|
2201
|
+
var UpdateSourceApiAssociation$ = [9, n0, _USAA,
|
|
2202
|
+
{ [_h]: ["POST", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}", 200] }, () => UpdateSourceApiAssociationRequest$, () => UpdateSourceApiAssociationResponse$
|
|
2203
|
+
];
|
|
2204
|
+
var UpdateType$ = [9, n0, _UT,
|
|
2205
|
+
{ [_h]: ["POST", "/v1/apis/{apiId}/types/{typeName}", 200] }, () => UpdateTypeRequest$, () => UpdateTypeResponse$
|
|
2206
|
+
];
|
|
2207
|
+
|
|
2208
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2209
|
+
return {
|
|
2210
|
+
apiVersion: "2017-07-25",
|
|
2211
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2212
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2213
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2214
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2215
|
+
extensions: config?.extensions ?? [],
|
|
2216
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAppSyncHttpAuthSchemeProvider,
|
|
2217
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2218
|
+
{
|
|
2219
|
+
schemeId: "aws.auth#sigv4",
|
|
2220
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2221
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2222
|
+
},
|
|
2223
|
+
],
|
|
2224
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2225
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
2226
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2227
|
+
defaultNamespace: "com.amazonaws.appsync",
|
|
2228
|
+
errorTypeRegistries,
|
|
2229
|
+
xmlNamespace: "http://appsync.amazonaws.com",
|
|
2230
|
+
version: "2017-07-25",
|
|
2231
|
+
serviceTarget: "AWSDeepdishControlPlaneService",
|
|
2232
|
+
},
|
|
2233
|
+
serviceId: config?.serviceId ?? "AppSync",
|
|
2234
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2235
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2236
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2237
|
+
};
|
|
2238
|
+
};
|
|
2239
|
+
|
|
2240
|
+
const getRuntimeConfig = (config) => {
|
|
2241
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2242
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2243
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2244
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2245
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2246
|
+
const loaderConfig = {
|
|
2247
|
+
profile: config?.profile,
|
|
2248
|
+
logger: clientSharedValues.logger,
|
|
2249
|
+
};
|
|
2250
|
+
return {
|
|
2251
|
+
...clientSharedValues,
|
|
2252
|
+
...config,
|
|
2253
|
+
runtime: "node",
|
|
2254
|
+
defaultsMode,
|
|
2255
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2256
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2257
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2258
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2259
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2260
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2261
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2262
|
+
retryMode: config?.retryMode ??
|
|
2263
|
+
loadConfig({
|
|
2264
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2265
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2266
|
+
}, config),
|
|
2267
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2268
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2269
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2270
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2271
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2272
|
+
};
|
|
2273
|
+
};
|
|
2274
|
+
|
|
34
2275
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2276
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2277
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1297,116 +3538,424 @@ const Ownership = {
|
|
|
1297
3538
|
OTHER_ACCOUNTS: "OTHER_ACCOUNTS",
|
|
1298
3539
|
};
|
|
1299
3540
|
|
|
3541
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3542
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3543
|
+
exports.AdditionalAuthenticationProvider$ = AdditionalAuthenticationProvider$;
|
|
3544
|
+
exports.Api$ = Api$;
|
|
3545
|
+
exports.ApiAssociation$ = ApiAssociation$;
|
|
3546
|
+
exports.ApiCache$ = ApiCache$;
|
|
1300
3547
|
exports.ApiCacheStatus = ApiCacheStatus;
|
|
1301
3548
|
exports.ApiCacheType = ApiCacheType;
|
|
1302
3549
|
exports.ApiCachingBehavior = ApiCachingBehavior;
|
|
3550
|
+
exports.ApiKey$ = ApiKey$;
|
|
3551
|
+
exports.ApiKeyLimitExceededException = ApiKeyLimitExceededException;
|
|
3552
|
+
exports.ApiKeyLimitExceededException$ = ApiKeyLimitExceededException$;
|
|
3553
|
+
exports.ApiKeyValidityOutOfBoundsException = ApiKeyValidityOutOfBoundsException;
|
|
3554
|
+
exports.ApiKeyValidityOutOfBoundsException$ = ApiKeyValidityOutOfBoundsException$;
|
|
3555
|
+
exports.ApiLimitExceededException = ApiLimitExceededException;
|
|
3556
|
+
exports.ApiLimitExceededException$ = ApiLimitExceededException$;
|
|
1303
3557
|
exports.AppSync = AppSync;
|
|
1304
3558
|
exports.AppSyncClient = AppSyncClient;
|
|
3559
|
+
exports.AppSyncRuntime$ = AppSyncRuntime$;
|
|
3560
|
+
exports.AppSyncServiceException = AppSyncServiceException;
|
|
3561
|
+
exports.AppSyncServiceException$ = AppSyncServiceException$;
|
|
3562
|
+
exports.AssociateApi$ = AssociateApi$;
|
|
1305
3563
|
exports.AssociateApiCommand = AssociateApiCommand;
|
|
3564
|
+
exports.AssociateApiRequest$ = AssociateApiRequest$;
|
|
3565
|
+
exports.AssociateApiResponse$ = AssociateApiResponse$;
|
|
3566
|
+
exports.AssociateMergedGraphqlApi$ = AssociateMergedGraphqlApi$;
|
|
1306
3567
|
exports.AssociateMergedGraphqlApiCommand = AssociateMergedGraphqlApiCommand;
|
|
3568
|
+
exports.AssociateMergedGraphqlApiRequest$ = AssociateMergedGraphqlApiRequest$;
|
|
3569
|
+
exports.AssociateMergedGraphqlApiResponse$ = AssociateMergedGraphqlApiResponse$;
|
|
3570
|
+
exports.AssociateSourceGraphqlApi$ = AssociateSourceGraphqlApi$;
|
|
1307
3571
|
exports.AssociateSourceGraphqlApiCommand = AssociateSourceGraphqlApiCommand;
|
|
3572
|
+
exports.AssociateSourceGraphqlApiRequest$ = AssociateSourceGraphqlApiRequest$;
|
|
3573
|
+
exports.AssociateSourceGraphqlApiResponse$ = AssociateSourceGraphqlApiResponse$;
|
|
1308
3574
|
exports.AssociationStatus = AssociationStatus;
|
|
3575
|
+
exports.AuthMode$ = AuthMode$;
|
|
3576
|
+
exports.AuthProvider$ = AuthProvider$;
|
|
1309
3577
|
exports.AuthenticationType = AuthenticationType;
|
|
3578
|
+
exports.AuthorizationConfig$ = AuthorizationConfig$;
|
|
1310
3579
|
exports.AuthorizationType = AuthorizationType;
|
|
3580
|
+
exports.AwsIamConfig$ = AwsIamConfig$;
|
|
3581
|
+
exports.BadRequestDetail$ = BadRequestDetail$;
|
|
3582
|
+
exports.BadRequestException = BadRequestException;
|
|
3583
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
1311
3584
|
exports.BadRequestReason = BadRequestReason;
|
|
1312
3585
|
exports.CacheHealthMetricsConfig = CacheHealthMetricsConfig;
|
|
3586
|
+
exports.CachingConfig$ = CachingConfig$;
|
|
3587
|
+
exports.ChannelNamespace$ = ChannelNamespace$;
|
|
3588
|
+
exports.CodeError$ = CodeError$;
|
|
3589
|
+
exports.CodeErrorLocation$ = CodeErrorLocation$;
|
|
3590
|
+
exports.CognitoConfig$ = CognitoConfig$;
|
|
3591
|
+
exports.CognitoUserPoolConfig$ = CognitoUserPoolConfig$;
|
|
3592
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
3593
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
1313
3594
|
exports.ConflictDetectionType = ConflictDetectionType;
|
|
3595
|
+
exports.ConflictException = ConflictException;
|
|
3596
|
+
exports.ConflictException$ = ConflictException$;
|
|
1314
3597
|
exports.ConflictHandlerType = ConflictHandlerType;
|
|
3598
|
+
exports.CreateApi$ = CreateApi$;
|
|
3599
|
+
exports.CreateApiCache$ = CreateApiCache$;
|
|
1315
3600
|
exports.CreateApiCacheCommand = CreateApiCacheCommand;
|
|
3601
|
+
exports.CreateApiCacheRequest$ = CreateApiCacheRequest$;
|
|
3602
|
+
exports.CreateApiCacheResponse$ = CreateApiCacheResponse$;
|
|
1316
3603
|
exports.CreateApiCommand = CreateApiCommand;
|
|
3604
|
+
exports.CreateApiKey$ = CreateApiKey$;
|
|
1317
3605
|
exports.CreateApiKeyCommand = CreateApiKeyCommand;
|
|
3606
|
+
exports.CreateApiKeyRequest$ = CreateApiKeyRequest$;
|
|
3607
|
+
exports.CreateApiKeyResponse$ = CreateApiKeyResponse$;
|
|
3608
|
+
exports.CreateApiRequest$ = CreateApiRequest$;
|
|
3609
|
+
exports.CreateApiResponse$ = CreateApiResponse$;
|
|
3610
|
+
exports.CreateChannelNamespace$ = CreateChannelNamespace$;
|
|
1318
3611
|
exports.CreateChannelNamespaceCommand = CreateChannelNamespaceCommand;
|
|
3612
|
+
exports.CreateChannelNamespaceRequest$ = CreateChannelNamespaceRequest$;
|
|
3613
|
+
exports.CreateChannelNamespaceResponse$ = CreateChannelNamespaceResponse$;
|
|
3614
|
+
exports.CreateDataSource$ = CreateDataSource$;
|
|
1319
3615
|
exports.CreateDataSourceCommand = CreateDataSourceCommand;
|
|
3616
|
+
exports.CreateDataSourceRequest$ = CreateDataSourceRequest$;
|
|
3617
|
+
exports.CreateDataSourceResponse$ = CreateDataSourceResponse$;
|
|
3618
|
+
exports.CreateDomainName$ = CreateDomainName$;
|
|
1320
3619
|
exports.CreateDomainNameCommand = CreateDomainNameCommand;
|
|
3620
|
+
exports.CreateDomainNameRequest$ = CreateDomainNameRequest$;
|
|
3621
|
+
exports.CreateDomainNameResponse$ = CreateDomainNameResponse$;
|
|
3622
|
+
exports.CreateFunction$ = CreateFunction$;
|
|
1321
3623
|
exports.CreateFunctionCommand = CreateFunctionCommand;
|
|
3624
|
+
exports.CreateFunctionRequest$ = CreateFunctionRequest$;
|
|
3625
|
+
exports.CreateFunctionResponse$ = CreateFunctionResponse$;
|
|
3626
|
+
exports.CreateGraphqlApi$ = CreateGraphqlApi$;
|
|
1322
3627
|
exports.CreateGraphqlApiCommand = CreateGraphqlApiCommand;
|
|
3628
|
+
exports.CreateGraphqlApiRequest$ = CreateGraphqlApiRequest$;
|
|
3629
|
+
exports.CreateGraphqlApiResponse$ = CreateGraphqlApiResponse$;
|
|
3630
|
+
exports.CreateResolver$ = CreateResolver$;
|
|
1323
3631
|
exports.CreateResolverCommand = CreateResolverCommand;
|
|
3632
|
+
exports.CreateResolverRequest$ = CreateResolverRequest$;
|
|
3633
|
+
exports.CreateResolverResponse$ = CreateResolverResponse$;
|
|
3634
|
+
exports.CreateType$ = CreateType$;
|
|
1324
3635
|
exports.CreateTypeCommand = CreateTypeCommand;
|
|
3636
|
+
exports.CreateTypeRequest$ = CreateTypeRequest$;
|
|
3637
|
+
exports.CreateTypeResponse$ = CreateTypeResponse$;
|
|
3638
|
+
exports.DataSource$ = DataSource$;
|
|
3639
|
+
exports.DataSourceIntrospectionModel$ = DataSourceIntrospectionModel$;
|
|
3640
|
+
exports.DataSourceIntrospectionModelField$ = DataSourceIntrospectionModelField$;
|
|
3641
|
+
exports.DataSourceIntrospectionModelFieldType$ = DataSourceIntrospectionModelFieldType$;
|
|
3642
|
+
exports.DataSourceIntrospectionModelIndex$ = DataSourceIntrospectionModelIndex$;
|
|
3643
|
+
exports.DataSourceIntrospectionResult$ = DataSourceIntrospectionResult$;
|
|
1325
3644
|
exports.DataSourceIntrospectionStatus = DataSourceIntrospectionStatus;
|
|
1326
3645
|
exports.DataSourceLevelMetricsBehavior = DataSourceLevelMetricsBehavior;
|
|
1327
3646
|
exports.DataSourceLevelMetricsConfig = DataSourceLevelMetricsConfig;
|
|
1328
3647
|
exports.DataSourceType = DataSourceType;
|
|
1329
3648
|
exports.DefaultAction = DefaultAction;
|
|
3649
|
+
exports.DeleteApi$ = DeleteApi$;
|
|
3650
|
+
exports.DeleteApiCache$ = DeleteApiCache$;
|
|
1330
3651
|
exports.DeleteApiCacheCommand = DeleteApiCacheCommand;
|
|
3652
|
+
exports.DeleteApiCacheRequest$ = DeleteApiCacheRequest$;
|
|
3653
|
+
exports.DeleteApiCacheResponse$ = DeleteApiCacheResponse$;
|
|
1331
3654
|
exports.DeleteApiCommand = DeleteApiCommand;
|
|
3655
|
+
exports.DeleteApiKey$ = DeleteApiKey$;
|
|
1332
3656
|
exports.DeleteApiKeyCommand = DeleteApiKeyCommand;
|
|
3657
|
+
exports.DeleteApiKeyRequest$ = DeleteApiKeyRequest$;
|
|
3658
|
+
exports.DeleteApiKeyResponse$ = DeleteApiKeyResponse$;
|
|
3659
|
+
exports.DeleteApiRequest$ = DeleteApiRequest$;
|
|
3660
|
+
exports.DeleteApiResponse$ = DeleteApiResponse$;
|
|
3661
|
+
exports.DeleteChannelNamespace$ = DeleteChannelNamespace$;
|
|
1333
3662
|
exports.DeleteChannelNamespaceCommand = DeleteChannelNamespaceCommand;
|
|
3663
|
+
exports.DeleteChannelNamespaceRequest$ = DeleteChannelNamespaceRequest$;
|
|
3664
|
+
exports.DeleteChannelNamespaceResponse$ = DeleteChannelNamespaceResponse$;
|
|
3665
|
+
exports.DeleteDataSource$ = DeleteDataSource$;
|
|
1334
3666
|
exports.DeleteDataSourceCommand = DeleteDataSourceCommand;
|
|
3667
|
+
exports.DeleteDataSourceRequest$ = DeleteDataSourceRequest$;
|
|
3668
|
+
exports.DeleteDataSourceResponse$ = DeleteDataSourceResponse$;
|
|
3669
|
+
exports.DeleteDomainName$ = DeleteDomainName$;
|
|
1335
3670
|
exports.DeleteDomainNameCommand = DeleteDomainNameCommand;
|
|
3671
|
+
exports.DeleteDomainNameRequest$ = DeleteDomainNameRequest$;
|
|
3672
|
+
exports.DeleteDomainNameResponse$ = DeleteDomainNameResponse$;
|
|
3673
|
+
exports.DeleteFunction$ = DeleteFunction$;
|
|
1336
3674
|
exports.DeleteFunctionCommand = DeleteFunctionCommand;
|
|
3675
|
+
exports.DeleteFunctionRequest$ = DeleteFunctionRequest$;
|
|
3676
|
+
exports.DeleteFunctionResponse$ = DeleteFunctionResponse$;
|
|
3677
|
+
exports.DeleteGraphqlApi$ = DeleteGraphqlApi$;
|
|
1337
3678
|
exports.DeleteGraphqlApiCommand = DeleteGraphqlApiCommand;
|
|
3679
|
+
exports.DeleteGraphqlApiRequest$ = DeleteGraphqlApiRequest$;
|
|
3680
|
+
exports.DeleteGraphqlApiResponse$ = DeleteGraphqlApiResponse$;
|
|
3681
|
+
exports.DeleteResolver$ = DeleteResolver$;
|
|
1338
3682
|
exports.DeleteResolverCommand = DeleteResolverCommand;
|
|
3683
|
+
exports.DeleteResolverRequest$ = DeleteResolverRequest$;
|
|
3684
|
+
exports.DeleteResolverResponse$ = DeleteResolverResponse$;
|
|
3685
|
+
exports.DeleteType$ = DeleteType$;
|
|
1339
3686
|
exports.DeleteTypeCommand = DeleteTypeCommand;
|
|
3687
|
+
exports.DeleteTypeRequest$ = DeleteTypeRequest$;
|
|
3688
|
+
exports.DeleteTypeResponse$ = DeleteTypeResponse$;
|
|
3689
|
+
exports.DeltaSyncConfig$ = DeltaSyncConfig$;
|
|
3690
|
+
exports.DisassociateApi$ = DisassociateApi$;
|
|
1340
3691
|
exports.DisassociateApiCommand = DisassociateApiCommand;
|
|
3692
|
+
exports.DisassociateApiRequest$ = DisassociateApiRequest$;
|
|
3693
|
+
exports.DisassociateApiResponse$ = DisassociateApiResponse$;
|
|
3694
|
+
exports.DisassociateMergedGraphqlApi$ = DisassociateMergedGraphqlApi$;
|
|
1341
3695
|
exports.DisassociateMergedGraphqlApiCommand = DisassociateMergedGraphqlApiCommand;
|
|
3696
|
+
exports.DisassociateMergedGraphqlApiRequest$ = DisassociateMergedGraphqlApiRequest$;
|
|
3697
|
+
exports.DisassociateMergedGraphqlApiResponse$ = DisassociateMergedGraphqlApiResponse$;
|
|
3698
|
+
exports.DisassociateSourceGraphqlApi$ = DisassociateSourceGraphqlApi$;
|
|
1342
3699
|
exports.DisassociateSourceGraphqlApiCommand = DisassociateSourceGraphqlApiCommand;
|
|
3700
|
+
exports.DisassociateSourceGraphqlApiRequest$ = DisassociateSourceGraphqlApiRequest$;
|
|
3701
|
+
exports.DisassociateSourceGraphqlApiResponse$ = DisassociateSourceGraphqlApiResponse$;
|
|
3702
|
+
exports.DomainNameConfig$ = DomainNameConfig$;
|
|
3703
|
+
exports.DynamodbDataSourceConfig$ = DynamodbDataSourceConfig$;
|
|
3704
|
+
exports.ElasticsearchDataSourceConfig$ = ElasticsearchDataSourceConfig$;
|
|
3705
|
+
exports.EnhancedMetricsConfig$ = EnhancedMetricsConfig$;
|
|
3706
|
+
exports.ErrorDetail$ = ErrorDetail$;
|
|
3707
|
+
exports.EvaluateCode$ = EvaluateCode$;
|
|
1343
3708
|
exports.EvaluateCodeCommand = EvaluateCodeCommand;
|
|
3709
|
+
exports.EvaluateCodeErrorDetail$ = EvaluateCodeErrorDetail$;
|
|
3710
|
+
exports.EvaluateCodeRequest$ = EvaluateCodeRequest$;
|
|
3711
|
+
exports.EvaluateCodeResponse$ = EvaluateCodeResponse$;
|
|
3712
|
+
exports.EvaluateMappingTemplate$ = EvaluateMappingTemplate$;
|
|
1344
3713
|
exports.EvaluateMappingTemplateCommand = EvaluateMappingTemplateCommand;
|
|
3714
|
+
exports.EvaluateMappingTemplateRequest$ = EvaluateMappingTemplateRequest$;
|
|
3715
|
+
exports.EvaluateMappingTemplateResponse$ = EvaluateMappingTemplateResponse$;
|
|
3716
|
+
exports.EventBridgeDataSourceConfig$ = EventBridgeDataSourceConfig$;
|
|
3717
|
+
exports.EventConfig$ = EventConfig$;
|
|
3718
|
+
exports.EventLogConfig$ = EventLogConfig$;
|
|
1345
3719
|
exports.EventLogLevel = EventLogLevel;
|
|
1346
3720
|
exports.FieldLogLevel = FieldLogLevel;
|
|
3721
|
+
exports.FlushApiCache$ = FlushApiCache$;
|
|
1347
3722
|
exports.FlushApiCacheCommand = FlushApiCacheCommand;
|
|
3723
|
+
exports.FlushApiCacheRequest$ = FlushApiCacheRequest$;
|
|
3724
|
+
exports.FlushApiCacheResponse$ = FlushApiCacheResponse$;
|
|
3725
|
+
exports.FunctionConfiguration$ = FunctionConfiguration$;
|
|
3726
|
+
exports.GetApi$ = GetApi$;
|
|
3727
|
+
exports.GetApiAssociation$ = GetApiAssociation$;
|
|
1348
3728
|
exports.GetApiAssociationCommand = GetApiAssociationCommand;
|
|
3729
|
+
exports.GetApiAssociationRequest$ = GetApiAssociationRequest$;
|
|
3730
|
+
exports.GetApiAssociationResponse$ = GetApiAssociationResponse$;
|
|
3731
|
+
exports.GetApiCache$ = GetApiCache$;
|
|
1349
3732
|
exports.GetApiCacheCommand = GetApiCacheCommand;
|
|
3733
|
+
exports.GetApiCacheRequest$ = GetApiCacheRequest$;
|
|
3734
|
+
exports.GetApiCacheResponse$ = GetApiCacheResponse$;
|
|
1350
3735
|
exports.GetApiCommand = GetApiCommand;
|
|
3736
|
+
exports.GetApiRequest$ = GetApiRequest$;
|
|
3737
|
+
exports.GetApiResponse$ = GetApiResponse$;
|
|
3738
|
+
exports.GetChannelNamespace$ = GetChannelNamespace$;
|
|
1351
3739
|
exports.GetChannelNamespaceCommand = GetChannelNamespaceCommand;
|
|
3740
|
+
exports.GetChannelNamespaceRequest$ = GetChannelNamespaceRequest$;
|
|
3741
|
+
exports.GetChannelNamespaceResponse$ = GetChannelNamespaceResponse$;
|
|
3742
|
+
exports.GetDataSource$ = GetDataSource$;
|
|
1352
3743
|
exports.GetDataSourceCommand = GetDataSourceCommand;
|
|
3744
|
+
exports.GetDataSourceIntrospection$ = GetDataSourceIntrospection$;
|
|
1353
3745
|
exports.GetDataSourceIntrospectionCommand = GetDataSourceIntrospectionCommand;
|
|
3746
|
+
exports.GetDataSourceIntrospectionRequest$ = GetDataSourceIntrospectionRequest$;
|
|
3747
|
+
exports.GetDataSourceIntrospectionResponse$ = GetDataSourceIntrospectionResponse$;
|
|
3748
|
+
exports.GetDataSourceRequest$ = GetDataSourceRequest$;
|
|
3749
|
+
exports.GetDataSourceResponse$ = GetDataSourceResponse$;
|
|
3750
|
+
exports.GetDomainName$ = GetDomainName$;
|
|
1354
3751
|
exports.GetDomainNameCommand = GetDomainNameCommand;
|
|
3752
|
+
exports.GetDomainNameRequest$ = GetDomainNameRequest$;
|
|
3753
|
+
exports.GetDomainNameResponse$ = GetDomainNameResponse$;
|
|
3754
|
+
exports.GetFunction$ = GetFunction$;
|
|
1355
3755
|
exports.GetFunctionCommand = GetFunctionCommand;
|
|
3756
|
+
exports.GetFunctionRequest$ = GetFunctionRequest$;
|
|
3757
|
+
exports.GetFunctionResponse$ = GetFunctionResponse$;
|
|
3758
|
+
exports.GetGraphqlApi$ = GetGraphqlApi$;
|
|
1356
3759
|
exports.GetGraphqlApiCommand = GetGraphqlApiCommand;
|
|
3760
|
+
exports.GetGraphqlApiEnvironmentVariables$ = GetGraphqlApiEnvironmentVariables$;
|
|
1357
3761
|
exports.GetGraphqlApiEnvironmentVariablesCommand = GetGraphqlApiEnvironmentVariablesCommand;
|
|
3762
|
+
exports.GetGraphqlApiEnvironmentVariablesRequest$ = GetGraphqlApiEnvironmentVariablesRequest$;
|
|
3763
|
+
exports.GetGraphqlApiEnvironmentVariablesResponse$ = GetGraphqlApiEnvironmentVariablesResponse$;
|
|
3764
|
+
exports.GetGraphqlApiRequest$ = GetGraphqlApiRequest$;
|
|
3765
|
+
exports.GetGraphqlApiResponse$ = GetGraphqlApiResponse$;
|
|
3766
|
+
exports.GetIntrospectionSchema$ = GetIntrospectionSchema$;
|
|
1358
3767
|
exports.GetIntrospectionSchemaCommand = GetIntrospectionSchemaCommand;
|
|
3768
|
+
exports.GetIntrospectionSchemaRequest$ = GetIntrospectionSchemaRequest$;
|
|
3769
|
+
exports.GetIntrospectionSchemaResponse$ = GetIntrospectionSchemaResponse$;
|
|
3770
|
+
exports.GetResolver$ = GetResolver$;
|
|
1359
3771
|
exports.GetResolverCommand = GetResolverCommand;
|
|
3772
|
+
exports.GetResolverRequest$ = GetResolverRequest$;
|
|
3773
|
+
exports.GetResolverResponse$ = GetResolverResponse$;
|
|
3774
|
+
exports.GetSchemaCreationStatus$ = GetSchemaCreationStatus$;
|
|
1360
3775
|
exports.GetSchemaCreationStatusCommand = GetSchemaCreationStatusCommand;
|
|
3776
|
+
exports.GetSchemaCreationStatusRequest$ = GetSchemaCreationStatusRequest$;
|
|
3777
|
+
exports.GetSchemaCreationStatusResponse$ = GetSchemaCreationStatusResponse$;
|
|
3778
|
+
exports.GetSourceApiAssociation$ = GetSourceApiAssociation$;
|
|
1361
3779
|
exports.GetSourceApiAssociationCommand = GetSourceApiAssociationCommand;
|
|
3780
|
+
exports.GetSourceApiAssociationRequest$ = GetSourceApiAssociationRequest$;
|
|
3781
|
+
exports.GetSourceApiAssociationResponse$ = GetSourceApiAssociationResponse$;
|
|
3782
|
+
exports.GetType$ = GetType$;
|
|
1362
3783
|
exports.GetTypeCommand = GetTypeCommand;
|
|
3784
|
+
exports.GetTypeRequest$ = GetTypeRequest$;
|
|
3785
|
+
exports.GetTypeResponse$ = GetTypeResponse$;
|
|
1363
3786
|
exports.GraphQLApiIntrospectionConfig = GraphQLApiIntrospectionConfig;
|
|
1364
3787
|
exports.GraphQLApiType = GraphQLApiType;
|
|
1365
3788
|
exports.GraphQLApiVisibility = GraphQLApiVisibility;
|
|
3789
|
+
exports.GraphQLSchemaException = GraphQLSchemaException;
|
|
3790
|
+
exports.GraphQLSchemaException$ = GraphQLSchemaException$;
|
|
3791
|
+
exports.GraphqlApi$ = GraphqlApi$;
|
|
1366
3792
|
exports.HandlerBehavior = HandlerBehavior;
|
|
3793
|
+
exports.HandlerConfig$ = HandlerConfig$;
|
|
3794
|
+
exports.HandlerConfigs$ = HandlerConfigs$;
|
|
3795
|
+
exports.HttpDataSourceConfig$ = HttpDataSourceConfig$;
|
|
3796
|
+
exports.Integration$ = Integration$;
|
|
3797
|
+
exports.InternalFailureException = InternalFailureException;
|
|
3798
|
+
exports.InternalFailureException$ = InternalFailureException$;
|
|
1367
3799
|
exports.InvokeType = InvokeType;
|
|
3800
|
+
exports.LambdaAuthorizerConfig$ = LambdaAuthorizerConfig$;
|
|
3801
|
+
exports.LambdaConfig$ = LambdaConfig$;
|
|
3802
|
+
exports.LambdaConflictHandlerConfig$ = LambdaConflictHandlerConfig$;
|
|
3803
|
+
exports.LambdaDataSourceConfig$ = LambdaDataSourceConfig$;
|
|
3804
|
+
exports.LimitExceededException = LimitExceededException;
|
|
3805
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
3806
|
+
exports.ListApiKeys$ = ListApiKeys$;
|
|
1368
3807
|
exports.ListApiKeysCommand = ListApiKeysCommand;
|
|
3808
|
+
exports.ListApiKeysRequest$ = ListApiKeysRequest$;
|
|
3809
|
+
exports.ListApiKeysResponse$ = ListApiKeysResponse$;
|
|
3810
|
+
exports.ListApis$ = ListApis$;
|
|
1369
3811
|
exports.ListApisCommand = ListApisCommand;
|
|
3812
|
+
exports.ListApisRequest$ = ListApisRequest$;
|
|
3813
|
+
exports.ListApisResponse$ = ListApisResponse$;
|
|
3814
|
+
exports.ListChannelNamespaces$ = ListChannelNamespaces$;
|
|
1370
3815
|
exports.ListChannelNamespacesCommand = ListChannelNamespacesCommand;
|
|
3816
|
+
exports.ListChannelNamespacesRequest$ = ListChannelNamespacesRequest$;
|
|
3817
|
+
exports.ListChannelNamespacesResponse$ = ListChannelNamespacesResponse$;
|
|
3818
|
+
exports.ListDataSources$ = ListDataSources$;
|
|
1371
3819
|
exports.ListDataSourcesCommand = ListDataSourcesCommand;
|
|
3820
|
+
exports.ListDataSourcesRequest$ = ListDataSourcesRequest$;
|
|
3821
|
+
exports.ListDataSourcesResponse$ = ListDataSourcesResponse$;
|
|
3822
|
+
exports.ListDomainNames$ = ListDomainNames$;
|
|
1372
3823
|
exports.ListDomainNamesCommand = ListDomainNamesCommand;
|
|
3824
|
+
exports.ListDomainNamesRequest$ = ListDomainNamesRequest$;
|
|
3825
|
+
exports.ListDomainNamesResponse$ = ListDomainNamesResponse$;
|
|
3826
|
+
exports.ListFunctions$ = ListFunctions$;
|
|
1373
3827
|
exports.ListFunctionsCommand = ListFunctionsCommand;
|
|
3828
|
+
exports.ListFunctionsRequest$ = ListFunctionsRequest$;
|
|
3829
|
+
exports.ListFunctionsResponse$ = ListFunctionsResponse$;
|
|
3830
|
+
exports.ListGraphqlApis$ = ListGraphqlApis$;
|
|
1374
3831
|
exports.ListGraphqlApisCommand = ListGraphqlApisCommand;
|
|
3832
|
+
exports.ListGraphqlApisRequest$ = ListGraphqlApisRequest$;
|
|
3833
|
+
exports.ListGraphqlApisResponse$ = ListGraphqlApisResponse$;
|
|
3834
|
+
exports.ListResolvers$ = ListResolvers$;
|
|
3835
|
+
exports.ListResolversByFunction$ = ListResolversByFunction$;
|
|
1375
3836
|
exports.ListResolversByFunctionCommand = ListResolversByFunctionCommand;
|
|
3837
|
+
exports.ListResolversByFunctionRequest$ = ListResolversByFunctionRequest$;
|
|
3838
|
+
exports.ListResolversByFunctionResponse$ = ListResolversByFunctionResponse$;
|
|
1376
3839
|
exports.ListResolversCommand = ListResolversCommand;
|
|
3840
|
+
exports.ListResolversRequest$ = ListResolversRequest$;
|
|
3841
|
+
exports.ListResolversResponse$ = ListResolversResponse$;
|
|
3842
|
+
exports.ListSourceApiAssociations$ = ListSourceApiAssociations$;
|
|
1377
3843
|
exports.ListSourceApiAssociationsCommand = ListSourceApiAssociationsCommand;
|
|
3844
|
+
exports.ListSourceApiAssociationsRequest$ = ListSourceApiAssociationsRequest$;
|
|
3845
|
+
exports.ListSourceApiAssociationsResponse$ = ListSourceApiAssociationsResponse$;
|
|
3846
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1378
3847
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3848
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3849
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3850
|
+
exports.ListTypes$ = ListTypes$;
|
|
3851
|
+
exports.ListTypesByAssociation$ = ListTypesByAssociation$;
|
|
1379
3852
|
exports.ListTypesByAssociationCommand = ListTypesByAssociationCommand;
|
|
3853
|
+
exports.ListTypesByAssociationRequest$ = ListTypesByAssociationRequest$;
|
|
3854
|
+
exports.ListTypesByAssociationResponse$ = ListTypesByAssociationResponse$;
|
|
1380
3855
|
exports.ListTypesCommand = ListTypesCommand;
|
|
3856
|
+
exports.ListTypesRequest$ = ListTypesRequest$;
|
|
3857
|
+
exports.ListTypesResponse$ = ListTypesResponse$;
|
|
3858
|
+
exports.LogConfig$ = LogConfig$;
|
|
1381
3859
|
exports.MergeType = MergeType;
|
|
3860
|
+
exports.NotFoundException = NotFoundException;
|
|
3861
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
3862
|
+
exports.OpenIDConnectConfig$ = OpenIDConnectConfig$;
|
|
3863
|
+
exports.OpenSearchServiceDataSourceConfig$ = OpenSearchServiceDataSourceConfig$;
|
|
1382
3864
|
exports.OperationLevelMetricsConfig = OperationLevelMetricsConfig;
|
|
1383
3865
|
exports.OutputType = OutputType;
|
|
1384
3866
|
exports.Ownership = Ownership;
|
|
3867
|
+
exports.PipelineConfig$ = PipelineConfig$;
|
|
3868
|
+
exports.PutGraphqlApiEnvironmentVariables$ = PutGraphqlApiEnvironmentVariables$;
|
|
1385
3869
|
exports.PutGraphqlApiEnvironmentVariablesCommand = PutGraphqlApiEnvironmentVariablesCommand;
|
|
3870
|
+
exports.PutGraphqlApiEnvironmentVariablesRequest$ = PutGraphqlApiEnvironmentVariablesRequest$;
|
|
3871
|
+
exports.PutGraphqlApiEnvironmentVariablesResponse$ = PutGraphqlApiEnvironmentVariablesResponse$;
|
|
3872
|
+
exports.RdsDataApiConfig$ = RdsDataApiConfig$;
|
|
3873
|
+
exports.RdsHttpEndpointConfig$ = RdsHttpEndpointConfig$;
|
|
3874
|
+
exports.RelationalDatabaseDataSourceConfig$ = RelationalDatabaseDataSourceConfig$;
|
|
1386
3875
|
exports.RelationalDatabaseSourceType = RelationalDatabaseSourceType;
|
|
3876
|
+
exports.Resolver$ = Resolver$;
|
|
1387
3877
|
exports.ResolverKind = ResolverKind;
|
|
1388
3878
|
exports.ResolverLevelMetricsBehavior = ResolverLevelMetricsBehavior;
|
|
1389
3879
|
exports.ResolverLevelMetricsConfig = ResolverLevelMetricsConfig;
|
|
1390
3880
|
exports.RuntimeName = RuntimeName;
|
|
1391
3881
|
exports.SchemaStatus = SchemaStatus;
|
|
3882
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3883
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3884
|
+
exports.SourceApiAssociation$ = SourceApiAssociation$;
|
|
3885
|
+
exports.SourceApiAssociationConfig$ = SourceApiAssociationConfig$;
|
|
1392
3886
|
exports.SourceApiAssociationStatus = SourceApiAssociationStatus;
|
|
3887
|
+
exports.SourceApiAssociationSummary$ = SourceApiAssociationSummary$;
|
|
3888
|
+
exports.StartDataSourceIntrospection$ = StartDataSourceIntrospection$;
|
|
1393
3889
|
exports.StartDataSourceIntrospectionCommand = StartDataSourceIntrospectionCommand;
|
|
3890
|
+
exports.StartDataSourceIntrospectionRequest$ = StartDataSourceIntrospectionRequest$;
|
|
3891
|
+
exports.StartDataSourceIntrospectionResponse$ = StartDataSourceIntrospectionResponse$;
|
|
3892
|
+
exports.StartSchemaCreation$ = StartSchemaCreation$;
|
|
1394
3893
|
exports.StartSchemaCreationCommand = StartSchemaCreationCommand;
|
|
3894
|
+
exports.StartSchemaCreationRequest$ = StartSchemaCreationRequest$;
|
|
3895
|
+
exports.StartSchemaCreationResponse$ = StartSchemaCreationResponse$;
|
|
3896
|
+
exports.StartSchemaMerge$ = StartSchemaMerge$;
|
|
1395
3897
|
exports.StartSchemaMergeCommand = StartSchemaMergeCommand;
|
|
3898
|
+
exports.StartSchemaMergeRequest$ = StartSchemaMergeRequest$;
|
|
3899
|
+
exports.StartSchemaMergeResponse$ = StartSchemaMergeResponse$;
|
|
3900
|
+
exports.SyncConfig$ = SyncConfig$;
|
|
3901
|
+
exports.TagResource$ = TagResource$;
|
|
1396
3902
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3903
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3904
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3905
|
+
exports.Type$ = Type$;
|
|
1397
3906
|
exports.TypeDefinitionFormat = TypeDefinitionFormat;
|
|
3907
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
3908
|
+
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
3909
|
+
exports.UntagResource$ = UntagResource$;
|
|
1398
3910
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3911
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3912
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3913
|
+
exports.UpdateApi$ = UpdateApi$;
|
|
3914
|
+
exports.UpdateApiCache$ = UpdateApiCache$;
|
|
1399
3915
|
exports.UpdateApiCacheCommand = UpdateApiCacheCommand;
|
|
3916
|
+
exports.UpdateApiCacheRequest$ = UpdateApiCacheRequest$;
|
|
3917
|
+
exports.UpdateApiCacheResponse$ = UpdateApiCacheResponse$;
|
|
1400
3918
|
exports.UpdateApiCommand = UpdateApiCommand;
|
|
3919
|
+
exports.UpdateApiKey$ = UpdateApiKey$;
|
|
1401
3920
|
exports.UpdateApiKeyCommand = UpdateApiKeyCommand;
|
|
3921
|
+
exports.UpdateApiKeyRequest$ = UpdateApiKeyRequest$;
|
|
3922
|
+
exports.UpdateApiKeyResponse$ = UpdateApiKeyResponse$;
|
|
3923
|
+
exports.UpdateApiRequest$ = UpdateApiRequest$;
|
|
3924
|
+
exports.UpdateApiResponse$ = UpdateApiResponse$;
|
|
3925
|
+
exports.UpdateChannelNamespace$ = UpdateChannelNamespace$;
|
|
1402
3926
|
exports.UpdateChannelNamespaceCommand = UpdateChannelNamespaceCommand;
|
|
3927
|
+
exports.UpdateChannelNamespaceRequest$ = UpdateChannelNamespaceRequest$;
|
|
3928
|
+
exports.UpdateChannelNamespaceResponse$ = UpdateChannelNamespaceResponse$;
|
|
3929
|
+
exports.UpdateDataSource$ = UpdateDataSource$;
|
|
1403
3930
|
exports.UpdateDataSourceCommand = UpdateDataSourceCommand;
|
|
3931
|
+
exports.UpdateDataSourceRequest$ = UpdateDataSourceRequest$;
|
|
3932
|
+
exports.UpdateDataSourceResponse$ = UpdateDataSourceResponse$;
|
|
3933
|
+
exports.UpdateDomainName$ = UpdateDomainName$;
|
|
1404
3934
|
exports.UpdateDomainNameCommand = UpdateDomainNameCommand;
|
|
3935
|
+
exports.UpdateDomainNameRequest$ = UpdateDomainNameRequest$;
|
|
3936
|
+
exports.UpdateDomainNameResponse$ = UpdateDomainNameResponse$;
|
|
3937
|
+
exports.UpdateFunction$ = UpdateFunction$;
|
|
1405
3938
|
exports.UpdateFunctionCommand = UpdateFunctionCommand;
|
|
3939
|
+
exports.UpdateFunctionRequest$ = UpdateFunctionRequest$;
|
|
3940
|
+
exports.UpdateFunctionResponse$ = UpdateFunctionResponse$;
|
|
3941
|
+
exports.UpdateGraphqlApi$ = UpdateGraphqlApi$;
|
|
1406
3942
|
exports.UpdateGraphqlApiCommand = UpdateGraphqlApiCommand;
|
|
3943
|
+
exports.UpdateGraphqlApiRequest$ = UpdateGraphqlApiRequest$;
|
|
3944
|
+
exports.UpdateGraphqlApiResponse$ = UpdateGraphqlApiResponse$;
|
|
3945
|
+
exports.UpdateResolver$ = UpdateResolver$;
|
|
1407
3946
|
exports.UpdateResolverCommand = UpdateResolverCommand;
|
|
3947
|
+
exports.UpdateResolverRequest$ = UpdateResolverRequest$;
|
|
3948
|
+
exports.UpdateResolverResponse$ = UpdateResolverResponse$;
|
|
3949
|
+
exports.UpdateSourceApiAssociation$ = UpdateSourceApiAssociation$;
|
|
1408
3950
|
exports.UpdateSourceApiAssociationCommand = UpdateSourceApiAssociationCommand;
|
|
3951
|
+
exports.UpdateSourceApiAssociationRequest$ = UpdateSourceApiAssociationRequest$;
|
|
3952
|
+
exports.UpdateSourceApiAssociationResponse$ = UpdateSourceApiAssociationResponse$;
|
|
3953
|
+
exports.UpdateType$ = UpdateType$;
|
|
1409
3954
|
exports.UpdateTypeCommand = UpdateTypeCommand;
|
|
3955
|
+
exports.UpdateTypeRequest$ = UpdateTypeRequest$;
|
|
3956
|
+
exports.UpdateTypeResponse$ = UpdateTypeResponse$;
|
|
3957
|
+
exports.UserPoolConfig$ = UserPoolConfig$;
|
|
3958
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1410
3959
|
exports.paginateListApiKeys = paginateListApiKeys;
|
|
1411
3960
|
exports.paginateListApis = paginateListApis;
|
|
1412
3961
|
exports.paginateListChannelNamespaces = paginateListChannelNamespaces;
|