@aws-sdk/client-devops-guru 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 +647 -451
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AddNotificationChannelCommand.js +2 -2
- package/dist-es/commands/DeleteInsightCommand.js +2 -2
- package/dist-es/commands/DescribeAccountHealthCommand.js +2 -2
- package/dist-es/commands/DescribeAccountOverviewCommand.js +2 -2
- package/dist-es/commands/DescribeAnomalyCommand.js +2 -2
- package/dist-es/commands/DescribeEventSourcesConfigCommand.js +2 -2
- package/dist-es/commands/DescribeFeedbackCommand.js +2 -2
- package/dist-es/commands/DescribeInsightCommand.js +2 -2
- package/dist-es/commands/DescribeOrganizationHealthCommand.js +2 -2
- package/dist-es/commands/DescribeOrganizationOverviewCommand.js +2 -2
- package/dist-es/commands/DescribeOrganizationResourceCollectionHealthCommand.js +2 -2
- package/dist-es/commands/DescribeResourceCollectionHealthCommand.js +2 -2
- package/dist-es/commands/DescribeServiceIntegrationCommand.js +2 -2
- package/dist-es/commands/GetCostEstimationCommand.js +2 -2
- package/dist-es/commands/GetResourceCollectionCommand.js +2 -2
- package/dist-es/commands/ListAnomaliesForInsightCommand.js +2 -2
- package/dist-es/commands/ListAnomalousLogGroupsCommand.js +2 -2
- package/dist-es/commands/ListEventsCommand.js +2 -2
- package/dist-es/commands/ListInsightsCommand.js +2 -2
- package/dist-es/commands/ListMonitoredResourcesCommand.js +2 -2
- package/dist-es/commands/ListNotificationChannelsCommand.js +2 -2
- package/dist-es/commands/ListOrganizationInsightsCommand.js +2 -2
- package/dist-es/commands/ListRecommendationsCommand.js +2 -2
- package/dist-es/commands/PutFeedbackCommand.js +2 -2
- package/dist-es/commands/RemoveNotificationChannelCommand.js +2 -2
- package/dist-es/commands/SearchInsightsCommand.js +2 -2
- package/dist-es/commands/SearchOrganizationInsightsCommand.js +2 -2
- package/dist-es/commands/StartCostEstimationCommand.js +2 -2
- package/dist-es/commands/UpdateEventSourcesConfigCommand.js +2 -2
- package/dist-es/commands/UpdateResourceCollectionCommand.js +2 -2
- package/dist-es/commands/UpdateServiceIntegrationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +428 -425
- package/dist-types/DevOpsGuruClient.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 +194 -250
- package/dist-types/ts3.4/DevOpsGuruClient.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 +193 -250
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.devopsguru",
|
|
32
|
+
version: "2020-12-01",
|
|
33
|
+
serviceTarget: "CapstoneControlPlaneService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "DevOps Guru",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
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 { AddNotificationChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { AddNotificationChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddNotificationChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddNotificationChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "AddNotificationChannel", {})
|
|
13
13
|
.n("DevOpsGuruClient", "AddNotificationChannelCommand")
|
|
14
|
-
.sc(AddNotificationChannel)
|
|
14
|
+
.sc(AddNotificationChannel$)
|
|
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 { DeleteInsight } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteInsight$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteInsightCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteInsightCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DeleteInsight", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DeleteInsightCommand")
|
|
14
|
-
.sc(DeleteInsight)
|
|
14
|
+
.sc(DeleteInsight$)
|
|
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 { DescribeAccountHealth } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAccountHealth$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAccountHealthCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAccountHealthCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeAccountHealth", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeAccountHealthCommand")
|
|
14
|
-
.sc(DescribeAccountHealth)
|
|
14
|
+
.sc(DescribeAccountHealth$)
|
|
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 { DescribeAccountOverview } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAccountOverview$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAccountOverviewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAccountOverviewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeAccountOverview", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeAccountOverviewCommand")
|
|
14
|
-
.sc(DescribeAccountOverview)
|
|
14
|
+
.sc(DescribeAccountOverview$)
|
|
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 { DescribeAnomaly } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAnomaly$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAnomalyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAnomalyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeAnomaly", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeAnomalyCommand")
|
|
14
|
-
.sc(DescribeAnomaly)
|
|
14
|
+
.sc(DescribeAnomaly$)
|
|
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 { DescribeEventSourcesConfig } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEventSourcesConfig$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEventSourcesConfigCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEventSourcesConfigCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeEventSourcesConfig", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeEventSourcesConfigCommand")
|
|
14
|
-
.sc(DescribeEventSourcesConfig)
|
|
14
|
+
.sc(DescribeEventSourcesConfig$)
|
|
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 { DescribeFeedback } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeFeedback$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeFeedbackCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeFeedbackCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeFeedback", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeFeedbackCommand")
|
|
14
|
-
.sc(DescribeFeedback)
|
|
14
|
+
.sc(DescribeFeedback$)
|
|
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 { DescribeInsight } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeInsight$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeInsightCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeInsightCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeInsight", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeInsightCommand")
|
|
14
|
-
.sc(DescribeInsight)
|
|
14
|
+
.sc(DescribeInsight$)
|
|
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 { DescribeOrganizationHealth } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeOrganizationHealth$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeOrganizationHealthCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeOrganizationHealthCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeOrganizationHealth", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeOrganizationHealthCommand")
|
|
14
|
-
.sc(DescribeOrganizationHealth)
|
|
14
|
+
.sc(DescribeOrganizationHealth$)
|
|
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 { DescribeOrganizationOverview } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeOrganizationOverview$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeOrganizationOverviewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeOrganizationOverviewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeOrganizationOverview", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeOrganizationOverviewCommand")
|
|
14
|
-
.sc(DescribeOrganizationOverview)
|
|
14
|
+
.sc(DescribeOrganizationOverview$)
|
|
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 { DescribeOrganizationResourceCollectionHealth } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeOrganizationResourceCollectionHealth$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeOrganizationResourceCollectionHealthCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeOrganizationResourceCollectionHealthCommand extends $Comman
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeOrganizationResourceCollectionHealth", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeOrganizationResourceCollectionHealthCommand")
|
|
14
|
-
.sc(DescribeOrganizationResourceCollectionHealth)
|
|
14
|
+
.sc(DescribeOrganizationResourceCollectionHealth$)
|
|
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 { DescribeResourceCollectionHealth } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeResourceCollectionHealth$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeResourceCollectionHealthCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeResourceCollectionHealthCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeResourceCollectionHealth", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeResourceCollectionHealthCommand")
|
|
14
|
-
.sc(DescribeResourceCollectionHealth)
|
|
14
|
+
.sc(DescribeResourceCollectionHealth$)
|
|
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 { DescribeServiceIntegration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeServiceIntegration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeServiceIntegrationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeServiceIntegrationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "DescribeServiceIntegration", {})
|
|
13
13
|
.n("DevOpsGuruClient", "DescribeServiceIntegrationCommand")
|
|
14
|
-
.sc(DescribeServiceIntegration)
|
|
14
|
+
.sc(DescribeServiceIntegration$)
|
|
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 { GetCostEstimation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCostEstimation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCostEstimationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCostEstimationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "GetCostEstimation", {})
|
|
13
13
|
.n("DevOpsGuruClient", "GetCostEstimationCommand")
|
|
14
|
-
.sc(GetCostEstimation)
|
|
14
|
+
.sc(GetCostEstimation$)
|
|
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 { GetResourceCollection } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResourceCollection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourceCollectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourceCollectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "GetResourceCollection", {})
|
|
13
13
|
.n("DevOpsGuruClient", "GetResourceCollectionCommand")
|
|
14
|
-
.sc(GetResourceCollection)
|
|
14
|
+
.sc(GetResourceCollection$)
|
|
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 { ListAnomaliesForInsight } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAnomaliesForInsight$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAnomaliesForInsightCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAnomaliesForInsightCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "ListAnomaliesForInsight", {})
|
|
13
13
|
.n("DevOpsGuruClient", "ListAnomaliesForInsightCommand")
|
|
14
|
-
.sc(ListAnomaliesForInsight)
|
|
14
|
+
.sc(ListAnomaliesForInsight$)
|
|
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 { ListAnomalousLogGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAnomalousLogGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAnomalousLogGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAnomalousLogGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "ListAnomalousLogGroups", {})
|
|
13
13
|
.n("DevOpsGuruClient", "ListAnomalousLogGroupsCommand")
|
|
14
|
-
.sc(ListAnomalousLogGroups)
|
|
14
|
+
.sc(ListAnomalousLogGroups$)
|
|
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 { ListEvents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEvents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEventsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEventsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "ListEvents", {})
|
|
13
13
|
.n("DevOpsGuruClient", "ListEventsCommand")
|
|
14
|
-
.sc(ListEvents)
|
|
14
|
+
.sc(ListEvents$)
|
|
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 { ListInsights } from "../schemas/schemas_0";
|
|
4
|
+
import { ListInsights$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListInsightsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListInsightsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "ListInsights", {})
|
|
13
13
|
.n("DevOpsGuruClient", "ListInsightsCommand")
|
|
14
|
-
.sc(ListInsights)
|
|
14
|
+
.sc(ListInsights$)
|
|
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 { ListMonitoredResources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMonitoredResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMonitoredResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMonitoredResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "ListMonitoredResources", {})
|
|
13
13
|
.n("DevOpsGuruClient", "ListMonitoredResourcesCommand")
|
|
14
|
-
.sc(ListMonitoredResources)
|
|
14
|
+
.sc(ListMonitoredResources$)
|
|
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 { ListNotificationChannels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListNotificationChannels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListNotificationChannelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListNotificationChannelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "ListNotificationChannels", {})
|
|
13
13
|
.n("DevOpsGuruClient", "ListNotificationChannelsCommand")
|
|
14
|
-
.sc(ListNotificationChannels)
|
|
14
|
+
.sc(ListNotificationChannels$)
|
|
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 { ListOrganizationInsights } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOrganizationInsights$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOrganizationInsightsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOrganizationInsightsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "ListOrganizationInsights", {})
|
|
13
13
|
.n("DevOpsGuruClient", "ListOrganizationInsightsCommand")
|
|
14
|
-
.sc(ListOrganizationInsights)
|
|
14
|
+
.sc(ListOrganizationInsights$)
|
|
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 { ListRecommendations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRecommendations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRecommendationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRecommendationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "ListRecommendations", {})
|
|
13
13
|
.n("DevOpsGuruClient", "ListRecommendationsCommand")
|
|
14
|
-
.sc(ListRecommendations)
|
|
14
|
+
.sc(ListRecommendations$)
|
|
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 { PutFeedback } from "../schemas/schemas_0";
|
|
4
|
+
import { PutFeedback$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutFeedbackCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutFeedbackCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "PutFeedback", {})
|
|
13
13
|
.n("DevOpsGuruClient", "PutFeedbackCommand")
|
|
14
|
-
.sc(PutFeedback)
|
|
14
|
+
.sc(PutFeedback$)
|
|
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 { RemoveNotificationChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveNotificationChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveNotificationChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveNotificationChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "RemoveNotificationChannel", {})
|
|
13
13
|
.n("DevOpsGuruClient", "RemoveNotificationChannelCommand")
|
|
14
|
-
.sc(RemoveNotificationChannel)
|
|
14
|
+
.sc(RemoveNotificationChannel$)
|
|
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 { SearchInsights } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchInsights$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchInsightsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchInsightsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "SearchInsights", {})
|
|
13
13
|
.n("DevOpsGuruClient", "SearchInsightsCommand")
|
|
14
|
-
.sc(SearchInsights)
|
|
14
|
+
.sc(SearchInsights$)
|
|
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 { SearchOrganizationInsights } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchOrganizationInsights$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchOrganizationInsightsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchOrganizationInsightsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "SearchOrganizationInsights", {})
|
|
13
13
|
.n("DevOpsGuruClient", "SearchOrganizationInsightsCommand")
|
|
14
|
-
.sc(SearchOrganizationInsights)
|
|
14
|
+
.sc(SearchOrganizationInsights$)
|
|
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 { StartCostEstimation } from "../schemas/schemas_0";
|
|
4
|
+
import { StartCostEstimation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartCostEstimationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartCostEstimationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "StartCostEstimation", {})
|
|
13
13
|
.n("DevOpsGuruClient", "StartCostEstimationCommand")
|
|
14
|
-
.sc(StartCostEstimation)
|
|
14
|
+
.sc(StartCostEstimation$)
|
|
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 { UpdateEventSourcesConfig } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateEventSourcesConfig$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateEventSourcesConfigCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateEventSourcesConfigCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "UpdateEventSourcesConfig", {})
|
|
13
13
|
.n("DevOpsGuruClient", "UpdateEventSourcesConfigCommand")
|
|
14
|
-
.sc(UpdateEventSourcesConfig)
|
|
14
|
+
.sc(UpdateEventSourcesConfig$)
|
|
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 { UpdateResourceCollection } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateResourceCollection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateResourceCollectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateResourceCollectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "UpdateResourceCollection", {})
|
|
13
13
|
.n("DevOpsGuruClient", "UpdateResourceCollectionCommand")
|
|
14
|
-
.sc(UpdateResourceCollection)
|
|
14
|
+
.sc(UpdateResourceCollection$)
|
|
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 { UpdateServiceIntegration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateServiceIntegration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateServiceIntegrationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateServiceIntegrationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CapstoneControlPlaneService", "UpdateServiceIntegration", {})
|
|
13
13
|
.n("DevOpsGuruClient", "UpdateServiceIntegrationCommand")
|
|
14
|
-
.sc(UpdateServiceIntegration)
|
|
14
|
+
.sc(UpdateServiceIntegration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.devopsguru",
|
|
29
|
+
version: "2020-12-01",
|
|
30
|
+
serviceTarget: "CapstoneControlPlaneService",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "DevOps Guru",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|