@aws-sdk/client-codeguruprofiler 3.325.0 → 3.327.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 (24) hide show
  1. package/dist-types/commands/AddNotificationChannelsCommand.d.ts +16 -0
  2. package/dist-types/commands/BatchGetFrameMetricDataCommand.d.ts +34 -0
  3. package/dist-types/commands/ConfigureAgentCommand.d.ts +12 -0
  4. package/dist-types/commands/CreateProfilingGroupCommand.d.ts +26 -0
  5. package/dist-types/commands/DeleteProfilingGroupCommand.d.ts +4 -0
  6. package/dist-types/commands/DescribeProfilingGroupCommand.d.ts +26 -0
  7. package/dist-types/commands/GetFindingsReportAccountSummaryCommand.d.ts +15 -0
  8. package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +16 -0
  9. package/dist-types/commands/GetPolicyCommand.d.ts +7 -0
  10. package/dist-types/commands/GetProfileCommand.d.ts +8 -0
  11. package/dist-types/commands/GetRecommendationsCommand.d.ts +60 -0
  12. package/dist-types/commands/ListFindingsReportsCommand.d.ts +15 -0
  13. package/dist-types/commands/ListProfileTimesCommand.d.ts +11 -0
  14. package/dist-types/commands/ListProfilingGroupsCommand.d.ts +32 -0
  15. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  16. package/dist-types/commands/PostAgentProfileCommand.d.ts +4 -0
  17. package/dist-types/commands/PutPermissionCommand.d.ts +7 -0
  18. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +16 -0
  19. package/dist-types/commands/RemovePermissionCommand.d.ts +7 -0
  20. package/dist-types/commands/SubmitFeedbackCommand.d.ts +4 -0
  21. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  22. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  23. package/dist-types/commands/UpdateProfilingGroupCommand.d.ts +26 -0
  24. package/package.json +7 -7
@@ -40,6 +40,20 @@ export interface AddNotificationChannelsCommandOutput extends AddNotificationCha
40
40
  * };
41
41
  * const command = new AddNotificationChannelsCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // AddNotificationChannelsResponse
44
+ * // notificationConfiguration: { // NotificationConfiguration
45
+ * // channels: [ // Channels
46
+ * // { // Channel
47
+ * // id: "STRING_VALUE",
48
+ * // uri: "STRING_VALUE", // required
49
+ * // eventPublishers: [ // EventPublishers // required
50
+ * // "STRING_VALUE",
51
+ * // ],
52
+ * // },
53
+ * // ],
54
+ * // },
55
+ * // };
56
+ *
43
57
  * ```
44
58
  *
45
59
  * @param AddNotificationChannelsCommandInput - {@link AddNotificationChannelsCommandInput}
@@ -72,6 +86,8 @@ export interface AddNotificationChannelsCommandOutput extends AddNotificationCha
72
86
  * @throws {@link ValidationException} (client fault)
73
87
  * <p>The parameter is not valid.</p>
74
88
  *
89
+ * @throws {@link CodeGuruProfilerServiceException}
90
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
75
91
  *
76
92
  */
77
93
  export declare class AddNotificationChannelsCommand extends $Command<AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -46,6 +46,38 @@ export interface BatchGetFrameMetricDataCommandOutput extends BatchGetFrameMetri
46
46
  * };
47
47
  * const command = new BatchGetFrameMetricDataCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // { // BatchGetFrameMetricDataResponse
50
+ * // startTime: new Date("TIMESTAMP"), // required
51
+ * // endTime: new Date("TIMESTAMP"), // required
52
+ * // resolution: "STRING_VALUE", // required
53
+ * // endTimes: [ // ListOfTimestamps // required
54
+ * // { // TimestampStructure
55
+ * // value: new Date("TIMESTAMP"), // required
56
+ * // },
57
+ * // ],
58
+ * // unprocessedEndTimes: { // UnprocessedEndTimeMap // required
59
+ * // "<keys>": [
60
+ * // {
61
+ * // value: new Date("TIMESTAMP"), // required
62
+ * // },
63
+ * // ],
64
+ * // },
65
+ * // frameMetricData: [ // FrameMetricData // required
66
+ * // { // FrameMetricDatum
67
+ * // frameMetric: { // FrameMetric
68
+ * // frameName: "STRING_VALUE", // required
69
+ * // type: "STRING_VALUE", // required
70
+ * // threadStates: [ // ThreadStates // required
71
+ * // "STRING_VALUE",
72
+ * // ],
73
+ * // },
74
+ * // values: [ // FrameMetricValues // required
75
+ * // Number("double"),
76
+ * // ],
77
+ * // },
78
+ * // ],
79
+ * // };
80
+ *
49
81
  * ```
