@aws-sdk/client-appsync 3.54.0 → 3.56.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist-cjs/AppSyncClient.js +13 -13
  3. package/dist-cjs/commands/AssociateApiCommand.js +3 -3
  4. package/dist-cjs/commands/CreateApiCacheCommand.js +3 -3
  5. package/dist-cjs/commands/CreateApiKeyCommand.js +3 -3
  6. package/dist-cjs/commands/CreateDataSourceCommand.js +3 -3
  7. package/dist-cjs/commands/CreateDomainNameCommand.js +3 -3
  8. package/dist-cjs/commands/CreateFunctionCommand.js +3 -3
  9. package/dist-cjs/commands/CreateGraphqlApiCommand.js +3 -3
  10. package/dist-cjs/commands/CreateResolverCommand.js +3 -3
  11. package/dist-cjs/commands/CreateTypeCommand.js +3 -3
  12. package/dist-cjs/commands/DeleteApiCacheCommand.js +3 -3
  13. package/dist-cjs/commands/DeleteApiKeyCommand.js +3 -3
  14. package/dist-cjs/commands/DeleteDataSourceCommand.js +3 -3
  15. package/dist-cjs/commands/DeleteDomainNameCommand.js +3 -3
  16. package/dist-cjs/commands/DeleteFunctionCommand.js +3 -3
  17. package/dist-cjs/commands/DeleteGraphqlApiCommand.js +3 -3
  18. package/dist-cjs/commands/DeleteResolverCommand.js +3 -3
  19. package/dist-cjs/commands/DeleteTypeCommand.js +3 -3
  20. package/dist-cjs/commands/DisassociateApiCommand.js +3 -3
  21. package/dist-cjs/commands/FlushApiCacheCommand.js +3 -3
  22. package/dist-cjs/commands/GetApiAssociationCommand.js +3 -3
  23. package/dist-cjs/commands/GetApiCacheCommand.js +3 -3
  24. package/dist-cjs/commands/GetDataSourceCommand.js +3 -3
  25. package/dist-cjs/commands/GetDomainNameCommand.js +3 -3
  26. package/dist-cjs/commands/GetFunctionCommand.js +3 -3
  27. package/dist-cjs/commands/GetGraphqlApiCommand.js +3 -3
  28. package/dist-cjs/commands/GetIntrospectionSchemaCommand.js +3 -3
  29. package/dist-cjs/commands/GetResolverCommand.js +3 -3
  30. package/dist-cjs/commands/GetSchemaCreationStatusCommand.js +3 -3
  31. package/dist-cjs/commands/GetTypeCommand.js +3 -3
  32. package/dist-cjs/commands/ListApiKeysCommand.js +3 -3
  33. package/dist-cjs/commands/ListDataSourcesCommand.js +3 -3
  34. package/dist-cjs/commands/ListDomainNamesCommand.js +3 -3
  35. package/dist-cjs/commands/ListFunctionsCommand.js +3 -3
  36. package/dist-cjs/commands/ListGraphqlApisCommand.js +3 -3
  37. package/dist-cjs/commands/ListResolversByFunctionCommand.js +3 -3
  38. package/dist-cjs/commands/ListResolversCommand.js +3 -3
  39. package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
  40. package/dist-cjs/commands/ListTypesCommand.js +3 -3
  41. package/dist-cjs/commands/StartSchemaCreationCommand.js +3 -3
  42. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  43. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  44. package/dist-cjs/commands/UpdateApiCacheCommand.js +3 -3
  45. package/dist-cjs/commands/UpdateApiKeyCommand.js +3 -3
  46. package/dist-cjs/commands/UpdateDataSourceCommand.js +3 -3
  47. package/dist-cjs/commands/UpdateDomainNameCommand.js +3 -3
  48. package/dist-cjs/commands/UpdateFunctionCommand.js +3 -3
  49. package/dist-cjs/commands/UpdateGraphqlApiCommand.js +3 -3
  50. package/dist-cjs/commands/UpdateResolverCommand.js +3 -3
  51. package/dist-cjs/commands/UpdateTypeCommand.js +3 -3
  52. package/dist-cjs/endpoints.js +1 -1
  53. package/dist-cjs/protocols/Aws_restJson1.js +283 -283
  54. package/dist-cjs/runtimeConfig.browser.js +4 -4
  55. package/dist-cjs/runtimeConfig.js +9 -9
  56. package/dist-cjs/runtimeConfig.native.js +1 -1
  57. package/dist-es/AppSync.js +49 -49
  58. package/dist-es/protocols/Aws_restJson1.js +49 -49
  59. package/dist-types/runtimeConfig.native.d.ts +2 -2
  60. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  61. package/package.json +34 -34
