@aws-sdk/client-application-insights 3.295.0 → 3.297.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/dist-types/ApplicationInsights.d.ts +28 -0
- package/dist-types/ApplicationInsightsClient.d.ts +24 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
- package/dist-types/commands/CreateLogPatternCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLogPatternCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeComponentCommand.d.ts +16 -0
- package/dist-types/commands/DescribeComponentConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLogPatternCommand.d.ts +16 -0
- package/dist-types/commands/DescribeObservationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeProblemCommand.d.ts +16 -0
- package/dist-types/commands/DescribeProblemObservationsCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigurationHistoryCommand.d.ts +16 -0
- package/dist-types/commands/ListLogPatternSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListLogPatternsCommand.d.ts +16 -0
- package/dist-types/commands/ListProblemsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateComponentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateComponentConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLogPatternCommand.d.ts +16 -0
- package/dist-types/models/ApplicationInsightsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +214 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConfigurationHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLogPatternSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLogPatternsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProblemsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -28,6 +28,7 @@ import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./com
|
|
|
28
28
|
import { UpdateComponentConfigurationCommandInput, UpdateComponentConfigurationCommandOutput } from "./commands/UpdateComponentConfigurationCommand";
|
|
29
29
|
import { UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput } from "./commands/UpdateLogPatternCommand";
|
|
30
30
|
/**
|
|
31
|
+
* @public
|
|
31
32
|
* <fullname>Amazon CloudWatch Application Insights</fullname>
|
|
32
33
|
* <p> Amazon CloudWatch Application Insights is a service that helps you detect common
|
|
33
34
|
* problems with your applications. It enables you to pinpoint the source of issues in your
|
|
@@ -43,24 +44,28 @@ import { UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput } from "./c
|
|
|
43
44
|
*/
|
|
44
45
|
export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
45
46
|
/**
|
|
47
|
+
* @public
|
|
46
48
|
* <p>Adds an application that is created from a resource group.</p>
|
|
47
49
|
*/
|
|
48
50
|
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
49
51
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
50
52
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
51
53
|
/**
|
|
54
|
+
* @public
|
|
52
55
|
* <p>Creates a custom component by grouping similar standalone instances to monitor.</p>
|
|
53
56
|
*/
|
|
54
57
|
createComponent(args: CreateComponentCommandInput, options?: __HttpHandlerOptions): Promise<CreateComponentCommandOutput>;
|
|
55
58
|
createComponent(args: CreateComponentCommandInput, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
|
|
56
59
|
createComponent(args: CreateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
|
|
57
60
|
/**
|
|
61
|
+
* @public
|
|
58
62
|
* <p>Adds an log pattern to a <code>LogPatternSet</code>.</p>
|
|
59
63
|
*/
|
|
60
64
|
createLogPattern(args: CreateLogPatternCommandInput, options?: __HttpHandlerOptions): Promise<CreateLogPatternCommandOutput>;
|
|
61
65
|
createLogPattern(args: CreateLogPatternCommandInput, cb: (err: any, data?: CreateLogPatternCommandOutput) => void): void;
|
|
62
66
|
createLogPattern(args: CreateLogPatternCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLogPatternCommandOutput) => void): void;
|
|
63
67
|
/**
|
|
68
|
+
* @public
|
|
64
69
|
* <p>Removes the specified application from monitoring. Does not delete the
|
|
65
70
|
* application.</p>
|
|
66
71
|
*/
|
|
@@ -68,6 +73,7 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
68
73
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
69
74
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
70
75
|
/**
|
|
76
|
+
* @public
|
|
71
77
|
* <p>Ungroups a custom component. When you ungroup custom components, all applicable monitors
|
|
72
78
|
* that are set up for the component are removed and the instances revert to their standalone
|
|
73
79
|
* status.</p>
|
|
@@ -76,18 +82,21 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
76
82
|
deleteComponent(args: DeleteComponentCommandInput, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
|
|
77
83
|
deleteComponent(args: DeleteComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
|
|
78
84
|
/**
|
|
85
|
+
* @public
|
|
79
86
|
* <p>Removes the specified log pattern from a <code>LogPatternSet</code>.</p>
|
|
80
87
|
*/
|
|
81
88
|
deleteLogPattern(args: DeleteLogPatternCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLogPatternCommandOutput>;
|
|
82
89
|
deleteLogPattern(args: DeleteLogPatternCommandInput, cb: (err: any, data?: DeleteLogPatternCommandOutput) => void): void;
|
|
83
90
|
deleteLogPattern(args: DeleteLogPatternCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLogPatternCommandOutput) => void): void;
|
|
84
91
|
/**
|
|
92
|
+
* @public
|
|
85
93
|
* <p>Describes the application.</p>
|
|
86
94
|
*/
|
|
87
95
|
describeApplication(args: DescribeApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeApplicationCommandOutput>;
|
|
88
96
|
describeApplication(args: DescribeApplicationCommandInput, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
89
97
|
describeApplication(args: DescribeApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
90
98
|
/**
|
|
99
|
+
* @public
|
|
91
100
|
* <p>Describes a component and lists the resources that are grouped together in a
|
|
92
101
|
* component.</p>
|
|
93
102
|
*/
|
|
@@ -95,54 +104,63 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
95
104
|
describeComponent(args: DescribeComponentCommandInput, cb: (err: any, data?: DescribeComponentCommandOutput) => void): void;
|
|
96
105
|
describeComponent(args: DescribeComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComponentCommandOutput) => void): void;
|
|
97
106
|
/**
|
|
107
|
+
* @public
|
|
98
108
|
* <p>Describes the monitoring configuration of the component.</p>
|
|
99
109
|
*/
|
|
100
110
|
describeComponentConfiguration(args: DescribeComponentConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeComponentConfigurationCommandOutput>;
|
|
101
111
|
describeComponentConfiguration(args: DescribeComponentConfigurationCommandInput, cb: (err: any, data?: DescribeComponentConfigurationCommandOutput) => void): void;
|
|
102
112
|
describeComponentConfiguration(args: DescribeComponentConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComponentConfigurationCommandOutput) => void): void;
|
|
103
113
|
/**
|
|
114
|
+
* @public
|
|
104
115
|
* <p>Describes the recommended monitoring configuration of the component.</p>
|
|
105
116
|
*/
|
|
106
117
|
describeComponentConfigurationRecommendation(args: DescribeComponentConfigurationRecommendationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeComponentConfigurationRecommendationCommandOutput>;
|
|
107
118
|
describeComponentConfigurationRecommendation(args: DescribeComponentConfigurationRecommendationCommandInput, cb: (err: any, data?: DescribeComponentConfigurationRecommendationCommandOutput) => void): void;
|
|
108
119
|
describeComponentConfigurationRecommendation(args: DescribeComponentConfigurationRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComponentConfigurationRecommendationCommandOutput) => void): void;
|
|
109
120
|
/**
|
|
121
|
+
* @public
|
|
110
122
|
* <p>Describe a specific log pattern from a <code>LogPatternSet</code>.</p>
|
|
111
123
|
*/
|
|
112
124
|
describeLogPattern(args: DescribeLogPatternCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLogPatternCommandOutput>;
|
|
113
125
|
describeLogPattern(args: DescribeLogPatternCommandInput, cb: (err: any, data?: DescribeLogPatternCommandOutput) => void): void;
|
|
114
126
|
describeLogPattern(args: DescribeLogPatternCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLogPatternCommandOutput) => void): void;
|
|
115
127
|
/**
|
|
128
|
+
* @public
|
|
116
129
|
* <p>Describes an anomaly or error with the application.</p>
|
|
117
130
|
*/
|
|
118
131
|
describeObservation(args: DescribeObservationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeObservationCommandOutput>;
|
|
119
132
|
describeObservation(args: DescribeObservationCommandInput, cb: (err: any, data?: DescribeObservationCommandOutput) => void): void;
|
|
120
133
|
describeObservation(args: DescribeObservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeObservationCommandOutput) => void): void;
|
|
121
134
|
/**
|
|
135
|
+
* @public
|
|
122
136
|
* <p>Describes an application problem.</p>
|
|
123
137
|
*/
|
|
124
138
|
describeProblem(args: DescribeProblemCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProblemCommandOutput>;
|
|
125
139
|
describeProblem(args: DescribeProblemCommandInput, cb: (err: any, data?: DescribeProblemCommandOutput) => void): void;
|
|
126
140
|
describeProblem(args: DescribeProblemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProblemCommandOutput) => void): void;
|
|
127
141
|
/**
|
|
142
|
+
* @public
|
|
128
143
|
* <p>Describes the anomalies or errors associated with the problem.</p>
|
|
129
144
|
*/
|
|
130
145
|
describeProblemObservations(args: DescribeProblemObservationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProblemObservationsCommandOutput>;
|
|
131
146
|
describeProblemObservations(args: DescribeProblemObservationsCommandInput, cb: (err: any, data?: DescribeProblemObservationsCommandOutput) => void): void;
|
|
132
147
|
describeProblemObservations(args: DescribeProblemObservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProblemObservationsCommandOutput) => void): void;
|
|
133
148
|
/**
|
|
149
|
+
* @public
|
|
134
150
|
* <p>Lists the IDs of the applications that you are monitoring. </p>
|
|
135
151
|
*/
|
|
136
152
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
137
153
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
138
154
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
139
155
|
/**
|
|
156
|
+
* @public
|
|
140
157
|
* <p>Lists the auto-grouped, standalone, and custom components of the application.</p>
|
|
141
158
|
*/
|
|
142
159
|
listComponents(args: ListComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentsCommandOutput>;
|
|
143
160
|
listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
144
161
|
listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
145
162
|
/**
|
|
163
|
+
* @public
|
|
146
164
|
* <p> Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by
|
|
147
165
|
* Application Insights. Examples of events represented are: </p>
|
|
148
166
|
* <ul>
|
|
@@ -162,24 +180,28 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
162
180
|
listConfigurationHistory(args: ListConfigurationHistoryCommandInput, cb: (err: any, data?: ListConfigurationHistoryCommandOutput) => void): void;
|
|
163
181
|
listConfigurationHistory(args: ListConfigurationHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationHistoryCommandOutput) => void): void;
|
|
164
182
|
/**
|
|
183
|
+
* @public
|
|
165
184
|
* <p>Lists the log patterns in the specific log <code>LogPatternSet</code>.</p>
|
|
166
185
|
*/
|
|
167
186
|
listLogPatterns(args: ListLogPatternsCommandInput, options?: __HttpHandlerOptions): Promise<ListLogPatternsCommandOutput>;
|
|
168
187
|
listLogPatterns(args: ListLogPatternsCommandInput, cb: (err: any, data?: ListLogPatternsCommandOutput) => void): void;
|
|
169
188
|
listLogPatterns(args: ListLogPatternsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLogPatternsCommandOutput) => void): void;
|
|
170
189
|
/**
|
|
190
|
+
* @public
|
|
171
191
|
* <p>Lists the log pattern sets in the specific application.</p>
|
|
172
192
|
*/
|
|
173
193
|
listLogPatternSets(args: ListLogPatternSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListLogPatternSetsCommandOutput>;
|
|
174
194
|
listLogPatternSets(args: ListLogPatternSetsCommandInput, cb: (err: any, data?: ListLogPatternSetsCommandOutput) => void): void;
|
|
175
195
|
listLogPatternSets(args: ListLogPatternSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLogPatternSetsCommandOutput) => void): void;
|
|
176
196
|
/**
|
|
197
|
+
* @public
|
|
177
198
|
* <p>Lists the problems with your application.</p>
|
|
178
199
|
*/
|
|
179
200
|
listProblems(args: ListProblemsCommandInput, options?: __HttpHandlerOptions): Promise<ListProblemsCommandOutput>;
|
|
180
201
|
listProblems(args: ListProblemsCommandInput, cb: (err: any, data?: ListProblemsCommandOutput) => void): void;
|
|
181
202
|
listProblems(args: ListProblemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProblemsCommandOutput) => void): void;
|
|
182
203
|
/**
|
|
204
|
+
* @public
|
|
183
205
|
* <p>Retrieve a list of the tags (keys and values) that are associated with a specified
|
|
184
206
|
* application. A <i>tag</i> is a label that you optionally define and associate
|
|
185
207
|
* with an application. Each tag consists of a required <i>tag key</i> and an
|
|
@@ -191,6 +213,7 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
191
213
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
192
214
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
193
215
|
/**
|
|
216
|
+
* @public
|
|
194
217
|
* <p>Add one or more tags (keys and values) to a specified application. A
|
|
195
218
|
* <i>tag</i> is a label that you optionally define and associate with an
|
|
196
219
|
* application. Tags can help you categorize and manage application in different ways, such as
|
|
@@ -204,18 +227,21 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
204
227
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
205
228
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
206
229
|
/**
|
|
230
|
+
* @public
|
|
207
231
|
* <p>Remove one or more tags (keys and values) from a specified application.</p>
|
|
208
232
|
*/
|
|
209
233
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
210
234
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
211
235
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
212
236
|
/**
|
|
237
|
+
* @public
|
|
213
238
|
* <p>Updates the application.</p>
|
|
214
239
|
*/
|
|
215
240
|
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
216
241
|
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
217
242
|
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
218
243
|
/**
|
|
244
|
+
* @public
|
|
219
245
|
* <p>Updates the custom component name and/or the list of resources that make up the
|
|
220
246
|
* component.</p>
|
|
221
247
|
*/
|
|
@@ -223,6 +249,7 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
223
249
|
updateComponent(args: UpdateComponentCommandInput, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
|
|
224
250
|
updateComponent(args: UpdateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
|
|
225
251
|
/**
|
|
252
|
+
* @public
|
|
226
253
|
* <p>Updates the monitoring configurations for the component. The configuration input
|
|
227
254
|
* parameter is an escaped JSON of the configuration and should match the schema of what is
|
|
228
255
|
* returned by <code>DescribeComponentConfigurationRecommendation</code>. </p>
|
|
@@ -231,6 +258,7 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
231
258
|
updateComponentConfiguration(args: UpdateComponentConfigurationCommandInput, cb: (err: any, data?: UpdateComponentConfigurationCommandOutput) => void): void;
|
|
232
259
|
updateComponentConfiguration(args: UpdateComponentConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentConfigurationCommandOutput) => void): void;
|
|
233
260
|
/**
|
|
261
|
+
* @public
|
|
234
262
|
* <p>Adds a log pattern to a <code>LogPatternSet</code>.</p>
|
|
235
263
|
*/
|
|
236
264
|
updateLogPattern(args: UpdateLogPatternCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLogPatternCommandOutput>;
|
|
@@ -35,15 +35,24 @@ import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./com
|
|
|
35
35
|
import { UpdateComponentConfigurationCommandInput, UpdateComponentConfigurationCommandOutput } from "./commands/UpdateComponentConfigurationCommand";
|
|
36
36
|
import { UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput } from "./commands/UpdateLogPatternCommand";
|
|
37
37
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
38
41
|
export type ServiceInputTypes = CreateApplicationCommandInput | CreateComponentCommandInput | CreateLogPatternCommandInput | DeleteApplicationCommandInput | DeleteComponentCommandInput | DeleteLogPatternCommandInput | DescribeApplicationCommandInput | DescribeComponentCommandInput | DescribeComponentConfigurationCommandInput | DescribeComponentConfigurationRecommendationCommandInput | DescribeLogPatternCommandInput | DescribeObservationCommandInput | DescribeProblemCommandInput | DescribeProblemObservationsCommandInput | ListApplicationsCommandInput | ListComponentsCommandInput | ListConfigurationHistoryCommandInput | ListLogPatternSetsCommandInput | ListLogPatternsCommandInput | ListProblemsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateComponentCommandInput | UpdateComponentConfigurationCommandInput | UpdateLogPatternCommandInput;
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
39
45
|
export type ServiceOutputTypes = CreateApplicationCommandOutput | CreateComponentCommandOutput | CreateLogPatternCommandOutput | DeleteApplicationCommandOutput | DeleteComponentCommandOutput | DeleteLogPatternCommandOutput | DescribeApplicationCommandOutput | DescribeComponentCommandOutput | DescribeComponentConfigurationCommandOutput | DescribeComponentConfigurationRecommendationCommandOutput | DescribeLogPatternCommandOutput | DescribeObservationCommandOutput | DescribeProblemCommandOutput | DescribeProblemObservationsCommandOutput | ListApplicationsCommandOutput | ListComponentsCommandOutput | ListConfigurationHistoryCommandOutput | ListLogPatternSetsCommandOutput | ListLogPatternsCommandOutput | ListProblemsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateComponentCommandOutput | UpdateComponentConfigurationCommandOutput | UpdateLogPatternCommandOutput;
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
40
49
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
41
50
|
/**
|
|
42
51
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
43
52
|
*/
|
|
44
53
|
requestHandler?: __HttpHandler;
|
|
45
54
|
/**
|
|
46
|
-
* A constructor for a class implementing the {@link
|
|
55
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
47
56
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
48
57
|
* @internal
|
|
49
58
|
*/
|
|
@@ -133,23 +142,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
133
142
|
*/
|
|
134
143
|
logger?: __Logger;
|
|
135
144
|
/**
|
|
136
|
-
* The {@link
|
|
145
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
137
146
|
*/
|
|
138
147
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
139
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
140
152
|
type ApplicationInsightsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
141
153
|
/**
|
|
142
|
-
*
|
|
154
|
+
* @public
|
|
155
|
+
*
|
|
156
|
+
* The configuration interface of ApplicationInsightsClient class constructor that set the region, credentials and other options.
|
|
143
157
|
*/
|
|
144
158
|
export interface ApplicationInsightsClientConfig extends ApplicationInsightsClientConfigType {
|
|
145
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
146
163
|
type ApplicationInsightsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
147
164
|
/**
|
|
148
|
-
*
|
|
165
|
+
* @public
|
|
166
|
+
*
|
|
167
|
+
* The resolved configuration interface of ApplicationInsightsClient class. This is resolved and normalized from the {@link ApplicationInsightsClientConfig | constructor configuration interface}.
|
|
149
168
|
*/
|
|
150
169
|
export interface ApplicationInsightsClientResolvedConfig extends ApplicationInsightsClientResolvedConfigType {
|
|
151
170
|
}
|
|
152
171
|
/**
|
|
172
|
+
* @public
|
|
153
173
|
* <fullname>Amazon CloudWatch Application Insights</fullname>
|
|
154
174
|
* <p> Amazon CloudWatch Application Insights is a service that helps you detect common
|
|
155
175
|
* problems with your applications. It enables you to pinpoint the source of issues in your
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
5
|
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateApplicationCommandInput extends CreateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds an application that is created from a resource group.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
34
|
+
* @returns {@link CreateApplicationCommandOutput}
|
|
28
35
|
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
52
59
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateApplicationCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateApplicationCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
5
|
import { CreateComponentRequest, CreateComponentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateComponentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateComponentCommandInput extends CreateComponentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateComponentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateComponentCommandOutput extends CreateComponentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a custom component by grouping similar standalone instances to monitor.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateComponentCommandInput - {@link CreateComponentCommandInput}
|
|
34
|
+
* @returns {@link CreateComponentCommandOutput}
|
|
28
35
|
* @see {@link CreateComponentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateComponentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
|
|
|
46
53
|
export declare class CreateComponentCommand extends $Command<CreateComponentCommandInput, CreateComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateComponentCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateComponentCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateComponentCommandInput, CreateComponentCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
5
|
import { CreateLogPatternRequest, CreateLogPatternResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateLogPatternCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateLogPatternCommandInput extends CreateLogPatternRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateLogPatternCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateLogPatternCommandOutput extends CreateLogPatternResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds an log pattern to a <code>LogPatternSet</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateLogPatternCommandOutput extends CreateLogPatternResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateLogPatternCommandInput - {@link CreateLogPatternCommandInput}
|
|
34
|
+
* @returns {@link CreateLogPatternCommandOutput}
|
|
28
35
|
* @see {@link CreateLogPatternCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateLogPatternCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateLogPatternCommandOutput extends CreateLogPatternResponse,
|
|
|
46
53
|
export declare class CreateLogPatternCommand extends $Command<CreateLogPatternCommandInput, CreateLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateLogPatternCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateLogPatternCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLogPatternCommandInput, CreateLogPatternCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
5
|
import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified application from monitoring. Does not delete the
|
|
18
23
|
* application.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
35
|
+
* @returns {@link DeleteApplicationCommandOutput}
|
|
29
36
|
* @see {@link DeleteApplicationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
47
54
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
48
55
|
readonly input: DeleteApplicationCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DeleteApplicationCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
5
|
import { DeleteComponentRequest, DeleteComponentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteComponentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteComponentCommandInput extends DeleteComponentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteComponentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteComponentCommandOutput extends DeleteComponentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Ungroups a custom component. When you ungroup custom components, all applicable monitors
|
|
18
23
|
* that are set up for the component are removed and the instances revert to their standalone
|
|
19
24
|
* status.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteComponentCommandInput - {@link DeleteComponentCommandInput}
|
|
36
|
+
* @returns {@link DeleteComponentCommandOutput}
|
|
30
37
|
* @see {@link DeleteComponentCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteComponentCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
|
|
|
45
52
|
export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
46
53
|
readonly input: DeleteComponentCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: DeleteComponentCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteComponentCommandInput, DeleteComponentCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
5
|
import { DeleteLogPatternRequest, DeleteLogPatternResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLogPatternCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLogPatternCommandInput extends DeleteLogPatternRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLogPatternCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLogPatternCommandOutput extends DeleteLogPatternResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified log pattern from a <code>LogPatternSet</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteLogPatternCommandOutput extends DeleteLogPatternResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteLogPatternCommandInput - {@link DeleteLogPatternCommandInput}
|
|
34
|
+
* @returns {@link DeleteLogPatternCommandOutput}
|
|
28
35
|
* @see {@link DeleteLogPatternCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteLogPatternCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteLogPatternCommandOutput extends DeleteLogPatternResponse,
|
|
|
46
53
|
export declare class DeleteLogPatternCommand extends $Command<DeleteLogPatternCommandInput, DeleteLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteLogPatternCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteLogPatternCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLogPatternCommandInput, DeleteLogPatternCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
5
|
import { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeApplicationCommandInput extends DescribeApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeApplicationCommandOutput extends DescribeApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeApplicationCommandInput - {@link DescribeApplicationCommandInput}
|
|
34
|
+
* @returns {@link DescribeApplicationCommandOutput}
|
|
28
35
|
* @see {@link DescribeApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
|
|
|
43
50
|
export declare class DescribeApplicationCommand extends $Command<DescribeApplicationCommandInput, DescribeApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeApplicationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeApplicationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeApplicationCommandInput, DescribeApplicationCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|