@aws-sdk/client-codeguruprofiler 3.289.0 → 3.292.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/dist-types/commands/AddNotificationChannelsCommand.d.ts +25 -0
- package/dist-types/commands/BatchGetFrameMetricDataCommand.d.ts +13 -0
- package/dist-types/commands/ConfigureAgentCommand.d.ts +13 -0
- package/dist-types/commands/CreateProfilingGroupCommand.d.ts +22 -0
- package/dist-types/commands/DeleteProfilingGroupCommand.d.ts +19 -0
- package/dist-types/commands/DescribeProfilingGroupCommand.d.ts +13 -0
- package/dist-types/commands/GetFindingsReportAccountSummaryCommand.d.ts +10 -0
- package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +13 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +10 -0
- package/dist-types/commands/GetProfileCommand.d.ts +13 -0
- package/dist-types/commands/GetRecommendationsCommand.d.ts +13 -0
- package/dist-types/commands/ListFindingsReportsCommand.d.ts +13 -0
- package/dist-types/commands/ListProfileTimesCommand.d.ts +13 -0
- package/dist-types/commands/ListProfilingGroupsCommand.d.ts +7 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
- package/dist-types/commands/PostAgentProfileCommand.d.ts +13 -0
- package/dist-types/commands/PutPermissionCommand.d.ts +19 -0
- package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +13 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +19 -0
- package/dist-types/commands/SubmitFeedbackCommand.d.ts +13 -0
- package/dist-types/commands/TagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UpdateProfilingGroupCommand.d.ts +19 -0
- package/package.json +35 -40
|
@@ -29,6 +29,31 @@ export interface AddNotificationChannelsCommandOutput extends AddNotificationCha
|
|
|
29
29
|
* @see {@link AddNotificationChannelsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>The requested operation would cause a conflict with the current state
|
|
34
|
+
* of a service resource associated with the request. Resolve the conflict
|
|
35
|
+
* before retrying this request.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* <p>You have exceeded your service quota. To perform the requested action,
|
|
46
|
+
* remove some of the relevant resources, or use <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a> to request a
|
|
47
|
+
* service quota increase.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The parameter is not valid.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class AddNotificationChannelsCommand extends $Command<AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
34
59
|
readonly input: AddNotificationChannelsCommandInput;
|
|
@@ -31,6 +31,19 @@ export interface BatchGetFrameMetricDataCommandOutput extends BatchGetFrameMetri
|
|
|
31
31
|
* @see {@link BatchGetFrameMetricDataCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p>The request was denied due to request throttling.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ValidationException} (client fault)
|
|
44
|
+
* <p>The parameter is not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
*/
|
|
35
48
|
export declare class BatchGetFrameMetricDataCommand extends $Command<BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
36
49
|
readonly input: BatchGetFrameMetricDataCommandInput;
|
|
@@ -33,6 +33,19 @@ export interface ConfigureAgentCommandOutput extends ConfigureAgentResponse, __M
|
|
|
33
33
|
* @see {@link ConfigureAgentCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>The request was denied due to request throttling.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>The parameter is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
36
49
|
*/
|
|
37
50
|
export declare class ConfigureAgentCommand extends $Command<ConfigureAgentCommandInput, ConfigureAgentCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
38
51
|
readonly input: ConfigureAgentCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface CreateProfilingGroupCommandOutput extends CreateProfilingGroupR
|
|
|
29
29
|
* @see {@link CreateProfilingGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>The requested operation would cause a conflict with the current state
|
|
34
|
+
* of a service resource associated with the request. Resolve the conflict
|
|
35
|
+
* before retrying this request.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
42
|
+
* <p>You have exceeded your service quota. To perform the requested action,
|
|
43
|
+
* remove some of the relevant resources, or use <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a> to request a
|
|
44
|
+
* service quota increase.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>The request was denied due to request throttling.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The parameter is not valid.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class CreateProfilingGroupCommand extends $Command<CreateProfilingGroupCommandInput, CreateProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
34
56
|
readonly input: CreateProfilingGroupCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DeleteProfilingGroupCommandOutput extends DeleteProfilingGroupR
|
|
|
29
29
|
* @see {@link DeleteProfilingGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>The requested operation would cause a conflict with the current state
|
|
34
|
+
* of a service resource associated with the request. Resolve the conflict
|
|
35
|
+
* before retrying this request.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The parameter is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DeleteProfilingGroupCommand extends $Command<DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
34
53
|
readonly input: DeleteProfilingGroupCommandInput;
|
|
@@ -34,6 +34,19 @@ export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGr
|
|
|
34
34
|
* @see {@link DescribeProfilingGroupCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
44
|
+
* <p>The request was denied due to request throttling.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ValidationException} (client fault)
|
|
47
|
+
* <p>The parameter is not valid.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
37
50
|
*/
|
|
38
51
|
export declare class DescribeProfilingGroupCommand extends $Command<DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
39
52
|
readonly input: DescribeProfilingGroupCommandInput;
|
|
@@ -35,6 +35,16 @@ export interface GetFindingsReportAccountSummaryCommandOutput extends GetFinding
|
|
|
35
35
|
* @see {@link GetFindingsReportAccountSummaryCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>The request was denied due to request throttling.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The parameter is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
38
48
|
*/
|
|
39
49
|
export declare class GetFindingsReportAccountSummaryCommand extends $Command<GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
40
50
|
readonly input: GetFindingsReportAccountSummaryCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetNotificationConfigurationCommandOutput extends GetNotificati
|
|
|
29
29
|
* @see {@link GetNotificationConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p>The request was denied due to request throttling.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The parameter is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetNotificationConfigurationCommand extends $Command<GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
34
47
|
readonly input: GetNotificationConfigurationCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
|
|
|
31
31
|
* @see {@link GetPolicyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p>The request was denied due to request throttling.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
36
46
|
readonly input: GetPolicyCommandInput;
|
|
@@ -100,6 +100,19 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB
|
|
|
100
100
|
* @see {@link GetProfileCommandOutput} for command's `response` shape.
|
|
101
101
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
102
102
|
*
|
|
103
|
+
* @throws {@link InternalServerException} (server fault)
|
|
104
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
107
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
110
|
+
* <p>The request was denied due to request throttling.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link ValidationException} (client fault)
|
|
113
|
+
* <p>The parameter is not valid.</p>
|
|
114
|
+
*
|
|
115
|
+
*
|
|
103
116
|
*/
|
|
104
117
|
export declare class GetProfileCommand extends $Command<GetProfileCommandInput, GetProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
105
118
|
readonly input: GetProfileCommandInput;
|
|
@@ -40,6 +40,19 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo
|
|
|
40
40
|
* @see {@link GetRecommendationsCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>The request was denied due to request throttling.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ValidationException} (client fault)
|
|
53
|
+
* <p>The parameter is not valid.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
43
56
|
*/
|
|
44
57
|
export declare class GetRecommendationsCommand extends $Command<GetRecommendationsCommandInput, GetRecommendationsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
45
58
|
readonly input: GetRecommendationsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListFindingsReportsCommandOutput extends ListFindingsReportsRes
|
|
|
29
29
|
* @see {@link ListFindingsReportsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p>The request was denied due to request throttling.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The parameter is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListFindingsReportsCommand extends $Command<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
34
47
|
readonly input: ListFindingsReportsCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse,
|
|
|
30
30
|
* @see {@link ListProfileTimesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
40
|
+
* <p>The request was denied due to request throttling.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The parameter is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class ListProfileTimesCommand extends $Command<ListProfileTimesCommandInput, ListProfileTimesCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
35
48
|
readonly input: ListProfileTimesCommandInput;
|
|
@@ -35,6 +35,13 @@ export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsRes
|
|
|
35
35
|
* @see {@link ListProfilingGroupsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>The request was denied due to request throttling.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
38
45
|
*/
|
|
39
46
|
export declare class ListProfilingGroupsCommand extends $Command<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
40
47
|
readonly input: ListProfilingGroupsCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p>The parameter is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
36
46
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -35,6 +35,19 @@ export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse,
|
|
|
35
35
|
* @see {@link PostAgentProfileCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The parameter is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
38
51
|
*/
|
|
39
52
|
export declare class PostAgentProfileCommand extends $Command<PostAgentProfileCommandInput, PostAgentProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
40
53
|
readonly input: PostAgentProfileCommandInput;
|
|
@@ -54,6 +54,25 @@ export interface PutPermissionCommandOutput extends PutPermissionResponse, __Met
|
|
|
54
54
|
* @see {@link PutPermissionCommandOutput} for command's `response` shape.
|
|
55
55
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
56
56
|
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>The requested operation would cause a conflict with the current state
|
|
59
|
+
* of a service resource associated with the request. Resolve the conflict
|
|
60
|
+
* before retrying this request.
|
|
61
|
+
* </p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
70
|
+
* <p>The request was denied due to request throttling.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ValidationException} (client fault)
|
|
73
|
+
* <p>The parameter is not valid.</p>
|
|
74
|
+
*
|
|
75
|
+
*
|
|
57
76
|
*/
|
|
58
77
|
export declare class PutPermissionCommand extends $Command<PutPermissionCommandInput, PutPermissionCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
59
78
|
readonly input: PutPermissionCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
|
|
|
29
29
|
* @see {@link RemoveNotificationChannelCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* <p>The request was denied due to request throttling.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* <p>The parameter is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class RemoveNotificationChannelCommand extends $Command<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
34
47
|
readonly input: RemoveNotificationChannelCommandInput;
|
|
@@ -37,6 +37,25 @@ export interface RemovePermissionCommandOutput extends RemovePermissionResponse,
|
|
|
37
37
|
* @see {@link RemovePermissionCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link ConflictException} (client fault)
|
|
41
|
+
* <p>The requested operation would cause a conflict with the current state
|
|
42
|
+
* of a service resource associated with the request. Resolve the conflict
|
|
43
|
+
* before retrying this request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerException} (server fault)
|
|
47
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p>The request was denied due to request throttling.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ValidationException} (client fault)
|
|
56
|
+
* <p>The parameter is not valid.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
40
59
|
*/
|
|
41
60
|
export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
42
61
|
readonly input: RemovePermissionCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __M
|
|
|
30
30
|
* @see {@link SubmitFeedbackCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
40
|
+
* <p>The request was denied due to request throttling.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The parameter is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class SubmitFeedbackCommand extends $Command<SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
35
48
|
readonly input: SubmitFeedbackCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
31
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p>The parameter is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
36
46
|
readonly input: TagResourceCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
31
31
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p>The parameter is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
36
46
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface UpdateProfilingGroupCommandOutput extends UpdateProfilingGroupR
|
|
|
29
29
|
* @see {@link UpdateProfilingGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>The requested operation would cause a conflict with the current state
|
|
34
|
+
* of a service resource associated with the request. Resolve the conflict
|
|
35
|
+
* before retrying this request.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The parameter is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class UpdateProfilingGroupCommand extends $Command<UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
34
53
|
readonly input: UpdateProfilingGroupCommandInput;
|
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.
|
|
4
|
+
"version": "3.292.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",
|
|
@@ -20,57 +20,52 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
43
|
+
"@aws-sdk/types": "3.292.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"@types/uuid": "^8.3.0",
|
|
63
63
|
"concurrently": "7.0.0",
|
|
64
64
|
"downlevel-dts": "0.10.1",
|
|
65
65
|
"rimraf": "3.0.2",
|
|
66
|
-
"typedoc": "0.
|
|
66
|
+
"typedoc": "0.23.23",
|
|
67
67
|
"typescript": "~4.6.2"
|
|
68
68
|
},
|
|
69
|
-
"overrides": {
|
|
70
|
-
"typedoc": {
|
|
71
|
-
"typescript": "~4.6.2"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
69
|
"engines": {
|
|
75
70
|
"node": ">=14.0.0"
|
|
76
71
|
},
|