@aws-sdk/client-application-insights 3.168.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 +16 -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,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 { UpdateLogPatternRequest, UpdateLogPatternResponse } from "../models/models_0";
5
- export interface UpdateLogPatternCommandInput extends UpdateLogPatternRequest {
6
- }
7
- export interface UpdateLogPatternCommandOutput extends UpdateLogPatternResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateLogPatternCommand extends $Command<UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: UpdateLogPatternCommandInput;
12
- constructor(input: UpdateLogPatternCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput>;
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
+ UpdateLogPatternRequest,
15
+ UpdateLogPatternResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateLogPatternCommandInput extends UpdateLogPatternRequest {}
18
+ export interface UpdateLogPatternCommandOutput
19
+ extends UpdateLogPatternResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateLogPatternCommand extends $Command<
23
+ UpdateLogPatternCommandInput,
24
+ UpdateLogPatternCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateLogPatternCommandInput;
28
+ constructor(input: UpdateLogPatternCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ApplicationInsightsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,27 +1,27 @@
1
- export * from "./CreateApplicationCommand";
2
- export * from "./CreateComponentCommand";
3
- export * from "./CreateLogPatternCommand";
4
- export * from "./DeleteApplicationCommand";
5
- export * from "./DeleteComponentCommand";
6
- export * from "./DeleteLogPatternCommand";
7
- export * from "./DescribeApplicationCommand";
8
- export * from "./DescribeComponentCommand";
9
- export * from "./DescribeComponentConfigurationCommand";
10
- export * from "./DescribeComponentConfigurationRecommendationCommand";
11
- export * from "./DescribeLogPatternCommand";
12
- export * from "./DescribeObservationCommand";
13
- export * from "./DescribeProblemCommand";
14
- export * from "./DescribeProblemObservationsCommand";
15
- export * from "./ListApplicationsCommand";
16
- export * from "./ListComponentsCommand";
17
- export * from "./ListConfigurationHistoryCommand";
18
- export * from "./ListLogPatternSetsCommand";
19
- export * from "./ListLogPatternsCommand";
20
- export * from "./ListProblemsCommand";
21
- export * from "./ListTagsForResourceCommand";
22
- export * from "./TagResourceCommand";
23
- export * from "./UntagResourceCommand";
24
- export * from "./UpdateApplicationCommand";
25
- export * from "./UpdateComponentCommand";
26
- export * from "./UpdateComponentConfigurationCommand";
27
- export * from "./UpdateLogPatternCommand";
1
+ export * from "./CreateApplicationCommand";
2
+ export * from "./CreateComponentCommand";
3
+ export * from "./CreateLogPatternCommand";
4
+ export * from "./DeleteApplicationCommand";
5
+ export * from "./DeleteComponentCommand";
6
+ export * from "./DeleteLogPatternCommand";
7
+ export * from "./DescribeApplicationCommand";
8
+ export * from "./DescribeComponentCommand";
9
+ export * from "./DescribeComponentConfigurationCommand";
10
+ export * from "./DescribeComponentConfigurationRecommendationCommand";
11
+ export * from "./DescribeLogPatternCommand";
12
+ export * from "./DescribeObservationCommand";
13
+ export * from "./DescribeProblemCommand";
14
+ export * from "./DescribeProblemObservationsCommand";
15
+ export * from "./ListApplicationsCommand";
16
+ export * from "./ListComponentsCommand";
17
+ export * from "./ListConfigurationHistoryCommand";
18
+ export * from "./ListLogPatternSetsCommand";
19
+ export * from "./ListLogPatternsCommand";
20
+ export * from "./ListProblemsCommand";
21
+ export * from "./ListTagsForResourceCommand";
22
+ export * from "./TagResourceCommand";
23
+ export * from "./UntagResourceCommand";
24
+ export * from "./UpdateApplicationCommand";
25
+ export * from "./UpdateComponentCommand";
26
+ export * from "./UpdateComponentConfigurationCommand";
27
+ export * from "./UpdateLogPatternCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./ApplicationInsights";
2
- export * from "./ApplicationInsightsClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { ApplicationInsightsServiceException } from "./models/ApplicationInsightsServiceException";
1
+ export * from "./ApplicationInsights";
2
+ export * from "./ApplicationInsightsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ApplicationInsightsServiceException } from "./models/ApplicationInsightsServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ApplicationInsightsServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class ApplicationInsightsServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";