@aws-sdk/client-application-insights 3.301.0 → 3.306.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.
|
@@ -16,11 +16,10 @@ class AccessDeniedException extends ApplicationInsightsServiceException_1.Applic
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
exports.AccessDeniedException = AccessDeniedException;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
})(DiscoveryType = exports.DiscoveryType || (exports.DiscoveryType = {}));
|
|
19
|
+
exports.DiscoveryType = {
|
|
20
|
+
ACCOUNT_BASED: "ACCOUNT_BASED",
|
|
21
|
+
RESOURCE_GROUP_BASED: "RESOURCE_GROUP_BASED",
|
|
22
|
+
};
|
|
24
23
|
class BadRequestException extends ApplicationInsightsServiceException_1.ApplicationInsightsServiceException {
|
|
25
24
|
constructor(opts) {
|
|
26
25
|
super({
|
|
@@ -35,10 +34,9 @@ class BadRequestException extends ApplicationInsightsServiceException_1.Applicat
|
|
|
35
34
|
}
|
|
36
35
|
}
|
|
37
36
|
exports.BadRequestException = BadRequestException;
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
})(GroupingType = exports.GroupingType || (exports.GroupingType = {}));
|
|
37
|
+
exports.GroupingType = {
|
|
38
|
+
ACCOUNT_BASED: "ACCOUNT_BASED",
|
|
39
|
+
};
|
|
42
40
|
class InternalServerException extends ApplicationInsightsServiceException_1.ApplicationInsightsServiceException {
|
|
43
41
|
constructor(opts) {
|
|
44
42
|
super({
|
|
@@ -12,11 +12,10 @@ export class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
this.Message = opts.Message;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
})(DiscoveryType || (DiscoveryType = {}));
|
|
15
|
+
export const DiscoveryType = {
|
|
16
|
+
ACCOUNT_BASED: "ACCOUNT_BASED",
|
|
17
|
+
RESOURCE_GROUP_BASED: "RESOURCE_GROUP_BASED",
|
|
18
|
+
};
|
|
20
19
|
export class BadRequestException extends __BaseException {
|
|
21
20
|
constructor(opts) {
|
|
22
21
|
super({
|
|
@@ -30,10 +29,9 @@ export class BadRequestException extends __BaseException {
|
|
|
30
29
|
this.Message = opts.Message;
|
|
31
30
|
}
|
|
32
31
|
}
|
|
33
|
-
export
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
})(GroupingType || (GroupingType = {}));
|
|
32
|
+
export const GroupingType = {
|
|
33
|
+
ACCOUNT_BASED: "ACCOUNT_BASED",
|
|
34
|
+
};
|
|
37
35
|
export class InternalServerException extends __BaseException {
|
|
38
36
|
constructor(opts) {
|
|
39
37
|
super({
|
|
@@ -60,11 +60,16 @@ export interface ApplicationComponent {
|
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
62
|
* @public
|
|
63
|
+
* @enum
|
|
63
64
|
*/
|
|
64
|
-
export declare
|
|
65
|
-
ACCOUNT_BASED
|
|
66
|
-
RESOURCE_GROUP_BASED
|
|
67
|
-
}
|
|
65
|
+
export declare const DiscoveryType: {
|
|
66
|
+
readonly ACCOUNT_BASED: "ACCOUNT_BASED";
|
|
67
|
+
readonly RESOURCE_GROUP_BASED: "RESOURCE_GROUP_BASED";
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
|
|
68
73
|
/**
|
|
69
74
|
* @public
|
|
70
75
|
* <p>Describes the status of the application.</p>
|
|
@@ -177,10 +182,15 @@ export interface ConfigurationEvent {
|
|
|
177
182
|
}
|
|
178
183
|
/**
|
|
179
184
|
* @public
|
|
185
|
+
* @enum
|
|
180
186
|
*/
|
|
181
|
-
export declare
|
|
182
|
-
ACCOUNT_BASED
|
|
183
|
-
}
|
|
187
|
+
export declare const GroupingType: {
|
|
188
|
+
readonly ACCOUNT_BASED: "ACCOUNT_BASED";
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export type GroupingType = (typeof GroupingType)[keyof typeof GroupingType];
|
|
184
194
|
/**
|
|
185
195
|
* @public
|
|
186
196
|
* <p>An object that defines the tags associated with an application. A
|
|
@@ -37,10 +37,11 @@ export interface ApplicationComponent {
|
|
|
37
37
|
Monitor?: boolean;
|
|
38
38
|
DetectedWorkload?: Record<string, Record<string, string>>;
|
|
39
39
|
}
|
|
40
|
-
export declare
|
|
41
|
-
ACCOUNT_BASED
|
|
42
|
-
RESOURCE_GROUP_BASED
|
|
43
|
-
}
|
|
40
|
+
export declare const DiscoveryType: {
|
|
41
|
+
readonly ACCOUNT_BASED: "ACCOUNT_BASED";
|
|
42
|
+
readonly RESOURCE_GROUP_BASED: "RESOURCE_GROUP_BASED";
|
|
43
|
+
};
|
|
44
|
+
export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
|
|
44
45
|
export interface ApplicationInfo {
|
|
45
46
|
ResourceGroupName?: string;
|
|
46
47
|
LifeCycle?: string;
|
|
@@ -74,9 +75,10 @@ export interface ConfigurationEvent {
|
|
|
74
75
|
EventDetail?: string;
|
|
75
76
|
EventResourceName?: string;
|
|
76
77
|
}
|
|
77
|
-
export declare
|
|
78
|
-
ACCOUNT_BASED
|
|
79
|
-
}
|
|
78
|
+
export declare const GroupingType: {
|
|
79
|
+
readonly ACCOUNT_BASED: "ACCOUNT_BASED";
|
|
80
|
+
};
|
|
81
|
+
export type GroupingType = (typeof GroupingType)[keyof typeof GroupingType];
|
|
80
82
|
export interface Tag {
|
|
81
83
|
Key: string | undefined;
|
|
82
84
|
Value: string | undefined;
|
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.306.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,42 +21,42 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|