@aws-sdk/client-application-insights 3.948.0 → 3.953.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-cjs/index.js +396 -264
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AddWorkloadCommand.js +2 -2
- package/dist-es/commands/CreateApplicationCommand.js +2 -2
- package/dist-es/commands/CreateComponentCommand.js +2 -2
- package/dist-es/commands/CreateLogPatternCommand.js +2 -2
- package/dist-es/commands/DeleteApplicationCommand.js +2 -2
- package/dist-es/commands/DeleteComponentCommand.js +2 -2
- package/dist-es/commands/DeleteLogPatternCommand.js +2 -2
- package/dist-es/commands/DescribeApplicationCommand.js +2 -2
- package/dist-es/commands/DescribeComponentCommand.js +2 -2
- package/dist-es/commands/DescribeComponentConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeComponentConfigurationRecommendationCommand.js +2 -2
- package/dist-es/commands/DescribeLogPatternCommand.js +2 -2
- package/dist-es/commands/DescribeObservationCommand.js +2 -2
- package/dist-es/commands/DescribeProblemCommand.js +2 -2
- package/dist-es/commands/DescribeProblemObservationsCommand.js +2 -2
- package/dist-es/commands/DescribeWorkloadCommand.js +2 -2
- package/dist-es/commands/ListApplicationsCommand.js +2 -2
- package/dist-es/commands/ListComponentsCommand.js +2 -2
- package/dist-es/commands/ListConfigurationHistoryCommand.js +2 -2
- package/dist-es/commands/ListLogPatternSetsCommand.js +2 -2
- package/dist-es/commands/ListLogPatternsCommand.js +2 -2
- package/dist-es/commands/ListProblemsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListWorkloadsCommand.js +2 -2
- package/dist-es/commands/RemoveWorkloadCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationCommand.js +2 -2
- package/dist-es/commands/UpdateComponentCommand.js +2 -2
- package/dist-es/commands/UpdateComponentConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateLogPatternCommand.js +2 -2
- package/dist-es/commands/UpdateProblemCommand.js +2 -2
- package/dist-es/commands/UpdateWorkloadCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +226 -212
- package/dist-types/ApplicationInsightsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +119 -133
- package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -134
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.applicationinsights",
|
|
32
|
+
version: "2018-11-25",
|
|
33
|
+
serviceTarget: "EC2WindowsBarleyService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Application Insights",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddWorkload } from "../schemas/schemas_0";
|
|
4
|
+
import { AddWorkload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddWorkloadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddWorkloadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "AddWorkload", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "AddWorkloadCommand")
|
|
14
|
-
.sc(AddWorkload)
|
|
14
|
+
.sc(AddWorkload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "CreateApplication", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "CreateApplicationCommand")
|
|
14
|
-
.sc(CreateApplication)
|
|
14
|
+
.sc(CreateApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateComponent } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateComponent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateComponentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateComponentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "CreateComponent", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "CreateComponentCommand")
|
|
14
|
-
.sc(CreateComponent)
|
|
14
|
+
.sc(CreateComponent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLogPattern } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLogPattern$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLogPatternCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLogPatternCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "CreateLogPattern", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "CreateLogPatternCommand")
|
|
14
|
-
.sc(CreateLogPattern)
|
|
14
|
+
.sc(CreateLogPattern$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DeleteApplication", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DeleteApplicationCommand")
|
|
14
|
-
.sc(DeleteApplication)
|
|
14
|
+
.sc(DeleteApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteComponent } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteComponent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteComponentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteComponentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DeleteComponent", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DeleteComponentCommand")
|
|
14
|
-
.sc(DeleteComponent)
|
|
14
|
+
.sc(DeleteComponent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLogPattern } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLogPattern$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLogPatternCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLogPatternCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DeleteLogPattern", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DeleteLogPatternCommand")
|
|
14
|
-
.sc(DeleteLogPattern)
|
|
14
|
+
.sc(DeleteLogPattern$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeApplication", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeApplicationCommand")
|
|
14
|
-
.sc(DescribeApplication)
|
|
14
|
+
.sc(DescribeApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeComponent } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeComponent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeComponentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeComponentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeComponent", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeComponentCommand")
|
|
14
|
-
.sc(DescribeComponent)
|
|
14
|
+
.sc(DescribeComponent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeComponentConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeComponentConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeComponentConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeComponentConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeComponentConfiguration", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeComponentConfigurationCommand")
|
|
14
|
-
.sc(DescribeComponentConfiguration)
|
|
14
|
+
.sc(DescribeComponentConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeComponentConfigurationRecommendation } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeComponentConfigurationRecommendation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeComponentConfigurationRecommendationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeComponentConfigurationRecommendationCommand extends $Comman
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeComponentConfigurationRecommendation", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeComponentConfigurationRecommendationCommand")
|
|
14
|
-
.sc(DescribeComponentConfigurationRecommendation)
|
|
14
|
+
.sc(DescribeComponentConfigurationRecommendation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLogPattern } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLogPattern$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLogPatternCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLogPatternCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeLogPattern", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeLogPatternCommand")
|
|
14
|
-
.sc(DescribeLogPattern)
|
|
14
|
+
.sc(DescribeLogPattern$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeObservation } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeObservation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeObservationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeObservationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeObservation", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeObservationCommand")
|
|
14
|
-
.sc(DescribeObservation)
|
|
14
|
+
.sc(DescribeObservation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeProblem } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeProblem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeProblemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeProblemCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeProblem", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeProblemCommand")
|
|
14
|
-
.sc(DescribeProblem)
|
|
14
|
+
.sc(DescribeProblem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeProblemObservations } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeProblemObservations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeProblemObservationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeProblemObservationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeProblemObservations", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeProblemObservationsCommand")
|
|
14
|
-
.sc(DescribeProblemObservations)
|
|
14
|
+
.sc(DescribeProblemObservations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeWorkload } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeWorkload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeWorkloadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeWorkloadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "DescribeWorkload", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "DescribeWorkloadCommand")
|
|
14
|
-
.sc(DescribeWorkload)
|
|
14
|
+
.sc(DescribeWorkload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListApplications } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "ListApplications", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "ListApplicationsCommand")
|
|
14
|
-
.sc(ListApplications)
|
|
14
|
+
.sc(ListApplications$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListComponents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListComponents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListComponentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListComponentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "ListComponents", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "ListComponentsCommand")
|
|
14
|
-
.sc(ListComponents)
|
|
14
|
+
.sc(ListComponents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurationHistory } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurationHistory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationHistoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationHistoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "ListConfigurationHistory", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "ListConfigurationHistoryCommand")
|
|
14
|
-
.sc(ListConfigurationHistory)
|
|
14
|
+
.sc(ListConfigurationHistory$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListLogPatternSets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLogPatternSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLogPatternSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLogPatternSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "ListLogPatternSets", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "ListLogPatternSetsCommand")
|
|
14
|
-
.sc(ListLogPatternSets)
|
|
14
|
+
.sc(ListLogPatternSets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListLogPatterns } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLogPatterns$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLogPatternsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLogPatternsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "ListLogPatterns", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "ListLogPatternsCommand")
|
|
14
|
-
.sc(ListLogPatterns)
|
|
14
|
+
.sc(ListLogPatterns$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListProblems } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProblems$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProblemsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProblemsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "ListProblems", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "ListProblemsCommand")
|
|
14
|
-
.sc(ListProblems)
|
|
14
|
+
.sc(ListProblems$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "ListTagsForResource", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListWorkloads } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWorkloads$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWorkloadsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWorkloadsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "ListWorkloads", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "ListWorkloadsCommand")
|
|
14
|
-
.sc(ListWorkloads)
|
|
14
|
+
.sc(ListWorkloads$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RemoveWorkload } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveWorkload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveWorkloadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveWorkloadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "RemoveWorkload", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "RemoveWorkloadCommand")
|
|
14
|
-
.sc(RemoveWorkload)
|
|
14
|
+
.sc(RemoveWorkload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "TagResource", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "UntagResource", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "UpdateApplication", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "UpdateApplicationCommand")
|
|
14
|
-
.sc(UpdateApplication)
|
|
14
|
+
.sc(UpdateApplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateComponent } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateComponent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateComponentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateComponentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "UpdateComponent", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "UpdateComponentCommand")
|
|
14
|
-
.sc(UpdateComponent)
|
|
14
|
+
.sc(UpdateComponent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateComponentConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateComponentConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateComponentConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateComponentConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "UpdateComponentConfiguration", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "UpdateComponentConfigurationCommand")
|
|
14
|
-
.sc(UpdateComponentConfiguration)
|
|
14
|
+
.sc(UpdateComponentConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateLogPattern } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateLogPattern$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateLogPatternCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateLogPatternCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "UpdateLogPattern", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "UpdateLogPatternCommand")
|
|
14
|
-
.sc(UpdateLogPattern)
|
|
14
|
+
.sc(UpdateLogPattern$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateProblem } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateProblem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateProblemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateProblemCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "UpdateProblem", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "UpdateProblemCommand")
|
|
14
|
-
.sc(UpdateProblem)
|
|
14
|
+
.sc(UpdateProblem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateWorkload } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateWorkload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateWorkloadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateWorkloadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("EC2WindowsBarleyService", "UpdateWorkload", {})
|
|
13
13
|
.n("ApplicationInsightsClient", "UpdateWorkloadCommand")
|
|
14
|
-
.sc(UpdateWorkload)
|
|
14
|
+
.sc(UpdateWorkload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.applicationinsights",
|
|
29
|
+
version: "2018-11-25",
|
|
30
|
+
serviceTarget: "EC2WindowsBarleyService",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Application Insights",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|