50
82
  *
51
83
  * @param BatchGetFrameMetricDataCommandInput - {@link BatchGetFrameMetricDataCommandInput}
@@ -66,6 +98,8 @@ export interface BatchGetFrameMetricDataCommandOutput extends BatchGetFrameMetri
66
98
  * @throws {@link ValidationException} (client fault)
67
99
  * <p>The parameter is not valid.</p>
68
100
  *
101
+ * @throws {@link CodeGuruProfilerServiceException}
102
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
69
103
  *
70
104
  */
71
105
  export declare class BatchGetFrameMetricDataCommand extends $Command<BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -39,6 +39,16 @@ export interface ConfigureAgentCommandOutput extends ConfigureAgentResponse, __M
39
39
  * };
40
40
  * const command = new ConfigureAgentCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ConfigureAgentResponse
43
+ * // configuration: { // AgentConfiguration
44
+ * // shouldProfile: true || false, // required
45
+ * // periodInSeconds: Number("int"), // required
46
+ * // agentParameters: { // AgentParameters
47
+ * // "<keys>": "STRING_VALUE",
48
+ * // },
49
+ * // },
50
+ * // };
51
+ *
42
52
  * ```
43
53
  *
44
54
  * @param ConfigureAgentCommandInput - {@link ConfigureAgentCommandInput}
@@ -59,6 +69,8 @@ export interface ConfigureAgentCommandOutput extends ConfigureAgentResponse, __M
59
69
  * @throws {@link ValidationException} (client fault)
60
70
  * <p>The parameter is not valid.</p>
61
71
  *
72
+ * @throws {@link CodeGuruProfilerServiceException}
73
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
62
74
  *
63
75
  */
64
76
  export declare class ConfigureAgentCommand extends $Command<ConfigureAgentCommandInput, ConfigureAgentCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -39,6 +39,30 @@ export interface CreateProfilingGroupCommandOutput extends CreateProfilingGroupR
39
39
  * };
40
40
  * const command = new CreateProfilingGroupCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // CreateProfilingGroupResponse
43
+ * // profilingGroup: { // ProfilingGroupDescription
44
+ * // name: "STRING_VALUE",
45
+ * // agentOrchestrationConfig: { // AgentOrchestrationConfig
46
+ * // profilingEnabled: true || false, // required
47
+ * // },
48
+ * // arn: "STRING_VALUE",
49
+ * // createdAt: new Date("TIMESTAMP"),
50
+ * // updatedAt: new Date("TIMESTAMP"),
51
+ * // profilingStatus: { // ProfilingStatus
52
+ * // latestAgentProfileReportedAt: new Date("TIMESTAMP"),
53
+ * // latestAggregatedProfile: { // AggregatedProfileTime
54
+ * // start: new Date("TIMESTAMP"),
55
+ * // period: "STRING_VALUE",
56
+ * // },
57
+ * // latestAgentOrchestratedAt: new Date("TIMESTAMP"),
58
+ * // },
59
+ * // computePlatform: "STRING_VALUE",
60
+ * // tags: { // TagsMap
61
+ * // "<keys>": "STRING_VALUE",
62
+ * // },
63
+ * // },
64
+ * // };
65
+ *
42
66
  * ```
