@aws-sdk/client-codeguruprofiler 3.948.0 → 3.953.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 (43) hide show
  1. package/dist-cjs/index.js +310 -215
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AddNotificationChannelsCommand.js +2 -2
  4. package/dist-es/commands/BatchGetFrameMetricDataCommand.js +2 -2
  5. package/dist-es/commands/ConfigureAgentCommand.js +2 -2
  6. package/dist-es/commands/CreateProfilingGroupCommand.js +2 -2
  7. package/dist-es/commands/DeleteProfilingGroupCommand.js +2 -2
  8. package/dist-es/commands/DescribeProfilingGroupCommand.js +2 -2
  9. package/dist-es/commands/GetFindingsReportAccountSummaryCommand.js +2 -2
  10. package/dist-es/commands/GetNotificationConfigurationCommand.js +2 -2
  11. package/dist-es/commands/GetPolicyCommand.js +2 -2
  12. package/dist-es/commands/GetProfileCommand.js +2 -2
  13. package/dist-es/commands/GetRecommendationsCommand.js +2 -2
  14. package/dist-es/commands/ListFindingsReportsCommand.js +2 -2
  15. package/dist-es/commands/ListProfileTimesCommand.js +2 -2
  16. package/dist-es/commands/ListProfilingGroupsCommand.js +2 -2
  17. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  18. package/dist-es/commands/PostAgentProfileCommand.js +2 -2
  19. package/dist-es/commands/PutPermissionCommand.js +2 -2
  20. package/dist-es/commands/RemoveNotificationChannelCommand.js +2 -2
  21. package/dist-es/commands/RemovePermissionCommand.js +2 -2
  22. package/dist-es/commands/SubmitFeedbackCommand.js +2 -2
  23. package/dist-es/commands/TagResourceCommand.js +2 -2
  24. package/dist-es/commands/UntagResourceCommand.js +2 -2
  25. package/dist-es/commands/UpdateProfilingGroupCommand.js +2 -2
  26. package/dist-es/index.js +1 -0
  27. package/dist-es/runtimeConfig.shared.js +6 -1
  28. package/dist-es/schemas/schemas_0.js +186 -186
  29. package/dist-types/CodeGuruProfilerClient.d.ts +1 -10
  30. package/dist-types/index.d.ts +1 -0
  31. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  32. package/dist-types/runtimeConfig.d.ts +6 -2
  33. package/dist-types/runtimeConfig.native.d.ts +6 -2
  34. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  35. package/dist-types/schemas/schemas_0.d.ts +96 -120
  36. package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +0 -4
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +95 -121
  43. package/package.json +35 -35
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.codeguruprofiler" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.codeguruprofiler",
32
+ version: "2019-07-18",
33
+ serviceTarget: "CodeGuruProfiler",
34
+ },
30
35
  serviceId: config?.serviceId ?? "CodeGuruProfiler",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { AddNotificationChannels } from "../schemas/schemas_0";
4
+ import { AddNotificationChannels$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AddNotificationChannelsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AddNotificationChannelsCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "AddNotificationChannels", {})
13
13
  .n("CodeGuruProfilerClient", "AddNotificationChannelsCommand")
