@aws-sdk/client-codeguruprofiler 3.306.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 (51) hide show
  1. package/dist-cjs/commands/AddNotificationChannelsCommand.js +2 -2
  2. package/dist-cjs/commands/BatchGetFrameMetricDataCommand.js +2 -2
  3. package/dist-cjs/commands/ConfigureAgentCommand.js +2 -2
  4. package/dist-cjs/commands/CreateProfilingGroupCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteProfilingGroupCommand.js +2 -2
  6. package/dist-cjs/commands/DescribeProfilingGroupCommand.js +2 -2
  7. package/dist-cjs/commands/GetFindingsReportAccountSummaryCommand.js +2 -2
  8. package/dist-cjs/commands/GetNotificationConfigurationCommand.js +2 -2
  9. package/dist-cjs/commands/GetPolicyCommand.js +2 -2
  10. package/dist-cjs/commands/GetProfileCommand.js +2 -2
  11. package/dist-cjs/commands/GetRecommendationsCommand.js +2 -2
  12. package/dist-cjs/commands/ListFindingsReportsCommand.js +2 -2
  13. package/dist-cjs/commands/ListProfileTimesCommand.js +2 -2
  14. package/dist-cjs/commands/ListProfilingGroupsCommand.js +2 -2
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  16. package/dist-cjs/commands/PostAgentProfileCommand.js +2 -2
  17. package/dist-cjs/commands/PutPermissionCommand.js +2 -2
  18. package/dist-cjs/commands/RemoveNotificationChannelCommand.js +2 -2
  19. package/dist-cjs/commands/RemovePermissionCommand.js +2 -2
  20. package/dist-cjs/commands/SubmitFeedbackCommand.js +2 -2
  21. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  22. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  23. package/dist-cjs/commands/UpdateProfilingGroupCommand.js +2 -2
  24. package/dist-cjs/protocols/Aws_restJson1.js +346 -360
  25. package/dist-es/commands/AddNotificationChannelsCommand.js +3 -3
  26. package/dist-es/commands/BatchGetFrameMetricDataCommand.js +3 -3
  27. package/dist-es/commands/ConfigureAgentCommand.js +3 -3
  28. package/dist-es/commands/CreateProfilingGroupCommand.js +3 -3
  29. package/dist-es/commands/DeleteProfilingGroupCommand.js +3 -3
  30. package/dist-es/commands/DescribeProfilingGroupCommand.js +3 -3
  31. package/dist-es/commands/GetFindingsReportAccountSummaryCommand.js +3 -3
  32. package/dist-es/commands/GetNotificationConfigurationCommand.js +3 -3
  33. package/dist-es/commands/GetPolicyCommand.js +3 -3
  34. package/dist-es/commands/GetProfileCommand.js +3 -3
  35. package/dist-es/commands/GetRecommendationsCommand.js +3 -3
  36. package/dist-es/commands/ListFindingsReportsCommand.js +3 -3
  37. package/dist-es/commands/ListProfileTimesCommand.js +3 -3
  38. package/dist-es/commands/ListProfilingGroupsCommand.js +3 -3
  39. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  40. package/dist-es/commands/PostAgentProfileCommand.js +3 -3
  41. package/dist-es/commands/PutPermissionCommand.js +3 -3
  42. package/dist-es/commands/RemoveNotificationChannelCommand.js +3 -3
  43. package/dist-es/commands/RemovePermissionCommand.js +3 -3
  44. package/dist-es/commands/SubmitFeedbackCommand.js +3 -3
  45. package/dist-es/commands/TagResourceCommand.js +3 -3
  46. package/dist-es/commands/UntagResourceCommand.js +3 -3
  47. package/dist-es/commands/UpdateProfilingGroupCommand.js +3 -3
  48. package/dist-es/protocols/Aws_restJson1.js +299 -313
  49. package/dist-types/protocols/Aws_restJson1.d.ts +184 -46
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +46 -46
  51. package/package.json +6 -6
@@ -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_restJson1AddNotificationChannelsCommand, serializeAws_restJson1AddNotificationChannelsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_AddNotificationChannelsCommand, se_AddNotificationChannelsCommand } from "../protocols/Aws_restJson1";
5
5
  export class AddNotificationChannelsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class AddNotificationChannelsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1AddNotificationChannelsCommand(input, context);