43
67
  *
44
68
  * @param CreateProfilingGroupCommandInput - {@link CreateProfilingGroupCommandInput}
@@ -68,6 +92,8 @@ export interface CreateProfilingGroupCommandOutput extends CreateProfilingGroupR
68
92
  * @throws {@link ValidationException} (client fault)
69
93
  * <p>The parameter is not valid.</p>
70
94
  *
95
+ * @throws {@link CodeGuruProfilerServiceException}
96
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
71
97
  *
72
98
  */
73
99
  export declare class CreateProfilingGroupCommand extends $Command<CreateProfilingGroupCommandInput, CreateProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteProfilingGroupCommandOutput extends DeleteProfilingGroupR
31
31
  * };
32
32
  * const command = new DeleteProfilingGroupCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteProfilingGroupCommandInput - {@link DeleteProfilingGroupCommandInput}
@@ -57,6 +59,8 @@ export interface DeleteProfilingGroupCommandOutput extends DeleteProfilingGroupR
57
59
  * @throws {@link ValidationException} (client fault)
58
60
  * <p>The parameter is not valid.</p>
59
61
  *
62
+ * @throws {@link CodeGuruProfilerServiceException}
63
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeleteProfilingGroupCommand extends $Command<DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -36,6 +36,30 @@ export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGr
36
36
  * };
37
37
  * const command = new DescribeProfilingGroupCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeProfilingGroupResponse
40
+ * // profilingGroup: { // ProfilingGroupDescription
41
+ * // name: "STRING_VALUE",
42
+ * // agentOrchestrationConfig: { // AgentOrchestrationConfig
43
+ * // profilingEnabled: true || false, // required
44
+ * // },
45
+ * // arn: "STRING_VALUE",
46
+ * // createdAt: new Date("TIMESTAMP"),
47
+ * // updatedAt: new Date("TIMESTAMP"),
48
+ * // profilingStatus: { // ProfilingStatus
49
+ * // latestAgentProfileReportedAt: new Date("TIMESTAMP"),
50
+ * // latestAggregatedProfile: { // AggregatedProfileTime
51
+ * // start: new Date("TIMESTAMP"),
52
+ * // period: "STRING_VALUE",
53
+ * // },
54
+ * // latestAgentOrchestratedAt: new Date("TIMESTAMP"),
55
+ * // },
56
+ * // computePlatform: "STRING_VALUE",
57
+ * // tags: { // TagsMap
58
+ * // "<keys>": "STRING_VALUE",
59
+ * // },
60
+ * // },
61
+ * // };
62
+ *
39
63
  * ```
40
64
  *
41
65
  * @param DescribeProfilingGroupCommandInput - {@link DescribeProfilingGroupCommandInput}
@@ -56,6 +80,8 @@ export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGr
56
80
  * @throws {@link ValidationException} (client fault)
57
81
  * <p>The parameter is not valid.</p>
58
82
  *
83
+ * @throws {@link CodeGuruProfilerServiceException}
84
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
59
85
  *
60
86
  */
61
87
  export declare class DescribeProfilingGroupCommand extends $Command<DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -39,6 +39,19 @@ export interface GetFindingsReportAccountSummaryCommandOutput extends GetFinding
39
39
  * };
40
40
  * const command = new GetFindingsReportAccountSummaryCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // GetFindingsReportAccountSummaryResponse
43
+ * // reportSummaries: [ // FindingsReportSummaries // required
44
+ * // { // FindingsReportSummary
45
+ * // id: "STRING_VALUE",
46
+ * // profilingGroupName: "STRING_VALUE",
47
+ * // profileStartTime: new Date("TIMESTAMP"),
48
+ * // profileEndTime: new Date("TIMESTAMP"),
49
+ * // totalNumberOfFindings: Number("int"),
50
+ * // },
51
+ * // ],
52
+ * // nextToken: "STRING_VALUE",
53
+ * // };
54
+ *
42
55
  * ```
