@aws-sdk/client-application-insights 3.325.0 → 3.326.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/CreateApplicationCommand.d.ts +15 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +4 -0
- package/dist-types/commands/CreateLogPatternCommand.d.ts +12 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLogPatternCommand.d.ts +4 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +15 -0
- package/dist-types/commands/DescribeComponentCommand.d.ts +21 -0
- package/dist-types/commands/DescribeComponentConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +6 -0
- package/dist-types/commands/DescribeLogPatternCommand.d.ts +12 -0
- package/dist-types/commands/DescribeObservationCommand.d.ts +52 -0
- package/dist-types/commands/DescribeProblemCommand.d.ts +21 -0
- package/dist-types/commands/DescribeProblemObservationsCommand.d.ts +56 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +18 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +21 -0
- package/dist-types/commands/ListConfigurationHistoryCommand.d.ts +16 -0
- package/dist-types/commands/ListLogPatternSetsCommand.d.ts +10 -0
- package/dist-types/commands/ListLogPatternsCommand.d.ts +15 -0
- package/dist-types/commands/ListProblemsCommand.d.ts +25 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +15 -0
- package/dist-types/commands/UpdateComponentCommand.d.ts +4 -0
- package/dist-types/commands/UpdateComponentConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLogPatternCommand.d.ts +12 -0
- package/package.json +3 -3
|
@@ -43,6 +43,19 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new CreateApplicationCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // CreateApplicationResponse
|
|
47
|
+
* // ApplicationInfo: { // ApplicationInfo
|
|
48
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
49
|
+
* // LifeCycle: "STRING_VALUE",
|
|
50
|
+
* // OpsItemSNSTopicArn: "STRING_VALUE",
|
|
51
|
+
* // OpsCenterEnabled: true || false,
|
|
52
|
+
* // CWEMonitorEnabled: true || false,
|
|
53
|
+
* // Remarks: "STRING_VALUE",
|
|
54
|
+
* // AutoConfigEnabled: true || false,
|
|
55
|
+
* // DiscoveryType: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
46
59
|
* ```
|
|
47
60
|
*
|
|
48
61
|
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
@@ -69,6 +82,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
69
82
|
* @throws {@link ValidationException} (client fault)
|
|
70
83
|
* <p>The parameter is not valid.</p>
|
|
71
84
|
*
|
|
85
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
72
87
|
*
|
|
73
88
|
*/
|
|
74
89
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateComponentCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param CreateComponentCommandInput - {@link CreateComponentCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
|
|
|
55
57
|
* @throws {@link ValidationException} (client fault)
|
|
56
58
|
* <p>The parameter is not valid.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class CreateComponentCommand extends $Command<CreateComponentCommandInput, CreateComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -35,6 +35,16 @@ export interface CreateLogPatternCommandOutput extends CreateLogPatternResponse,
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateLogPatternCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreateLogPatternResponse
|
|
39
|
+
* // LogPattern: { // LogPattern
|
|
40
|
+
* // PatternSetName: "STRING_VALUE",
|
|
41
|
+
* // PatternName: "STRING_VALUE",
|
|
42
|
+
* // Pattern: "STRING_VALUE",
|
|
43
|
+
* // Rank: Number("int"),
|
|
44
|
+
* // },
|
|
45
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
38
48
|
* ```
|
|
39
49
|
*
|
|
40
50
|
* @param CreateLogPatternCommandInput - {@link CreateLogPatternCommandInput}
|
|
@@ -55,6 +65,8 @@ export interface CreateLogPatternCommandOutput extends CreateLogPatternResponse,
|
|
|
55
65
|
* @throws {@link ValidationException} (client fault)
|
|
56
66
|
* <p>The parameter is not valid.</p>
|
|
57
67
|
*
|
|
68
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
58
70
|
*
|
|
59
71
|
*/
|
|
60
72
|
export declare class CreateLogPatternCommand extends $Command<CreateLogPatternCommandInput, CreateLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteApplicationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
52
54
|
* @throws {@link ValidationException} (client fault)
|
|
53
55
|
* <p>The parameter is not valid.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteComponentCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteComponentCommandInput - {@link DeleteComponentCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>The parameter is not valid.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteLogPatternCommandOutput extends DeleteLogPatternResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteLogPatternCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteLogPatternCommandInput - {@link DeleteLogPatternCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface DeleteLogPatternCommandOutput extends DeleteLogPatternResponse,
|
|
|
53
55
|
* @throws {@link ValidationException} (client fault)
|
|
54
56
|
* <p>The parameter is not valid.</p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class DeleteLogPatternCommand extends $Command<DeleteLogPatternCommandInput, DeleteLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -31,6 +31,19 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeApplicationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeApplicationResponse
|
|
35
|
+
* // ApplicationInfo: { // ApplicationInfo
|
|
36
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
37
|
+
* // LifeCycle: "STRING_VALUE",
|
|
38
|
+
* // OpsItemSNSTopicArn: "STRING_VALUE",
|
|
39
|
+
* // OpsCenterEnabled: true || false,
|
|
40
|
+
* // CWEMonitorEnabled: true || false,
|
|
41
|
+
* // Remarks: "STRING_VALUE",
|
|
42
|
+
* // AutoConfigEnabled: true || false,
|
|
43
|
+
* // DiscoveryType: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
34
47
|
* ```
|
|
35
48
|
*
|
|
36
49
|
* @param DescribeApplicationCommandInput - {@link DescribeApplicationCommandInput}
|
|
@@ -48,6 +61,8 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
|
|
|
48
61
|
* @throws {@link ValidationException} (client fault)
|
|
49
62
|
* <p>The parameter is not valid.</p>
|
|
50
63
|
*
|
|
64
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
51
66
|
*
|
|
52
67
|
*/
|
|
53
68
|
export declare class DescribeApplicationCommand extends $Command<DescribeApplicationCommandInput, DescribeApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -33,6 +33,25 @@ export interface DescribeComponentCommandOutput extends DescribeComponentRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeComponentCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeComponentResponse
|
|
37
|
+
* // ApplicationComponent: { // ApplicationComponent
|
|
38
|
+
* // ComponentName: "STRING_VALUE",
|
|
39
|
+
* // ComponentRemarks: "STRING_VALUE",
|
|
40
|
+
* // ResourceType: "STRING_VALUE",
|
|
41
|
+
* // OsType: "STRING_VALUE",
|
|
42
|
+
* // Tier: "STRING_VALUE",
|
|
43
|
+
* // Monitor: true || false,
|
|
44
|
+
* // DetectedWorkload: { // DetectedWorkload
|
|
45
|
+
* // "<keys>": { // WorkloadMetaData
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // ResourceList: [ // ResourceList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
36
55
|
* ```
|
|
37
56
|
*
|
|
38
57
|
* @param DescribeComponentCommandInput - {@link DescribeComponentCommandInput}
|
|
@@ -50,6 +69,8 @@ export interface DescribeComponentCommandOutput extends DescribeComponentRespons
|
|
|
50
69
|
* @throws {@link ValidationException} (client fault)
|
|
51
70
|
* <p>The parameter is not valid.</p>
|
|
52
71
|
*
|
|
72
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
53
74
|
*
|
|
54
75
|
*/
|
|
55
76
|
export declare class DescribeComponentCommand extends $Command<DescribeComponentCommandInput, DescribeComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface DescribeComponentConfigurationCommandOutput extends DescribeCom
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeComponentConfigurationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeComponentConfigurationResponse
|
|
36
|
+
* // Monitor: true || false,
|
|
37
|
+
* // Tier: "STRING_VALUE",
|
|
38
|
+
* // ComponentConfiguration: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param DescribeComponentConfigurationCommandInput - {@link DescribeComponentConfigurationCommandInput}
|
|
@@ -49,6 +55,8 @@ export interface DescribeComponentConfigurationCommandOutput extends DescribeCom
|
|
|
49
55
|
* @throws {@link ValidationException} (client fault)
|
|
50
56
|
* <p>The parameter is not valid.</p>
|
|
51
57
|
*
|
|
58
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
52
60
|
*
|
|
53
61
|
*/
|
|
54
62
|
export declare class DescribeComponentConfigurationCommand extends $Command<DescribeComponentConfigurationCommandInput, DescribeComponentConfigurationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface DescribeComponentConfigurationRecommendationCommandOutput exten
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeComponentConfigurationRecommendationCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeComponentConfigurationRecommendationResponse
|
|
37
|
+
* // ComponentConfiguration: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param DescribeComponentConfigurationRecommendationCommandInput - {@link DescribeComponentConfigurationRecommendationCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface DescribeComponentConfigurationRecommendationCommandOutput exten
|
|
|
50
54
|
* @throws {@link ValidationException} (client fault)
|
|
51
55
|
* <p>The parameter is not valid.</p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class DescribeComponentConfigurationRecommendationCommand extends $Command<DescribeComponentConfigurationRecommendationCommandInput, DescribeComponentConfigurationRecommendationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -33,6 +33,16 @@ export interface DescribeLogPatternCommandOutput extends DescribeLogPatternRespo
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeLogPatternCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeLogPatternResponse
|
|
37
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
38
|
+
* // LogPattern: { // LogPattern
|
|
39
|
+
* // PatternSetName: "STRING_VALUE",
|
|
40
|
+
* // PatternName: "STRING_VALUE",
|
|
41
|
+
* // Pattern: "STRING_VALUE",
|
|
42
|
+
* // Rank: Number("int"),
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
36
46
|
* ```
|
|
37
47
|
*
|
|
38
48
|
* @param DescribeLogPatternCommandInput - {@link DescribeLogPatternCommandInput}
|
|
@@ -50,6 +60,8 @@ export interface DescribeLogPatternCommandOutput extends DescribeLogPatternRespo
|
|
|
50
60
|
* @throws {@link ValidationException} (client fault)
|
|
51
61
|
* <p>The parameter is not valid.</p>
|
|
52
62
|
*
|
|
63
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
53
65
|
*
|
|
54
66
|
*/
|
|
55
67
|
export declare class DescribeLogPatternCommand extends $Command<DescribeLogPatternCommandInput, DescribeLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -31,6 +31,56 @@ export interface DescribeObservationCommandOutput extends DescribeObservationRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeObservationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeObservationResponse
|
|
35
|
+
* // Observation: { // Observation
|
|
36
|
+
* // Id: "STRING_VALUE",
|
|
37
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
38
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // SourceType: "STRING_VALUE",
|
|
40
|
+
* // SourceARN: "STRING_VALUE",
|
|
41
|
+
* // LogGroup: "STRING_VALUE",
|
|
42
|
+
* // LineTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // LogText: "STRING_VALUE",
|
|
44
|
+
* // LogFilter: "STRING_VALUE",
|
|
45
|
+
* // MetricNamespace: "STRING_VALUE",
|
|
46
|
+
* // MetricName: "STRING_VALUE",
|
|
47
|
+
* // Unit: "STRING_VALUE",
|
|
48
|
+
* // Value: Number("double"),
|
|
49
|
+
* // CloudWatchEventId: "STRING_VALUE",
|
|
50
|
+
* // CloudWatchEventSource: "STRING_VALUE",
|
|
51
|
+
* // CloudWatchEventDetailType: "STRING_VALUE",
|
|
52
|
+
* // HealthEventArn: "STRING_VALUE",
|
|
53
|
+
* // HealthService: "STRING_VALUE",
|
|
54
|
+
* // HealthEventTypeCode: "STRING_VALUE",
|
|
55
|
+
* // HealthEventTypeCategory: "STRING_VALUE",
|
|
56
|
+
* // HealthEventDescription: "STRING_VALUE",
|
|
57
|
+
* // CodeDeployDeploymentId: "STRING_VALUE",
|
|
58
|
+
* // CodeDeployDeploymentGroup: "STRING_VALUE",
|
|
59
|
+
* // CodeDeployState: "STRING_VALUE",
|
|
60
|
+
* // CodeDeployApplication: "STRING_VALUE",
|
|
61
|
+
* // CodeDeployInstanceGroupId: "STRING_VALUE",
|
|
62
|
+
* // Ec2State: "STRING_VALUE",
|
|
63
|
+
* // RdsEventCategories: "STRING_VALUE",
|
|
64
|
+
* // RdsEventMessage: "STRING_VALUE",
|
|
65
|
+
* // S3EventName: "STRING_VALUE",
|
|
66
|
+
* // StatesExecutionArn: "STRING_VALUE",
|
|
67
|
+
* // StatesArn: "STRING_VALUE",
|
|
68
|
+
* // StatesStatus: "STRING_VALUE",
|
|
69
|
+
* // StatesInput: "STRING_VALUE",
|
|
70
|
+
* // EbsEvent: "STRING_VALUE",
|
|
71
|
+
* // EbsResult: "STRING_VALUE",
|
|
72
|
+
* // EbsCause: "STRING_VALUE",
|
|
73
|
+
* // EbsRequestId: "STRING_VALUE",
|
|
74
|
+
* // XRayFaultPercent: Number("int"),
|
|
75
|
+
* // XRayThrottlePercent: Number("int"),
|
|
76
|
+
* // XRayErrorPercent: Number("int"),
|
|
77
|
+
* // XRayRequestCount: Number("int"),
|
|
78
|
+
* // XRayRequestAverageLatency: Number("long"),
|
|
79
|
+
* // XRayNodeName: "STRING_VALUE",
|
|
80
|
+
* // XRayNodeType: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // };
|
|
83
|
+
*
|
|
34
84
|
* ```
|
|
35
85
|
*
|
|
36
86
|
* @param DescribeObservationCommandInput - {@link DescribeObservationCommandInput}
|
|
@@ -48,6 +98,8 @@ export interface DescribeObservationCommandOutput extends DescribeObservationRes
|
|
|
48
98
|
* @throws {@link ValidationException} (client fault)
|
|
49
99
|
* <p>The parameter is not valid.</p>
|
|
50
100
|
*
|
|
101
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
51
103
|
*
|
|
52
104
|
*/
|
|
53
105
|
export declare class DescribeObservationCommand extends $Command<DescribeObservationCommandInput, DescribeObservationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -31,6 +31,25 @@ export interface DescribeProblemCommandOutput extends DescribeProblemResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeProblemCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeProblemResponse
|
|
35
|
+
* // Problem: { // Problem
|
|
36
|
+
* // Id: "STRING_VALUE",
|
|
37
|
+
* // Title: "STRING_VALUE",
|
|
38
|
+
* // Insights: "STRING_VALUE",
|
|
39
|
+
* // Status: "STRING_VALUE",
|
|
40
|
+
* // AffectedResource: "STRING_VALUE",
|
|
41
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // SeverityLevel: "STRING_VALUE",
|
|
44
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
45
|
+
* // Feedback: { // Feedback
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // RecurringCount: Number("long"),
|
|
49
|
+
* // LastRecurrenceTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
34
53
|
* ```
|
|
35
54
|
*
|
|
36
55
|
* @param DescribeProblemCommandInput - {@link DescribeProblemCommandInput}
|
|
@@ -48,6 +67,8 @@ export interface DescribeProblemCommandOutput extends DescribeProblemResponse, _
|
|
|
48
67
|
* @throws {@link ValidationException} (client fault)
|
|
49
68
|
* <p>The parameter is not valid.</p>
|
|
50
69
|
*
|
|
70
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
51
72
|
*
|
|
52
73
|
*/
|
|
53
74
|
export declare class DescribeProblemCommand extends $Command<DescribeProblemCommandInput, DescribeProblemCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -31,6 +31,60 @@ export interface DescribeProblemObservationsCommandOutput extends DescribeProble
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeProblemObservationsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeProblemObservationsResponse
|
|
35
|
+
* // RelatedObservations: { // RelatedObservations
|
|
36
|
+
* // ObservationList: [ // ObservationList
|
|
37
|
+
* // { // Observation
|
|
38
|
+
* // Id: "STRING_VALUE",
|
|
39
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // SourceType: "STRING_VALUE",
|
|
42
|
+
* // SourceARN: "STRING_VALUE",
|
|
43
|
+
* // LogGroup: "STRING_VALUE",
|
|
44
|
+
* // LineTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // LogText: "STRING_VALUE",
|
|
46
|
+
* // LogFilter: "STRING_VALUE",
|
|
47
|
+
* // MetricNamespace: "STRING_VALUE",
|
|
48
|
+
* // MetricName: "STRING_VALUE",
|
|
49
|
+
* // Unit: "STRING_VALUE",
|
|
50
|
+
* // Value: Number("double"),
|
|
51
|
+
* // CloudWatchEventId: "STRING_VALUE",
|
|
52
|
+
* // CloudWatchEventSource: "STRING_VALUE",
|
|
53
|
+
* // CloudWatchEventDetailType: "STRING_VALUE",
|
|
54
|
+
* // HealthEventArn: "STRING_VALUE",
|
|
55
|
+
* // HealthService: "STRING_VALUE",
|
|
56
|
+
* // HealthEventTypeCode: "STRING_VALUE",
|
|
57
|
+
* // HealthEventTypeCategory: "STRING_VALUE",
|
|
58
|
+
* // HealthEventDescription: "STRING_VALUE",
|
|
59
|
+
* // CodeDeployDeploymentId: "STRING_VALUE",
|
|
60
|
+
* // CodeDeployDeploymentGroup: "STRING_VALUE",
|
|
61
|
+
* // CodeDeployState: "STRING_VALUE",
|
|
62
|
+
* // CodeDeployApplication: "STRING_VALUE",
|
|
63
|
+
* // CodeDeployInstanceGroupId: "STRING_VALUE",
|
|
64
|
+
* // Ec2State: "STRING_VALUE",
|
|
65
|
+
* // RdsEventCategories: "STRING_VALUE",
|
|
66
|
+
* // RdsEventMessage: "STRING_VALUE",
|
|
67
|
+
* // S3EventName: "STRING_VALUE",
|
|
68
|
+
* // StatesExecutionArn: "STRING_VALUE",
|
|
69
|
+
* // StatesArn: "STRING_VALUE",
|
|
70
|
+
* // StatesStatus: "STRING_VALUE",
|
|
71
|
+
* // StatesInput: "STRING_VALUE",
|
|
72
|
+
* // EbsEvent: "STRING_VALUE",
|
|
73
|
+
* // EbsResult: "STRING_VALUE",
|
|
74
|
+
* // EbsCause: "STRING_VALUE",
|
|
75
|
+
* // EbsRequestId: "STRING_VALUE",
|
|
76
|
+
* // XRayFaultPercent: Number("int"),
|
|
77
|
+
* // XRayThrottlePercent: Number("int"),
|
|
78
|
+
* // XRayErrorPercent: Number("int"),
|
|
79
|
+
* // XRayRequestCount: Number("int"),
|
|
80
|
+
* // XRayRequestAverageLatency: Number("long"),
|
|
81
|
+
* // XRayNodeName: "STRING_VALUE",
|
|
82
|
+
* // XRayNodeType: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // ],
|
|
85
|
+
* // },
|
|
86
|
+
* // };
|
|
87
|
+
*
|
|
34
88
|
* ```
|
|
35
89
|
*
|
|
36
90
|
* @param DescribeProblemObservationsCommandInput - {@link DescribeProblemObservationsCommandInput}
|
|
@@ -48,6 +102,8 @@ export interface DescribeProblemObservationsCommandOutput extends DescribeProble
|
|
|
48
102
|
* @throws {@link ValidationException} (client fault)
|
|
49
103
|
* <p>The parameter is not valid.</p>
|
|
50
104
|
*
|
|
105
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
51
107
|
*
|
|
52
108
|
*/
|
|
53
109
|
export declare class DescribeProblemObservationsCommand extends $Command<DescribeProblemObservationsCommandInput, DescribeProblemObservationsCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListApplicationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListApplicationsResponse
|
|
36
|
+
* // ApplicationInfoList: [ // ApplicationInfoList
|
|
37
|
+
* // { // ApplicationInfo
|
|
38
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
39
|
+
* // LifeCycle: "STRING_VALUE",
|
|
40
|
+
* // OpsItemSNSTopicArn: "STRING_VALUE",
|
|
41
|
+
* // OpsCenterEnabled: true || false,
|
|
42
|
+
* // CWEMonitorEnabled: true || false,
|
|
43
|
+
* // Remarks: "STRING_VALUE",
|
|
44
|
+
* // AutoConfigEnabled: true || false,
|
|
45
|
+
* // DiscoveryType: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
@@ -46,6 +62,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
46
62
|
* @throws {@link ValidationException} (client fault)
|
|
47
63
|
* <p>The parameter is not valid.</p>
|
|
48
64
|
*
|
|
65
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
49
67
|
*
|
|
50
68
|
*/
|
|
51
69
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -33,6 +33,25 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListComponentsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListComponentsResponse
|
|
37
|
+
* // ApplicationComponentList: [ // ApplicationComponentList
|
|
38
|
+
* // { // ApplicationComponent
|
|
39
|
+
* // ComponentName: "STRING_VALUE",
|
|
40
|
+
* // ComponentRemarks: "STRING_VALUE",
|
|
41
|
+
* // ResourceType: "STRING_VALUE",
|
|
42
|
+
* // OsType: "STRING_VALUE",
|
|
43
|
+
* // Tier: "STRING_VALUE",
|
|
44
|
+
* // Monitor: true || false,
|
|
45
|
+
* // DetectedWorkload: { // DetectedWorkload
|
|
46
|
+
* // "<keys>": { // WorkloadMetaData
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // NextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
36
55
|
* ```
|
|
37
56
|
*
|
|
38
57
|
* @param ListComponentsCommandInput - {@link ListComponentsCommandInput}
|
|
@@ -50,6 +69,8 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
50
69
|
* @throws {@link ValidationException} (client fault)
|
|
51
70
|
* <p>The parameter is not valid.</p>
|
|
52
71
|
*
|
|
72
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
53
74
|
*
|
|
54
75
|
*/
|
|
55
76
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -49,6 +49,20 @@ export interface ListConfigurationHistoryCommandOutput extends ListConfiguration
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new ListConfigurationHistoryCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // ListConfigurationHistoryResponse
|
|
53
|
+
* // EventList: [ // ConfigurationEventList
|
|
54
|
+
* // { // ConfigurationEvent
|
|
55
|
+
* // MonitoredResourceARN: "STRING_VALUE",
|
|
56
|
+
* // EventStatus: "STRING_VALUE",
|
|
57
|
+
* // EventResourceType: "STRING_VALUE",
|
|
58
|
+
* // EventTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // EventDetail: "STRING_VALUE",
|
|
60
|
+
* // EventResourceName: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // NextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
52
66
|
* ```
|
|
53
67
|
*
|
|
54
68
|
* @param ListConfigurationHistoryCommandInput - {@link ListConfigurationHistoryCommandInput}
|
|
@@ -66,6 +80,8 @@ export interface ListConfigurationHistoryCommandOutput extends ListConfiguration
|
|
|
66
80
|
* @throws {@link ValidationException} (client fault)
|
|
67
81
|
* <p>The parameter is not valid.</p>
|
|
68
82
|
*
|
|
83
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
69
85
|
*
|
|
70
86
|
*/
|
|
71
87
|
export declare class ListConfigurationHistoryCommand extends $Command<ListConfigurationHistoryCommandInput, ListConfigurationHistoryCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -33,6 +33,14 @@ export interface ListLogPatternSetsCommandOutput extends ListLogPatternSetsRespo
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListLogPatternSetsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListLogPatternSetsResponse
|
|
37
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
38
|
+
* // LogPatternSets: [ // LogPatternSetList
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // NextToken: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
36
44
|
* ```
|
|
37
45
|
*
|
|
38
46
|
* @param ListLogPatternSetsCommandInput - {@link ListLogPatternSetsCommandInput}
|
|
@@ -50,6 +58,8 @@ export interface ListLogPatternSetsCommandOutput extends ListLogPatternSetsRespo
|
|
|
50
58
|
* @throws {@link ValidationException} (client fault)
|
|
51
59
|
* <p>The parameter is not valid.</p>
|
|
52
60
|
*
|
|
61
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
53
63
|
*
|
|
54
64
|
*/
|
|
55
65
|
export declare class ListLogPatternSetsCommand extends $Command<ListLogPatternSetsCommandInput, ListLogPatternSetsCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -34,6 +34,19 @@ export interface ListLogPatternsCommandOutput extends ListLogPatternsResponse, _
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListLogPatternsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListLogPatternsResponse
|
|
38
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
39
|
+
* // LogPatterns: [ // LogPatternList
|
|
40
|
+
* // { // LogPattern
|
|
41
|
+
* // PatternSetName: "STRING_VALUE",
|
|
42
|
+
* // PatternName: "STRING_VALUE",
|
|
43
|
+
* // Pattern: "STRING_VALUE",
|
|
44
|
+
* // Rank: Number("int"),
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // NextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
37
50
|
* ```
|
|
38
51
|
*
|
|
39
52
|
* @param ListLogPatternsCommandInput - {@link ListLogPatternsCommandInput}
|
|
@@ -51,6 +64,8 @@ export interface ListLogPatternsCommandOutput extends ListLogPatternsResponse, _
|
|
|
51
64
|
* @throws {@link ValidationException} (client fault)
|
|
52
65
|
* <p>The parameter is not valid.</p>
|
|
53
66
|
*
|
|
67
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
54
69
|
*
|
|
55
70
|
*/
|
|
56
71
|
export declare class ListLogPatternsCommand extends $Command<ListLogPatternsCommandInput, ListLogPatternsCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -36,6 +36,29 @@ export interface ListProblemsCommandOutput extends ListProblemsResponse, __Metad
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListProblemsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListProblemsResponse
|
|
40
|
+
* // ProblemList: [ // ProblemList
|
|
41
|
+
* // { // Problem
|
|
42
|
+
* // Id: "STRING_VALUE",
|
|
43
|
+
* // Title: "STRING_VALUE",
|
|
44
|
+
* // Insights: "STRING_VALUE",
|
|
45
|
+
* // Status: "STRING_VALUE",
|
|
46
|
+
* // AffectedResource: "STRING_VALUE",
|
|
47
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // SeverityLevel: "STRING_VALUE",
|
|
50
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
51
|
+
* // Feedback: { // Feedback
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // RecurringCount: Number("long"),
|
|
55
|
+
* // LastRecurrenceTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // NextToken: "STRING_VALUE",
|
|
59
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
39
62
|
* ```
|
|
40
63
|
*
|
|
41
64
|
* @param ListProblemsCommandInput - {@link ListProblemsCommandInput}
|
|
@@ -53,6 +76,8 @@ export interface ListProblemsCommandOutput extends ListProblemsResponse, __Metad
|
|
|
53
76
|
* @throws {@link ValidationException} (client fault)
|
|
54
77
|
* <p>The parameter is not valid.</p>
|
|
55
78
|
*
|
|
79
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
56
81
|
*
|
|
57
82
|
*/
|
|
58
83
|
export declare class ListProblemsCommand extends $Command<ListProblemsCommandInput, ListProblemsCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -36,6 +36,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListTagsForResourceCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListTagsForResourceResponse
|
|
40
|
+
* // Tags: [ // TagList
|
|
41
|
+
* // { // Tag
|
|
42
|
+
* // Key: "STRING_VALUE", // required
|
|
43
|
+
* // Value: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
39
48
|
* ```
|
|
40
49
|
*
|
|
41
50
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -50,6 +59,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
50
59
|
* @throws {@link ValidationException} (client fault)
|
|
51
60
|
* <p>The parameter is not valid.</p>
|
|
52
61
|
*
|
|
62
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
53
64
|
*
|
|
54
65
|
*/
|
|
55
66
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -44,6 +44,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new TagResourceCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
47
49
|
* ```
|
|
48
50
|
*
|
|
49
51
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
62
64
|
* @throws {@link ValidationException} (client fault)
|
|
63
65
|
* <p>The parameter is not valid.</p>
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
48
50
|
* @throws {@link ValidationException} (client fault)
|
|
49
51
|
* <p>The parameter is not valid.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -36,6 +36,19 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UpdateApplicationCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // UpdateApplicationResponse
|
|
40
|
+
* // ApplicationInfo: { // ApplicationInfo
|
|
41
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
42
|
+
* // LifeCycle: "STRING_VALUE",
|
|
43
|
+
* // OpsItemSNSTopicArn: "STRING_VALUE",
|
|
44
|
+
* // OpsCenterEnabled: true || false,
|
|
45
|
+
* // CWEMonitorEnabled: true || false,
|
|
46
|
+
* // Remarks: "STRING_VALUE",
|
|
47
|
+
* // AutoConfigEnabled: true || false,
|
|
48
|
+
* // DiscoveryType: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
39
52
|
* ```
|
|
40
53
|
*
|
|
41
54
|
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
@@ -53,6 +66,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
53
66
|
* @throws {@link ValidationException} (client fault)
|
|
54
67
|
* <p>The parameter is not valid.</p>
|
|
55
68
|
*
|
|
69
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
56
71
|
*
|
|
57
72
|
*/
|
|
58
73
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface UpdateComponentCommandOutput extends UpdateComponentResponse, _
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new UpdateComponentCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param UpdateComponentCommandInput - {@link UpdateComponentCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface UpdateComponentCommandOutput extends UpdateComponentResponse, _
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>The parameter is not valid.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class UpdateComponentCommand extends $Command<UpdateComponentCommandInput, UpdateComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface UpdateComponentConfigurationCommandOutput extends UpdateCompone
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateComponentConfigurationCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param UpdateComponentConfigurationCommandInput - {@link UpdateComponentConfigurationCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface UpdateComponentConfigurationCommandOutput extends UpdateCompone
|
|
|
55
57
|
* @throws {@link ValidationException} (client fault)
|
|
56
58
|
* <p>The parameter is not valid.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class UpdateComponentConfigurationCommand extends $Command<UpdateComponentConfigurationCommandInput, UpdateComponentConfigurationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
@@ -35,6 +35,16 @@ export interface UpdateLogPatternCommandOutput extends UpdateLogPatternResponse,
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UpdateLogPatternCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // UpdateLogPatternResponse
|
|
39
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
40
|
+
* // LogPattern: { // LogPattern
|
|
41
|
+
* // PatternSetName: "STRING_VALUE",
|
|
42
|
+
* // PatternName: "STRING_VALUE",
|
|
43
|
+
* // Pattern: "STRING_VALUE",
|
|
44
|
+
* // Rank: Number("int"),
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
38
48
|
* ```
|
|
39
49
|
*
|
|
40
50
|
* @param UpdateLogPatternCommandInput - {@link UpdateLogPatternCommandInput}
|
|
@@ -55,6 +65,8 @@ export interface UpdateLogPatternCommandOutput extends UpdateLogPatternResponse,
|
|
|
55
65
|
* @throws {@link ValidationException} (client fault)
|
|
56
66
|
* <p>The parameter is not valid.</p>
|
|
57
67
|
*
|
|
68
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
58
70
|
*
|
|
59
71
|
*/
|
|
60
72
|
export declare class UpdateLogPatternCommand extends $Command<UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-insights",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Insights Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.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",
|