@aws-sdk/client-codeguruprofiler 3.169.0 → 3.170.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 (44) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CodeGuruProfiler.d.ts +418 -120
  3. package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +268 -96
  4. package/dist-types/ts3.4/commands/AddNotificationChannelsCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/BatchGetFrameMetricDataCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/ConfigureAgentCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateProfilingGroupCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteProfilingGroupCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DescribeProfilingGroupCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/GetFindingsReportAccountSummaryCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/ListFindingsReportsCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/ListProfileTimesCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/ListProfilingGroupsCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/PostAgentProfileCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/UpdateProfilingGroupCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/CodeGuruProfilerServiceException.d.ts +8 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +826 -776
  33. package/dist-types/ts3.4/pagination/GetFindingsReportAccountSummaryPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  35. package/dist-types/ts3.4/pagination/ListFindingsReportsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListProfileTimesPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListProfilingGroupsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +281 -71
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  44. package/package.json +34 -34
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput } from "../commands/GetFindingsReportAccountSummaryCommand";
3
- import { CodeGuruProfilerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetFindingsReportAccountSummary(config: CodeGuruProfilerPaginationConfiguration, input: GetFindingsReportAccountSummaryCommandInput, ...additionalArguments: any): Paginator<GetFindingsReportAccountSummaryCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetFindingsReportAccountSummaryCommandInput,
4
+ GetFindingsReportAccountSummaryCommandOutput,
5
+ } from "../commands/GetFindingsReportAccountSummaryCommand";
6
+ import { CodeGuruProfilerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetFindingsReportAccountSummary(
8
+ config: CodeGuruProfilerPaginationConfiguration,
9
+ input: GetFindingsReportAccountSummaryCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetFindingsReportAccountSummaryCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { CodeGuruProfiler } from "../CodeGuruProfiler";
3
- import { CodeGuruProfilerClient } from "../CodeGuruProfilerClient";
4
- export interface CodeGuruProfilerPaginationConfiguration extends PaginationConfiguration {
5
- client: CodeGuruProfiler | CodeGuruProfilerClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { CodeGuruProfiler } from "../CodeGuruProfiler";
3
+ import { CodeGuruProfilerClient } from "../CodeGuruProfilerClient";
4
+ export interface CodeGuruProfilerPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: CodeGuruProfiler | CodeGuruProfilerClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput } from "../commands/ListFindingsReportsCommand";
3
- import { CodeGuruProfilerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListFindingsReports(config: CodeGuruProfilerPaginationConfiguration, input: ListFindingsReportsCommandInput, ...additionalArguments: any): Paginator<ListFindingsReportsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListFindingsReportsCommandInput,
4
+ ListFindingsReportsCommandOutput,
5
+ } from "../commands/ListFindingsReportsCommand";
6
+ import { CodeGuruProfilerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListFindingsReports(
8
+ config: CodeGuruProfilerPaginationConfiguration,
9
+ input: ListFindingsReportsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListFindingsReportsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListProfileTimesCommandInput, ListProfileTimesCommandOutput } from "../commands/ListProfileTimesCommand";
3
- import { CodeGuruProfilerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListProfileTimes(config: CodeGuruProfilerPaginationConfiguration, input: ListProfileTimesCommandInput, ...additionalArguments: any): Paginator<ListProfileTimesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListProfileTimesCommandInput,
4
+ ListProfileTimesCommandOutput,
5
+ } from "../commands/ListProfileTimesCommand";
6
+ import { CodeGuruProfilerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListProfileTimes(
8
+ config: CodeGuruProfilerPaginationConfiguration,
9
+ input: ListProfileTimesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListProfileTimesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput } from "../commands/ListProfilingGroupsCommand";
3
- import { CodeGuruProfilerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListProfilingGroups(config: CodeGuruProfilerPaginationConfiguration, input: ListProfilingGroupsCommandInput, ...additionalArguments: any): Paginator<ListProfilingGroupsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListProfilingGroupsCommandInput,
4
+ ListProfilingGroupsCommandOutput,
5
+ } from "../commands/ListProfilingGroupsCommand";
6
+ import { CodeGuruProfilerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListProfilingGroups(
8
+ config: CodeGuruProfilerPaginationConfiguration,
9
+ input: ListProfilingGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListProfilingGroupsCommandOutput>;
@@ -1,5 +1,5 @@
1
- export * from "./GetFindingsReportAccountSummaryPaginator";
2
- export * from "./Interfaces";
3
- export * from "./ListFindingsReportsPaginator";
4
- export * from "./ListProfileTimesPaginator";
5
- export * from "./ListProfilingGroupsPaginator";
1
+ export * from "./GetFindingsReportAccountSummaryPaginator";
2
+ export * from "./Interfaces";
3
+ export * from "./ListFindingsReportsPaginator";
4
+ export * from "./ListProfileTimesPaginator";
5
+ export * from "./ListProfilingGroupsPaginator";
@@ -1,71 +1,281 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput } from "../commands/AddNotificationChannelsCommand";
4
- import { BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput } from "../commands/BatchGetFrameMetricDataCommand";
5
- import { ConfigureAgentCommandInput, ConfigureAgentCommandOutput } from "../commands/ConfigureAgentCommand";
6
- import { CreateProfilingGroupCommandInput, CreateProfilingGroupCommandOutput } from "../commands/CreateProfilingGroupCommand";
7
- import { DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput } from "../commands/DeleteProfilingGroupCommand";
8
- import { DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput } from "../commands/DescribeProfilingGroupCommand";
9
- import { GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput } from "../commands/GetFindingsReportAccountSummaryCommand";
10
- import { GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput } from "../commands/GetNotificationConfigurationCommand";
11
- import { GetPolicyCommandInput, GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
12
- import { GetProfileCommandInput, GetProfileCommandOutput } from "../commands/GetProfileCommand";
13
- import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput } from "../commands/GetRecommendationsCommand";
14
- import { ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput } from "../commands/ListFindingsReportsCommand";
15
- import { ListProfileTimesCommandInput, ListProfileTimesCommandOutput } from "../commands/ListProfileTimesCommand";
16
- import { ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput } from "../commands/ListProfilingGroupsCommand";
17
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
18
- import { PostAgentProfileCommandInput, PostAgentProfileCommandOutput } from "../commands/PostAgentProfileCommand";
19
- import { PutPermissionCommandInput, PutPermissionCommandOutput } from "../commands/PutPermissionCommand";
20
- import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput } from "../commands/RemoveNotificationChannelCommand";
21
- import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "../commands/RemovePermissionCommand";
22
- import { SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput } from "../commands/SubmitFeedbackCommand";
23
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
24
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
25
- import { UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput } from "../commands/UpdateProfilingGroupCommand";
26
- export declare const serializeAws_restJson1AddNotificationChannelsCommand: (input: AddNotificationChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1BatchGetFrameMetricDataCommand: (input: BatchGetFrameMetricDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1ConfigureAgentCommand: (input: ConfigureAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1CreateProfilingGroupCommand: (input: CreateProfilingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1DeleteProfilingGroupCommand: (input: DeleteProfilingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DescribeProfilingGroupCommand: (input: DescribeProfilingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1GetFindingsReportAccountSummaryCommand: (input: GetFindingsReportAccountSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1GetNotificationConfigurationCommand: (input: GetNotificationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1GetPolicyCommand: (input: GetPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1GetProfileCommand: (input: GetProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1GetRecommendationsCommand: (input: GetRecommendationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1ListFindingsReportsCommand: (input: ListFindingsReportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1ListProfileTimesCommand: (input: ListProfileTimesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1ListProfilingGroupsCommand: (input: ListProfilingGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1PostAgentProfileCommand: (input: PostAgentProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1PutPermissionCommand: (input: PutPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1RemoveNotificationChannelCommand: (input: RemoveNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1RemovePermissionCommand: (input: RemovePermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1SubmitFeedbackCommand: (input: SubmitFeedbackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1UpdateProfilingGroupCommand: (input: UpdateProfilingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const deserializeAws_restJson1AddNotificationChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddNotificationChannelsCommandOutput>;
50
- export declare const deserializeAws_restJson1BatchGetFrameMetricDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetFrameMetricDataCommandOutput>;
51
- export declare const deserializeAws_restJson1ConfigureAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ConfigureAgentCommandOutput>;
52
- export declare const deserializeAws_restJson1CreateProfilingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProfilingGroupCommandOutput>;
53
- export declare const deserializeAws_restJson1DeleteProfilingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProfilingGroupCommandOutput>;
54
- export declare const deserializeAws_restJson1DescribeProfilingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProfilingGroupCommandOutput>;
55
- export declare const deserializeAws_restJson1GetFindingsReportAccountSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFindingsReportAccountSummaryCommandOutput>;
56
- export declare const deserializeAws_restJson1GetNotificationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNotificationConfigurationCommandOutput>;
57
- export declare const deserializeAws_restJson1GetPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyCommandOutput>;
58
- export declare const deserializeAws_restJson1GetProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProfileCommandOutput>;
59
- export declare const deserializeAws_restJson1GetRecommendationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecommendationsCommandOutput>;
60
- export declare const deserializeAws_restJson1ListFindingsReportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFindingsReportsCommandOutput>;
61
- export declare const deserializeAws_restJson1ListProfileTimesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfileTimesCommandOutput>;
62
- export declare const deserializeAws_restJson1ListProfilingGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfilingGroupsCommandOutput>;
63
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
64
- export declare const deserializeAws_restJson1PostAgentProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PostAgentProfileCommandOutput>;
65
- export declare const deserializeAws_restJson1PutPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPermissionCommandOutput>;
66
- export declare const deserializeAws_restJson1RemoveNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveNotificationChannelCommandOutput>;
67
- export declare const deserializeAws_restJson1RemovePermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemovePermissionCommandOutput>;
68
- export declare const deserializeAws_restJson1SubmitFeedbackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubmitFeedbackCommandOutput>;
69
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
70
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
71
- export declare const deserializeAws_restJson1UpdateProfilingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProfilingGroupCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ AddNotificationChannelsCommandInput,
8
+ AddNotificationChannelsCommandOutput,
9
+ } from "../commands/AddNotificationChannelsCommand";
10
+ import {
11
+ BatchGetFrameMetricDataCommandInput,
12
+ BatchGetFrameMetricDataCommandOutput,
13
+ } from "../commands/BatchGetFrameMetricDataCommand";
14
+ import {
15
+ ConfigureAgentCommandInput,
16
+ ConfigureAgentCommandOutput,
17
+ } from "../commands/ConfigureAgentCommand";
18
+ import {
19
+ CreateProfilingGroupCommandInput,
20
+ CreateProfilingGroupCommandOutput,
21
+ } from "../commands/CreateProfilingGroupCommand";
22
+ import {
23
+ DeleteProfilingGroupCommandInput,
24
+ DeleteProfilingGroupCommandOutput,
25
+ } from "../commands/DeleteProfilingGroupCommand";
26
+ import {
27
+ DescribeProfilingGroupCommandInput,
28
+ DescribeProfilingGroupCommandOutput,
29
+ } from "../commands/DescribeProfilingGroupCommand";
30
+ import {
31
+ GetFindingsReportAccountSummaryCommandInput,
32
+ GetFindingsReportAccountSummaryCommandOutput,
33
+ } from "../commands/GetFindingsReportAccountSummaryCommand";
34
+ import {
35
+ GetNotificationConfigurationCommandInput,
36
+ GetNotificationConfigurationCommandOutput,
37
+ } from "../commands/GetNotificationConfigurationCommand";
38
+ import {
39
+ GetPolicyCommandInput,
40
+ GetPolicyCommandOutput,
41
+ } from "../commands/GetPolicyCommand";
42
+ import {
43
+ GetProfileCommandInput,
44
+ GetProfileCommandOutput,
45
+ } from "../commands/GetProfileCommand";
46
+ import {
47
+ GetRecommendationsCommandInput,
48
+ GetRecommendationsCommandOutput,
49
+ } from "../commands/GetRecommendationsCommand";
50
+ import {
51
+ ListFindingsReportsCommandInput,
52
+ ListFindingsReportsCommandOutput,
53
+ } from "../commands/ListFindingsReportsCommand";
54
+ import {
55
+ ListProfileTimesCommandInput,
56
+ ListProfileTimesCommandOutput,
57
+ } from "../commands/ListProfileTimesCommand";
58
+ import {
59
+ ListProfilingGroupsCommandInput,
60
+ ListProfilingGroupsCommandOutput,
61
+ } from "../commands/ListProfilingGroupsCommand";
62
+ import {
63
+ ListTagsForResourceCommandInput,
64
+ ListTagsForResourceCommandOutput,
65
+ } from "../commands/ListTagsForResourceCommand";
66
+ import {
67
+ PostAgentProfileCommandInput,
68
+ PostAgentProfileCommandOutput,
69
+ } from "../commands/PostAgentProfileCommand";
70
+ import {
71
+ PutPermissionCommandInput,
72
+ PutPermissionCommandOutput,
73
+ } from "../commands/PutPermissionCommand";
74
+ import {
75
+ RemoveNotificationChannelCommandInput,
76
+ RemoveNotificationChannelCommandOutput,
77
+ } from "../commands/RemoveNotificationChannelCommand";
78
+ import {
79
+ RemovePermissionCommandInput,
80
+ RemovePermissionCommandOutput,
81
+ } from "../commands/RemovePermissionCommand";
82
+ import {
83
+ SubmitFeedbackCommandInput,
84
+ SubmitFeedbackCommandOutput,
85
+ } from "../commands/SubmitFeedbackCommand";
86
+ import {
87
+ TagResourceCommandInput,
88
+ TagResourceCommandOutput,
89
+ } from "../commands/TagResourceCommand";
90
+ import {
91
+ UntagResourceCommandInput,
92
+ UntagResourceCommandOutput,
93
+ } from "../commands/UntagResourceCommand";
94
+ import {
95
+ UpdateProfilingGroupCommandInput,
96
+ UpdateProfilingGroupCommandOutput,
97
+ } from "../commands/UpdateProfilingGroupCommand";
98
+ export declare const serializeAws_restJson1AddNotificationChannelsCommand: (
99
+ input: AddNotificationChannelsCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1BatchGetFrameMetricDataCommand: (
103
+ input: BatchGetFrameMetricDataCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1ConfigureAgentCommand: (
107
+ input: ConfigureAgentCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1CreateProfilingGroupCommand: (
111
+ input: CreateProfilingGroupCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1DeleteProfilingGroupCommand: (
115
+ input: DeleteProfilingGroupCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1DescribeProfilingGroupCommand: (
119
+ input: DescribeProfilingGroupCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1GetFindingsReportAccountSummaryCommand: (
123
+ input: GetFindingsReportAccountSummaryCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1GetNotificationConfigurationCommand: (
127
+ input: GetNotificationConfigurationCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1GetPolicyCommand: (
131
+ input: GetPolicyCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1GetProfileCommand: (
135
+ input: GetProfileCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1GetRecommendationsCommand: (
139
+ input: GetRecommendationsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1ListFindingsReportsCommand: (
143
+ input: ListFindingsReportsCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1ListProfileTimesCommand: (
147
+ input: ListProfileTimesCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1ListProfilingGroupsCommand: (
151
+ input: ListProfilingGroupsCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
155
+ input: ListTagsForResourceCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1PostAgentProfileCommand: (
159
+ input: PostAgentProfileCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1PutPermissionCommand: (
163
+ input: PutPermissionCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1RemoveNotificationChannelCommand: (
167
+ input: RemoveNotificationChannelCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1RemovePermissionCommand: (
171
+ input: RemovePermissionCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1SubmitFeedbackCommand: (
175
+ input: SubmitFeedbackCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1TagResourceCommand: (
179
+ input: TagResourceCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1UntagResourceCommand: (
183
+ input: UntagResourceCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1UpdateProfilingGroupCommand: (
187
+ input: UpdateProfilingGroupCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const deserializeAws_restJson1AddNotificationChannelsCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<AddNotificationChannelsCommandOutput>;
194
+ export declare const deserializeAws_restJson1BatchGetFrameMetricDataCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<BatchGetFrameMetricDataCommandOutput>;
198
+ export declare const deserializeAws_restJson1ConfigureAgentCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<ConfigureAgentCommandOutput>;
202
+ export declare const deserializeAws_restJson1CreateProfilingGroupCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<CreateProfilingGroupCommandOutput>;
206
+ export declare const deserializeAws_restJson1DeleteProfilingGroupCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<DeleteProfilingGroupCommandOutput>;
210
+ export declare const deserializeAws_restJson1DescribeProfilingGroupCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<DescribeProfilingGroupCommandOutput>;
214
+ export declare const deserializeAws_restJson1GetFindingsReportAccountSummaryCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<GetFindingsReportAccountSummaryCommandOutput>;
218
+ export declare const deserializeAws_restJson1GetNotificationConfigurationCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<GetNotificationConfigurationCommandOutput>;
222
+ export declare const deserializeAws_restJson1GetPolicyCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<GetPolicyCommandOutput>;
226
+ export declare const deserializeAws_restJson1GetProfileCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<GetProfileCommandOutput>;
230
+ export declare const deserializeAws_restJson1GetRecommendationsCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<GetRecommendationsCommandOutput>;
234
+ export declare const deserializeAws_restJson1ListFindingsReportsCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<ListFindingsReportsCommandOutput>;
238
+ export declare const deserializeAws_restJson1ListProfileTimesCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<ListProfileTimesCommandOutput>;
242
+ export declare const deserializeAws_restJson1ListProfilingGroupsCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<ListProfilingGroupsCommandOutput>;
246
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<ListTagsForResourceCommandOutput>;
250
+ export declare const deserializeAws_restJson1PostAgentProfileCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<PostAgentProfileCommandOutput>;
254
+ export declare const deserializeAws_restJson1PutPermissionCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<PutPermissionCommandOutput>;
258
+ export declare const deserializeAws_restJson1RemoveNotificationChannelCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<RemoveNotificationChannelCommandOutput>;
262
+ export declare const deserializeAws_restJson1RemovePermissionCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<RemovePermissionCommandOutput>;
266
+ export declare const deserializeAws_restJson1SubmitFeedbackCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<SubmitFeedbackCommandOutput>;
270
+ export declare const deserializeAws_restJson1TagResourceCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<TagResourceCommandOutput>;
274
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<UntagResourceCommandOutput>;
278
+ export declare const deserializeAws_restJson1UpdateProfilingGroupCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<UpdateProfilingGroupCommandOutput>;
@@ -1,38 +1,68 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient";
3
-
4
- export declare const getRuntimeConfig: (config: CodeGuruProfilerClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: CodeGuruProfilerClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<any>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };