@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,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { DeleteProfilingGroupRequest, DeleteProfilingGroupResponse } from "../models/models_0";
5
- export interface DeleteProfilingGroupCommandInput extends DeleteProfilingGroupRequest {
6
- }
7
- export interface DeleteProfilingGroupCommandOutput extends DeleteProfilingGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteProfilingGroupCommand extends $Command<DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: DeleteProfilingGroupCommandInput;
12
- constructor(input: DeleteProfilingGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ DeleteProfilingGroupRequest,
15
+ DeleteProfilingGroupResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteProfilingGroupCommandInput
18
+ extends DeleteProfilingGroupRequest {}
19
+ export interface DeleteProfilingGroupCommandOutput
20
+ extends DeleteProfilingGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteProfilingGroupCommand extends $Command<
24
+ DeleteProfilingGroupCommandInput,
25
+ DeleteProfilingGroupCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteProfilingGroupCommandInput;
29
+ constructor(input: DeleteProfilingGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteProfilingGroupCommandInput,
37
+ DeleteProfilingGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { DescribeProfilingGroupRequest, DescribeProfilingGroupResponse } from "../models/models_0";
5
- export interface DescribeProfilingGroupCommandInput extends DescribeProfilingGroupRequest {
6
- }
7
- export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeProfilingGroupCommand extends $Command<DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: DescribeProfilingGroupCommandInput;
12
- constructor(input: DescribeProfilingGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ DescribeProfilingGroupRequest,
15
+ DescribeProfilingGroupResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeProfilingGroupCommandInput
18
+ extends DescribeProfilingGroupRequest {}
19
+ export interface DescribeProfilingGroupCommandOutput
20
+ extends DescribeProfilingGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeProfilingGroupCommand extends $Command<
24
+ DescribeProfilingGroupCommandInput,
25
+ DescribeProfilingGroupCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeProfilingGroupCommandInput;
29
+ constructor(input: DescribeProfilingGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeProfilingGroupCommandInput,
37
+ DescribeProfilingGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { GetFindingsReportAccountSummaryRequest, GetFindingsReportAccountSummaryResponse } from "../models/models_0";
5
- export interface GetFindingsReportAccountSummaryCommandInput extends GetFindingsReportAccountSummaryRequest {
6
- }
7
- export interface GetFindingsReportAccountSummaryCommandOutput extends GetFindingsReportAccountSummaryResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetFindingsReportAccountSummaryCommand extends $Command<GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: GetFindingsReportAccountSummaryCommandInput;
12
- constructor(input: GetFindingsReportAccountSummaryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ GetFindingsReportAccountSummaryRequest,
15
+ GetFindingsReportAccountSummaryResponse,
16
+ } from "../models/models_0";
17
+ export interface GetFindingsReportAccountSummaryCommandInput
18
+ extends GetFindingsReportAccountSummaryRequest {}
19
+ export interface GetFindingsReportAccountSummaryCommandOutput
20
+ extends GetFindingsReportAccountSummaryResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetFindingsReportAccountSummaryCommand extends $Command<
24
+ GetFindingsReportAccountSummaryCommandInput,
25
+ GetFindingsReportAccountSummaryCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: GetFindingsReportAccountSummaryCommandInput;
29
+ constructor(input: GetFindingsReportAccountSummaryCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetFindingsReportAccountSummaryCommandInput,
37
+ GetFindingsReportAccountSummaryCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0";
5
- export interface GetNotificationConfigurationCommandInput extends GetNotificationConfigurationRequest {
6
- }
7
- export interface GetNotificationConfigurationCommandOutput extends GetNotificationConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetNotificationConfigurationCommand extends $Command<GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: GetNotificationConfigurationCommandInput;
12
- constructor(input: GetNotificationConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ GetNotificationConfigurationRequest,
15
+ GetNotificationConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface GetNotificationConfigurationCommandInput
18
+ extends GetNotificationConfigurationRequest {}
19
+ export interface GetNotificationConfigurationCommandOutput
20
+ extends GetNotificationConfigurationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetNotificationConfigurationCommand extends $Command<
24
+ GetNotificationConfigurationCommandInput,
25
+ GetNotificationConfigurationCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: GetNotificationConfigurationCommandInput;
29
+ constructor(input: GetNotificationConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetNotificationConfigurationCommandInput,
37
+ GetNotificationConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
5
- export interface GetPolicyCommandInput extends GetPolicyRequest {
6
- }
7
- export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: GetPolicyCommandInput;
12
- constructor(input: GetPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
14
+ export interface GetPolicyCommandInput extends GetPolicyRequest {}
15
+ export interface GetPolicyCommandOutput
16
+ extends GetPolicyResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetPolicyCommand extends $Command<
20
+ GetPolicyCommandInput,
21
+ GetPolicyCommandOutput,
22
+ CodeGuruProfilerClientResolvedConfig
23
+ > {
24
+ readonly input: GetPolicyCommandInput;
25
+ constructor(input: GetPolicyCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CodeGuruProfilerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { GetProfileRequest, GetProfileResponse } from "../models/models_0";
5
- export interface GetProfileCommandInput extends GetProfileRequest {
6
- }
7
- export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetProfileCommand extends $Command<GetProfileCommandInput, GetProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: GetProfileCommandInput;
12
- constructor(input: GetProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProfileCommandInput, GetProfileCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import { GetProfileRequest, GetProfileResponse } from "../models/models_0";
14
+ export interface GetProfileCommandInput extends GetProfileRequest {}
15
+ export interface GetProfileCommandOutput
16
+ extends GetProfileResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetProfileCommand extends $Command<
20
+ GetProfileCommandInput,
21
+ GetProfileCommandOutput,
22
+ CodeGuruProfilerClientResolvedConfig
23
+ > {
24
+ readonly input: GetProfileCommandInput;
25
+ constructor(input: GetProfileCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CodeGuruProfilerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetProfileCommandInput, GetProfileCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0";
5
- export interface GetRecommendationsCommandInput extends GetRecommendationsRequest {
6
- }
7
- export interface GetRecommendationsCommandOutput extends GetRecommendationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetRecommendationsCommand extends $Command<GetRecommendationsCommandInput, GetRecommendationsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: GetRecommendationsCommandInput;
12
- constructor(input: GetRecommendationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecommendationsCommandInput, GetRecommendationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ GetRecommendationsRequest,
15
+ GetRecommendationsResponse,
16
+ } from "../models/models_0";
17
+ export interface GetRecommendationsCommandInput
18
+ extends GetRecommendationsRequest {}
19
+ export interface GetRecommendationsCommandOutput
20
+ extends GetRecommendationsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetRecommendationsCommand extends $Command<
24
+ GetRecommendationsCommandInput,
25
+ GetRecommendationsCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: GetRecommendationsCommandInput;
29
+ constructor(input: GetRecommendationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetRecommendationsCommandInput, GetRecommendationsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { ListFindingsReportsRequest, ListFindingsReportsResponse } from "../models/models_0";
5
- export interface ListFindingsReportsCommandInput extends ListFindingsReportsRequest {
6
- }
7
- export interface ListFindingsReportsCommandOutput extends ListFindingsReportsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListFindingsReportsCommand extends $Command<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: ListFindingsReportsCommandInput;
12
- constructor(input: ListFindingsReportsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ ListFindingsReportsRequest,
15
+ ListFindingsReportsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListFindingsReportsCommandInput
18
+ extends ListFindingsReportsRequest {}
19
+ export interface ListFindingsReportsCommandOutput
20
+ extends ListFindingsReportsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListFindingsReportsCommand extends $Command<
24
+ ListFindingsReportsCommandInput,
25
+ ListFindingsReportsCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: ListFindingsReportsCommandInput;
29
+ constructor(input: ListFindingsReportsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { ListProfileTimesRequest, ListProfileTimesResponse } from "../models/models_0";
5
- export interface ListProfileTimesCommandInput extends ListProfileTimesRequest {
6
- }
7
- export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListProfileTimesCommand extends $Command<ListProfileTimesCommandInput, ListProfileTimesCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: ListProfileTimesCommandInput;
12
- constructor(input: ListProfileTimesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfileTimesCommandInput, ListProfileTimesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ ListProfileTimesRequest,
15
+ ListProfileTimesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListProfileTimesCommandInput extends ListProfileTimesRequest {}
18
+ export interface ListProfileTimesCommandOutput
19
+ extends ListProfileTimesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListProfileTimesCommand extends $Command<
23
+ ListProfileTimesCommandInput,
24
+ ListProfileTimesCommandOutput,
25
+ CodeGuruProfilerClientResolvedConfig
26
+ > {
27
+ readonly input: ListProfileTimesCommandInput;
28
+ constructor(input: ListProfileTimesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CodeGuruProfilerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListProfileTimesCommandInput, ListProfileTimesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { ListProfilingGroupsRequest, ListProfilingGroupsResponse } from "../models/models_0";
5
- export interface ListProfilingGroupsCommandInput extends ListProfilingGroupsRequest {
6
- }
7
- export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListProfilingGroupsCommand extends $Command<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: ListProfilingGroupsCommandInput;
12
- constructor(input: ListProfilingGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ ListProfilingGroupsRequest,
15
+ ListProfilingGroupsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListProfilingGroupsCommandInput
18
+ extends ListProfilingGroupsRequest {}
19
+ export interface ListProfilingGroupsCommandOutput
20
+ extends ListProfilingGroupsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListProfilingGroupsCommand extends $Command<
24
+ ListProfilingGroupsCommandInput,
25
+ ListProfilingGroupsCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: ListProfilingGroupsCommandInput;
29
+ constructor(input: ListProfilingGroupsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruProfilerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruProfilerClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }