@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.
@@ -1,39 +1,21 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ApplicationInsightsServiceException as __BaseException } from "./ApplicationInsightsServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
- );
10
- }
11
- export declare const Tier: {
12
- readonly ACTIVE_DIRECTORY: "ACTIVE_DIRECTORY";
13
- readonly CUSTOM: "CUSTOM";
14
- readonly DEFAULT: "DEFAULT";
15
- readonly DOT_NET_CORE: "DOT_NET_CORE";
16
- readonly DOT_NET_WEB: "DOT_NET_WEB";
17
- readonly DOT_NET_WEB_TIER: "DOT_NET_WEB_TIER";
18
- readonly DOT_NET_WORKER: "DOT_NET_WORKER";
19
- readonly JAVA_JMX: "JAVA_JMX";
20
- readonly MYSQL: "MYSQL";
21
- readonly ORACLE: "ORACLE";
22
- readonly POSTGRESQL: "POSTGRESQL";
23
- readonly SAP_ASE_HIGH_AVAILABILITY: "SAP_ASE_HIGH_AVAILABILITY";
24
- readonly SAP_ASE_SINGLE_NODE: "SAP_ASE_SINGLE_NODE";
25
- readonly SAP_HANA_HIGH_AVAILABILITY: "SAP_HANA_HIGH_AVAILABILITY";
26
- readonly SAP_HANA_MULTI_NODE: "SAP_HANA_MULTI_NODE";
27
- readonly SAP_HANA_SINGLE_NODE: "SAP_HANA_SINGLE_NODE";
28
- readonly SAP_NETWEAVER_DISTRIBUTED: "SAP_NETWEAVER_DISTRIBUTED";
29
- readonly SAP_NETWEAVER_HIGH_AVAILABILITY: "SAP_NETWEAVER_HIGH_AVAILABILITY";
30
- readonly SAP_NETWEAVER_STANDARD: "SAP_NETWEAVER_STANDARD";
31
- readonly SHAREPOINT: "SHAREPOINT";
32
- readonly SQL_SERVER: "SQL_SERVER";
33
- readonly SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP: "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP";
34
- readonly SQL_SERVER_FAILOVER_CLUSTER_INSTANCE: "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE";
35
- };
36
- export type Tier = (typeof Tier)[keyof typeof Tier];
1
+ import {
2
+ CloudWatchEventSource,
3
+ ConfigurationEventResourceType,
4
+ ConfigurationEventStatus,
5
+ DiscoveryType,
6
+ FeedbackKey,
7
+ FeedbackValue,
8
+ GroupingType,
9
+ LogFilter,
10
+ OsType,
11
+ RecommendationType,
12
+ ResolutionMethod,
13
+ SeverityLevel,
14
+ Status,
15
+ Tier,
16
+ UpdateStatus,
17
+ Visibility,
18
+ } from "./enums";
37
19
  export interface WorkloadConfiguration {
38
20
  WorkloadName?: string | undefined;
39
21
  Tier?: Tier | undefined;
@@ -48,43 +30,6 @@ export interface AddWorkloadResponse {
48
30
  WorkloadId?: string | undefined;
49
31
  WorkloadConfiguration?: WorkloadConfiguration | undefined;
50
32
  }
51
- export declare class InternalServerException extends __BaseException {
52
- readonly name: "InternalServerException";
53
- readonly $fault: "server";
54
- Message?: string | undefined;
55
- constructor(
56
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
57
- );
58
- }
59
- export declare class ResourceInUseException extends __BaseException {
60
- readonly name: "ResourceInUseException";
61
- readonly $fault: "client";
62
- Message?: string | undefined;
63
- constructor(
64
- opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
65
- );
66
- }
67
- export declare class ResourceNotFoundException extends __BaseException {
68
- readonly name: "ResourceNotFoundException";
69
- readonly $fault: "client";
70
- Message?: string | undefined;
71
- constructor(
72
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
73
- );
74
- }
75
- export declare class ValidationException extends __BaseException {
76
- readonly name: "ValidationException";
77
- readonly $fault: "client";
78
- Message?: string | undefined;
79
- constructor(
80
- opts: __ExceptionOptionType<ValidationException, __BaseException>
81
- );
82
- }
83
- export declare const OsType: {
84
- readonly LINUX: "LINUX";
85
- readonly WINDOWS: "WINDOWS";
86
- };
87
- export type OsType = (typeof OsType)[keyof typeof OsType];
88
33
  export interface ApplicationComponent {
89
34
  ComponentName?: string | undefined;
90
35
  ComponentRemarks?: string | undefined;
@@ -94,11 +39,6 @@ export interface ApplicationComponent {
94
39
  Monitor?: boolean | undefined;
95
40
  DetectedWorkload?: Partial<Record<Tier, Record<string, string>>> | undefined;
96
41
  }
97
- export declare const DiscoveryType: {
98
- readonly ACCOUNT_BASED: "ACCOUNT_BASED";
99
- readonly RESOURCE_GROUP_BASED: "RESOURCE_GROUP_BASED";
100
- };
101
- export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
102
42
  export interface ApplicationInfo {
103
43
  AccountId?: string | undefined;
104
44
  ResourceGroupName?: string | undefined;
@@ -112,37 +52,6 @@ export interface ApplicationInfo {
112
52
  DiscoveryType?: DiscoveryType | undefined;
113
53
  AttachMissingPermission?: boolean | undefined;
114
54
  }
115
- export declare class BadRequestException extends __BaseException {
116
- readonly name: "BadRequestException";
117
- readonly $fault: "client";
118
- Message?: string | undefined;
119
- constructor(
120
- opts: __ExceptionOptionType<BadRequestException, __BaseException>
121
- );
122
- }
123
- export declare const CloudWatchEventSource: {
124
- readonly CODE_DEPLOY: "CODE_DEPLOY";
125
- readonly EC2: "EC2";
126
- readonly HEALTH: "HEALTH";
127
- readonly RDS: "RDS";
128
- };
129
- export type CloudWatchEventSource =
130
- (typeof CloudWatchEventSource)[keyof typeof CloudWatchEventSource];
131
- export declare const ConfigurationEventResourceType: {
132
- readonly CLOUDFORMATION: "CLOUDFORMATION";
133
- readonly CLOUDWATCH_ALARM: "CLOUDWATCH_ALARM";
134
- readonly CLOUDWATCH_LOG: "CLOUDWATCH_LOG";
135
- readonly SSM_ASSOCIATION: "SSM_ASSOCIATION";
136
- };
137
- export type ConfigurationEventResourceType =
138
- (typeof ConfigurationEventResourceType)[keyof typeof ConfigurationEventResourceType];
139
- export declare const ConfigurationEventStatus: {
140
- readonly ERROR: "ERROR";
141
- readonly INFO: "INFO";
142
- readonly WARN: "WARN";
143
- };
144
- export type ConfigurationEventStatus =
145
- (typeof ConfigurationEventStatus)[keyof typeof ConfigurationEventStatus];
146
55
  export interface ConfigurationEvent {
147
56
  ResourceGroupName?: string | undefined;
148
57
  AccountId?: string | undefined;
@@ -153,10 +62,6 @@ export interface ConfigurationEvent {
153
62
  EventDetail?: string | undefined;
154
63
  EventResourceName?: string | undefined;
155
64
  }
156
- export declare const GroupingType: {
157
- readonly ACCOUNT_BASED: "ACCOUNT_BASED";
158
- };
159
- export type GroupingType = (typeof GroupingType)[keyof typeof GroupingType];
160
65
  export interface Tag {
161
66
  Key: string | undefined;
162
67
  Value: string | undefined;
@@ -176,14 +81,6 @@ export interface CreateApplicationRequest {
176
81
  export interface CreateApplicationResponse {
177
82
  ApplicationInfo?: ApplicationInfo | undefined;
178
83
  }
179
- export declare class TagsAlreadyExistException extends __BaseException {
180
- readonly name: "TagsAlreadyExistException";
181
- readonly $fault: "client";
182
- Message?: string | undefined;
183
- constructor(
184
- opts: __ExceptionOptionType<TagsAlreadyExistException, __BaseException>
185
- );
186
- }
187
84
  export interface CreateComponentRequest {
188
85
  ResourceGroupName: string | undefined;
189
86
  ComponentName: string | undefined;
@@ -248,13 +145,6 @@ export interface DescribeComponentConfigurationResponse {
248
145
  Tier?: Tier | undefined;
249
146
  ComponentConfiguration?: string | undefined;
250
147
  }
251
- export declare const RecommendationType: {
252
- readonly ALL: "ALL";
253
- readonly INFRA_ONLY: "INFRA_ONLY";
254
- readonly WORKLOAD_ONLY: "WORKLOAD_ONLY";
255
- };
256
- export type RecommendationType =
257
- (typeof RecommendationType)[keyof typeof RecommendationType];
258
148
  export interface DescribeComponentConfigurationRecommendationRequest {
259
149
  ResourceGroupName: string | undefined;
260
150
  ComponentName: string | undefined;
@@ -280,12 +170,6 @@ export interface DescribeObservationRequest {
280
170
  ObservationId: string | undefined;
281
171
  AccountId?: string | undefined;
282
172
  }
283
- export declare const LogFilter: {
284
- readonly ERROR: "ERROR";
285
- readonly INFO: "INFO";
286
- readonly WARN: "WARN";
287
- };
288
- export type LogFilter = (typeof LogFilter)[keyof typeof LogFilter];
289
173
  export interface Observation {
290
174
  Id?: string | undefined;
291
175
  StartTime?: Date | undefined;
@@ -340,43 +224,6 @@ export interface DescribeProblemRequest {
340
224
  ProblemId: string | undefined;
341
225
  AccountId?: string | undefined;
342
226
  }
343
- export declare const FeedbackKey: {
344
- readonly INSIGHTS_FEEDBACK: "INSIGHTS_FEEDBACK";
345
- };
346
- export type FeedbackKey = (typeof FeedbackKey)[keyof typeof FeedbackKey];
347
- export declare const FeedbackValue: {
348
- readonly NOT_SPECIFIED: "NOT_SPECIFIED";
349
- readonly NOT_USEFUL: "NOT_USEFUL";
350
- readonly USEFUL: "USEFUL";
351
- };
352
- export type FeedbackValue = (typeof FeedbackValue)[keyof typeof FeedbackValue];
353
- export declare const ResolutionMethod: {
354
- readonly AUTOMATIC: "AUTOMATIC";
355
- readonly MANUAL: "MANUAL";
356
- readonly UNRESOLVED: "UNRESOLVED";
357
- };
358
- export type ResolutionMethod =
359
- (typeof ResolutionMethod)[keyof typeof ResolutionMethod];
360
- export declare const SeverityLevel: {
361
- readonly High: "High";
362
- readonly Informative: "Informative";
363
- readonly Low: "Low";
364
- readonly Medium: "Medium";
365
- };
366
- export type SeverityLevel = (typeof SeverityLevel)[keyof typeof SeverityLevel];
367
- export declare const Status: {
368
- readonly IGNORE: "IGNORE";
369
- readonly PENDING: "PENDING";
370
- readonly RECOVERING: "RECOVERING";
371
- readonly RECURRING: "RECURRING";
372
- readonly RESOLVED: "RESOLVED";
373
- };
374
- export type Status = (typeof Status)[keyof typeof Status];
375
- export declare const Visibility: {
376
- readonly IGNORED: "IGNORED";
377
- readonly VISIBLE: "VISIBLE";
378
- };
379
- export type Visibility = (typeof Visibility)[keyof typeof Visibility];
380
227
  export interface Problem {
381
228
  Id?: string | undefined;
382
229
  Title?: string | undefined;
@@ -529,15 +376,6 @@ export interface TagResourceRequest {
529
376
  Tags: Tag[] | undefined;
530
377
  }
531
378
  export interface TagResourceResponse {}
532
- export declare class TooManyTagsException extends __BaseException {
533
- readonly name: "TooManyTagsException";
534
- readonly $fault: "client";
535
- Message?: string | undefined;
536
- ResourceName?: string | undefined;
537
- constructor(
538
- opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
539
- );
540
- }
541
379
  export interface UntagResourceRequest {
542
380
  ResourceARN: string | undefined;
543
381
  TagKeys: string[] | undefined;
@@ -583,10 +421,6 @@ export interface UpdateLogPatternResponse {
583
421
  ResourceGroupName?: string | undefined;
584
422
  LogPattern?: LogPattern | undefined;
585
423
  }
586
- export declare const UpdateStatus: {
587
- readonly RESOLVED: "RESOLVED";
588
- };
589
- export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
590
424
  export interface UpdateProblemRequest {
591
425
  ProblemId: string | undefined;
592
426
  UpdateStatus?: UpdateStatus | 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.934.0",
4
+ "version": "3.935.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-application-insights",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";