@aws-sdk/client-application-insights 3.934.0 → 3.935.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-cjs/index.js +97 -96
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +96 -0
- package/dist-es/models/errors.js +115 -0
- package/dist-es/models/models_0.js +1 -211
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +224 -0
- package/dist-types/models/errors.d.ts +112 -0
- package/dist-types/models/models_0.d.ts +1 -336
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +117 -0
- package/dist-types/ts3.4/models/errors.d.ts +67 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -184
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const Tier: {
|
|
6
|
+
readonly ACTIVE_DIRECTORY: "ACTIVE_DIRECTORY";
|
|
7
|
+
readonly CUSTOM: "CUSTOM";
|
|
8
|
+
readonly DEFAULT: "DEFAULT";
|
|
9
|
+
readonly DOT_NET_CORE: "DOT_NET_CORE";
|
|
10
|
+
readonly DOT_NET_WEB: "DOT_NET_WEB";
|
|
11
|
+
readonly DOT_NET_WEB_TIER: "DOT_NET_WEB_TIER";
|
|
12
|
+
readonly DOT_NET_WORKER: "DOT_NET_WORKER";
|
|
13
|
+
readonly JAVA_JMX: "JAVA_JMX";
|
|
14
|
+
readonly MYSQL: "MYSQL";
|
|
15
|
+
readonly ORACLE: "ORACLE";
|
|
16
|
+
readonly POSTGRESQL: "POSTGRESQL";
|
|
17
|
+
readonly SAP_ASE_HIGH_AVAILABILITY: "SAP_ASE_HIGH_AVAILABILITY";
|
|
18
|
+
readonly SAP_ASE_SINGLE_NODE: "SAP_ASE_SINGLE_NODE";
|
|
19
|
+
readonly SAP_HANA_HIGH_AVAILABILITY: "SAP_HANA_HIGH_AVAILABILITY";
|
|
20
|
+
readonly SAP_HANA_MULTI_NODE: "SAP_HANA_MULTI_NODE";
|
|
21
|
+
readonly SAP_HANA_SINGLE_NODE: "SAP_HANA_SINGLE_NODE";
|
|
22
|
+
readonly SAP_NETWEAVER_DISTRIBUTED: "SAP_NETWEAVER_DISTRIBUTED";
|
|
23
|
+
readonly SAP_NETWEAVER_HIGH_AVAILABILITY: "SAP_NETWEAVER_HIGH_AVAILABILITY";
|
|
24
|
+
readonly SAP_NETWEAVER_STANDARD: "SAP_NETWEAVER_STANDARD";
|
|
25
|
+
readonly SHAREPOINT: "SHAREPOINT";
|
|
26
|
+
readonly SQL_SERVER: "SQL_SERVER";
|
|
27
|
+
readonly SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP: "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP";
|
|
28
|
+
readonly SQL_SERVER_FAILOVER_CLUSTER_INSTANCE: "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE";
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export type Tier = (typeof Tier)[keyof typeof Tier];
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* @enum
|
|
37
|
+
*/
|
|
38
|
+
export declare const OsType: {
|
|
39
|
+
readonly LINUX: "LINUX";
|
|
40
|
+
readonly WINDOWS: "WINDOWS";
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export type OsType = (typeof OsType)[keyof typeof OsType];
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
* @enum
|
|
49
|
+
*/
|
|
50
|
+
export declare const DiscoveryType: {
|
|
51
|
+
readonly ACCOUNT_BASED: "ACCOUNT_BASED";
|
|
52
|
+
readonly RESOURCE_GROUP_BASED: "RESOURCE_GROUP_BASED";
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
* @enum
|
|
61
|
+
*/
|
|
62
|
+
export declare const CloudWatchEventSource: {
|
|
63
|
+
readonly CODE_DEPLOY: "CODE_DEPLOY";
|
|
64
|
+
readonly EC2: "EC2";
|
|
65
|
+
readonly HEALTH: "HEALTH";
|
|
66
|
+
readonly RDS: "RDS";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export type CloudWatchEventSource = (typeof CloudWatchEventSource)[keyof typeof CloudWatchEventSource];
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
* @enum
|
|
75
|
+
*/
|
|
76
|
+
export declare const ConfigurationEventResourceType: {
|
|
77
|
+
readonly CLOUDFORMATION: "CLOUDFORMATION";
|
|
78
|
+
readonly CLOUDWATCH_ALARM: "CLOUDWATCH_ALARM";
|
|
79
|
+
readonly CLOUDWATCH_LOG: "CLOUDWATCH_LOG";
|
|
80
|
+
readonly SSM_ASSOCIATION: "SSM_ASSOCIATION";
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export type ConfigurationEventResourceType = (typeof ConfigurationEventResourceType)[keyof typeof ConfigurationEventResourceType];
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
* @enum
|
|
89
|
+
*/
|
|
90
|
+
export declare const ConfigurationEventStatus: {
|
|
91
|
+
readonly ERROR: "ERROR";
|
|
92
|
+
readonly INFO: "INFO";
|
|
93
|
+
readonly WARN: "WARN";
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export type ConfigurationEventStatus = (typeof ConfigurationEventStatus)[keyof typeof ConfigurationEventStatus];
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
* @enum
|
|
102
|
+
*/
|
|
103
|
+
export declare const GroupingType: {
|
|
104
|
+
readonly ACCOUNT_BASED: "ACCOUNT_BASED";
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
export type GroupingType = (typeof GroupingType)[keyof typeof GroupingType];
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
* @enum
|
|
113
|
+
*/
|
|
114
|
+
export declare const RecommendationType: {
|
|
115
|
+
readonly ALL: "ALL";
|
|
116
|
+
readonly INFRA_ONLY: "INFRA_ONLY";
|
|
117
|
+
readonly WORKLOAD_ONLY: "WORKLOAD_ONLY";
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType];
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
* @enum
|
|
126
|
+
*/
|
|
127
|
+
export declare const LogFilter: {
|
|
128
|
+
readonly ERROR: "ERROR";
|
|
129
|
+
readonly INFO: "INFO";
|
|
130
|
+
readonly WARN: "WARN";
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
export type LogFilter = (typeof LogFilter)[keyof typeof LogFilter];
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
* @enum
|
|
139
|
+
*/
|
|
140
|
+
export declare const FeedbackKey: {
|
|
141
|
+
readonly INSIGHTS_FEEDBACK: "INSIGHTS_FEEDBACK";
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
export type FeedbackKey = (typeof FeedbackKey)[keyof typeof FeedbackKey];
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
* @enum
|
|
150
|
+
*/
|
|
151
|
+
export declare const FeedbackValue: {
|
|
152
|
+
readonly NOT_SPECIFIED: "NOT_SPECIFIED";
|
|
153
|
+
readonly NOT_USEFUL: "NOT_USEFUL";
|
|
154
|
+
readonly USEFUL: "USEFUL";
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export type FeedbackValue = (typeof FeedbackValue)[keyof typeof FeedbackValue];
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
* @enum
|
|
163
|
+
*/
|
|
164
|
+
export declare const ResolutionMethod: {
|
|
165
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
166
|
+
readonly MANUAL: "MANUAL";
|
|
167
|
+
readonly UNRESOLVED: "UNRESOLVED";
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export type ResolutionMethod = (typeof ResolutionMethod)[keyof typeof ResolutionMethod];
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* @enum
|
|
176
|
+
*/
|
|
177
|
+
export declare const SeverityLevel: {
|
|
178
|
+
readonly High: "High";
|
|
179
|
+
readonly Informative: "Informative";
|
|
180
|
+
readonly Low: "Low";
|
|
181
|
+
readonly Medium: "Medium";
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export type SeverityLevel = (typeof SeverityLevel)[keyof typeof SeverityLevel];
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* @enum
|
|
190
|
+
*/
|
|
191
|
+
export declare const Status: {
|
|
192
|
+
readonly IGNORE: "IGNORE";
|
|
193
|
+
readonly PENDING: "PENDING";
|
|
194
|
+
readonly RECOVERING: "RECOVERING";
|
|
195
|
+
readonly RECURRING: "RECURRING";
|
|
196
|
+
readonly RESOLVED: "RESOLVED";
|
|
197
|
+
};
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
202
|
+
/**
|
|
203
|
+
* @public
|
|
204
|
+
* @enum
|
|
205
|
+
*/
|
|
206
|
+
export declare const Visibility: {
|
|
207
|
+
readonly IGNORED: "IGNORED";
|
|
208
|
+
readonly VISIBLE: "VISIBLE";
|
|
209
|
+
};
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
*/
|
|
213
|
+
export type Visibility = (typeof Visibility)[keyof typeof Visibility];
|
|
214
|
+
/**
|
|
215
|
+
* @public
|
|
216
|
+
* @enum
|
|
217
|
+
*/
|
|
218
|
+
export declare const UpdateStatus: {
|
|
219
|
+
readonly RESOLVED: "RESOLVED";
|
|
220
|
+
};
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ApplicationInsightsServiceException as __BaseException } from "./ApplicationInsightsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p> User does not have permissions to perform this action. </p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class InternalServerException extends __BaseException {
|
|
21
|
+
readonly name: "InternalServerException";
|
|
22
|
+
readonly $fault: "server";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>The resource is already created or in use.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
34
|
+
readonly name: "ResourceInUseException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>The resource does not exist in the customer account.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
47
|
+
readonly name: "ResourceNotFoundException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <p>The parameter is not valid.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export declare class ValidationException extends __BaseException {
|
|
60
|
+
readonly name: "ValidationException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <p>The request is not understood by the server.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class BadRequestException extends __BaseException {
|
|
73
|
+
readonly name: "BadRequestException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Message?: string | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* <p>Tags are already registered for the specified application ARN.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export declare class TagsAlreadyExistException extends __BaseException {
|
|
86
|
+
readonly name: "TagsAlreadyExistException";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
Message?: string | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
constructor(opts: __ExceptionOptionType<TagsAlreadyExistException, __BaseException>);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* <p>The number of the provided tags is beyond the limit, or the number of total tags you are
|
|
96
|
+
* trying to attach to the specified resource exceeds the limit.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
100
|
+
readonly name: "TooManyTagsException";
|
|
101
|
+
readonly $fault: "client";
|
|
102
|
+
Message?: string | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* <p>The name of the resource with too many tags.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
ResourceName?: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
112
|
+
}
|