@aws-sdk/client-application-insights 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/ApplicationInsights.js +117 -110
- package/dist-es/ApplicationInsightsClient.js +28 -22
- package/dist-es/commands/CreateApplicationCommand.js +28 -21
- package/dist-es/commands/CreateComponentCommand.js +28 -21
- package/dist-es/commands/CreateLogPatternCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationCommand.js +28 -21
- package/dist-es/commands/DeleteComponentCommand.js +28 -21
- package/dist-es/commands/DeleteLogPatternCommand.js +28 -21
- package/dist-es/commands/DescribeApplicationCommand.js +28 -21
- package/dist-es/commands/DescribeComponentCommand.js +28 -21
- package/dist-es/commands/DescribeComponentConfigurationCommand.js +28 -21
- package/dist-es/commands/DescribeComponentConfigurationRecommendationCommand.js +28 -21
- package/dist-es/commands/DescribeLogPatternCommand.js +28 -21
- package/dist-es/commands/DescribeObservationCommand.js +28 -21
- package/dist-es/commands/DescribeProblemCommand.js +28 -21
- package/dist-es/commands/DescribeProblemObservationsCommand.js +28 -21
- package/dist-es/commands/ListApplicationsCommand.js +28 -21
- package/dist-es/commands/ListComponentsCommand.js +28 -21
- package/dist-es/commands/ListConfigurationHistoryCommand.js +28 -21
- package/dist-es/commands/ListLogPatternSetsCommand.js +28 -21
- package/dist-es/commands/ListLogPatternsCommand.js +28 -21
- package/dist-es/commands/ListProblemsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateApplicationCommand.js +28 -21
- package/dist-es/commands/UpdateComponentCommand.js +28 -21
- package/dist-es/commands/UpdateComponentConfigurationCommand.js +28 -21
- package/dist-es/commands/UpdateLogPatternCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ApplicationInsightsServiceException.js +10 -5
- package/dist-es/models/models_0.js +160 -283
- package/dist-es/pagination/ListApplicationsPaginator.js +68 -25
- package/dist-es/pagination/ListComponentsPaginator.js +68 -25
- package/dist-es/pagination/ListConfigurationHistoryPaginator.js +68 -25
- package/dist-es/pagination/ListLogPatternSetsPaginator.js +68 -25
- package/dist-es/pagination/ListLogPatternsPaginator.js +68 -25
- package/dist-es/pagination/ListProblemsPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +2210 -1705
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-application-insights
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @aws-sdk/client-application-insights
|
|
@@ -2114,10 +2114,10 @@ const deserializeAws_json1_1WorkloadMetaData = (output, context) => {
|
|
|
2114
2114
|
}, {});
|
|
2115
2115
|
};
|
|
2116
2116
|
const deserializeMetadata = (output) => {
|
|
2117
|
-
var _a;
|
|
2117
|
+
var _a, _b;
|
|
2118
2118
|
return ({
|
|
2119
2119
|
httpStatusCode: output.statusCode,
|
|
2120
|
-
requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
|
|
2120
|
+
requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
|
|
2121
2121
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
2122
2122
|
cfId: output.headers["x-amz-cf-id"],
|
|
2123
2123
|
});
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { ApplicationInsightsClient } from "./ApplicationInsightsClient";
|
|
2
3
|
import { CreateApplicationCommand, } from "./commands/CreateApplicationCommand";
|
|
3
4
|
import { CreateComponentCommand, } from "./commands/CreateComponentCommand";
|
|
@@ -26,383 +27,389 @@ import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
|
|
|
26
27
|
import { UpdateComponentCommand, } from "./commands/UpdateComponentCommand";
|
|
27
28
|
import { UpdateComponentConfigurationCommand, } from "./commands/UpdateComponentConfigurationCommand";
|
|
28
29
|
import { UpdateLogPatternCommand, } from "./commands/UpdateLogPatternCommand";
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
var ApplicationInsights = (function (_super) {
|
|
31
|
+
__extends(ApplicationInsights, _super);
|
|
32
|
+
function ApplicationInsights() {
|
|
33
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
34
|
+
}
|
|
35
|
+
ApplicationInsights.prototype.createApplication = function (args, optionsOrCb, cb) {
|
|
36
|
+
var command = new CreateApplicationCommand(args);
|
|
32
37
|
if (typeof optionsOrCb === "function") {
|
|
33
38
|
this.send(command, optionsOrCb);
|
|
34
39
|
}
|
|
35
40
|
else if (typeof cb === "function") {
|
|
36
41
|
if (typeof optionsOrCb !== "object")
|
|
37
|
-
throw new Error(
|
|
42
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
38
43
|
this.send(command, optionsOrCb || {}, cb);
|
|
39
44
|
}
|
|
40
45
|
else {
|
|
41
46
|
return this.send(command, optionsOrCb);
|
|
42
47
|
}
|
|
43
|
-
}
|
|
44
|
-
createComponent(args, optionsOrCb, cb) {
|
|
45
|
-
|
|
48
|
+
};
|
|
49
|
+
ApplicationInsights.prototype.createComponent = function (args, optionsOrCb, cb) {
|
|
50
|
+
var command = new CreateComponentCommand(args);
|
|
46
51
|
if (typeof optionsOrCb === "function") {
|
|
47
52
|
this.send(command, optionsOrCb);
|
|
48
53
|
}
|
|
49
54
|
else if (typeof cb === "function") {
|
|
50
55
|
if (typeof optionsOrCb !== "object")
|
|
51
|
-
throw new Error(
|
|
56
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
52
57
|
this.send(command, optionsOrCb || {}, cb);
|
|
53
58
|
}
|
|
54
59
|
else {
|
|
55
60
|
return this.send(command, optionsOrCb);
|
|
56
61
|
}
|
|
57
|
-
}
|
|
58
|
-
createLogPattern(args, optionsOrCb, cb) {
|
|
59
|
-
|
|
62
|
+
};
|
|
63
|
+
ApplicationInsights.prototype.createLogPattern = function (args, optionsOrCb, cb) {
|
|
64
|
+
var command = new CreateLogPatternCommand(args);
|
|
60
65
|
if (typeof optionsOrCb === "function") {
|
|
61
66
|
this.send(command, optionsOrCb);
|
|
62
67
|
}
|
|
63
68
|
else if (typeof cb === "function") {
|
|
64
69
|
if (typeof optionsOrCb !== "object")
|
|
65
|
-
throw new Error(
|
|
70
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
66
71
|
this.send(command, optionsOrCb || {}, cb);
|
|
67
72
|
}
|
|
68
73
|
else {
|
|
69
74
|
return this.send(command, optionsOrCb);
|
|
70
75
|
}
|
|
71
|
-
}
|
|
72
|
-
deleteApplication(args, optionsOrCb, cb) {
|
|
73
|
-
|
|
76
|
+
};
|
|
77
|
+
ApplicationInsights.prototype.deleteApplication = function (args, optionsOrCb, cb) {
|
|
78
|
+
var command = new DeleteApplicationCommand(args);
|
|
74
79
|
if (typeof optionsOrCb === "function") {
|
|
75
80
|
this.send(command, optionsOrCb);
|
|
76
81
|
}
|
|
77
82
|
else if (typeof cb === "function") {
|
|
78
83
|
if (typeof optionsOrCb !== "object")
|
|
79
|
-
throw new Error(
|
|
84
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
80
85
|
this.send(command, optionsOrCb || {}, cb);
|
|
81
86
|
}
|
|
82
87
|
else {
|
|
83
88
|
return this.send(command, optionsOrCb);
|
|
84
89
|
}
|
|
85
|
-
}
|
|
86
|
-
deleteComponent(args, optionsOrCb, cb) {
|
|
87
|
-
|
|
90
|
+
};
|
|
91
|
+
ApplicationInsights.prototype.deleteComponent = function (args, optionsOrCb, cb) {
|
|
92
|
+
var command = new DeleteComponentCommand(args);
|
|
88
93
|
if (typeof optionsOrCb === "function") {
|
|
89
94
|
this.send(command, optionsOrCb);
|
|
90
95
|
}
|
|
91
96
|
else if (typeof cb === "function") {
|
|
92
97
|
if (typeof optionsOrCb !== "object")
|
|
93
|
-
throw new Error(
|
|
98
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
94
99
|
this.send(command, optionsOrCb || {}, cb);
|
|
95
100
|
}
|
|
96
101
|
else {
|
|
97
102
|
return this.send(command, optionsOrCb);
|
|
98
103
|
}
|
|
99
|
-
}
|
|
100
|
-
deleteLogPattern(args, optionsOrCb, cb) {
|
|
101
|
-
|
|
104
|
+
};
|
|
105
|
+
ApplicationInsights.prototype.deleteLogPattern = function (args, optionsOrCb, cb) {
|
|
106
|
+
var command = new DeleteLogPatternCommand(args);
|
|
102
107
|
if (typeof optionsOrCb === "function") {
|
|
103
108
|
this.send(command, optionsOrCb);
|
|
104
109
|
}
|
|
105
110
|
else if (typeof cb === "function") {
|
|
106
111
|
if (typeof optionsOrCb !== "object")
|
|
107
|
-
throw new Error(
|
|
112
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
108
113
|
this.send(command, optionsOrCb || {}, cb);
|
|
109
114
|
}
|
|
110
115
|
else {
|
|
111
116
|
return this.send(command, optionsOrCb);
|
|
112
117
|
}
|
|
113
|
-
}
|
|
114
|
-
describeApplication(args, optionsOrCb, cb) {
|
|
115
|
-
|
|
118
|
+
};
|
|
119
|
+
ApplicationInsights.prototype.describeApplication = function (args, optionsOrCb, cb) {
|
|
120
|
+
var command = new DescribeApplicationCommand(args);
|
|
116
121
|
if (typeof optionsOrCb === "function") {
|
|
117
122
|
this.send(command, optionsOrCb);
|
|
118
123
|
}
|
|
119
124
|
else if (typeof cb === "function") {
|
|
120
125
|
if (typeof optionsOrCb !== "object")
|
|
121
|
-
throw new Error(
|
|
126
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
122
127
|
this.send(command, optionsOrCb || {}, cb);
|
|
123
128
|
}
|
|
124
129
|
else {
|
|
125
130
|
return this.send(command, optionsOrCb);
|
|
126
131
|
}
|
|
127
|
-
}
|
|
128
|
-
describeComponent(args, optionsOrCb, cb) {
|
|
129
|
-
|
|
132
|
+
};
|
|
133
|
+
ApplicationInsights.prototype.describeComponent = function (args, optionsOrCb, cb) {
|
|
134
|
+
var command = new DescribeComponentCommand(args);
|
|
130
135
|
if (typeof optionsOrCb === "function") {
|
|
131
136
|
this.send(command, optionsOrCb);
|
|
132
137
|
}
|
|
133
138
|
else if (typeof cb === "function") {
|
|
134
139
|
if (typeof optionsOrCb !== "object")
|
|
135
|
-
throw new Error(
|
|
140
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
136
141
|
this.send(command, optionsOrCb || {}, cb);
|
|
137
142
|
}
|
|
138
143
|
else {
|
|
139
144
|
return this.send(command, optionsOrCb);
|
|
140
145
|
}
|
|
141
|
-
}
|
|
142
|
-
describeComponentConfiguration(args, optionsOrCb, cb) {
|
|
143
|
-
|
|
146
|
+
};
|
|
147
|
+
ApplicationInsights.prototype.describeComponentConfiguration = function (args, optionsOrCb, cb) {
|
|
148
|
+
var command = new DescribeComponentConfigurationCommand(args);
|
|
144
149
|
if (typeof optionsOrCb === "function") {
|
|
145
150
|
this.send(command, optionsOrCb);
|
|
146
151
|
}
|
|
147
152
|
else if (typeof cb === "function") {
|
|
148
153
|
if (typeof optionsOrCb !== "object")
|
|
149
|
-
throw new Error(
|
|
154
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
150
155
|
this.send(command, optionsOrCb || {}, cb);
|
|
151
156
|
}
|
|
152
157
|
else {
|
|
153
158
|
return this.send(command, optionsOrCb);
|
|
154
159
|
}
|
|
155
|
-
}
|
|
156
|
-
describeComponentConfigurationRecommendation(args, optionsOrCb, cb) {
|
|
157
|
-
|
|
160
|
+
};
|
|
161
|
+
ApplicationInsights.prototype.describeComponentConfigurationRecommendation = function (args, optionsOrCb, cb) {
|
|
162
|
+
var command = new DescribeComponentConfigurationRecommendationCommand(args);
|
|
158
163
|
if (typeof optionsOrCb === "function") {
|
|
159
164
|
this.send(command, optionsOrCb);
|
|
160
165
|
}
|
|
161
166
|
else if (typeof cb === "function") {
|
|
162
167
|
if (typeof optionsOrCb !== "object")
|
|
163
|
-
throw new Error(
|
|
168
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
164
169
|
this.send(command, optionsOrCb || {}, cb);
|
|
165
170
|
}
|
|
166
171
|
else {
|
|
167
172
|
return this.send(command, optionsOrCb);
|
|
168
173
|
}
|
|
169
|
-
}
|
|
170
|
-
describeLogPattern(args, optionsOrCb, cb) {
|
|
171
|
-
|
|
174
|
+
};
|
|
175
|
+
ApplicationInsights.prototype.describeLogPattern = function (args, optionsOrCb, cb) {
|
|
176
|
+
var command = new DescribeLogPatternCommand(args);
|
|
172
177
|
if (typeof optionsOrCb === "function") {
|
|
173
178
|
this.send(command, optionsOrCb);
|
|
174
179
|
}
|
|
175
180
|
else if (typeof cb === "function") {
|
|
176
181
|
if (typeof optionsOrCb !== "object")
|
|
177
|
-
throw new Error(
|
|
182
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
178
183
|
this.send(command, optionsOrCb || {}, cb);
|
|
179
184
|
}
|
|
180
185
|
else {
|
|
181
186
|
return this.send(command, optionsOrCb);
|
|
182
187
|
}
|
|
183
|
-
}
|
|
184
|
-
describeObservation(args, optionsOrCb, cb) {
|
|
185
|
-
|
|
188
|
+
};
|
|
189
|
+
ApplicationInsights.prototype.describeObservation = function (args, optionsOrCb, cb) {
|
|
190
|
+
var command = new DescribeObservationCommand(args);
|
|
186
191
|
if (typeof optionsOrCb === "function") {
|
|
187
192
|
this.send(command, optionsOrCb);
|
|
188
193
|
}
|
|
189
194
|
else if (typeof cb === "function") {
|
|
190
195
|
if (typeof optionsOrCb !== "object")
|
|
191
|
-
throw new Error(
|
|
196
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
192
197
|
this.send(command, optionsOrCb || {}, cb);
|
|
193
198
|
}
|
|
194
199
|
else {
|
|
195
200
|
return this.send(command, optionsOrCb);
|
|
196
201
|
}
|
|
197
|
-
}
|
|
198
|
-
describeProblem(args, optionsOrCb, cb) {
|
|
199
|
-
|
|
202
|
+
};
|
|
203
|
+
ApplicationInsights.prototype.describeProblem = function (args, optionsOrCb, cb) {
|
|
204
|
+
var command = new DescribeProblemCommand(args);
|
|
200
205
|
if (typeof optionsOrCb === "function") {
|
|
201
206
|
this.send(command, optionsOrCb);
|
|
202
207
|
}
|
|
203
208
|
else if (typeof cb === "function") {
|
|
204
209
|
if (typeof optionsOrCb !== "object")
|
|
205
|
-
throw new Error(
|
|
210
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
206
211
|
this.send(command, optionsOrCb || {}, cb);
|
|
207
212
|
}
|
|
208
213
|
else {
|
|
209
214
|
return this.send(command, optionsOrCb);
|
|
210
215
|
}
|
|
211
|
-
}
|
|
212
|
-
describeProblemObservations(args, optionsOrCb, cb) {
|
|
213
|
-
|
|
216
|
+
};
|
|
217
|
+
ApplicationInsights.prototype.describeProblemObservations = function (args, optionsOrCb, cb) {
|
|
218
|
+
var command = new DescribeProblemObservationsCommand(args);
|
|
214
219
|
if (typeof optionsOrCb === "function") {
|
|
215
220
|
this.send(command, optionsOrCb);
|
|
216
221
|
}
|
|
217
222
|
else if (typeof cb === "function") {
|
|
218
223
|
if (typeof optionsOrCb !== "object")
|
|
219
|
-
throw new Error(
|
|
224
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
220
225
|
this.send(command, optionsOrCb || {}, cb);
|
|
221
226
|
}
|
|
222
227
|
else {
|
|
223
228
|
return this.send(command, optionsOrCb);
|
|
224
229
|
}
|
|
225
|
-
}
|
|
226
|
-
listApplications(args, optionsOrCb, cb) {
|
|
227
|
-
|
|
230
|
+
};
|
|
231
|
+
ApplicationInsights.prototype.listApplications = function (args, optionsOrCb, cb) {
|
|
232
|
+
var command = new ListApplicationsCommand(args);
|
|
228
233
|
if (typeof optionsOrCb === "function") {
|
|
229
234
|
this.send(command, optionsOrCb);
|
|
230
235
|
}
|
|
231
236
|
else if (typeof cb === "function") {
|
|
232
237
|
if (typeof optionsOrCb !== "object")
|
|
233
|
-
throw new Error(
|
|
238
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
234
239
|
this.send(command, optionsOrCb || {}, cb);
|
|
235
240
|
}
|
|
236
241
|
else {
|
|
237
242
|
return this.send(command, optionsOrCb);
|
|
238
243
|
}
|
|
239
|
-
}
|
|
240
|
-
listComponents(args, optionsOrCb, cb) {
|
|
241
|
-
|
|
244
|
+
};
|
|
245
|
+
ApplicationInsights.prototype.listComponents = function (args, optionsOrCb, cb) {
|
|
246
|
+
var command = new ListComponentsCommand(args);
|
|
242
247
|
if (typeof optionsOrCb === "function") {
|
|
243
248
|
this.send(command, optionsOrCb);
|
|
244
249
|
}
|
|
245
250
|
else if (typeof cb === "function") {
|
|
246
251
|
if (typeof optionsOrCb !== "object")
|
|
247
|
-
throw new Error(
|
|
252
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
248
253
|
this.send(command, optionsOrCb || {}, cb);
|
|
249
254
|
}
|
|
250
255
|
else {
|
|
251
256
|
return this.send(command, optionsOrCb);
|
|
252
257
|
}
|
|
253
|
-
}
|
|
254
|
-
listConfigurationHistory(args, optionsOrCb, cb) {
|
|
255
|
-
|
|
258
|
+
};
|
|
259
|
+
ApplicationInsights.prototype.listConfigurationHistory = function (args, optionsOrCb, cb) {
|
|
260
|
+
var command = new ListConfigurationHistoryCommand(args);
|
|
256
261
|
if (typeof optionsOrCb === "function") {
|
|
257
262
|
this.send(command, optionsOrCb);
|
|
258
263
|
}
|
|
259
264
|
else if (typeof cb === "function") {
|
|
260
265
|
if (typeof optionsOrCb !== "object")
|
|
261
|
-
throw new Error(
|
|
266
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
262
267
|
this.send(command, optionsOrCb || {}, cb);
|
|
263
268
|
}
|
|
264
269
|
else {
|
|
265
270
|
return this.send(command, optionsOrCb);
|
|
266
271
|
}
|
|
267
|
-
}
|
|
268
|
-
listLogPatterns(args, optionsOrCb, cb) {
|
|
269
|
-
|
|
272
|
+
};
|
|
273
|
+
ApplicationInsights.prototype.listLogPatterns = function (args, optionsOrCb, cb) {
|
|
274
|
+
var command = new ListLogPatternsCommand(args);
|
|
270
275
|
if (typeof optionsOrCb === "function") {
|
|
271
276
|
this.send(command, optionsOrCb);
|
|
272
277
|
}
|
|
273
278
|
else if (typeof cb === "function") {
|
|
274
279
|
if (typeof optionsOrCb !== "object")
|
|
275
|
-
throw new Error(
|
|
280
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
276
281
|
this.send(command, optionsOrCb || {}, cb);
|
|
277
282
|
}
|
|
278
283
|
else {
|
|
279
284
|
return this.send(command, optionsOrCb);
|
|
280
285
|
}
|
|
281
|
-
}
|
|
282
|
-
listLogPatternSets(args, optionsOrCb, cb) {
|
|
283
|
-
|
|
286
|
+
};
|
|
287
|
+
ApplicationInsights.prototype.listLogPatternSets = function (args, optionsOrCb, cb) {
|
|
288
|
+
var command = new ListLogPatternSetsCommand(args);
|
|
284
289
|
if (typeof optionsOrCb === "function") {
|
|
285
290
|
this.send(command, optionsOrCb);
|
|
286
291
|
}
|
|
287
292
|
else if (typeof cb === "function") {
|
|
288
293
|
if (typeof optionsOrCb !== "object")
|
|
289
|
-
throw new Error(
|
|
294
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
290
295
|
this.send(command, optionsOrCb || {}, cb);
|
|
291
296
|
}
|
|
292
297
|
else {
|
|
293
298
|
return this.send(command, optionsOrCb);
|
|
294
299
|
}
|
|
295
|
-
}
|
|
296
|
-
listProblems(args, optionsOrCb, cb) {
|
|
297
|
-
|
|
300
|
+
};
|
|
301
|
+
ApplicationInsights.prototype.listProblems = function (args, optionsOrCb, cb) {
|
|
302
|
+
var command = new ListProblemsCommand(args);
|
|
298
303
|
if (typeof optionsOrCb === "function") {
|
|
299
304
|
this.send(command, optionsOrCb);
|
|
300
305
|
}
|
|
301
306
|
else if (typeof cb === "function") {
|
|
302
307
|
if (typeof optionsOrCb !== "object")
|
|
303
|
-
throw new Error(
|
|
308
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
304
309
|
this.send(command, optionsOrCb || {}, cb);
|
|
305
310
|
}
|
|
306
311
|
else {
|
|
307
312
|
return this.send(command, optionsOrCb);
|
|
308
313
|
}
|
|
309
|
-
}
|
|
310
|
-
listTagsForResource(args, optionsOrCb, cb) {
|
|
311
|
-
|
|
314
|
+
};
|
|
315
|
+
ApplicationInsights.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
|
|
316
|
+
var command = new ListTagsForResourceCommand(args);
|
|
312
317
|
if (typeof optionsOrCb === "function") {
|
|
313
318
|
this.send(command, optionsOrCb);
|
|
314
319
|
}
|
|
315
320
|
else if (typeof cb === "function") {
|
|
316
321
|
if (typeof optionsOrCb !== "object")
|
|
317
|
-
throw new Error(
|
|
322
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
318
323
|
this.send(command, optionsOrCb || {}, cb);
|
|
319
324
|
}
|
|
320
325
|
else {
|
|
321
326
|
return this.send(command, optionsOrCb);
|
|
322
327
|
}
|
|
323
|
-
}
|
|
324
|
-
tagResource(args, optionsOrCb, cb) {
|
|
325
|
-
|
|
328
|
+
};
|
|
329
|
+
ApplicationInsights.prototype.tagResource = function (args, optionsOrCb, cb) {
|
|
330
|
+
var command = new TagResourceCommand(args);
|
|
326
331
|
if (typeof optionsOrCb === "function") {
|
|
327
332
|
this.send(command, optionsOrCb);
|
|
328
333
|
}
|
|
329
334
|
else if (typeof cb === "function") {
|
|
330
335
|
if (typeof optionsOrCb !== "object")
|
|
331
|
-
throw new Error(
|
|
336
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
332
337
|
this.send(command, optionsOrCb || {}, cb);
|
|
333
338
|
}
|
|
334
339
|
else {
|
|
335
340
|
return this.send(command, optionsOrCb);
|
|
336
341
|
}
|
|
337
|
-
}
|
|
338
|
-
untagResource(args, optionsOrCb, cb) {
|
|
339
|
-
|
|
342
|
+
};
|
|
343
|
+
ApplicationInsights.prototype.untagResource = function (args, optionsOrCb, cb) {
|
|
344
|
+
var command = new UntagResourceCommand(args);
|
|
340
345
|
if (typeof optionsOrCb === "function") {
|
|
341
346
|
this.send(command, optionsOrCb);
|
|
342
347
|
}
|
|
343
348
|
else if (typeof cb === "function") {
|
|
344
349
|
if (typeof optionsOrCb !== "object")
|
|
345
|
-
throw new Error(
|
|
350
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
346
351
|
this.send(command, optionsOrCb || {}, cb);
|
|
347
352
|
}
|
|
348
353
|
else {
|
|
349
354
|
return this.send(command, optionsOrCb);
|
|
350
355
|
}
|
|
351
|
-
}
|
|
352
|
-
updateApplication(args, optionsOrCb, cb) {
|
|
353
|
-
|
|
356
|
+
};
|
|
357
|
+
ApplicationInsights.prototype.updateApplication = function (args, optionsOrCb, cb) {
|
|
358
|
+
var command = new UpdateApplicationCommand(args);
|
|
354
359
|
if (typeof optionsOrCb === "function") {
|
|
355
360
|
this.send(command, optionsOrCb);
|
|
356
361
|
}
|
|
357
362
|
else if (typeof cb === "function") {
|
|
358
363
|
if (typeof optionsOrCb !== "object")
|
|
359
|
-
throw new Error(
|
|
364
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
360
365
|
this.send(command, optionsOrCb || {}, cb);
|
|
361
366
|
}
|
|
362
367
|
else {
|
|
363
368
|
return this.send(command, optionsOrCb);
|
|
364
369
|
}
|
|
365
|
-
}
|
|
366
|
-
updateComponent(args, optionsOrCb, cb) {
|
|
367
|
-
|
|
370
|
+
};
|
|
371
|
+
ApplicationInsights.prototype.updateComponent = function (args, optionsOrCb, cb) {
|
|
372
|
+
var command = new UpdateComponentCommand(args);
|
|
368
373
|
if (typeof optionsOrCb === "function") {
|
|
369
374
|
this.send(command, optionsOrCb);
|
|
370
375
|
}
|
|
371
376
|
else if (typeof cb === "function") {
|
|
372
377
|
if (typeof optionsOrCb !== "object")
|
|
373
|
-
throw new Error(
|
|
378
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
374
379
|
this.send(command, optionsOrCb || {}, cb);
|
|
375
380
|
}
|
|
376
381
|
else {
|
|
377
382
|
return this.send(command, optionsOrCb);
|
|
378
383
|
}
|
|
379
|
-
}
|
|
380
|
-
updateComponentConfiguration(args, optionsOrCb, cb) {
|
|
381
|
-
|
|
384
|
+
};
|
|
385
|
+
ApplicationInsights.prototype.updateComponentConfiguration = function (args, optionsOrCb, cb) {
|
|
386
|
+
var command = new UpdateComponentConfigurationCommand(args);
|
|
382
387
|
if (typeof optionsOrCb === "function") {
|
|
383
388
|
this.send(command, optionsOrCb);
|
|
384
389
|
}
|
|
385
390
|
else if (typeof cb === "function") {
|
|
386
391
|
if (typeof optionsOrCb !== "object")
|
|
387
|
-
throw new Error(
|
|
392
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
388
393
|
this.send(command, optionsOrCb || {}, cb);
|
|
389
394
|
}
|
|
390
395
|
else {
|
|
391
396
|
return this.send(command, optionsOrCb);
|
|
392
397
|
}
|
|
393
|
-
}
|
|
394
|
-
updateLogPattern(args, optionsOrCb, cb) {
|
|
395
|
-
|
|
398
|
+
};
|
|
399
|
+
ApplicationInsights.prototype.updateLogPattern = function (args, optionsOrCb, cb) {
|
|
400
|
+
var command = new UpdateLogPatternCommand(args);
|
|
396
401
|
if (typeof optionsOrCb === "function") {
|
|
397
402
|
this.send(command, optionsOrCb);
|
|
398
403
|
}
|
|
399
404
|
else if (typeof cb === "function") {
|
|
400
405
|
if (typeof optionsOrCb !== "object")
|
|
401
|
-
throw new Error(
|
|
406
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
402
407
|
this.send(command, optionsOrCb || {}, cb);
|
|
403
408
|
}
|
|
404
409
|
else {
|
|
405
410
|
return this.send(command, optionsOrCb);
|
|
406
411
|
}
|
|
407
|
-
}
|
|
408
|
-
|
|
412
|
+
};
|
|
413
|
+
return ApplicationInsights;
|
|
414
|
+
}(ApplicationInsightsClient));
|
|
415
|
+
export { ApplicationInsights };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
|
|
2
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
3
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
|
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
9
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
10
11
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
12
|
+
var ApplicationInsightsClient = (function (_super) {
|
|
13
|
+
__extends(ApplicationInsightsClient, _super);
|
|
14
|
+
function ApplicationInsightsClient(configuration) {
|
|
15
|
+
var _this = this;
|
|
16
|
+
var _config_0 = __getRuntimeConfig(configuration);
|
|
17
|
+
var _config_1 = resolveRegionConfig(_config_0);
|
|
18
|
+
var _config_2 = resolveEndpointsConfig(_config_1);
|
|
19
|
+
var _config_3 = resolveRetryConfig(_config_2);
|
|
20
|
+
var _config_4 = resolveHostHeaderConfig(_config_3);
|
|
21
|
+
var _config_5 = resolveAwsAuthConfig(_config_4);
|
|
22
|
+
var _config_6 = resolveUserAgentConfig(_config_5);
|
|
23
|
+
_this = _super.call(this, _config_6) || this;
|
|
24
|
+
_this.config = _config_6;
|
|
25
|
+
_this.middlewareStack.use(getRetryPlugin(_this.config));
|
|
26
|
+
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
27
|
+
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
28
|
+
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
30
|
+
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
|
+
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
|
+
return _this;
|
|
29
33
|
}
|
|
30
|
-
destroy() {
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
+
ApplicationInsightsClient.prototype.destroy = function () {
|
|
35
|
+
_super.prototype.destroy.call(this);
|
|
36
|
+
};
|
|
37
|
+
return ApplicationInsightsClient;
|
|
38
|
+
}(__Client));
|
|
39
|
+
export { ApplicationInsightsClient };
|