36
+ return se_AddNotificationChannelsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1AddNotificationChannelsCommand(output, context);
39
+ return de_AddNotificationChannelsCommand(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_restJson1BatchGetFrameMetricDataCommand, serializeAws_restJson1BatchGetFrameMetricDataCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_BatchGetFrameMetricDataCommand, se_BatchGetFrameMetricDataCommand } from "../protocols/Aws_restJson1";
5
5
  export class BatchGetFrameMetricDataCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class BatchGetFrameMetricDataCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1BatchGetFrameMetricDataCommand(input, context);
36
+ return se_BatchGetFrameMetricDataCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1BatchGetFrameMetricDataCommand(output, context);
39
+ return de_BatchGetFrameMetricDataCommand(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_restJson1ConfigureAgentCommand, serializeAws_restJson1ConfigureAgentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ConfigureAgentCommand, se_ConfigureAgentCommand } from "../protocols/Aws_restJson1";
5
5
  export class ConfigureAgentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ConfigureAgentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ConfigureAgentCommand(input, context);
36
+ return se_ConfigureAgentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ConfigureAgentCommand(output, context);
39
+ return de_ConfigureAgentCommand(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_restJson1CreateProfilingGroupCommand, serializeAws_restJson1CreateProfilingGroupCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateProfilingGroupCommand, se_CreateProfilingGroupCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateProfilingGroupCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateProfilingGroupCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateProfilingGroupCommand(input, context);
36
+ return se_CreateProfilingGroupCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateProfilingGroupCommand(output, context);
39
+ return de_CreateProfilingGroupCommand(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_restJson1DeleteProfilingGroupCommand, serializeAws_restJson1DeleteProfilingGroupCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteProfilingGroupCommand, se_DeleteProfilingGroupCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteProfilingGroupCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteProfilingGroupCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteProfilingGroupCommand(input, context);
36
+ return se_DeleteProfilingGroupCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteProfilingGroupCommand(output, context);
39
+ return de_DeleteProfilingGroupCommand(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_restJson1DescribeProfilingGroupCommand, serializeAws_restJson1DescribeProfilingGroupCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DescribeProfilingGroupCommand, se_DescribeProfilingGroupCommand } from "../protocols/Aws_restJson1";
5
5
  export class DescribeProfilingGroupCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeProfilingGroupCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DescribeProfilingGroupCommand(input, context);
36
+ return se_DescribeProfilingGroupCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DescribeProfilingGroupCommand(output, context);
39
+ return de_DescribeProfilingGroupCommand(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_restJson1GetFindingsReportAccountSummaryCommand, serializeAws_restJson1GetFindingsReportAccountSummaryCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetFindingsReportAccountSummaryCommand, se_GetFindingsReportAccountSummaryCommand, } from "../protocols/Aws_restJson1";
5
5
  export class GetFindingsReportAccountSummaryCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetFindingsReportAccountSummaryCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetFindingsReportAccountSummaryCommand(input, context);
36
+ return se_GetFindingsReportAccountSummaryCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetFindingsReportAccountSummaryCommand(output, context);
39
+ return de_GetFindingsReportAccountSummaryCommand(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_restJson1GetNotificationConfigurationCommand, serializeAws_restJson1GetNotificationConfigurationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetNotificationConfigurationCommand, se_GetNotificationConfigurationCommand, } from "../protocols/Aws_restJson1";
5
5
  export class GetNotificationConfigurationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetNotificationConfigurationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetNotificationConfigurationCommand(input, context);
36
+ return se_GetNotificationConfigurationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetNotificationConfigurationCommand(output, context);
39
+ return de_GetNotificationConfigurationCommand(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_restJson1GetPolicyCommand, serializeAws_restJson1GetPolicyCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetPolicyCommand, se_GetPolicyCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetPolicyCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetPolicyCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetPolicyCommand(input, context);
36
+ return se_GetPolicyCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetPolicyCommand(output, context);
39
+ return de_GetPolicyCommand(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_restJson1GetProfileCommand, serializeAws_restJson1GetProfileCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetProfileCommand, se_GetProfileCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetProfileCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetProfileCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetProfileCommand(input, context);
36
+ return se_GetProfileCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetProfileCommand(output, context);
39
+ return de_GetProfileCommand(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_restJson1GetRecommendationsCommand, serializeAws_restJson1GetRecommendationsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetRecommendationsCommand, se_GetRecommendationsCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetRecommendationsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetRecommendationsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetRecommendationsCommand(input, context);
36
+ return se_GetRecommendationsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetRecommendationsCommand(output, context);
39
+ return de_GetRecommendationsCommand(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_restJson1ListFindingsReportsCommand, serializeAws_restJson1ListFindingsReportsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListFindingsReportsCommand, se_ListFindingsReportsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListFindingsReportsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListFindingsReportsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListFindingsReportsCommand(input, context);
36
+ return se_ListFindingsReportsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListFindingsReportsCommand(output, context);
39
+ return de_ListFindingsReportsCommand(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_restJson1ListProfileTimesCommand, serializeAws_restJson1ListProfileTimesCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListProfileTimesCommand, se_ListProfileTimesCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListProfileTimesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListProfileTimesCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListProfileTimesCommand(input, context);
36
+ return se_ListProfileTimesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListProfileTimesCommand(output, context);
39
+ return de_ListProfileTimesCommand(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_restJson1ListProfilingGroupsCommand, serializeAws_restJson1ListProfilingGroupsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListProfilingGroupsCommand, se_ListProfilingGroupsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListProfilingGroupsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListProfilingGroupsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListProfilingGroupsCommand(input, context);
36
+ return se_ListProfilingGroupsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListProfilingGroupsCommand(output, context);
39
+ return de_ListProfilingGroupsCommand(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_restJson1PostAgentProfileCommand, serializeAws_restJson1PostAgentProfileCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_PostAgentProfileCommand, se_PostAgentProfileCommand } from "../protocols/Aws_restJson1";
5
5
  export class PostAgentProfileCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class PostAgentProfileCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1PostAgentProfileCommand(input, context);
36
+ return se_PostAgentProfileCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1PostAgentProfileCommand(output, context);
39
+ return de_PostAgentProfileCommand(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_restJson1PutPermissionCommand, serializeAws_restJson1PutPermissionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_PutPermissionCommand, se_PutPermissionCommand } from "../protocols/Aws_restJson1";
5
5
  export class PutPermissionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class PutPermissionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1PutPermissionCommand(input, context);
36
+ return se_PutPermissionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1PutPermissionCommand(output, context);
39
+ return de_PutPermissionCommand(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_restJson1RemoveNotificationChannelCommand, serializeAws_restJson1RemoveNotificationChannelCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_RemoveNotificationChannelCommand, se_RemoveNotificationChannelCommand } from "../protocols/Aws_restJson1";
5
5
  export class RemoveNotificationChannelCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class RemoveNotificationChannelCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1RemoveNotificationChannelCommand(input, context);
36
+ return se_RemoveNotificationChannelCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1RemoveNotificationChannelCommand(output, context);
39
+ return de_RemoveNotificationChannelCommand(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_restJson1RemovePermissionCommand, serializeAws_restJson1RemovePermissionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_RemovePermissionCommand, se_RemovePermissionCommand } from "../protocols/Aws_restJson1";
5
5
  export class RemovePermissionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class RemovePermissionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1RemovePermissionCommand(input, context);
36
+ return se_RemovePermissionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1RemovePermissionCommand(output, context);
39
+ return de_RemovePermissionCommand(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_restJson1SubmitFeedbackCommand, serializeAws_restJson1SubmitFeedbackCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_SubmitFeedbackCommand, se_SubmitFeedbackCommand } from "../protocols/Aws_restJson1";
5
5
  export class SubmitFeedbackCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class SubmitFeedbackCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1SubmitFeedbackCommand(input, context);
36
+ return se_SubmitFeedbackCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1SubmitFeedbackCommand(output, context);
39
+ return de_SubmitFeedbackCommand(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_restJson1UpdateProfilingGroupCommand, serializeAws_restJson1UpdateProfilingGroupCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateProfilingGroupCommand, se_UpdateProfilingGroupCommand } from "../protocols/Aws_restJson1";
5
5
  export class UpdateProfilingGroupCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateProfilingGroupCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateProfilingGroupCommand(input, context);
36
+ return se_UpdateProfilingGroupCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateProfilingGroupCommand(output, context);
39
+ return de_UpdateProfilingGroupCommand(output, context);
40
40
  }
41
41
  }