@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.
- package/CHANGELOG.md +8 -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,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ApplicationInsights } from "../ApplicationInsights";
|
|
3
|
-
import { ApplicationInsightsClient } from "../ApplicationInsightsClient";
|
|
4
|
-
export interface ApplicationInsightsPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ApplicationInsights } from "../ApplicationInsights";
|
|
3
|
+
import { ApplicationInsightsClient } from "../ApplicationInsightsClient";
|
|
4
|
+
export interface ApplicationInsightsPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ApplicationInsights | ApplicationInsightsClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListApplicationsCommandInput,
|
|
4
|
+
ListApplicationsCommandOutput,
|
|
5
|
+
} from "../commands/ListApplicationsCommand";
|
|
6
|
+
import { ApplicationInsightsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListApplications(
|
|
8
|
+
config: ApplicationInsightsPaginationConfiguration,
|
|
9
|
+
input: ListApplicationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListComponentsCommandInput,
|
|
4
|
+
ListComponentsCommandOutput,
|
|
5
|
+
} from "../commands/ListComponentsCommand";
|
|
6
|
+
import { ApplicationInsightsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListComponents(
|
|
8
|
+
config: ApplicationInsightsPaginationConfiguration,
|
|
9
|
+
input: ListComponentsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListComponentsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConfigurationHistoryCommandInput,
|
|
4
|
+
ListConfigurationHistoryCommandOutput,
|
|
5
|
+
} from "../commands/ListConfigurationHistoryCommand";
|
|
6
|
+
import { ApplicationInsightsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListConfigurationHistory(
|
|
8
|
+
config: ApplicationInsightsPaginationConfiguration,
|
|
9
|
+
input: ListConfigurationHistoryCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListConfigurationHistoryCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListLogPatternSetsCommandInput,
|
|
4
|
+
ListLogPatternSetsCommandOutput,
|
|
5
|
+
} from "../commands/ListLogPatternSetsCommand";
|
|
6
|
+
import { ApplicationInsightsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListLogPatternSets(
|
|
8
|
+
config: ApplicationInsightsPaginationConfiguration,
|
|
9
|
+
input: ListLogPatternSetsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListLogPatternSetsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListLogPatternsCommandInput,
|
|
4
|
+
ListLogPatternsCommandOutput,
|
|
5
|
+
} from "../commands/ListLogPatternsCommand";
|
|
6
|
+
import { ApplicationInsightsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListLogPatterns(
|
|
8
|
+
config: ApplicationInsightsPaginationConfiguration,
|
|
9
|
+
input: ListLogPatternsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListLogPatternsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListProblemsCommandInput,
|
|
4
|
+
ListProblemsCommandOutput,
|
|
5
|
+
} from "../commands/ListProblemsCommand";
|
|
6
|
+
import { ApplicationInsightsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListProblems(
|
|
8
|
+
config: ApplicationInsightsPaginationConfiguration,
|
|
9
|
+
input: ListProblemsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListProblemsCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListApplicationsPaginator";
|
|
3
|
-
export * from "./ListComponentsPaginator";
|
|
4
|
-
export * from "./ListConfigurationHistoryPaginator";
|
|
5
|
-
export * from "./ListLogPatternSetsPaginator";
|
|
6
|
-
export * from "./ListLogPatternsPaginator";
|
|
7
|
-
export * from "./ListProblemsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListApplicationsPaginator";
|
|
3
|
+
export * from "./ListComponentsPaginator";
|
|
4
|
+
export * from "./ListConfigurationHistoryPaginator";
|
|
5
|
+
export * from "./ListLogPatternSetsPaginator";
|
|
6
|
+
export * from "./ListLogPatternsPaginator";
|
|
7
|
+
export * from "./ListProblemsPaginator";
|
|
@@ -1,83 +1,329 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateApplicationCommandInput,
|
|
8
|
+
CreateApplicationCommandOutput,
|
|
9
|
+
} from "../commands/CreateApplicationCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateComponentCommandInput,
|
|
12
|
+
CreateComponentCommandOutput,
|
|
13
|
+
} from "../commands/CreateComponentCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateLogPatternCommandInput,
|
|
16
|
+
CreateLogPatternCommandOutput,
|
|
17
|
+
} from "../commands/CreateLogPatternCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteApplicationCommandInput,
|
|
20
|
+
DeleteApplicationCommandOutput,
|
|
21
|
+
} from "../commands/DeleteApplicationCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteComponentCommandInput,
|
|
24
|
+
DeleteComponentCommandOutput,
|
|
25
|
+
} from "../commands/DeleteComponentCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteLogPatternCommandInput,
|
|
28
|
+
DeleteLogPatternCommandOutput,
|
|
29
|
+
} from "../commands/DeleteLogPatternCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeApplicationCommandInput,
|
|
32
|
+
DescribeApplicationCommandOutput,
|
|
33
|
+
} from "../commands/DescribeApplicationCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeComponentCommandInput,
|
|
36
|
+
DescribeComponentCommandOutput,
|
|
37
|
+
} from "../commands/DescribeComponentCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeComponentConfigurationCommandInput,
|
|
40
|
+
DescribeComponentConfigurationCommandOutput,
|
|
41
|
+
} from "../commands/DescribeComponentConfigurationCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeComponentConfigurationRecommendationCommandInput,
|
|
44
|
+
DescribeComponentConfigurationRecommendationCommandOutput,
|
|
45
|
+
} from "../commands/DescribeComponentConfigurationRecommendationCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeLogPatternCommandInput,
|
|
48
|
+
DescribeLogPatternCommandOutput,
|
|
49
|
+
} from "../commands/DescribeLogPatternCommand";
|
|
50
|
+
import {
|
|
51
|
+
DescribeObservationCommandInput,
|
|
52
|
+
DescribeObservationCommandOutput,
|
|
53
|
+
} from "../commands/DescribeObservationCommand";
|
|
54
|
+
import {
|
|
55
|
+
DescribeProblemCommandInput,
|
|
56
|
+
DescribeProblemCommandOutput,
|
|
57
|
+
} from "../commands/DescribeProblemCommand";
|
|
58
|
+
import {
|
|
59
|
+
DescribeProblemObservationsCommandInput,
|
|
60
|
+
DescribeProblemObservationsCommandOutput,
|
|
61
|
+
} from "../commands/DescribeProblemObservationsCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListApplicationsCommandInput,
|
|
64
|
+
ListApplicationsCommandOutput,
|
|
65
|
+
} from "../commands/ListApplicationsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListComponentsCommandInput,
|
|
68
|
+
ListComponentsCommandOutput,
|
|
69
|
+
} from "../commands/ListComponentsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListConfigurationHistoryCommandInput,
|
|
72
|
+
ListConfigurationHistoryCommandOutput,
|
|
73
|
+
} from "../commands/ListConfigurationHistoryCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListLogPatternsCommandInput,
|
|
76
|
+
ListLogPatternsCommandOutput,
|
|
77
|
+
} from "../commands/ListLogPatternsCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListLogPatternSetsCommandInput,
|
|
80
|
+
ListLogPatternSetsCommandOutput,
|
|
81
|
+
} from "../commands/ListLogPatternSetsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListProblemsCommandInput,
|
|
84
|
+
ListProblemsCommandOutput,
|
|
85
|
+
} from "../commands/ListProblemsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListTagsForResourceCommandInput,
|
|
88
|
+
ListTagsForResourceCommandOutput,
|
|
89
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
TagResourceCommandInput,
|
|
92
|
+
TagResourceCommandOutput,
|
|
93
|
+
} from "../commands/TagResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
UntagResourceCommandInput,
|
|
96
|
+
UntagResourceCommandOutput,
|
|
97
|
+
} from "../commands/UntagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateApplicationCommandInput,
|
|
100
|
+
UpdateApplicationCommandOutput,
|
|
101
|
+
} from "../commands/UpdateApplicationCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateComponentCommandInput,
|
|
104
|
+
UpdateComponentCommandOutput,
|
|
105
|
+
} from "../commands/UpdateComponentCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateComponentConfigurationCommandInput,
|
|
108
|
+
UpdateComponentConfigurationCommandOutput,
|
|
109
|
+
} from "../commands/UpdateComponentConfigurationCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateLogPatternCommandInput,
|
|
112
|
+
UpdateLogPatternCommandOutput,
|
|
113
|
+
} from "../commands/UpdateLogPatternCommand";
|
|
114
|
+
export declare const serializeAws_json1_1CreateApplicationCommand: (
|
|
115
|
+
input: CreateApplicationCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1CreateComponentCommand: (
|
|
119
|
+
input: CreateComponentCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1CreateLogPatternCommand: (
|
|
123
|
+
input: CreateLogPatternCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_json1_1DeleteApplicationCommand: (
|
|
127
|
+
input: DeleteApplicationCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1DeleteComponentCommand: (
|
|
131
|
+
input: DeleteComponentCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_1DeleteLogPatternCommand: (
|
|
135
|
+
input: DeleteLogPatternCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_1DescribeApplicationCommand: (
|
|
139
|
+
input: DescribeApplicationCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_1DescribeComponentCommand: (
|
|
143
|
+
input: DescribeComponentCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_1DescribeComponentConfigurationCommand: (
|
|
147
|
+
input: DescribeComponentConfigurationCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_1DescribeComponentConfigurationRecommendationCommand: (
|
|
151
|
+
input: DescribeComponentConfigurationRecommendationCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_1DescribeLogPatternCommand: (
|
|
155
|
+
input: DescribeLogPatternCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_1DescribeObservationCommand: (
|
|
159
|
+
input: DescribeObservationCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_1DescribeProblemCommand: (
|
|
163
|
+
input: DescribeProblemCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_1DescribeProblemObservationsCommand: (
|
|
167
|
+
input: DescribeProblemObservationsCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_1ListApplicationsCommand: (
|
|
171
|
+
input: ListApplicationsCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_json1_1ListComponentsCommand: (
|
|
175
|
+
input: ListComponentsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_json1_1ListConfigurationHistoryCommand: (
|
|
179
|
+
input: ListConfigurationHistoryCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_json1_1ListLogPatternsCommand: (
|
|
183
|
+
input: ListLogPatternsCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_json1_1ListLogPatternSetsCommand: (
|
|
187
|
+
input: ListLogPatternSetsCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_json1_1ListProblemsCommand: (
|
|
191
|
+
input: ListProblemsCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_1ListTagsForResourceCommand: (
|
|
195
|
+
input: ListTagsForResourceCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_json1_1TagResourceCommand: (
|
|
199
|
+
input: TagResourceCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_json1_1UntagResourceCommand: (
|
|
203
|
+
input: UntagResourceCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_json1_1UpdateApplicationCommand: (
|
|
207
|
+
input: UpdateApplicationCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_json1_1UpdateComponentCommand: (
|
|
211
|
+
input: UpdateComponentCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_json1_1UpdateComponentConfigurationCommand: (
|
|
215
|
+
input: UpdateComponentConfigurationCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_json1_1UpdateLogPatternCommand: (
|
|
219
|
+
input: UpdateLogPatternCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const deserializeAws_json1_1CreateApplicationCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<CreateApplicationCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_json1_1CreateComponentCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<CreateComponentCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_json1_1CreateLogPatternCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<CreateLogPatternCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_json1_1DeleteApplicationCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<DeleteApplicationCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_json1_1DeleteComponentCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DeleteComponentCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_json1_1DeleteLogPatternCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<DeleteLogPatternCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_json1_1DescribeApplicationCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<DescribeApplicationCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_json1_1DescribeComponentCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<DescribeComponentCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_json1_1DescribeComponentConfigurationCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<DescribeComponentConfigurationCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_json1_1DescribeComponentConfigurationRecommendationCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<DescribeComponentConfigurationRecommendationCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_json1_1DescribeLogPatternCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<DescribeLogPatternCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_json1_1DescribeObservationCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<DescribeObservationCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_json1_1DescribeProblemCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<DescribeProblemCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_json1_1DescribeProblemObservationsCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<DescribeProblemObservationsCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_json1_1ListApplicationsCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<ListApplicationsCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_json1_1ListComponentsCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<ListComponentsCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_json1_1ListConfigurationHistoryCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<ListConfigurationHistoryCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_json1_1ListLogPatternsCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<ListLogPatternsCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_json1_1ListLogPatternSetsCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<ListLogPatternSetsCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_json1_1ListProblemsCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<ListProblemsCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_json1_1TagResourceCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<TagResourceCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_json1_1UntagResourceCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_json1_1UpdateApplicationCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<UpdateApplicationCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_json1_1UpdateComponentCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<UpdateComponentCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_json1_1UpdateComponentConfigurationCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<UpdateComponentConfigurationCommandOutput>;
|
|
326
|
+
export declare const deserializeAws_json1_1UpdateLogPatternCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<UpdateLogPatternCommandOutput>;
|