@aws-sdk/client-codeguruprofiler 3.295.0 → 3.297.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 (33) hide show
  1. package/dist-types/CodeGuruProfiler.d.ts +24 -0
  2. package/dist-types/CodeGuruProfilerClient.d.ts +24 -4
  3. package/dist-types/commands/AddNotificationChannelsCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchGetFrameMetricDataCommand.d.ts +16 -0
  5. package/dist-types/commands/ConfigureAgentCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateProfilingGroupCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteProfilingGroupCommand.d.ts +16 -0
  8. package/dist-types/commands/DescribeProfilingGroupCommand.d.ts +16 -0
  9. package/dist-types/commands/GetFindingsReportAccountSummaryCommand.d.ts +16 -0
  10. package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +16 -0
  11. package/dist-types/commands/GetPolicyCommand.d.ts +16 -0
  12. package/dist-types/commands/GetProfileCommand.d.ts +16 -0
  13. package/dist-types/commands/GetRecommendationsCommand.d.ts +16 -0
  14. package/dist-types/commands/ListFindingsReportsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListProfileTimesCommand.d.ts +16 -0
  16. package/dist-types/commands/ListProfilingGroupsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  18. package/dist-types/commands/PostAgentProfileCommand.d.ts +16 -0
  19. package/dist-types/commands/PutPermissionCommand.d.ts +16 -0
  20. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +16 -0
  21. package/dist-types/commands/RemovePermissionCommand.d.ts +16 -0
  22. package/dist-types/commands/SubmitFeedbackCommand.d.ts +16 -0
  23. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UpdateProfilingGroupCommand.d.ts +16 -0
  26. package/dist-types/models/CodeGuruProfilerServiceException.d.ts +2 -0
  27. package/dist-types/models/models_0.d.ts +110 -0
  28. package/dist-types/pagination/GetFindingsReportAccountSummaryPaginator.d.ts +3 -0
  29. package/dist-types/pagination/Interfaces.d.ts +3 -0
  30. package/dist-types/pagination/ListFindingsReportsPaginator.d.ts +3 -0
  31. package/dist-types/pagination/ListProfileTimesPaginator.d.ts +3 -0
  32. package/dist-types/pagination/ListProfilingGroupsPaginator.d.ts +3 -0
  33. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Use to assign one or more tags to a resource.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
36
+ * @returns {@link TagResourceCommandOutput}
30
37
  * @see {@link TagResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
@@ -45,11 +52,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
45
52
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
46
53
  readonly input: TagResourceCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: TagResourceCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Use to remove one or more tags from a resource.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
36
+ * @returns {@link UntagResourceCommandOutput}
30
37
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
@@ -45,11 +52,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
45
52
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
46
53
  readonly input: UntagResourceCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: UntagResourceCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
5
5
  import { UpdateProfilingGroupRequest, UpdateProfilingGroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateProfilingGroupCommand}.
8
10
  */
9
11
  export interface UpdateProfilingGroupCommandInput extends UpdateProfilingGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateProfilingGroupCommand}.
13
17
  */
14
18
  export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a profiling group.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateProfilingGroupCommandInput - {@link UpdateProfilingGroupCommandInput}
34
+ * @returns {@link UpdateProfilingGroupCommandOutput}
28
35
  * @see {@link UpdateProfilingGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateProfilingGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupR
52
59
  export declare class UpdateProfilingGroupCommand extends $Command<UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
53
60
  readonly input: UpdateProfilingGroupCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateProfilingGroupCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from CodeGuruProfiler service.
4
6
  */
5
7
  export declare class CodeGuruProfilerServiceException extends __ServiceException {