@aws-sdk/client-application-insights 3.169.0 → 3.171.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 +469 -140
- package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +267 -100
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateLogPatternCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteLogPatternCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeComponentConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeLogPatternCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeObservationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeProblemCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeProblemObservationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListConfigurationHistoryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListLogPatternSetsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListLogPatternsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListProblemsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateComponentConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateLogPatternCommand.d.ts +35 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +609 -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 +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
DeleteLogPatternRequest,
|
|
15
|
+
DeleteLogPatternResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteLogPatternCommandInput extends DeleteLogPatternRequest {}
|
|
18
|
+
export interface DeleteLogPatternCommandOutput
|
|
19
|
+
extends DeleteLogPatternResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DeleteLogPatternCommand extends $Command<
|
|
22
|
+
DeleteLogPatternCommandInput,
|
|
23
|
+
DeleteLogPatternCommandOutput,
|
|
24
|
+
ApplicationInsightsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeleteLogPatternCommandInput;
|
|
27
|
+
constructor(input: DeleteLogPatternCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteLogPatternCommandInput, DeleteLogPatternCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
DescribeApplicationRequest,
|
|
15
|
+
DescribeApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeApplicationCommandInput
|
|
18
|
+
extends DescribeApplicationRequest {}
|
|
19
|
+
export interface DescribeApplicationCommandOutput
|
|
20
|
+
extends DescribeApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeApplicationCommand extends $Command<
|
|
23
|
+
DescribeApplicationCommandInput,
|
|
24
|
+
DescribeApplicationCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeApplicationCommandInput;
|
|
28
|
+
constructor(input: DescribeApplicationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeApplicationCommandInput, DescribeApplicationCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
DescribeComponentRequest,
|
|
15
|
+
DescribeComponentResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeComponentCommandInput
|
|
18
|
+
extends DescribeComponentRequest {}
|
|
19
|
+
export interface DescribeComponentCommandOutput
|
|
20
|
+
extends DescribeComponentResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeComponentCommand extends $Command<
|
|
23
|
+
DescribeComponentCommandInput,
|
|
24
|
+
DescribeComponentCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeComponentCommandInput;
|
|
28
|
+
constructor(input: DescribeComponentCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeComponentCommandInput, DescribeComponentCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
DescribeComponentConfigurationRequest,
|
|
15
|
+
DescribeComponentConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeComponentConfigurationCommandInput
|
|
18
|
+
extends DescribeComponentConfigurationRequest {}
|
|
19
|
+
export interface DescribeComponentConfigurationCommandOutput
|
|
20
|
+
extends DescribeComponentConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeComponentConfigurationCommand extends $Command<
|
|
23
|
+
DescribeComponentConfigurationCommandInput,
|
|
24
|
+
DescribeComponentConfigurationCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeComponentConfigurationCommandInput;
|
|
28
|
+
constructor(input: DescribeComponentConfigurationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeComponentConfigurationCommandInput,
|
|
35
|
+
DescribeComponentConfigurationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
DescribeComponentConfigurationRecommendationRequest,
|
|
15
|
+
DescribeComponentConfigurationRecommendationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeComponentConfigurationRecommendationCommandInput
|
|
18
|
+
extends DescribeComponentConfigurationRecommendationRequest {}
|
|
19
|
+
export interface DescribeComponentConfigurationRecommendationCommandOutput
|
|
20
|
+
extends DescribeComponentConfigurationRecommendationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeComponentConfigurationRecommendationCommand extends $Command<
|
|
23
|
+
DescribeComponentConfigurationRecommendationCommandInput,
|
|
24
|
+
DescribeComponentConfigurationRecommendationCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeComponentConfigurationRecommendationCommandInput;
|
|
28
|
+
constructor(input: DescribeComponentConfigurationRecommendationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeComponentConfigurationRecommendationCommandInput,
|
|
35
|
+
DescribeComponentConfigurationRecommendationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
DescribeLogPatternRequest,
|
|
15
|
+
DescribeLogPatternResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLogPatternCommandInput
|
|
18
|
+
extends DescribeLogPatternRequest {}
|
|
19
|
+
export interface DescribeLogPatternCommandOutput
|
|
20
|
+
extends DescribeLogPatternResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeLogPatternCommand extends $Command<
|
|
23
|
+
DescribeLogPatternCommandInput,
|
|
24
|
+
DescribeLogPatternCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeLogPatternCommandInput;
|
|
28
|
+
constructor(input: DescribeLogPatternCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeLogPatternCommandInput, DescribeLogPatternCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
DescribeObservationRequest,
|
|
15
|
+
DescribeObservationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeObservationCommandInput
|
|
18
|
+
extends DescribeObservationRequest {}
|
|
19
|
+
export interface DescribeObservationCommandOutput
|
|
20
|
+
extends DescribeObservationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeObservationCommand extends $Command<
|
|
23
|
+
DescribeObservationCommandInput,
|
|
24
|
+
DescribeObservationCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeObservationCommandInput;
|
|
28
|
+
constructor(input: DescribeObservationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeObservationCommandInput, DescribeObservationCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
DescribeProblemRequest,
|
|
15
|
+
DescribeProblemResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeProblemCommandInput extends DescribeProblemRequest {}
|
|
18
|
+
export interface DescribeProblemCommandOutput
|
|
19
|
+
extends DescribeProblemResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeProblemCommand extends $Command<
|
|
22
|
+
DescribeProblemCommandInput,
|
|
23
|
+
DescribeProblemCommandOutput,
|
|
24
|
+
ApplicationInsightsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeProblemCommandInput;
|
|
27
|
+
constructor(input: DescribeProblemCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeProblemCommandInput, DescribeProblemCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
DescribeProblemObservationsRequest,
|
|
15
|
+
DescribeProblemObservationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeProblemObservationsCommandInput
|
|
18
|
+
extends DescribeProblemObservationsRequest {}
|
|
19
|
+
export interface DescribeProblemObservationsCommandOutput
|
|
20
|
+
extends DescribeProblemObservationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeProblemObservationsCommand extends $Command<
|
|
23
|
+
DescribeProblemObservationsCommandInput,
|
|
24
|
+
DescribeProblemObservationsCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeProblemObservationsCommandInput;
|
|
28
|
+
constructor(input: DescribeProblemObservationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeProblemObservationsCommandInput,
|
|
35
|
+
DescribeProblemObservationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
ListApplicationsRequest,
|
|
15
|
+
ListApplicationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
18
|
+
export interface ListApplicationsCommandOutput
|
|
19
|
+
extends ListApplicationsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListApplicationsCommand extends $Command<
|
|
22
|
+
ListApplicationsCommandInput,
|
|
23
|
+
ListApplicationsCommandOutput,
|
|
24
|
+
ApplicationInsightsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListApplicationsCommandInput;
|
|
27
|
+
constructor(input: ListApplicationsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
ListComponentsRequest,
|
|
15
|
+
ListComponentsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListComponentsCommandInput extends ListComponentsRequest {}
|
|
18
|
+
export interface ListComponentsCommandOutput
|
|
19
|
+
extends ListComponentsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListComponentsCommand extends $Command<
|
|
22
|
+
ListComponentsCommandInput,
|
|
23
|
+
ListComponentsCommandOutput,
|
|
24
|
+
ApplicationInsightsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListComponentsCommandInput;
|
|
27
|
+
constructor(input: ListComponentsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|