@aws-sdk/client-application-insights 3.99.0 → 3.105.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/CHANGELOG.md +30 -0
- package/README.md +10 -11
- package/dist-cjs/ApplicationInsightsClient.js +2 -0
- package/dist-cjs/models/models_0.js +6 -2
- package/dist-cjs/protocols/Aws_json1_1.js +1 -0
- package/dist-es/ApplicationInsightsClient.js +2 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -2
- package/dist-types/ApplicationInsights.d.ts +32 -30
- package/dist-types/ApplicationInsightsClient.d.ts +10 -11
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteComponentCommand.d.ts +3 -2
- package/dist-types/commands/DescribeComponentCommand.d.ts +2 -1
- package/dist-types/commands/ListConfigurationHistoryCommand.d.ts +4 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +5 -5
- package/dist-types/commands/UpdateComponentConfigurationCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +221 -217
- package/dist-types/ts3.4/models/models_0.d.ts +18 -9
- package/package.json +4 -3
|
@@ -25,11 +25,7 @@ export interface ApplicationComponent {
|
|
|
25
25
|
|
|
26
26
|
Monitor?: boolean;
|
|
27
27
|
|
|
28
|
-
DetectedWorkload?:
|
|
29
|
-
[key: string]: {
|
|
30
|
-
[key: string]: string;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
28
|
+
DetectedWorkload?: Record<string, Record<string, string>>;
|
|
33
29
|
}
|
|
34
30
|
export declare namespace ApplicationComponent {
|
|
35
31
|
|
|
@@ -53,7 +49,9 @@ export interface ApplicationInfo {
|
|
|
53
49
|
CWEMonitorEnabled?: boolean;
|
|
54
50
|
|
|
55
51
|
Remarks?: string;
|
|
52
|
+
|
|
56
53
|
AutoConfigEnabled?: boolean;
|
|
54
|
+
|
|
57
55
|
DiscoveryType?: DiscoveryType | string;
|
|
58
56
|
}
|
|
59
57
|
export declare namespace ApplicationInfo {
|
|
@@ -90,6 +88,9 @@ export declare namespace ConfigurationEvent {
|
|
|
90
88
|
|
|
91
89
|
const filterSensitiveLog: (obj: ConfigurationEvent) => any;
|
|
92
90
|
}
|
|
91
|
+
export declare enum GroupingType {
|
|
92
|
+
ACCOUNT_BASED = "ACCOUNT_BASED"
|
|
93
|
+
}
|
|
93
94
|
|
|
94
95
|
export interface Tag {
|
|
95
96
|
|
|
@@ -112,8 +113,12 @@ export interface CreateApplicationRequest {
|
|
|
112
113
|
OpsItemSNSTopicArn?: string;
|
|
113
114
|
|
|
114
115
|
Tags?: Tag[];
|
|
116
|
+
|
|
115
117
|
AutoConfigEnabled?: boolean;
|
|
118
|
+
|
|
116
119
|
AutoCreate?: boolean;
|
|
120
|
+
|
|
121
|
+
GroupingType?: GroupingType | string;
|
|
117
122
|
}
|
|
118
123
|
export declare namespace CreateApplicationRequest {
|
|
119
124
|
|
|
@@ -498,7 +503,7 @@ export declare namespace DescribeProblemRequest {
|
|
|
498
503
|
}
|
|
499
504
|
export declare type FeedbackKey = "INSIGHTS_FEEDBACK";
|
|
500
505
|
export declare type FeedbackValue = "NOT_SPECIFIED" | "NOT_USEFUL" | "USEFUL";
|
|
501
|
-
export declare type SeverityLevel = "High" | "Low" | "Medium";
|
|
506
|
+
export declare type SeverityLevel = "High" | "Informative" | "Low" | "Medium";
|
|
502
507
|
export declare type Status = "IGNORE" | "PENDING" | "RECURRING" | "RESOLVED";
|
|
503
508
|
|
|
504
509
|
export interface Problem {
|
|
@@ -521,10 +526,10 @@ export interface Problem {
|
|
|
521
526
|
|
|
522
527
|
ResourceGroupName?: string;
|
|
523
528
|
|
|
524
|
-
Feedback?:
|
|
525
|
-
|
|
526
|
-
};
|
|
529
|
+
Feedback?: Record<string, FeedbackValue | string>;
|
|
530
|
+
|
|
527
531
|
RecurringCount?: number;
|
|
532
|
+
|
|
528
533
|
LastRecurrenceTime?: Date;
|
|
529
534
|
}
|
|
530
535
|
export declare namespace Problem {
|
|
@@ -695,6 +700,7 @@ export interface ListProblemsRequest {
|
|
|
695
700
|
MaxResults?: number;
|
|
696
701
|
|
|
697
702
|
NextToken?: string;
|
|
703
|
+
|
|
698
704
|
ComponentName?: string;
|
|
699
705
|
}
|
|
700
706
|
export declare namespace ListProblemsRequest {
|
|
@@ -706,6 +712,7 @@ export interface ListProblemsResponse {
|
|
|
706
712
|
ProblemList?: Problem[];
|
|
707
713
|
|
|
708
714
|
NextToken?: string;
|
|
715
|
+
|
|
709
716
|
ResourceGroupName?: string;
|
|
710
717
|
}
|
|
711
718
|
export declare namespace ListProblemsResponse {
|
|
@@ -781,6 +788,7 @@ export interface UpdateApplicationRequest {
|
|
|
781
788
|
OpsItemSNSTopicArn?: string;
|
|
782
789
|
|
|
783
790
|
RemoveSNSTopic?: boolean;
|
|
791
|
+
|
|
784
792
|
AutoConfigEnabled?: boolean;
|
|
785
793
|
}
|
|
786
794
|
export declare namespace UpdateApplicationRequest {
|
|
@@ -826,6 +834,7 @@ export interface UpdateComponentConfigurationRequest {
|
|
|
826
834
|
Tier?: Tier | string;
|
|
827
835
|
|
|
828
836
|
ComponentConfiguration?: string;
|
|
837
|
+
|
|
829
838
|
AutoConfigEnabled?: boolean;
|
|
830
839
|
}
|
|
831
840
|
export declare namespace UpdateComponentConfigurationRequest {
|
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.105.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",
|
|
@@ -18,15 +18,16 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|