43
56
  *
44
57
  * @param GetFindingsReportAccountSummaryCommandInput - {@link GetFindingsReportAccountSummaryCommandInput}
@@ -56,6 +69,8 @@ export interface GetFindingsReportAccountSummaryCommandOutput extends GetFinding
56
69
  * @throws {@link ValidationException} (client fault)
57
70
  * <p>The parameter is not valid.</p>
58
71
  *
72
+ * @throws {@link CodeGuruProfilerServiceException}
73
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
59
74
  *
60
75
  */
61
76
  export declare class GetFindingsReportAccountSummaryCommand extends $Command<GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -31,6 +31,20 @@ export interface GetNotificationConfigurationCommandOutput extends GetNotificati
31
31
  * };
32
32
  * const command = new GetNotificationConfigurationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetNotificationConfigurationResponse
35
+ * // notificationConfiguration: { // NotificationConfiguration
36
+ * // channels: [ // Channels
37
+ * // { // Channel
38
+ * // id: "STRING_VALUE",
39
+ * // uri: "STRING_VALUE", // required
40
+ * // eventPublishers: [ // EventPublishers // required
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // },
44
+ * // ],
45
+ * // },
46
+ * // };
47
+ *
34
48
  * ```
35
49
  *
36
50
  * @param GetNotificationConfigurationCommandInput - {@link GetNotificationConfigurationCommandInput}
@@ -51,6 +65,8 @@ export interface GetNotificationConfigurationCommandOutput extends GetNotificati
51
65
  * @throws {@link ValidationException} (client fault)
52
66
  * <p>The parameter is not valid.</p>
53
67
  *
68
+ * @throws {@link CodeGuruProfilerServiceException}
69
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
54
70
  *
55
71
  */
56
72
  export declare class GetNotificationConfigurationCommand extends $Command<GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -33,6 +33,11 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
33
33
  * };
34
34
  * const command = new GetPolicyCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // GetPolicyResponse
37
+ * // policy: "STRING_VALUE", // required
38
+ * // revisionId: "STRING_VALUE", // required
39
+ * // };
40
+ *
36
41
  * ```
37
42
  *
38
43
  * @param GetPolicyCommandInput - {@link GetPolicyCommandInput}
@@ -50,6 +55,8 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
50
55
  * @throws {@link ThrottlingException} (client fault)
51
56
  * <p>The request was denied due to request throttling.</p>
52
57
  *
58
+ * @throws {@link CodeGuruProfilerServiceException}
59
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
53
60
  *
54
61
  */
55
62
  export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -107,6 +107,12 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB
107
107
  * };
108
108
  * const command = new GetProfileCommand(input);
109
109
  * const response = await client.send(command);
110
+ * // { // GetProfileResponse
111
+ * // profile: "BLOB_VALUE", // required
112
+ * // contentType: "STRING_VALUE", // required
113
+ * // contentEncoding: "STRING_VALUE",
114
+ * // };
115
+ *
110
116
  * ```
111
117
  *
112
118
  * @param GetProfileCommandInput - {@link GetProfileCommandInput}
@@ -127,6 +133,8 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB
127
133
  * @throws {@link ValidationException} (client fault)
128
134
  * <p>The parameter is not valid.</p>
129
135
  *
136
+ * @throws {@link CodeGuruProfilerServiceException}
137
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
130
138
  *
131
139
  */
132
140
  export declare class GetProfileCommand extends $Command<GetProfileCommandInput, GetProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -45,6 +45,64 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo
45
45
  * };
46
46
  * const command = new GetRecommendationsCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // GetRecommendationsResponse
49
+ * // profilingGroupName: "STRING_VALUE", // required
50
+ * // profileStartTime: new Date("TIMESTAMP"), // required
51
+ * // profileEndTime: new Date("TIMESTAMP"), // required
52
+ * // recommendations: [ // Recommendations // required
53
+ * // { // Recommendation
54
+ * // allMatchesCount: Number("int"), // required
55
+ * // allMatchesSum: Number("double"), // required
56
+ * // pattern: { // Pattern
57
+ * // id: "STRING_VALUE",
58
+ * // name: "STRING_VALUE",
59
+ * // description: "STRING_VALUE",
60
+ * // resolutionSteps: "STRING_VALUE",
61
+ * // targetFrames: [ // TargetFrames
62
+ * // [ // TargetFrame
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // ],
66
+ * // thresholdPercent: Number("double"),
67
+ * // countersToAggregate: [ // Strings
68
+ * // "STRING_VALUE",
69
+ * // ],
70
+ * // },
71
+ * // topMatches: [ // Matches // required
72
+ * // { // Match
73
+ * // targetFramesIndex: Number("int"),
74
+ * // frameAddress: "STRING_VALUE",
75
+ * // thresholdBreachValue: Number("double"),
76
+ * // },
77
+ * // ],
78
+ * // startTime: new Date("TIMESTAMP"), // required
79
+ * // endTime: new Date("TIMESTAMP"), // required
80
+ * // },
81
+ * // ],
82
+ * // anomalies: [ // Anomalies // required
83
+ * // { // Anomaly
84
+ * // metric: { // Metric
85
+ * // frameName: "STRING_VALUE", // required
86
+ * // type: "STRING_VALUE", // required
87
+ * // threadStates: [ // required
88
+ * // "STRING_VALUE",
89
+ * // ],
90
+ * // },
91
+ * // reason: "STRING_VALUE", // required
92
+ * // instances: [ // AnomalyInstances // required
93
+ * // { // AnomalyInstance
94
+ * // id: "STRING_VALUE", // required
95
+ * // startTime: new Date("TIMESTAMP"), // required
96
+ * // endTime: new Date("TIMESTAMP"),
97
+ * // userFeedback: { // UserFeedback
98
+ * // type: "STRING_VALUE", // required
99
+ * // },
100
+ * // },
101
+ * // ],
102
+ * // },
103
+ * // ],
104
+ * // };
105
+ *
48
106
  * ```
49
107
  *
50
108
  * @param GetRecommendationsCommandInput - {@link GetRecommendationsCommandInput}
@@ -65,6 +123,8 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo
65
123
  * @throws {@link ValidationException} (client fault)
66
124
  * <p>The parameter is not valid.</p>
67
125
  *
126
+ * @throws {@link CodeGuruProfilerServiceException}
127
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
68
128
  *
69
129
  */
70
130
  export declare class GetRecommendationsCommand extends $Command<GetRecommendationsCommandInput, GetRecommendationsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -36,6 +36,19 @@ export interface ListFindingsReportsCommandOutput extends ListFindingsReportsRes
36
36
  * };
37
37
  * const command = new ListFindingsReportsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListFindingsReportsResponse
40
+ * // findingsReportSummaries: [ // FindingsReportSummaries // required
41
+ * // { // FindingsReportSummary
42
+ * // id: "STRING_VALUE",
43
+ * // profilingGroupName: "STRING_VALUE",
44
+ * // profileStartTime: new Date("TIMESTAMP"),
45
+ * // profileEndTime: new Date("TIMESTAMP"),
46
+ * // totalNumberOfFindings: Number("int"),
47
+ * // },
48
+ * // ],
49
+ * // nextToken: "STRING_VALUE",
50
+ * // };
51
+ *
39
52
  * ```
40
53
  *
41
54
  * @param ListFindingsReportsCommandInput - {@link ListFindingsReportsCommandInput}
@@ -56,6 +69,8 @@ export interface ListFindingsReportsCommandOutput extends ListFindingsReportsRes
56
69
  * @throws {@link ValidationException} (client fault)
57
70
  * <p>The parameter is not valid.</p>
58
71
  *
72
+ * @throws {@link CodeGuruProfilerServiceException}
73
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
59
74
  *
60
75
  */
61
76
  export declare class ListFindingsReportsCommand extends $Command<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -38,6 +38,15 @@ export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse,
38
38
  * };
39
39
  * const command = new ListProfileTimesCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // ListProfileTimesResponse
42
+ * // profileTimes: [ // ProfileTimes // required
43
+ * // { // ProfileTime
44
+ * // start: new Date("TIMESTAMP"),
45
+ * // },
46
+ * // ],
47
+ * // nextToken: "STRING_VALUE",
48
+ * // };
49
+ *
41
50
  * ```
