@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ApplicationInsights.d.ts +496 -140
- package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +292 -100
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateLogPatternCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteLogPatternCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeComponentConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLogPatternCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeObservationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeProblemCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeProblemObservationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListConfigurationHistoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListLogPatternSetsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListLogPatternsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListProblemsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateComponentConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateLogPatternCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +27 -27
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ApplicationInsightsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +847 -751
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListConfigurationHistoryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListLogPatternSetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListLogPatternsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListProblemsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +329 -83
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|