@@ -11,7 +11,7 @@ class GetGraphqlApiCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class GetGraphqlApiCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetGraphqlApiCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetGraphqlApiCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetGraphqlApiCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetGraphqlApiCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetGraphqlApiCommand = GetGraphqlApiCommand;
@@ -11,7 +11,7 @@ class GetIntrospectionSchemaCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class GetIntrospectionSchemaCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetIntrospectionSchemaCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetIntrospectionSchemaCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetIntrospectionSchemaCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetIntrospectionSchemaCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetIntrospectionSchemaCommand = GetIntrospectionSchemaCommand;
@@ -11,7 +11,7 @@ class GetResolverCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class GetResolverCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetResolverCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetResolverCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetResolverCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetResolverCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetResolverCommand = GetResolverCommand;
@@ -11,7 +11,7 @@ class GetSchemaCreationStatusCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class GetSchemaCreationStatusCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetSchemaCreationStatusCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetSchemaCreationStatusCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetSchemaCreationStatusCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetSchemaCreationStatusCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetSchemaCreationStatusCommand = GetSchemaCreationStatusCommand;
@@ -11,7 +11,7 @@ class GetTypeCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class GetTypeCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetTypeCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetTypeCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetTypeCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetTypeCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetTypeCommand = GetTypeCommand;
@@ -11,7 +11,7 @@ class ListApiKeysCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListApiKeysCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListApiKeysCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListApiKeysCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListApiKeysCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListApiKeysCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListApiKeysCommand = ListApiKeysCommand;
@@ -11,7 +11,7 @@ class ListDataSourcesCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListDataSourcesCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListDataSourcesCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListDataSourcesCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListDataSourcesCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListDataSourcesCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDataSourcesCommand = ListDataSourcesCommand;
@@ -11,7 +11,7 @@ class ListDomainNamesCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListDomainNamesCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListDomainNamesCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListDomainNamesCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListDomainNamesCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListDomainNamesCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDomainNamesCommand = ListDomainNamesCommand;
@@ -11,7 +11,7 @@ class ListFunctionsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListFunctionsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListFunctionsCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListFunctionsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListFunctionsCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListFunctionsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListFunctionsCommand = ListFunctionsCommand;
@@ -11,7 +11,7 @@ class ListGraphqlApisCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListGraphqlApisCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListGraphqlApisCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListGraphqlApisCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListGraphqlApisCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListGraphqlApisCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListGraphqlApisCommand = ListGraphqlApisCommand;
@@ -11,7 +11,7 @@ class ListResolversByFunctionCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListResolversByFunctionCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListResolversByFunctionCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListResolversByFunctionCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListResolversByFunctionCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListResolversByFunctionCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListResolversByFunctionCommand = ListResolversByFunctionCommand;
@@ -11,7 +11,7 @@ class ListResolversCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListResolversCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListResolversCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListResolversCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListResolversCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListResolversCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListResolversCommand = ListResolversCommand;
@@ -11,7 +11,7 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListTagsForResourceCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListTagsForResourceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListTagsForResourceCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListTagsForResourceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -11,7 +11,7 @@ class ListTypesCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class ListTypesCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListTypesCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListTypesCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListTypesCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListTypesCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListTypesCommand = ListTypesCommand;
@@ -11,7 +11,7 @@ class StartSchemaCreationCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class StartSchemaCreationCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1StartSchemaCreationCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1StartSchemaCreationCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1StartSchemaCreationCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1StartSchemaCreationCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.StartSchemaCreationCommand = StartSchemaCreationCommand;
@@ -11,7 +11,7 @@ class TagResourceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class TagResourceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1TagResourceCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1TagResourceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1TagResourceCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1TagResourceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.TagResourceCommand = TagResourceCommand;
@@ -11,7 +11,7 @@ class UntagResourceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UntagResourceCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UntagResourceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UntagResourceCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UntagResourceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UntagResourceCommand = UntagResourceCommand;
@@ -11,7 +11,7 @@ class UpdateApiCacheCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UpdateApiCacheCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateApiCacheCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateApiCacheCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateApiCacheCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateApiCacheCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateApiCacheCommand = UpdateApiCacheCommand;
@@ -11,7 +11,7 @@ class UpdateApiKeyCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UpdateApiKeyCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateApiKeyCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateApiKeyCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateApiKeyCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateApiKeyCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateApiKeyCommand = UpdateApiKeyCommand;
@@ -11,7 +11,7 @@ class UpdateDataSourceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UpdateDataSourceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateDataSourceCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateDataSourceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateDataSourceCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateDataSourceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateDataSourceCommand = UpdateDataSourceCommand;
@@ -11,7 +11,7 @@ class UpdateDomainNameCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UpdateDomainNameCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateDomainNameCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateDomainNameCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateDomainNameCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateDomainNameCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateDomainNameCommand = UpdateDomainNameCommand;
@@ -11,7 +11,7 @@ class UpdateFunctionCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UpdateFunctionCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateFunctionCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateFunctionCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateFunctionCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateFunctionCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateFunctionCommand = UpdateFunctionCommand;
@@ -11,7 +11,7 @@ class UpdateGraphqlApiCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UpdateGraphqlApiCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateGraphqlApiCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateGraphqlApiCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateGraphqlApiCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateGraphqlApiCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateGraphqlApiCommand = UpdateGraphqlApiCommand;
@@ -11,7 +11,7 @@ class UpdateResolverCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UpdateResolverCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateResolverCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateResolverCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateResolverCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateResolverCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateResolverCommand = UpdateResolverCommand;
@@ -11,7 +11,7 @@ class UpdateTypeCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "AppSyncClient";
@@ -27,10 +27,10 @@ class UpdateTypeCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateTypeCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateTypeCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateTypeCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateTypeCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateTypeCommand = UpdateTypeCommand;
@@ -122,7 +122,7 @@ const partitionHash = {
122
122
  ],
123
123
  },
124
124
  };
125
- const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
125
+ const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
126
126
  ...options,
127
127
  signingService: "appsync",
128
128
  regionHash,