@aws-sdk/client-connectcases 3.303.0 → 3.309.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 (65) hide show
  1. package/dist-cjs/commands/BatchGetFieldCommand.js +2 -2
  2. package/dist-cjs/commands/BatchPutFieldOptionsCommand.js +2 -2
  3. package/dist-cjs/commands/CreateCaseCommand.js +2 -2
  4. package/dist-cjs/commands/CreateDomainCommand.js +2 -2
  5. package/dist-cjs/commands/CreateFieldCommand.js +2 -2
  6. package/dist-cjs/commands/CreateLayoutCommand.js +2 -2
  7. package/dist-cjs/commands/CreateRelatedItemCommand.js +2 -2
  8. package/dist-cjs/commands/CreateTemplateCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteDomainCommand.js +2 -2
  10. package/dist-cjs/commands/GetCaseCommand.js +2 -2
  11. package/dist-cjs/commands/GetCaseEventConfigurationCommand.js +2 -2
  12. package/dist-cjs/commands/GetDomainCommand.js +2 -2
  13. package/dist-cjs/commands/GetLayoutCommand.js +2 -2
  14. package/dist-cjs/commands/GetTemplateCommand.js +2 -2
  15. package/dist-cjs/commands/ListCasesForContactCommand.js +2 -2
  16. package/dist-cjs/commands/ListDomainsCommand.js +2 -2
  17. package/dist-cjs/commands/ListFieldOptionsCommand.js +2 -2
  18. package/dist-cjs/commands/ListFieldsCommand.js +2 -2
  19. package/dist-cjs/commands/ListLayoutsCommand.js +2 -2
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-cjs/commands/ListTemplatesCommand.js +2 -2
  22. package/dist-cjs/commands/PutCaseEventConfigurationCommand.js +2 -2
  23. package/dist-cjs/commands/SearchCasesCommand.js +2 -2
  24. package/dist-cjs/commands/SearchRelatedItemsCommand.js +2 -2
  25. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  26. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateCaseCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateFieldCommand.js +2 -2
  29. package/dist-cjs/commands/UpdateLayoutCommand.js +2 -2
  30. package/dist-cjs/commands/UpdateTemplateCommand.js +2 -2
  31. package/dist-cjs/protocols/Aws_restJson1.js +544 -556
  32. package/dist-es/commands/BatchGetFieldCommand.js +3 -3
  33. package/dist-es/commands/BatchPutFieldOptionsCommand.js +3 -3
  34. package/dist-es/commands/CreateCaseCommand.js +3 -3
  35. package/dist-es/commands/CreateDomainCommand.js +3 -3
  36. package/dist-es/commands/CreateFieldCommand.js +3 -3
  37. package/dist-es/commands/CreateLayoutCommand.js +3 -3
  38. package/dist-es/commands/CreateRelatedItemCommand.js +3 -3
  39. package/dist-es/commands/CreateTemplateCommand.js +3 -3
  40. package/dist-es/commands/DeleteDomainCommand.js +3 -3
  41. package/dist-es/commands/GetCaseCommand.js +3 -3
  42. package/dist-es/commands/GetCaseEventConfigurationCommand.js +3 -3
  43. package/dist-es/commands/GetDomainCommand.js +3 -3
  44. package/dist-es/commands/GetLayoutCommand.js +3 -3
  45. package/dist-es/commands/GetTemplateCommand.js +3 -3
  46. package/dist-es/commands/ListCasesForContactCommand.js +3 -3
  47. package/dist-es/commands/ListDomainsCommand.js +3 -3
  48. package/dist-es/commands/ListFieldOptionsCommand.js +3 -3
  49. package/dist-es/commands/ListFieldsCommand.js +3 -3
  50. package/dist-es/commands/ListLayoutsCommand.js +3 -3
  51. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  52. package/dist-es/commands/ListTemplatesCommand.js +3 -3
  53. package/dist-es/commands/PutCaseEventConfigurationCommand.js +3 -3
  54. package/dist-es/commands/SearchCasesCommand.js +3 -3
  55. package/dist-es/commands/SearchRelatedItemsCommand.js +3 -3
  56. package/dist-es/commands/TagResourceCommand.js +3 -3
  57. package/dist-es/commands/UntagResourceCommand.js +3 -3
  58. package/dist-es/commands/UpdateCaseCommand.js +3 -3
  59. package/dist-es/commands/UpdateFieldCommand.js +3 -3
  60. package/dist-es/commands/UpdateLayoutCommand.js +3 -3
  61. package/dist-es/commands/UpdateTemplateCommand.js +3 -3
  62. package/dist-es/protocols/Aws_restJson1.js +482 -494
  63. package/dist-types/protocols/Aws_restJson1.d.ts +240 -60
  64. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -60
  65. package/package.json +29 -29
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1BatchGetFieldCommand, serializeAws_restJson1BatchGetFieldCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_BatchGetFieldCommand, se_BatchGetFieldCommand } from "../protocols/Aws_restJson1";
5
5
  export class BatchGetFieldCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class BatchGetFieldCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1BatchGetFieldCommand(input, context);
