@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,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
|
+
ListConfigurationHistoryRequest,
|
|
15
|
+
ListConfigurationHistoryResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListConfigurationHistoryCommandInput
|
|
18
|
+
extends ListConfigurationHistoryRequest {}
|
|
19
|
+
export interface ListConfigurationHistoryCommandOutput
|
|
20
|
+
extends ListConfigurationHistoryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListConfigurationHistoryCommand extends $Command<
|
|
23
|
+
ListConfigurationHistoryCommandInput,
|
|
24
|
+
ListConfigurationHistoryCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListConfigurationHistoryCommandInput;
|
|
28
|
+
constructor(input: ListConfigurationHistoryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListConfigurationHistoryCommandInput,
|
|
35
|
+
ListConfigurationHistoryCommandOutput
|
|
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
|
+
ListLogPatternSetsRequest,
|
|
15
|
+
ListLogPatternSetsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListLogPatternSetsCommandInput
|
|
18
|
+
extends ListLogPatternSetsRequest {}
|
|
19
|
+
export interface ListLogPatternSetsCommandOutput
|
|
20
|
+
extends ListLogPatternSetsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListLogPatternSetsCommand extends $Command<
|
|
23
|
+
ListLogPatternSetsCommandInput,
|
|
24
|
+
ListLogPatternSetsCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListLogPatternSetsCommandInput;
|
|
28
|
+
constructor(input: ListLogPatternSetsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListLogPatternSetsCommandInput, ListLogPatternSetsCommandOutput>;
|
|
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
|
+
ListLogPatternsRequest,
|
|
15
|
+
ListLogPatternsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListLogPatternsCommandInput extends ListLogPatternsRequest {}
|
|
18
|
+
export interface ListLogPatternsCommandOutput
|
|
19
|
+
extends ListLogPatternsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListLogPatternsCommand extends $Command<
|
|
22
|
+
ListLogPatternsCommandInput,
|
|
23
|
+
ListLogPatternsCommandOutput,
|
|
24
|
+
ApplicationInsightsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListLogPatternsCommandInput;
|
|
27
|
+
constructor(input: ListLogPatternsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListLogPatternsCommandInput, ListLogPatternsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { ListProblemsRequest, ListProblemsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListProblemsCommandInput extends ListProblemsRequest {}
|
|
15
|
+
export interface ListProblemsCommandOutput
|
|
16
|
+
extends ListProblemsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListProblemsCommand extends $Command<
|
|
19
|
+
ListProblemsCommandInput,
|
|
20
|
+
ListProblemsCommandOutput,
|
|
21
|
+
ApplicationInsightsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListProblemsCommandInput;
|
|
24
|
+
constructor(input: ListProblemsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListProblemsCommandInput, ListProblemsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
ApplicationInsightsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
ApplicationInsightsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
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
|
+
UpdateApplicationRequest,
|
|
15
|
+
UpdateApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateApplicationCommandInput
|
|
18
|
+
extends UpdateApplicationRequest {}
|
|
19
|
+
export interface UpdateApplicationCommandOutput
|
|
20
|
+
extends UpdateApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateApplicationCommand extends $Command<
|
|
23
|
+
UpdateApplicationCommandInput,
|
|
24
|
+
UpdateApplicationCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateApplicationCommandInput;
|
|
28
|
+
constructor(input: UpdateApplicationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
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
|
+
UpdateComponentRequest,
|
|
15
|
+
UpdateComponentResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateComponentCommandInput extends UpdateComponentRequest {}
|
|
18
|
+
export interface UpdateComponentCommandOutput
|
|
19
|
+
extends UpdateComponentResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UpdateComponentCommand extends $Command<
|
|
22
|
+
UpdateComponentCommandInput,
|
|
23
|
+
UpdateComponentCommandOutput,
|
|
24
|
+
ApplicationInsightsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UpdateComponentCommandInput;
|
|
27
|
+
constructor(input: UpdateComponentCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateComponentCommandInput, UpdateComponentCommandOutput>;
|
|
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
|
+
UpdateComponentConfigurationRequest,
|
|
15
|
+
UpdateComponentConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateComponentConfigurationCommandInput
|
|
18
|
+
extends UpdateComponentConfigurationRequest {}
|
|
19
|
+
export interface UpdateComponentConfigurationCommandOutput
|
|
20
|
+
extends UpdateComponentConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateComponentConfigurationCommand extends $Command<
|
|
23
|
+
UpdateComponentConfigurationCommandInput,
|
|
24
|
+
UpdateComponentConfigurationCommandOutput,
|
|
25
|
+
ApplicationInsightsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateComponentConfigurationCommandInput;
|
|
28
|
+
constructor(input: UpdateComponentConfigurationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateComponentConfigurationCommandInput,
|
|
35
|
+
UpdateComponentConfigurationCommandOutput
|
|
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
|
+
UpdateLogPatternRequest,
|
|
15
|
+
UpdateLogPatternResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateLogPatternCommandInput extends UpdateLogPatternRequest {}
|
|
18
|
+
export interface UpdateLogPatternCommandOutput
|
|
19
|
+
extends UpdateLogPatternResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UpdateLogPatternCommand extends $Command<
|
|
22
|
+
UpdateLogPatternCommandInput,
|
|
23
|
+
UpdateLogPatternCommandOutput,
|
|
24
|
+
ApplicationInsightsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UpdateLogPatternCommandInput;
|
|
27
|
+
constructor(input: UpdateLogPatternCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationInsightsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|