@aws-sdk/client-application-insights 3.169.0 → 3.170.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ApplicationInsights.d.ts +496 -140
  3. package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +292 -100
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateLogPatternCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteLogPatternCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/DescribeComponentConfigurationCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeLogPatternCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeObservationCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/DescribeProblemCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/DescribeProblemObservationsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/ListConfigurationHistoryCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListLogPatternSetsCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/ListLogPatternsCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/ListProblemsCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  28. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateComponentConfigurationCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/UpdateLogPatternCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/index.d.ts +27 -27
  32. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  33. package/dist-types/ts3.4/index.d.ts +6 -6
  34. package/dist-types/ts3.4/models/ApplicationInsightsServiceException.d.ts +8 -6
  35. package/dist-types/ts3.4/models/index.d.ts +1 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +847 -751
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListConfigurationHistoryPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListLogPatternSetsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListLogPatternsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListProblemsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  45. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +329 -83
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  50. package/package.json +34 -34
@@ -1,100 +1,292 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
10
- import { CreateComponentCommandInput, CreateComponentCommandOutput } from "./commands/CreateComponentCommand";
11
- import { CreateLogPatternCommandInput, CreateLogPatternCommandOutput } from "./commands/CreateLogPatternCommand";
12
- import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
13
- import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "./commands/DeleteComponentCommand";
14
- import { DeleteLogPatternCommandInput, DeleteLogPatternCommandOutput } from "./commands/DeleteLogPatternCommand";
15
- import { DescribeApplicationCommandInput, DescribeApplicationCommandOutput } from "./commands/DescribeApplicationCommand";
16
- import { DescribeComponentCommandInput, DescribeComponentCommandOutput } from "./commands/DescribeComponentCommand";
17
- import { DescribeComponentConfigurationCommandInput, DescribeComponentConfigurationCommandOutput } from "./commands/DescribeComponentConfigurationCommand";
18
- import { DescribeComponentConfigurationRecommendationCommandInput, DescribeComponentConfigurationRecommendationCommandOutput } from "./commands/DescribeComponentConfigurationRecommendationCommand";
19
- import { DescribeLogPatternCommandInput, DescribeLogPatternCommandOutput } from "./commands/DescribeLogPatternCommand";
20
- import { DescribeObservationCommandInput, DescribeObservationCommandOutput } from "./commands/DescribeObservationCommand";
21
- import { DescribeProblemCommandInput, DescribeProblemCommandOutput } from "./commands/DescribeProblemCommand";
22
- import { DescribeProblemObservationsCommandInput, DescribeProblemObservationsCommandOutput } from "./commands/DescribeProblemObservationsCommand";
23
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
24
- import { ListComponentsCommandInput, ListComponentsCommandOutput } from "./commands/ListComponentsCommand";
25
- import { ListConfigurationHistoryCommandInput, ListConfigurationHistoryCommandOutput } from "./commands/ListConfigurationHistoryCommand";
26
- import { ListLogPatternsCommandInput, ListLogPatternsCommandOutput } from "./commands/ListLogPatternsCommand";
27
- import { ListLogPatternSetsCommandInput, ListLogPatternSetsCommandOutput } from "./commands/ListLogPatternSetsCommand";
28
- import { ListProblemsCommandInput, ListProblemsCommandOutput } from "./commands/ListProblemsCommand";
29
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
30
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
31
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
32
- import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
33
- import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./commands/UpdateComponentCommand";
34
- import { UpdateComponentConfigurationCommandInput, UpdateComponentConfigurationCommandOutput } from "./commands/UpdateComponentConfigurationCommand";
35
- import { UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput } from "./commands/UpdateLogPatternCommand";
36
- export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateComponentCommandInput | CreateLogPatternCommandInput | DeleteApplicationCommandInput | DeleteComponentCommandInput | DeleteLogPatternCommandInput | DescribeApplicationCommandInput | DescribeComponentCommandInput | DescribeComponentConfigurationCommandInput | DescribeComponentConfigurationRecommendationCommandInput | DescribeLogPatternCommandInput | DescribeObservationCommandInput | DescribeProblemCommandInput | DescribeProblemObservationsCommandInput | ListApplicationsCommandInput | ListComponentsCommandInput | ListConfigurationHistoryCommandInput | ListLogPatternSetsCommandInput | ListLogPatternsCommandInput | ListProblemsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateComponentCommandInput | UpdateComponentConfigurationCommandInput | UpdateLogPatternCommandInput;
37
- export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateComponentCommandOutput | CreateLogPatternCommandOutput | DeleteApplicationCommandOutput | DeleteComponentCommandOutput | DeleteLogPatternCommandOutput | DescribeApplicationCommandOutput | DescribeComponentCommandOutput | DescribeComponentConfigurationCommandOutput | DescribeComponentConfigurationRecommendationCommandOutput | DescribeLogPatternCommandOutput | DescribeObservationCommandOutput | DescribeProblemCommandOutput | DescribeProblemObservationsCommandOutput | ListApplicationsCommandOutput | ListComponentsCommandOutput | ListConfigurationHistoryCommandOutput | ListLogPatternSetsCommandOutput | ListLogPatternsCommandOutput | ListProblemsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateComponentCommandOutput | UpdateComponentConfigurationCommandOutput | UpdateLogPatternCommandOutput;
38
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
39
-
40
- requestHandler?: __HttpHandler;
41
-
42
- sha256?: __HashConstructor;
43
-
44
- urlParser?: __UrlParser;
45
-
46
- bodyLengthChecker?: __BodyLengthCalculator;
47
-
48
- streamCollector?: __StreamCollector;
49
-
50
- base64Decoder?: __Decoder;
51
-
52
- base64Encoder?: __Encoder;
53
-
54
- utf8Decoder?: __Decoder;
55
-
56
- utf8Encoder?: __Encoder;
57
-
58
- runtime?: string;
59
-
60
- disableHostPrefix?: boolean;
61
-
62
- maxAttempts?: number | __Provider<number>;
63
-
64
- retryMode?: string | __Provider<string>;
65
-
66
- logger?: __Logger;
67
-
68
- useDualstackEndpoint?: boolean | __Provider<boolean>;
69
-
70
- useFipsEndpoint?: boolean | __Provider<boolean>;
71
-
72
- serviceId?: string;
73
-
74
- region?: string | __Provider<string>;
75
-
76
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
77
-
78
- regionInfoProvider?: RegionInfoProvider;
79
-
80
- defaultUserAgentProvider?: Provider<__UserAgent>;
81
-
82
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
83
- }
84
- declare type ApplicationInsightsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
85
-
86
- export interface ApplicationInsightsClientConfig extends ApplicationInsightsClientConfigType {
87
- }
88
- declare type ApplicationInsightsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
89
-
90
- export interface ApplicationInsightsClientResolvedConfig extends ApplicationInsightsClientResolvedConfigType {
91
- }
92
-
93
- export declare class ApplicationInsightsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ApplicationInsightsClientResolvedConfig> {
94
-
95
- readonly config: ApplicationInsightsClientResolvedConfig;
96
- constructor(configuration: ApplicationInsightsClientConfig);
97
-
98
- destroy(): void;
99
- }
100
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateApplicationCommandInput,
47
+ CreateApplicationCommandOutput,
48
+ } from "./commands/CreateApplicationCommand";
49
+ import {
50
+ CreateComponentCommandInput,
51
+ CreateComponentCommandOutput,
52
+ } from "./commands/CreateComponentCommand";
53
+ import {
54
+ CreateLogPatternCommandInput,
55
+ CreateLogPatternCommandOutput,
56
+ } from "./commands/CreateLogPatternCommand";
57
+ import {
58
+ DeleteApplicationCommandInput,
59
+ DeleteApplicationCommandOutput,
60
+ } from "./commands/DeleteApplicationCommand";
61
+ import {
62
+ DeleteComponentCommandInput,
63
+ DeleteComponentCommandOutput,
64
+ } from "./commands/DeleteComponentCommand";
65
+ import {
66
+ DeleteLogPatternCommandInput,
67
+ DeleteLogPatternCommandOutput,
68
+ } from "./commands/DeleteLogPatternCommand";
69
+ import {
70
+ DescribeApplicationCommandInput,
71
+ DescribeApplicationCommandOutput,
72
+ } from "./commands/DescribeApplicationCommand";
73
+ import {
74
+ DescribeComponentCommandInput,
75
+ DescribeComponentCommandOutput,
76
+ } from "./commands/DescribeComponentCommand";
77
+ import {
78
+ DescribeComponentConfigurationCommandInput,
79
+ DescribeComponentConfigurationCommandOutput,
80
+ } from "./commands/DescribeComponentConfigurationCommand";
81
+ import {
82
+ DescribeComponentConfigurationRecommendationCommandInput,
83
+ DescribeComponentConfigurationRecommendationCommandOutput,
84
+ } from "./commands/DescribeComponentConfigurationRecommendationCommand";
85
+ import {
86
+ DescribeLogPatternCommandInput,
87
+ DescribeLogPatternCommandOutput,
88
+ } from "./commands/DescribeLogPatternCommand";
89
+ import {
90
+ DescribeObservationCommandInput,
91
+ DescribeObservationCommandOutput,
92
+ } from "./commands/DescribeObservationCommand";
93
+ import {
94
+ DescribeProblemCommandInput,
95
+ DescribeProblemCommandOutput,
96
+ } from "./commands/DescribeProblemCommand";
97
+ import {
98
+ DescribeProblemObservationsCommandInput,
99
+ DescribeProblemObservationsCommandOutput,
100
+ } from "./commands/DescribeProblemObservationsCommand";
101
+ import {
102
+ ListApplicationsCommandInput,
103
+ ListApplicationsCommandOutput,
104
+ } from "./commands/ListApplicationsCommand";
105
+ import {
106
+ ListComponentsCommandInput,
107
+ ListComponentsCommandOutput,
108
+ } from "./commands/ListComponentsCommand";
109
+ import {
110
+ ListConfigurationHistoryCommandInput,
111
+ ListConfigurationHistoryCommandOutput,
112
+ } from "./commands/ListConfigurationHistoryCommand";
113
+ import {
114
+ ListLogPatternsCommandInput,
115
+ ListLogPatternsCommandOutput,
116
+ } from "./commands/ListLogPatternsCommand";
117
+ import {
118
+ ListLogPatternSetsCommandInput,
119
+ ListLogPatternSetsCommandOutput,
120
+ } from "./commands/ListLogPatternSetsCommand";
121
+ import {
122
+ ListProblemsCommandInput,
123
+ ListProblemsCommandOutput,
124
+ } from "./commands/ListProblemsCommand";
125
+ import {
126
+ ListTagsForResourceCommandInput,
127
+ ListTagsForResourceCommandOutput,
128
+ } from "./commands/ListTagsForResourceCommand";
129
+ import {
130
+ TagResourceCommandInput,
131
+ TagResourceCommandOutput,
132
+ } from "./commands/TagResourceCommand";
133
+ import {
134
+ UntagResourceCommandInput,
135
+ UntagResourceCommandOutput,
136
+ } from "./commands/UntagResourceCommand";
137
+ import {
138
+ UpdateApplicationCommandInput,
139
+ UpdateApplicationCommandOutput,
140
+ } from "./commands/UpdateApplicationCommand";
141
+ import {
142
+ UpdateComponentCommandInput,
143
+ UpdateComponentCommandOutput,
144
+ } from "./commands/UpdateComponentCommand";
145
+ import {
146
+ UpdateComponentConfigurationCommandInput,
147
+ UpdateComponentConfigurationCommandOutput,
148
+ } from "./commands/UpdateComponentConfigurationCommand";
149
+ import {
150
+ UpdateLogPatternCommandInput,
151
+ UpdateLogPatternCommandOutput,
152
+ } from "./commands/UpdateLogPatternCommand";
153
+ export declare type ServiceInputTypes =
154
+ | CreateApplicationCommandInput
155
+ | CreateComponentCommandInput
156
+ | CreateLogPatternCommandInput
157
+ | DeleteApplicationCommandInput
158
+ | DeleteComponentCommandInput
159
+ | DeleteLogPatternCommandInput
160
+ | DescribeApplicationCommandInput
161
+ | DescribeComponentCommandInput
162
+ | DescribeComponentConfigurationCommandInput
163
+ | DescribeComponentConfigurationRecommendationCommandInput
164
+ | DescribeLogPatternCommandInput
165
+ | DescribeObservationCommandInput
166
+ | DescribeProblemCommandInput
167
+ | DescribeProblemObservationsCommandInput
168
+ | ListApplicationsCommandInput
169
+ | ListComponentsCommandInput
170
+ | ListConfigurationHistoryCommandInput
171
+ | ListLogPatternSetsCommandInput
172
+ | ListLogPatternsCommandInput
173
+ | ListProblemsCommandInput
174
+ | ListTagsForResourceCommandInput
175
+ | TagResourceCommandInput
176
+ | UntagResourceCommandInput
177
+ | UpdateApplicationCommandInput
178
+ | UpdateComponentCommandInput
179
+ | UpdateComponentConfigurationCommandInput
180
+ | UpdateLogPatternCommandInput;
181
+ export declare type ServiceOutputTypes =
182
+ | CreateApplicationCommandOutput
183
+ | CreateComponentCommandOutput
184
+ | CreateLogPatternCommandOutput
185
+ | DeleteApplicationCommandOutput
186
+ | DeleteComponentCommandOutput
187
+ | DeleteLogPatternCommandOutput
188
+ | DescribeApplicationCommandOutput
189
+ | DescribeComponentCommandOutput
190
+ | DescribeComponentConfigurationCommandOutput
191
+ | DescribeComponentConfigurationRecommendationCommandOutput
192
+ | DescribeLogPatternCommandOutput
193
+ | DescribeObservationCommandOutput
194
+ | DescribeProblemCommandOutput
195
+ | DescribeProblemObservationsCommandOutput
196
+ | ListApplicationsCommandOutput
197
+ | ListComponentsCommandOutput
198
+ | ListConfigurationHistoryCommandOutput
199
+ | ListLogPatternSetsCommandOutput
200
+ | ListLogPatternsCommandOutput
201
+ | ListProblemsCommandOutput
202
+ | ListTagsForResourceCommandOutput
203
+ | TagResourceCommandOutput
204
+ | UntagResourceCommandOutput
205
+ | UpdateApplicationCommandOutput
206
+ | UpdateComponentCommandOutput
207
+ | UpdateComponentConfigurationCommandOutput
208
+ | UpdateLogPatternCommandOutput;
209
+ export interface ClientDefaults
210
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
211
+ requestHandler?: __HttpHandler;
212
+
213
+ sha256?: __HashConstructor;
214
+
215
+ urlParser?: __UrlParser;
216
+
217
+ bodyLengthChecker?: __BodyLengthCalculator;
218
+
219
+ streamCollector?: __StreamCollector;
220
+
221
+ base64Decoder?: __Decoder;
222
+
223
+ base64Encoder?: __Encoder;
224
+
225
+ utf8Decoder?: __Decoder;
226
+
227
+ utf8Encoder?: __Encoder;
228
+
229
+ runtime?: string;
230
+
231
+ disableHostPrefix?: boolean;
232
+
233
+ maxAttempts?: number | __Provider<number>;
234
+
235
+ retryMode?: string | __Provider<string>;
236
+
237
+ logger?: __Logger;
238
+
239
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
240
+
241
+ useFipsEndpoint?: boolean | __Provider<boolean>;
242
+
243
+ serviceId?: string;
244
+
245
+ region?: string | __Provider<string>;
246
+
247
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
248
+
249
+ regionInfoProvider?: RegionInfoProvider;
250
+
251
+ defaultUserAgentProvider?: Provider<__UserAgent>;
252
+
253
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
254
+ }
255
+ declare type ApplicationInsightsClientConfigType = Partial<
256
+ __SmithyConfiguration<__HttpHandlerOptions>
257
+ > &
258
+ ClientDefaults &
259
+ RegionInputConfig &
260
+ EndpointsInputConfig &
261
+ RetryInputConfig &
262
+ HostHeaderInputConfig &
263
+ AwsAuthInputConfig &
264
+ UserAgentInputConfig;
265
+
266
+ export interface ApplicationInsightsClientConfig
267
+ extends ApplicationInsightsClientConfigType {}
268
+ declare type ApplicationInsightsClientResolvedConfigType =
269
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
270
+ Required<ClientDefaults> &
271
+ RegionResolvedConfig &
272
+ EndpointsResolvedConfig &
273
+ RetryResolvedConfig &
274
+ HostHeaderResolvedConfig &
275
+ AwsAuthResolvedConfig &
276
+ UserAgentResolvedConfig;
277
+
278
+ export interface ApplicationInsightsClientResolvedConfig
279
+ extends ApplicationInsightsClientResolvedConfigType {}
280
+
281
+ export declare class ApplicationInsightsClient extends __Client<
282
+ __HttpHandlerOptions,
283
+ ServiceInputTypes,
284
+ ServiceOutputTypes,
285
+ ApplicationInsightsClientResolvedConfig
286
+ > {
287
+ readonly config: ApplicationInsightsClientResolvedConfig;
288
+ constructor(configuration: ApplicationInsightsClientConfig);
289
+
290
+ destroy(): void;
291
+ }
292
+ export {};
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
5
- export interface CreateApplicationCommandInput extends CreateApplicationRequest {
6
- }
7
- export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: CreateApplicationCommandInput;
12
- constructor(input: CreateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ CreateApplicationRequest,
15
+ CreateApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateApplicationCommandInput
18
+ extends CreateApplicationRequest {}
19
+ export interface CreateApplicationCommandOutput
20
+ extends CreateApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateApplicationCommand extends $Command<
24
+ CreateApplicationCommandInput,
25
+ CreateApplicationCommandOutput,
26
+ ApplicationInsightsClientResolvedConfig
27
+ > {
28
+ readonly input: CreateApplicationCommandInput;
29
+ constructor(input: CreateApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationInsightsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { CreateComponentRequest, CreateComponentResponse } from "../models/models_0";
5
- export interface CreateComponentCommandInput extends CreateComponentRequest {
6
- }
7
- export interface CreateComponentCommandOutput extends CreateComponentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateComponentCommand extends $Command<CreateComponentCommandInput, CreateComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: CreateComponentCommandInput;
12
- constructor(input: CreateComponentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateComponentCommandInput, CreateComponentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ CreateComponentRequest,
15
+ CreateComponentResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateComponentCommandInput extends CreateComponentRequest {}
18
+ export interface CreateComponentCommandOutput
19
+ extends CreateComponentResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateComponentCommand extends $Command<
23
+ CreateComponentCommandInput,
24
+ CreateComponentCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: CreateComponentCommandInput;
28
+ constructor(input: CreateComponentCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ApplicationInsightsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateComponentCommandInput, CreateComponentCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { CreateLogPatternRequest, CreateLogPatternResponse } from "../models/models_0";
5
- export interface CreateLogPatternCommandInput extends CreateLogPatternRequest {
6
- }
7
- export interface CreateLogPatternCommandOutput extends CreateLogPatternResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateLogPatternCommand extends $Command<CreateLogPatternCommandInput, CreateLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: CreateLogPatternCommandInput;
12
- constructor(input: CreateLogPatternCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLogPatternCommandInput, CreateLogPatternCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ CreateLogPatternRequest,
15
+ CreateLogPatternResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateLogPatternCommandInput extends CreateLogPatternRequest {}
18
+ export interface CreateLogPatternCommandOutput
19
+ extends CreateLogPatternResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateLogPatternCommand extends $Command<
23
+ CreateLogPatternCommandInput,
24
+ CreateLogPatternCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: CreateLogPatternCommandInput;
28
+ constructor(input: CreateLogPatternCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ApplicationInsightsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateLogPatternCommandInput, CreateLogPatternCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
5
- export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
6
- }
7
- export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DeleteApplicationCommandInput;
12
- constructor(input: DeleteApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ DeleteApplicationRequest,
15
+ DeleteApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationCommandInput
18
+ extends DeleteApplicationRequest {}
19
+ export interface DeleteApplicationCommandOutput
20
+ extends DeleteApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteApplicationCommand extends $Command<
24
+ DeleteApplicationCommandInput,
25
+ DeleteApplicationCommandOutput,
26
+ ApplicationInsightsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteApplicationCommandInput;
29
+ constructor(input: DeleteApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationInsightsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }