@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,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 { PostAgentProfileRequest, PostAgentProfileResponse } from "../models/models_0";
5
- export interface PostAgentProfileCommandInput extends PostAgentProfileRequest {
6
- }
7
- export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PostAgentProfileCommand extends $Command<PostAgentProfileCommandInput, PostAgentProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: PostAgentProfileCommandInput;
12
- constructor(input: PostAgentProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PostAgentProfileCommandInput, PostAgentProfileCommandOutput>;
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
+ PostAgentProfileRequest,
15
+ PostAgentProfileResponse,
16
+ } from "../models/models_0";
17
+ export interface PostAgentProfileCommandInput extends PostAgentProfileRequest {}
18
+ export interface PostAgentProfileCommandOutput
19
+ extends PostAgentProfileResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class PostAgentProfileCommand extends $Command<
23
+ PostAgentProfileCommandInput,
24
+ PostAgentProfileCommandOutput,
25
+ CodeGuruProfilerClientResolvedConfig
26
+ > {
27
+ readonly input: PostAgentProfileCommandInput;
28
+ constructor(input: PostAgentProfileCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CodeGuruProfilerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<PostAgentProfileCommandInput, PostAgentProfileCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { PutPermissionRequest, PutPermissionResponse } from "../models/models_0";
5
- export interface PutPermissionCommandInput extends PutPermissionRequest {
6
- }
7
- export interface PutPermissionCommandOutput extends PutPermissionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutPermissionCommand extends $Command<PutPermissionCommandInput, PutPermissionCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: PutPermissionCommandInput;
12
- constructor(input: PutPermissionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPermissionCommandInput, PutPermissionCommandOutput>;
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
+ PutPermissionRequest,
15
+ PutPermissionResponse,
16
+ } from "../models/models_0";
17
+ export interface PutPermissionCommandInput extends PutPermissionRequest {}
18
+ export interface PutPermissionCommandOutput
19
+ extends PutPermissionResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class PutPermissionCommand extends $Command<
23
+ PutPermissionCommandInput,
24
+ PutPermissionCommandOutput,
25
+ CodeGuruProfilerClientResolvedConfig
26
+ > {
27
+ readonly input: PutPermissionCommandInput;
28
+ constructor(input: PutPermissionCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CodeGuruProfilerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<PutPermissionCommandInput, PutPermissionCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { RemoveNotificationChannelRequest, RemoveNotificationChannelResponse } from "../models/models_0";
5
- export interface RemoveNotificationChannelCommandInput extends RemoveNotificationChannelRequest {
6
- }
7
- export interface RemoveNotificationChannelCommandOutput extends RemoveNotificationChannelResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveNotificationChannelCommand extends $Command<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: RemoveNotificationChannelCommandInput;
12
- constructor(input: RemoveNotificationChannelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput>;
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
+ RemoveNotificationChannelRequest,
15
+ RemoveNotificationChannelResponse,
16
+ } from "../models/models_0";
17
+ export interface RemoveNotificationChannelCommandInput
18
+ extends RemoveNotificationChannelRequest {}
19
+ export interface RemoveNotificationChannelCommandOutput
20
+ extends RemoveNotificationChannelResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RemoveNotificationChannelCommand extends $Command<
24
+ RemoveNotificationChannelCommandInput,
25
+ RemoveNotificationChannelCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: RemoveNotificationChannelCommandInput;
29
+ constructor(input: RemoveNotificationChannelCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ RemoveNotificationChannelCommandInput,
37
+ RemoveNotificationChannelCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { RemovePermissionRequest, RemovePermissionResponse } from "../models/models_0";
5
- export interface RemovePermissionCommandInput extends RemovePermissionRequest {
6
- }
7
- export interface RemovePermissionCommandOutput extends RemovePermissionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: RemovePermissionCommandInput;
12
- constructor(input: RemovePermissionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemovePermissionCommandInput, RemovePermissionCommandOutput>;
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
+ RemovePermissionRequest,
15
+ RemovePermissionResponse,
16
+ } from "../models/models_0";
17
+ export interface RemovePermissionCommandInput extends RemovePermissionRequest {}
18
+ export interface RemovePermissionCommandOutput
19
+ extends RemovePermissionResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class RemovePermissionCommand extends $Command<
23
+ RemovePermissionCommandInput,
24
+ RemovePermissionCommandOutput,
25
+ CodeGuruProfilerClientResolvedConfig
26
+ > {
27
+ readonly input: RemovePermissionCommandInput;
28
+ constructor(input: RemovePermissionCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CodeGuruProfilerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<RemovePermissionCommandInput, RemovePermissionCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { SubmitFeedbackRequest, SubmitFeedbackResponse } from "../models/models_0";
5
- export interface SubmitFeedbackCommandInput extends SubmitFeedbackRequest {
6
- }
7
- export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SubmitFeedbackCommand extends $Command<SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: SubmitFeedbackCommandInput;
12
- constructor(input: SubmitFeedbackCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput>;
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
+ SubmitFeedbackRequest,
15
+ SubmitFeedbackResponse,
16
+ } from "../models/models_0";
17
+ export interface SubmitFeedbackCommandInput extends SubmitFeedbackRequest {}
18
+ export interface SubmitFeedbackCommandOutput
19
+ extends SubmitFeedbackResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class SubmitFeedbackCommand extends $Command<
23
+ SubmitFeedbackCommandInput,
24
+ SubmitFeedbackCommandOutput,
25
+ CodeGuruProfilerClientResolvedConfig
26
+ > {
27
+ readonly input: SubmitFeedbackCommandInput;
28
+ constructor(input: SubmitFeedbackCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CodeGuruProfilerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ CodeGuruProfilerClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CodeGuruProfilerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ CodeGuruProfilerClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CodeGuruProfilerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { UpdateProfilingGroupRequest, UpdateProfilingGroupResponse } from "../models/models_0";
5
- export interface UpdateProfilingGroupCommandInput extends UpdateProfilingGroupRequest {
6
- }
7
- export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateProfilingGroupCommand extends $Command<UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
11
- readonly input: UpdateProfilingGroupCommandInput;
12
- constructor(input: UpdateProfilingGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput>;
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
+ UpdateProfilingGroupRequest,
15
+ UpdateProfilingGroupResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateProfilingGroupCommandInput
18
+ extends UpdateProfilingGroupRequest {}
19
+ export interface UpdateProfilingGroupCommandOutput
20
+ extends UpdateProfilingGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateProfilingGroupCommand extends $Command<
24
+ UpdateProfilingGroupCommandInput,
25
+ UpdateProfilingGroupCommandOutput,
26
+ CodeGuruProfilerClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateProfilingGroupCommandInput;
29
+ constructor(input: UpdateProfilingGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruProfilerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateProfilingGroupCommandInput,
37
+ UpdateProfilingGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,23 +1,23 @@
1
- export * from "./AddNotificationChannelsCommand";
2
- export * from "./BatchGetFrameMetricDataCommand";
3
- export * from "./ConfigureAgentCommand";
4
- export * from "./CreateProfilingGroupCommand";
5
- export * from "./DeleteProfilingGroupCommand";
6
- export * from "./DescribeProfilingGroupCommand";
7
- export * from "./GetFindingsReportAccountSummaryCommand";
8
- export * from "./GetNotificationConfigurationCommand";
9
- export * from "./GetPolicyCommand";
10
- export * from "./GetProfileCommand";
11
- export * from "./GetRecommendationsCommand";
12
- export * from "./ListFindingsReportsCommand";
13
- export * from "./ListProfileTimesCommand";
14
- export * from "./ListProfilingGroupsCommand";
15
- export * from "./ListTagsForResourceCommand";
16
- export * from "./PostAgentProfileCommand";
17
- export * from "./PutPermissionCommand";
18
- export * from "./RemoveNotificationChannelCommand";
19
- export * from "./RemovePermissionCommand";
20
- export * from "./SubmitFeedbackCommand";
21
- export * from "./TagResourceCommand";
22
- export * from "./UntagResourceCommand";
23
- export * from "./UpdateProfilingGroupCommand";
1
+ export * from "./AddNotificationChannelsCommand";
2
+ export * from "./BatchGetFrameMetricDataCommand";
3
+ export * from "./ConfigureAgentCommand";
4
+ export * from "./CreateProfilingGroupCommand";
5
+ export * from "./DeleteProfilingGroupCommand";
6
+ export * from "./DescribeProfilingGroupCommand";
7
+ export * from "./GetFindingsReportAccountSummaryCommand";
8
+ export * from "./GetNotificationConfigurationCommand";
9
+ export * from "./GetPolicyCommand";
10
+ export * from "./GetProfileCommand";
11
+ export * from "./GetRecommendationsCommand";
12
+ export * from "./ListFindingsReportsCommand";
13
+ export * from "./ListProfileTimesCommand";
14
+ export * from "./ListProfilingGroupsCommand";
15
+ export * from "./ListTagsForResourceCommand";
16
+ export * from "./PostAgentProfileCommand";
17
+ export * from "./PutPermissionCommand";
18
+ export * from "./RemoveNotificationChannelCommand";
19
+ export * from "./RemovePermissionCommand";
20
+ export * from "./SubmitFeedbackCommand";
21
+ export * from "./TagResourceCommand";
22
+ export * from "./UntagResourceCommand";
23
+ export * from "./UpdateProfilingGroupCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./CodeGuruProfiler";
2
- export * from "./CodeGuruProfilerClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { CodeGuruProfilerServiceException } from "./models/CodeGuruProfilerServiceException";
1
+ export * from "./CodeGuruProfiler";
2
+ export * from "./CodeGuruProfilerClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { CodeGuruProfilerServiceException } from "./models/CodeGuruProfilerServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class CodeGuruProfilerServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class CodeGuruProfilerServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";