36
+ return se_BatchGetFieldCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1BatchGetFieldCommand(output, context);
39
+ return de_BatchGetFieldCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1BatchPutFieldOptionsCommand, serializeAws_restJson1BatchPutFieldOptionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_BatchPutFieldOptionsCommand, se_BatchPutFieldOptionsCommand } from "../protocols/Aws_restJson1";
5
5
  export class BatchPutFieldOptionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class BatchPutFieldOptionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1BatchPutFieldOptionsCommand(input, context);
36
+ return se_BatchPutFieldOptionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1BatchPutFieldOptionsCommand(output, context);
39
+ return de_BatchPutFieldOptionsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateCaseCommand, serializeAws_restJson1CreateCaseCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateCaseCommand, se_CreateCaseCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateCaseCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateCaseCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateCaseCommand(input, context);
36
+ return se_CreateCaseCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateCaseCommand(output, context);
39
+ return de_CreateCaseCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateDomainCommand, serializeAws_restJson1CreateDomainCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateDomainCommand, se_CreateDomainCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateDomainCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateDomainCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateDomainCommand(input, context);
36
+ return se_CreateDomainCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateDomainCommand(output, context);
39
+ return de_CreateDomainCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateFieldCommand, serializeAws_restJson1CreateFieldCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateFieldCommand, se_CreateFieldCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateFieldCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateFieldCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateFieldCommand(input, context);
36
+ return se_CreateFieldCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateFieldCommand(output, context);
39
+ return de_CreateFieldCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateLayoutCommand, serializeAws_restJson1CreateLayoutCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateLayoutCommand, se_CreateLayoutCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateLayoutCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateLayoutCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateLayoutCommand(input, context);
36
+ return se_CreateLayoutCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateLayoutCommand(output, context);
39
+ return de_CreateLayoutCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateRelatedItemCommand, serializeAws_restJson1CreateRelatedItemCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateRelatedItemCommand, se_CreateRelatedItemCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateRelatedItemCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateRelatedItemCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateRelatedItemCommand(input, context);
36
+ return se_CreateRelatedItemCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateRelatedItemCommand(output, context);
39
+ return de_CreateRelatedItemCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateTemplateCommand, serializeAws_restJson1CreateTemplateCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateTemplateCommand, se_CreateTemplateCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateTemplateCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateTemplateCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateTemplateCommand(input, context);
36
+ return se_CreateTemplateCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateTemplateCommand(output, context);
39
+ return de_CreateTemplateCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DeleteDomainCommand, serializeAws_restJson1DeleteDomainCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteDomainCommand, se_DeleteDomainCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteDomainCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteDomainCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteDomainCommand(input, context);
36
+ return se_DeleteDomainCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteDomainCommand(output, context);
39
+ return de_DeleteDomainCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetCaseCommand, serializeAws_restJson1GetCaseCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetCaseCommand, se_GetCaseCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetCaseCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetCaseCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetCaseCommand(input, context);
36
+ return se_GetCaseCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetCaseCommand(output, context);
39
+ return de_GetCaseCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetCaseEventConfigurationCommand, serializeAws_restJson1GetCaseEventConfigurationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetCaseEventConfigurationCommand, se_GetCaseEventConfigurationCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetCaseEventConfigurationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetCaseEventConfigurationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetCaseEventConfigurationCommand(input, context);
36
+ return se_GetCaseEventConfigurationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetCaseEventConfigurationCommand(output, context);
39
+ return de_GetCaseEventConfigurationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetDomainCommand, serializeAws_restJson1GetDomainCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetDomainCommand, se_GetDomainCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetDomainCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetDomainCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetDomainCommand(input, context);
36
+ return se_GetDomainCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetDomainCommand(output, context);
39
+ return de_GetDomainCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetLayoutCommand, serializeAws_restJson1GetLayoutCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetLayoutCommand, se_GetLayoutCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetLayoutCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetLayoutCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetLayoutCommand(input, context);
36
+ return se_GetLayoutCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetLayoutCommand(output, context);
39
+ return de_GetLayoutCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetTemplateCommand, serializeAws_restJson1GetTemplateCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetTemplateCommand, se_GetTemplateCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetTemplateCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetTemplateCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetTemplateCommand(input, context);
36
+ return se_GetTemplateCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetTemplateCommand(output, context);
39
+ return de_GetTemplateCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListCasesForContactCommand, serializeAws_restJson1ListCasesForContactCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListCasesForContactCommand, se_ListCasesForContactCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListCasesForContactCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListCasesForContactCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListCasesForContactCommand(input, context);
36
+ return se_ListCasesForContactCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListCasesForContactCommand(output, context);
39
+ return de_ListCasesForContactCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListDomainsCommand, serializeAws_restJson1ListDomainsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListDomainsCommand, se_ListDomainsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListDomainsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListDomainsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListDomainsCommand(input, context);
36
+ return se_ListDomainsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListDomainsCommand(output, context);
39
+ return de_ListDomainsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListFieldOptionsCommand, serializeAws_restJson1ListFieldOptionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListFieldOptionsCommand, se_ListFieldOptionsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListFieldOptionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListFieldOptionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListFieldOptionsCommand(input, context);
36
+ return se_ListFieldOptionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListFieldOptionsCommand(output, context);
39
+ return de_ListFieldOptionsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListFieldsCommand, serializeAws_restJson1ListFieldsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListFieldsCommand, se_ListFieldsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListFieldsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListFieldsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListFieldsCommand(input, context);
36
+ return se_ListFieldsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListFieldsCommand(output, context);
39
+ return de_ListFieldsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListLayoutsCommand, serializeAws_restJson1ListLayoutsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListLayoutsCommand, se_ListLayoutsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListLayoutsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListLayoutsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListLayoutsCommand(input, context);
36
+ return se_ListLayoutsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListLayoutsCommand(output, context);
39
+ return de_ListLayoutsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListTagsForResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListTagsForResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListTagsForResourceCommand(input, context);
36
+ return se_ListTagsForResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
39
+ return de_ListTagsForResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListTemplatesCommand, serializeAws_restJson1ListTemplatesCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListTemplatesCommand, se_ListTemplatesCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListTemplatesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListTemplatesCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListTemplatesCommand(input, context);
36
+ return se_ListTemplatesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListTemplatesCommand(output, context);
39
+ return de_ListTemplatesCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1PutCaseEventConfigurationCommand, serializeAws_restJson1PutCaseEventConfigurationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_PutCaseEventConfigurationCommand, se_PutCaseEventConfigurationCommand } from "../protocols/Aws_restJson1";
5
5
  export class PutCaseEventConfigurationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class PutCaseEventConfigurationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1PutCaseEventConfigurationCommand(input, context);
36
+ return se_PutCaseEventConfigurationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1PutCaseEventConfigurationCommand(output, context);
39
+ return de_PutCaseEventConfigurationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1SearchCasesCommand, serializeAws_restJson1SearchCasesCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_SearchCasesCommand, se_SearchCasesCommand } from "../protocols/Aws_restJson1";
5
5
  export class SearchCasesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class SearchCasesCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1SearchCasesCommand(input, context);
36
+ return se_SearchCasesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1SearchCasesCommand(output, context);
39
+ return de_SearchCasesCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1SearchRelatedItemsCommand, serializeAws_restJson1SearchRelatedItemsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_SearchRelatedItemsCommand, se_SearchRelatedItemsCommand } from "../protocols/Aws_restJson1";
5
5
  export class SearchRelatedItemsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class SearchRelatedItemsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1SearchRelatedItemsCommand(input, context);
36
+ return se_SearchRelatedItemsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1SearchRelatedItemsCommand(output, context);
39
+ return de_SearchRelatedItemsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class TagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class TagResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1TagResourceCommand(input, context);
36
+ return se_TagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1TagResourceCommand(output, context);
39
+ return de_TagResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class UntagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UntagResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UntagResourceCommand(input, context);
36
+ return se_UntagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UntagResourceCommand(output, context);
39
+ return de_UntagResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1UpdateCaseCommand, serializeAws_restJson1UpdateCaseCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateCaseCommand, se_UpdateCaseCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateCaseCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateCaseCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateCaseCommand(input, context);
36
+ return se_UpdateCaseCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateCaseCommand(output, context);
39
+ return de_UpdateCaseCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1UpdateFieldCommand, serializeAws_restJson1UpdateFieldCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateFieldCommand, se_UpdateFieldCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateFieldCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateFieldCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateFieldCommand(input, context);
36
+ return se_UpdateFieldCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateFieldCommand(output, context);
39
+ return de_UpdateFieldCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1UpdateLayoutCommand, serializeAws_restJson1UpdateLayoutCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateLayoutCommand, se_UpdateLayoutCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateLayoutCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateLayoutCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateLayoutCommand(input, context);
36
+ return se_UpdateLayoutCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateLayoutCommand(output, context);
39
+ return de_UpdateLayoutCommand(output, context);
40
40
  }
41
41
  }