14
- .sc(AddNotificationChannels)
14
+ .sc(AddNotificationChannels$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { BatchGetFrameMetricData } from "../schemas/schemas_0";
4
+ import { BatchGetFrameMetricData$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchGetFrameMetricDataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchGetFrameMetricDataCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "BatchGetFrameMetricData", {})
13
13
  .n("CodeGuruProfilerClient", "BatchGetFrameMetricDataCommand")
14
- .sc(BatchGetFrameMetricData)
14
+ .sc(BatchGetFrameMetricData$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ConfigureAgent } from "../schemas/schemas_0";
4
+ import { ConfigureAgent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ConfigureAgentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ConfigureAgentCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "ConfigureAgent", {})
13
13
  .n("CodeGuruProfilerClient", "ConfigureAgentCommand")
14
- .sc(ConfigureAgent)
14
+ .sc(ConfigureAgent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateProfilingGroup } from "../schemas/schemas_0";
4
+ import { CreateProfilingGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateProfilingGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateProfilingGroupCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "CreateProfilingGroup", {})
13
13
  .n("CodeGuruProfilerClient", "CreateProfilingGroupCommand")
14
- .sc(CreateProfilingGroup)
14
+ .sc(CreateProfilingGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteProfilingGroup } from "../schemas/schemas_0";
4
+ import { DeleteProfilingGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteProfilingGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteProfilingGroupCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "DeleteProfilingGroup", {})
13
13
  .n("CodeGuruProfilerClient", "DeleteProfilingGroupCommand")
14
- .sc(DeleteProfilingGroup)
14
+ .sc(DeleteProfilingGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeProfilingGroup } from "../schemas/schemas_0";
4
+ import { DescribeProfilingGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeProfilingGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeProfilingGroupCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "DescribeProfilingGroup", {})
13
13
  .n("CodeGuruProfilerClient", "DescribeProfilingGroupCommand")
14
- .sc(DescribeProfilingGroup)
14
+ .sc(DescribeProfilingGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetFindingsReportAccountSummary } from "../schemas/schemas_0";
4
+ import { GetFindingsReportAccountSummary$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetFindingsReportAccountSummaryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetFindingsReportAccountSummaryCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "GetFindingsReportAccountSummary", {})
13
13
  .n("CodeGuruProfilerClient", "GetFindingsReportAccountSummaryCommand")
14
- .sc(GetFindingsReportAccountSummary)
14
+ .sc(GetFindingsReportAccountSummary$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetNotificationConfiguration } from "../schemas/schemas_0";
4
+ import { GetNotificationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetNotificationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetNotificationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "GetNotificationConfiguration", {})
13
13
  .n("CodeGuruProfilerClient", "GetNotificationConfigurationCommand")
14
- .sc(GetNotificationConfiguration)
14
+ .sc(GetNotificationConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetPolicy } from "../schemas/schemas_0";
4
+ import { GetPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetPolicyCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "GetPolicy", {})
13
13
  .n("CodeGuruProfilerClient", "GetPolicyCommand")
14
- .sc(GetPolicy)
14
+ .sc(GetPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetProfile } from "../schemas/schemas_0";
4
+ import { GetProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetProfileCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "GetProfile", {})
13
13
  .n("CodeGuruProfilerClient", "GetProfileCommand")
14
- .sc(GetProfile)
14
+ .sc(GetProfile$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetRecommendations } from "../schemas/schemas_0";
4
+ import { GetRecommendations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetRecommendationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetRecommendationsCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "GetRecommendations", {})
13
13
  .n("CodeGuruProfilerClient", "GetRecommendationsCommand")
14
- .sc(GetRecommendations)
14
+ .sc(GetRecommendations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListFindingsReports } from "../schemas/schemas_0";
4
+ import { ListFindingsReports$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListFindingsReportsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListFindingsReportsCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "ListFindingsReports", {})
13
13
  .n("CodeGuruProfilerClient", "ListFindingsReportsCommand")
14
- .sc(ListFindingsReports)
14
+ .sc(ListFindingsReports$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListProfileTimes } from "../schemas/schemas_0";
4
+ import { ListProfileTimes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListProfileTimesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListProfileTimesCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "ListProfileTimes", {})
13
13
  .n("CodeGuruProfilerClient", "ListProfileTimesCommand")
14
- .sc(ListProfileTimes)
14
+ .sc(ListProfileTimes$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListProfilingGroups } from "../schemas/schemas_0";
4
+ import { ListProfilingGroups$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListProfilingGroupsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListProfilingGroupsCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "ListProfilingGroups", {})
13
13
  .n("CodeGuruProfilerClient", "ListProfilingGroupsCommand")
14
- .sc(ListProfilingGroups)
14
+ .sc(ListProfilingGroups$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "ListTagsForResource", {})
13
13
  .n("CodeGuruProfilerClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PostAgentProfile } from "../schemas/schemas_0";
4
+ import { PostAgentProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PostAgentProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PostAgentProfileCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "PostAgentProfile", {})
13
13
  .n("CodeGuruProfilerClient", "PostAgentProfileCommand")
14
- .sc(PostAgentProfile)
14
+ .sc(PostAgentProfile$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutPermission } from "../schemas/schemas_0";
4
+ import { PutPermission$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutPermissionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutPermissionCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "PutPermission", {})
13
13
  .n("CodeGuruProfilerClient", "PutPermissionCommand")
14
- .sc(PutPermission)
14
+ .sc(PutPermission$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RemoveNotificationChannel } from "../schemas/schemas_0";
4
+ import { RemoveNotificationChannel$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RemoveNotificationChannelCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RemoveNotificationChannelCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "RemoveNotificationChannel", {})
13
13
  .n("CodeGuruProfilerClient", "RemoveNotificationChannelCommand")
14
- .sc(RemoveNotificationChannel)
14
+ .sc(RemoveNotificationChannel$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RemovePermission } from "../schemas/schemas_0";
4
+ import { RemovePermission$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RemovePermissionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RemovePermissionCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "RemovePermission", {})
13
13
  .n("CodeGuruProfilerClient", "RemovePermissionCommand")
14
- .sc(RemovePermission)
14
+ .sc(RemovePermission$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SubmitFeedback } from "../schemas/schemas_0";
4
+ import { SubmitFeedback$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SubmitFeedbackCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SubmitFeedbackCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "SubmitFeedback", {})
13
13
  .n("CodeGuruProfilerClient", "SubmitFeedbackCommand")
14
- .sc(SubmitFeedback)
14
+ .sc(SubmitFeedback$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "TagResource", {})
13
13
  .n("CodeGuruProfilerClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "UntagResource", {})
13
13
  .n("CodeGuruProfilerClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateProfilingGroup } from "../schemas/schemas_0";
4
+ import { UpdateProfilingGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateProfilingGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateProfilingGroupCommand extends $Command
11
11
  })
12
12
  .s("CodeGuruProfiler", "UpdateProfilingGroup", {})
13
13
  .n("CodeGuruProfilerClient", "UpdateProfilingGroupCommand")
14
- .sc(UpdateProfilingGroup)
14
+ .sc(UpdateProfilingGroup$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./CodeGuruProfilerClient";
2
2
  export * from "./CodeGuruProfiler";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.codeguruprofiler" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.codeguruprofiler",
29
+ version: "2019-07-18",
30
+ serviceTarget: "CodeGuruProfiler",
31
+ },
27
32
  serviceId: config?.serviceId ?? "CodeGuruProfiler",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,