42
51
  *
43
52
  * @param ListProfileTimesCommandInput - {@link ListProfileTimesCommandInput}
@@ -58,6 +67,8 @@ export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse,
58
67
  * @throws {@link ValidationException} (client fault)
59
68
  * <p>The parameter is not valid.</p>
60
69
  *
70
+ * @throws {@link CodeGuruProfilerServiceException}
71
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
61
72
  *
62
73
  */
63
74
  export declare class ListProfileTimesCommand extends $Command<ListProfileTimesCommandInput, ListProfileTimesCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -39,6 +39,36 @@ export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsRes
39
39
  * };
40
40
  * const command = new ListProfilingGroupsCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListProfilingGroupsResponse
43
+ * // profilingGroupNames: [ // ProfilingGroupNames // required
44
+ * // "STRING_VALUE",
45
+ * // ],
46
+ * // profilingGroups: [ // ProfilingGroupDescriptions
47
+ * // { // ProfilingGroupDescription
48
+ * // name: "STRING_VALUE",
49
+ * // agentOrchestrationConfig: { // AgentOrchestrationConfig
50
+ * // profilingEnabled: true || false, // required
51
+ * // },
52
+ * // arn: "STRING_VALUE",
53
+ * // createdAt: new Date("TIMESTAMP"),
54
+ * // updatedAt: new Date("TIMESTAMP"),
55
+ * // profilingStatus: { // ProfilingStatus
56
+ * // latestAgentProfileReportedAt: new Date("TIMESTAMP"),
57
+ * // latestAggregatedProfile: { // AggregatedProfileTime
58
+ * // start: new Date("TIMESTAMP"),
59
+ * // period: "STRING_VALUE",
60
+ * // },
61
+ * // latestAgentOrchestratedAt: new Date("TIMESTAMP"),
62
+ * // },
63
+ * // computePlatform: "STRING_VALUE",
64
+ * // tags: { // TagsMap
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // },
68
+ * // ],
69
+ * // nextToken: "STRING_VALUE",
70
+ * // };
71
+ *
42
72
  * ```
43
73
  *
44
74
  * @param ListProfilingGroupsCommandInput - {@link ListProfilingGroupsCommandInput}
@@ -53,6 +83,8 @@ export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsRes
53
83
  * @throws {@link ThrottlingException} (client fault)
54
84
  * <p>The request was denied due to request throttling.</p>
55
85
  *
86
+ * @throws {@link CodeGuruProfilerServiceException}
87
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
56
88
  *
57
89
  */
58
90
  export declare class ListProfilingGroupsCommand extends $Command<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -33,6 +33,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
33
33
  * };
34
34
  * const command = new ListTagsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsForResourceResponse
37
+ * // tags: { // TagsMap
38
+ * // "<keys>": "STRING_VALUE",
39
+ * // },
40
+ * // };
41
+ *
36
42
  * ```
37
43
  *
38
44
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -50,6 +56,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
50
56
  * @throws {@link ValidationException} (client fault)
51
57
  * <p>The parameter is not valid.</p>
52
58
  *
59
+ * @throws {@link CodeGuruProfilerServiceException}
60
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
53
61
  *
54
62
  */
55
63
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -40,6 +40,8 @@ export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse,
40
40
  * };
