@aws-sdk/client-codeguruprofiler 3.169.0 → 3.171.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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/CodeGuruProfiler.d.ts +395 -120
- package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +243 -96
- package/dist-types/ts3.4/commands/AddNotificationChannelsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/BatchGetFrameMetricDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ConfigureAgentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateProfilingGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteProfilingGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeProfilingGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetFindingsReportAccountSummaryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListFindingsReportsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListProfileTimesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListProfilingGroupsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PostAgentProfileCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateProfilingGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +23 -23
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/CodeGuruProfilerServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +563 -776
- package/dist-types/ts3.4/pagination/GetFindingsReportAccountSummaryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListFindingsReportsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListProfileTimesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListProfilingGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +281 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DescribeProfilingGroupCommand extends $Command<
|
|
23
|
+
DescribeProfilingGroupCommandInput,
|
|
24
|
+
DescribeProfilingGroupCommandOutput,
|
|
25
|
+
CodeGuruProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeProfilingGroupCommandInput;
|
|
28
|
+
constructor(input: DescribeProfilingGroupCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeProfilingGroupCommandInput,
|
|
35
|
+
DescribeProfilingGroupCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetFindingsReportAccountSummaryCommand extends $Command<
|
|
23
|
+
GetFindingsReportAccountSummaryCommandInput,
|
|
24
|
+
GetFindingsReportAccountSummaryCommandOutput,
|
|
25
|
+
CodeGuruProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetFindingsReportAccountSummaryCommandInput;
|
|
28
|
+
constructor(input: GetFindingsReportAccountSummaryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetFindingsReportAccountSummaryCommandInput,
|
|
35
|
+
GetFindingsReportAccountSummaryCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetNotificationConfigurationCommand extends $Command<
|
|
23
|
+
GetNotificationConfigurationCommandInput,
|
|
24
|
+
GetNotificationConfigurationCommandOutput,
|
|
25
|
+
CodeGuruProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetNotificationConfigurationCommandInput;
|
|
28
|
+
constructor(input: GetNotificationConfigurationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetNotificationConfigurationCommandInput,
|
|
35
|
+
GetNotificationConfigurationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetPolicyCommand extends $Command<
|
|
19
|
+
GetPolicyCommandInput,
|
|
20
|
+
GetPolicyCommandOutput,
|
|
21
|
+
CodeGuruProfilerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetPolicyCommandInput;
|
|
24
|
+
constructor(input: GetPolicyCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetProfileCommand extends $Command<
|
|
19
|
+
GetProfileCommandInput,
|
|
20
|
+
GetProfileCommandOutput,
|
|
21
|
+
CodeGuruProfilerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetProfileCommandInput;
|
|
24
|
+
constructor(input: GetProfileCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetProfileCommandInput, GetProfileCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetRecommendationsCommand extends $Command<
|
|
23
|
+
GetRecommendationsCommandInput,
|
|
24
|
+
GetRecommendationsCommandOutput,
|
|
25
|
+
CodeGuruProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetRecommendationsCommandInput;
|
|
28
|
+
constructor(input: GetRecommendationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetRecommendationsCommandInput, GetRecommendationsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListFindingsReportsCommand extends $Command<
|
|
23
|
+
ListFindingsReportsCommandInput,
|
|
24
|
+
ListFindingsReportsCommandOutput,
|
|
25
|
+
CodeGuruProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListFindingsReportsCommandInput;
|
|
28
|
+
constructor(input: ListFindingsReportsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListProfileTimesCommand extends $Command<
|
|
22
|
+
ListProfileTimesCommandInput,
|
|
23
|
+
ListProfileTimesCommandOutput,
|
|
24
|
+
CodeGuruProfilerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListProfileTimesCommandInput;
|
|
27
|
+
constructor(input: ListProfileTimesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListProfileTimesCommandInput, ListProfileTimesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListProfilingGroupsCommand extends $Command<
|
|
23
|
+
ListProfilingGroupsCommandInput,
|
|
24
|
+
ListProfilingGroupsCommandOutput,
|
|
25
|
+
CodeGuruProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListProfilingGroupsCommandInput;
|
|
28
|
+
constructor(input: ListProfilingGroupsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
CodeGuruProfilerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
PostAgentProfileRequest,
|
|
15
|
+
PostAgentProfileResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PostAgentProfileCommandInput extends PostAgentProfileRequest {}
|
|
18
|
+
export interface PostAgentProfileCommandOutput
|
|
19
|
+
extends PostAgentProfileResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class PostAgentProfileCommand extends $Command<
|
|
22
|
+
PostAgentProfileCommandInput,
|
|
23
|
+
PostAgentProfileCommandOutput,
|
|
24
|
+
CodeGuruProfilerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: PostAgentProfileCommandInput;
|
|
27
|
+
constructor(input: PostAgentProfileCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeGuruProfilerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<PostAgentProfileCommandInput, PostAgentProfileCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|