41
41
  * const command = new PostAgentProfileCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // {};
44
+ *
43
45
  * ```
44
46
  *
45
47
  * @param PostAgentProfileCommandInput - {@link PostAgentProfileCommandInput}
@@ -60,6 +62,8 @@ export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse,
60
62
  * @throws {@link ValidationException} (client fault)
61
63
  * <p>The parameter is not valid.</p>
62
64
  *
65
+ * @throws {@link CodeGuruProfilerServiceException}
66
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
63
67
  *
64
68
  */
65
69
  export declare class PostAgentProfileCommand extends $Command<PostAgentProfileCommandInput, PostAgentProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -61,6 +61,11 @@ export interface PutPermissionCommandOutput extends PutPermissionResponse, __Met
61
61
  * };
62
62
  * const command = new PutPermissionCommand(input);
63
63
  * const response = await client.send(command);
64
+ * // { // PutPermissionResponse
65
+ * // policy: "STRING_VALUE", // required
66
+ * // revisionId: "STRING_VALUE", // required
67
+ * // };
68
+ *
64
69
  * ```
65
70
  *
66
71
  * @param PutPermissionCommandInput - {@link PutPermissionCommandInput}
@@ -87,6 +92,8 @@ export interface PutPermissionCommandOutput extends PutPermissionResponse, __Met
87
92
  * @throws {@link ValidationException} (client fault)
88
93
  * <p>The parameter is not valid.</p>
89
94
  *
95
+ * @throws {@link CodeGuruProfilerServiceException}
96
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
90
97
  *
91
98
  */
92
99
  export declare class PutPermissionCommand extends $Command<PutPermissionCommandInput, PutPermissionCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -32,6 +32,20 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
32
32
  * };
33
33
  * const command = new RemoveNotificationChannelCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // RemoveNotificationChannelResponse
36
+ * // notificationConfiguration: { // NotificationConfiguration
37
+ * // channels: [ // Channels
38
+ * // { // Channel
39
+ * // id: "STRING_VALUE",
40
+ * // uri: "STRING_VALUE", // required
41
+ * // eventPublishers: [ // EventPublishers // required
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // },
45
+ * // ],
46
+ * // },
47
+ * // };
48
+ *
35
49
  * ```
36
50
  *
37
51
  * @param RemoveNotificationChannelCommandInput - {@link RemoveNotificationChannelCommandInput}
@@ -52,6 +66,8 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
52
66
  * @throws {@link ValidationException} (client fault)
53
67
  * <p>The parameter is not valid.</p>
54
68
  *
69
+ * @throws {@link CodeGuruProfilerServiceException}
70
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
55
71
  *
56
72
  */
57
73
  export declare class RemoveNotificationChannelCommand extends $Command<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -41,6 +41,11 @@ export interface RemovePermissionCommandOutput extends RemovePermissionResponse,
41
41
  * };
42
42
  * const command = new RemovePermissionCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // RemovePermissionResponse
45
+ * // policy: "STRING_VALUE", // required
46
+ * // revisionId: "STRING_VALUE", // required
47
+ * // };
48
+ *
44
49
  * ```
45
50
  *
46
51
  * @param RemovePermissionCommandInput - {@link RemovePermissionCommandInput}
@@ -67,6 +72,8 @@ export interface RemovePermissionCommandOutput extends RemovePermissionResponse,
67
72
  * @throws {@link ValidationException} (client fault)
68
73
  * <p>The parameter is not valid.</p>
69
74
  *
75
+ * @throws {@link CodeGuruProfilerServiceException}
76
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
70
77
  *
71
78
  */
72
79
  export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __M
35
35
  * };
36
36
  * const command = new SubmitFeedbackCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param SubmitFeedbackCommandInput - {@link SubmitFeedbackCommandInput}
@@ -55,6 +57,8 @@ export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __M
55
57
  * @throws {@link ValidationException} (client fault)
56
58
  * <p>The parameter is not valid.</p>
57
59
  *
60
+ * @throws {@link CodeGuruProfilerServiceException}
61
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
58
62
  *
59
63
  */
60
64
  export declare class SubmitFeedbackCommand extends $Command<SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
36
36
  * };
37
37
  * const command = new TagResourceCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -53,6 +55,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
53
55
  * @throws {@link ValidationException} (client fault)
54
56
  * <p>The parameter is not valid.</p>
55
57
  *
58
+ * @throws {@link CodeGuruProfilerServiceException}
59
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
56
60
  *
57
61
  */
58
62
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
36
36
  * };
37
37
  * const command = new UntagResourceCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -53,6 +55,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
53
55
  * @throws {@link ValidationException} (client fault)
54
56
  * <p>The parameter is not valid.</p>
55
57
  *
58
+ * @throws {@link CodeGuruProfilerServiceException}
59
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
56
60
  *
57
61
  */
58
62
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
@@ -34,6 +34,30 @@ export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupR
34
34
  * };
35
35
  * const command = new UpdateProfilingGroupCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdateProfilingGroupResponse
38
+ * // profilingGroup: { // ProfilingGroupDescription
39
+ * // name: "STRING_VALUE",
40
+ * // agentOrchestrationConfig: { // AgentOrchestrationConfig
41
+ * // profilingEnabled: true || false, // required
42
+ * // },
43
+ * // arn: "STRING_VALUE",
44
+ * // createdAt: new Date("TIMESTAMP"),
45
+ * // updatedAt: new Date("TIMESTAMP"),
46
+ * // profilingStatus: { // ProfilingStatus
47
+ * // latestAgentProfileReportedAt: new Date("TIMESTAMP"),
48
+ * // latestAggregatedProfile: { // AggregatedProfileTime
49
+ * // start: new Date("TIMESTAMP"),
50
+ * // period: "STRING_VALUE",
51
+ * // },
52
+ * // latestAgentOrchestratedAt: new Date("TIMESTAMP"),
53
+ * // },
54
+ * // computePlatform: "STRING_VALUE",
55
+ * // tags: { // TagsMap
56
+ * // "<keys>": "STRING_VALUE",
57
+ * // },
58
+ * // },
59
+ * // };
60
+ *
37
61
  * ```
38
62
  *
39
63
  * @param UpdateProfilingGroupCommandInput - {@link UpdateProfilingGroupCommandInput}
@@ -60,6 +84,8 @@ export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupR
60
84
  * @throws {@link ValidationException} (client fault)
61
85
  * <p>The parameter is not valid.</p>
62
86
  *
87
+ * @throws {@link CodeGuruProfilerServiceException}
88
+ * <p>Base exception class for all service exceptions from CodeGuruProfiler service.</p>
63
89
  *
64
90
  */
65
91
  export declare class UpdateProfilingGroupCommand extends $Command<UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codeguruprofiler",
3
3
  "description": "AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.327.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.327.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.327.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -32,11 +32,11 @@
32
32
  "@aws-sdk/middleware-host-header": "3.325.0",
33
33
  "@aws-sdk/middleware-logger": "3.325.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
- "@aws-sdk/middleware-retry": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.327.0",
36
36
  "@aws-sdk/middleware-serde": "3.325.0",
37
37
  "@aws-sdk/middleware-signing": "3.325.0",
38
38
  "@aws-sdk/middleware-stack": "3.325.0",
39
- "@aws-sdk/middleware-user-agent": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.327.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
@@ -48,8 +48,8 @@
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
50
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
- "@aws-sdk/util-endpoints": "3.319.0",
52
- "@aws-sdk/util-retry": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.327.0",
52
+ "@aws-sdk/util-retry": "3.327.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",
54
54
  "@aws-sdk/util-user-agent-node": "3.310.0",
55
55
  "@aws-sdk/util-utf8": "3.310.0",