@aws-sdk/client-devops-guru 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/DevOpsGuru.d.ts +110 -124
- package/dist-types/ts3.4/DevOpsGuruClient.d.ts +7 -22
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AddNotificationChannelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteInsightCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeAccountHealthCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeAccountOverviewCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAnomalyCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeEventSourcesConfigCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeFeedbackCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeInsightCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeOrganizationHealthCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeOrganizationOverviewCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeResourceCollectionHealthCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeServiceIntegrationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetCostEstimationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetResourceCollectionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAnomaliesForInsightCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAnomalousLogGroupsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListEventsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListInsightsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListMonitoredResourcesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListNotificationChannelsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListOrganizationInsightsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutFeedbackCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SearchInsightsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SearchOrganizationInsightsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartCostEstimationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateEventSourcesConfigCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateResourceCollectionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateServiceIntegrationCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListEventsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListEventsRequest, ListEventsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListEventsCommandInput extends ListEventsRequest {}
|
|
5
|
-
export interface ListEventsCommandOutput
|
|
6
|
-
extends ListEventsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListEventsCommandOutput extends ListEventsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListEventsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListEventsCommandInput
|
|
8
|
+
input: ListEventsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListEventsCommandInput,
|
|
13
11
|
ListEventsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListEventsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListEventsCommandInput
|
|
17
|
+
input: ListEventsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListEventsCommandInput,
|
|
22
20
|
ListEventsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListInsightsRequest, ListInsightsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListInsightsCommandInput extends ListInsightsRequest {}
|
|
5
|
-
export interface ListInsightsCommandOutput
|
|
6
|
-
extends ListInsightsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListInsightsCommandOutput extends ListInsightsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListInsightsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListInsightsCommandInput
|
|
8
|
+
input: ListInsightsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListInsightsCommandInput,
|
|
13
11
|
ListInsightsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListInsightsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListInsightsCommandInput
|
|
17
|
+
input: ListInsightsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListInsightsCommandInput,
|
|
22
20
|
ListInsightsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListMonitoredResourcesRequest,
|
|
4
|
-
ListMonitoredResourcesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListMonitoredResourcesRequest, ListMonitoredResourcesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListMonitoredResourcesCommandInput
|
|
8
|
-
extends ListMonitoredResourcesRequest {}
|
|
4
|
+
export interface ListMonitoredResourcesCommandInput extends ListMonitoredResourcesRequest {}
|
|
9
5
|
export interface ListMonitoredResourcesCommandOutput
|
|
10
|
-
extends ListMonitoredResourcesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListMonitoredResourcesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListMonitoredResourcesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListMonitoredResourcesCommandInput
|
|
9
|
+
input: ListMonitoredResourcesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListMonitoredResourcesCommandInput,
|
|
17
12
|
ListMonitoredResourcesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListNotificationChannelsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListNotificationChannelsCommandInput
|
|
8
|
-
extends ListNotificationChannelsRequest {}
|
|
7
|
+
export interface ListNotificationChannelsCommandInput extends ListNotificationChannelsRequest {}
|
|
9
8
|
export interface ListNotificationChannelsCommandOutput
|
|
10
|
-
extends ListNotificationChannelsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListNotificationChannelsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListNotificationChannelsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListNotificationChannelsCommandInput
|
|
12
|
+
input: ListNotificationChannelsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListNotificationChannelsCommandInput,
|
|
17
15
|
ListNotificationChannelsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListOrganizationInsightsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListOrganizationInsightsCommandInput
|
|
8
|
-
extends ListOrganizationInsightsRequest {}
|
|
7
|
+
export interface ListOrganizationInsightsCommandInput extends ListOrganizationInsightsRequest {}
|
|
9
8
|
export interface ListOrganizationInsightsCommandOutput
|
|
10
|
-
extends ListOrganizationInsightsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListOrganizationInsightsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListOrganizationInsightsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListOrganizationInsightsCommandInput
|
|
12
|
+
input: ListOrganizationInsightsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListOrganizationInsightsCommandInput,
|
|
17
15
|
ListOrganizationInsightsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListOrganizationInsightsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListOrganizationInsightsCommandInput
|
|
21
|
+
input: ListOrganizationInsightsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListOrganizationInsightsCommandInput,
|
|
26
24
|
ListOrganizationInsightsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListRecommendationsRequest,
|
|
4
|
-
ListRecommendationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRecommendationsCommandInput
|
|
8
|
-
extends ListRecommendationsRequest {}
|
|
4
|
+
export interface ListRecommendationsCommandInput extends ListRecommendationsRequest {}
|
|
9
5
|
export interface ListRecommendationsCommandOutput
|
|
10
|
-
extends ListRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListRecommendationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListRecommendationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListRecommendationsCommandInput
|
|
9
|
+
input: ListRecommendationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListRecommendationsCommandInput,
|
|
17
12
|
ListRecommendationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListRecommendationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListRecommendationsCommandInput
|
|
18
|
+
input: ListRecommendationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListRecommendationsCommandInput,
|
|
26
21
|
ListRecommendationsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface PutFeedbackCommandInput extends PutFeedbackRequest {}
|
|
5
|
-
export interface PutFeedbackCommandOutput
|
|
6
|
-
extends PutFeedbackResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __MetadataBearer {}
|
|
8
6
|
declare const PutFeedbackCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: PutFeedbackCommandInput
|
|
8
|
+
input: PutFeedbackCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
PutFeedbackCommandInput,
|
|
13
11
|
PutFeedbackCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
RemoveNotificationChannelResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface RemoveNotificationChannelCommandInput
|
|
8
|
-
extends RemoveNotificationChannelRequest {}
|
|
7
|
+
export interface RemoveNotificationChannelCommandInput extends RemoveNotificationChannelRequest {}
|
|
9
8
|
export interface RemoveNotificationChannelCommandOutput
|
|
10
|
-
extends RemoveNotificationChannelResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends RemoveNotificationChannelResponse, __MetadataBearer {}
|
|
12
10
|
declare const RemoveNotificationChannelCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: RemoveNotificationChannelCommandInput
|
|
12
|
+
input: RemoveNotificationChannelCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
RemoveNotificationChannelCommandInput,
|
|
17
15
|
RemoveNotificationChannelCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const RemoveNotificationChannelCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: RemoveNotificationChannelCommandInput
|
|
21
|
+
input: RemoveNotificationChannelCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
RemoveNotificationChannelCommandInput,
|
|
26
24
|
RemoveNotificationChannelCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SearchInsightsRequest,
|
|
4
|
-
SearchInsightsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { SearchInsightsRequest, SearchInsightsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface SearchInsightsCommandInput extends SearchInsightsRequest {}
|
|
8
|
-
export interface SearchInsightsCommandOutput
|
|
9
|
-
extends SearchInsightsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __MetadataBearer {}
|
|
11
6
|
declare const SearchInsightsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: SearchInsightsCommandInput
|
|
8
|
+
input: SearchInsightsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
SearchInsightsCommandInput,
|
|
16
11
|
SearchInsightsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const SearchInsightsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: SearchInsightsCommandInput
|
|
17
|
+
input: SearchInsightsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
SearchInsightsCommandInput,
|
|
25
20
|
SearchInsightsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
SearchOrganizationInsightsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface SearchOrganizationInsightsCommandInput
|
|
8
|
-
extends SearchOrganizationInsightsRequest {}
|
|
7
|
+
export interface SearchOrganizationInsightsCommandInput extends SearchOrganizationInsightsRequest {}
|
|
9
8
|
export interface SearchOrganizationInsightsCommandOutput
|
|
10
|
-
extends SearchOrganizationInsightsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends SearchOrganizationInsightsResponse, __MetadataBearer {}
|
|
12
10
|
declare const SearchOrganizationInsightsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: SearchOrganizationInsightsCommandInput
|
|
12
|
+
input: SearchOrganizationInsightsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
SearchOrganizationInsightsCommandInput,
|
|
17
15
|
SearchOrganizationInsightsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const SearchOrganizationInsightsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: SearchOrganizationInsightsCommandInput
|
|
21
|
+
input: SearchOrganizationInsightsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
SearchOrganizationInsightsCommandInput,
|
|
26
24
|
SearchOrganizationInsightsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartCostEstimationRequest,
|
|
4
|
-
StartCostEstimationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartCostEstimationRequest, StartCostEstimationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartCostEstimationCommandInput
|
|
8
|
-
extends StartCostEstimationRequest {}
|
|
4
|
+
export interface StartCostEstimationCommandInput extends StartCostEstimationRequest {}
|
|
9
5
|
export interface StartCostEstimationCommandOutput
|
|
10
|
-
extends StartCostEstimationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartCostEstimationResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartCostEstimationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartCostEstimationCommandInput
|
|
9
|
+
input: StartCostEstimationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartCostEstimationCommandInput,
|
|
17
12
|
StartCostEstimationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartCostEstimationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartCostEstimationCommandInput
|
|
18
|
+
input: StartCostEstimationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartCostEstimationCommandInput,
|
|
26
21
|
StartCostEstimationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateEventSourcesConfigResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateEventSourcesConfigCommandInput
|
|
8
|
-
extends UpdateEventSourcesConfigRequest {}
|
|
7
|
+
export interface UpdateEventSourcesConfigCommandInput extends UpdateEventSourcesConfigRequest {}
|
|
9
8
|
export interface UpdateEventSourcesConfigCommandOutput
|
|
10
|
-
extends UpdateEventSourcesConfigResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateEventSourcesConfigResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateEventSourcesConfigCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateEventSourcesConfigCommandInput
|
|
12
|
+
input: UpdateEventSourcesConfigCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateEventSourcesConfigCommandInput,
|
|
17
15
|
UpdateEventSourcesConfigCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateResourceCollectionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateResourceCollectionCommandInput
|
|
8
|
-
extends UpdateResourceCollectionRequest {}
|
|
7
|
+
export interface UpdateResourceCollectionCommandInput extends UpdateResourceCollectionRequest {}
|
|
9
8
|
export interface UpdateResourceCollectionCommandOutput
|
|
10
|
-
extends UpdateResourceCollectionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateResourceCollectionResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateResourceCollectionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateResourceCollectionCommandInput
|
|
12
|
+
input: UpdateResourceCollectionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateResourceCollectionCommandInput,
|
|
17
15
|
UpdateResourceCollectionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateResourceCollectionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateResourceCollectionCommandInput
|
|
21
|
+
input: UpdateResourceCollectionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateResourceCollectionCommandInput,
|
|
26
24
|
UpdateResourceCollectionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateServiceIntegrationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateServiceIntegrationCommandInput
|
|
8
|
-
extends UpdateServiceIntegrationRequest {}
|
|
7
|
+
export interface UpdateServiceIntegrationCommandInput extends UpdateServiceIntegrationRequest {}
|
|
9
8
|
export interface UpdateServiceIntegrationCommandOutput
|
|
10
|
-
extends UpdateServiceIntegrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateServiceIntegrationResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateServiceIntegrationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateServiceIntegrationCommandInput
|
|
12
|
+
input: UpdateServiceIntegrationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateServiceIntegrationCommandInput,
|
|
17
15
|
UpdateServiceIntegrationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateServiceIntegrationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateServiceIntegrationCommandInput
|
|
21
|
+
input: UpdateServiceIntegrationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateServiceIntegrationCommandInput,
|
|
26
24
|
UpdateServiceIntegrationCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface DevOpsGuruExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -12,8 +12,7 @@ export declare const InsightSeverity: {
|
|
|
12
12
|
readonly LOW: "LOW";
|
|
13
13
|
readonly MEDIUM: "MEDIUM";
|
|
14
14
|
};
|
|
15
|
-
export type InsightSeverity =
|
|
16
|
-
(typeof InsightSeverity)[keyof typeof InsightSeverity];
|
|
15
|
+
export type InsightSeverity = (typeof InsightSeverity)[keyof typeof InsightSeverity];
|
|
17
16
|
export declare const ValidationExceptionReason: {
|
|
18
17
|
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
19
18
|
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
@@ -40,15 +39,13 @@ export declare const LogAnomalyType: {
|
|
|
40
39
|
readonly NUMERICAL_NAN: "NUMERICAL_NAN";
|
|
41
40
|
readonly NUMERICAL_POINT: "NUMERICAL_POINT";
|
|
42
41
|
};
|
|
43
|
-
export type LogAnomalyType =
|
|
44
|
-
(typeof LogAnomalyType)[keyof typeof LogAnomalyType];
|
|
42
|
+
export type LogAnomalyType = (typeof LogAnomalyType)[keyof typeof LogAnomalyType];
|
|
45
43
|
export declare const AnomalySeverity: {
|
|
46
44
|
readonly HIGH: "HIGH";
|
|
47
45
|
readonly LOW: "LOW";
|
|
48
46
|
readonly MEDIUM: "MEDIUM";
|
|
49
47
|
};
|
|
50
|
-
export type AnomalySeverity =
|
|
51
|
-
(typeof AnomalySeverity)[keyof typeof AnomalySeverity];
|
|
48
|
+
export type AnomalySeverity = (typeof AnomalySeverity)[keyof typeof AnomalySeverity];
|
|
52
49
|
export declare const CloudWatchMetricDataStatusCode: {
|
|
53
50
|
readonly COMPLETE: "Complete";
|
|
54
51
|
readonly INTERNAL_ERROR: "InternalError";
|
|
@@ -156,14 +153,12 @@ export declare const CostEstimationStatus: {
|
|
|
156
153
|
readonly COMPLETED: "COMPLETED";
|
|
157
154
|
readonly ONGOING: "ONGOING";
|
|
158
155
|
};
|
|
159
|
-
export type CostEstimationStatus =
|
|
160
|
-
(typeof CostEstimationStatus)[keyof typeof CostEstimationStatus];
|
|
156
|
+
export type CostEstimationStatus = (typeof CostEstimationStatus)[keyof typeof CostEstimationStatus];
|
|
161
157
|
export declare const EventDataSource: {
|
|
162
158
|
readonly AWS_CLOUD_TRAIL: "AWS_CLOUD_TRAIL";
|
|
163
159
|
readonly AWS_CODE_DEPLOY: "AWS_CODE_DEPLOY";
|
|
164
160
|
};
|
|
165
|
-
export type EventDataSource =
|
|
166
|
-
(typeof EventDataSource)[keyof typeof EventDataSource];
|
|
161
|
+
export type EventDataSource = (typeof EventDataSource)[keyof typeof EventDataSource];
|
|
167
162
|
export declare const EventClass: {
|
|
168
163
|
readonly CONFIG_CHANGE: "CONFIG_CHANGE";
|
|
169
164
|
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
@@ -181,8 +176,7 @@ export declare const ResourcePermission: {
|
|
|
181
176
|
readonly FULL_PERMISSION: "FULL_PERMISSION";
|
|
182
177
|
readonly MISSING_PERMISSION: "MISSING_PERMISSION";
|
|
183
178
|
};
|
|
184
|
-
export type ResourcePermission =
|
|
185
|
-
(typeof ResourcePermission)[keyof typeof ResourcePermission];
|
|
179
|
+
export type ResourcePermission = (typeof ResourcePermission)[keyof typeof ResourcePermission];
|
|
186
180
|
export declare const ResourceTypeFilter: {
|
|
187
181
|
readonly CLOUDFRONT_DISTRIBUTION: "CLOUDFRONT_DISTRIBUTION";
|
|
188
182
|
readonly DYNAMODB_TABLE: "DYNAMODB_TABLE";
|
|
@@ -212,8 +206,7 @@ export declare const ResourceTypeFilter: {
|
|
|
212
206
|
readonly STEP_FUNCTIONS_ACTIVITY: "STEP_FUNCTIONS_ACTIVITY";
|
|
213
207
|
readonly STEP_FUNCTIONS_STATE_MACHINE: "STEP_FUNCTIONS_STATE_MACHINE";
|
|
214
208
|
};
|
|
215
|
-
export type ResourceTypeFilter =
|
|
216
|
-
(typeof ResourceTypeFilter)[keyof typeof ResourceTypeFilter];
|
|
209
|
+
export type ResourceTypeFilter = (typeof ResourceTypeFilter)[keyof typeof ResourceTypeFilter];
|
|
217
210
|
export declare const Locale: {
|
|
218
211
|
readonly DE_DE: "DE_DE";
|
|
219
212
|
readonly EN_GB: "EN_GB";
|
|
@@ -6,9 +6,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
6
6
|
readonly name: "AccessDeniedException";
|
|
7
7
|
readonly $fault: "client";
|
|
8
8
|
Message: string | undefined;
|
|
9
|
-
constructor(
|
|
10
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
|
-
);
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
12
10
|
}
|
|
13
11
|
export declare class ConflictException extends __BaseException {
|
|
14
12
|
readonly name: "ConflictException";
|
|
@@ -23,9 +21,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
23
21
|
readonly $fault: "server";
|
|
24
22
|
Message: string | undefined;
|
|
25
23
|
RetryAfterSeconds?: number | undefined;
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
28
|
-
);
|
|
24
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
29
25
|
}
|
|
30
26
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
31
27
|
readonly name: "ResourceNotFoundException";
|
|
@@ -33,17 +29,13 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
33
29
|
Message: string | undefined;
|
|
34
30
|
ResourceId: string | undefined;
|
|
35
31
|
ResourceType: string | undefined;
|
|
36
|
-
constructor(
|
|
37
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
38
|
-
);
|
|
32
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
39
33
|
}
|
|
40
34
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
41
35
|
readonly name: "ServiceQuotaExceededException";
|
|
42
36
|
readonly $fault: "client";
|
|
43
37
|
Message?: string | undefined;
|
|
44
|
-
constructor(
|
|
45
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
46
|
-
);
|
|
38
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
47
39
|
}
|
|
48
40
|
export declare class ThrottlingException extends __BaseException {
|
|
49
41
|
readonly name: "ThrottlingException";
|
|
@@ -52,9 +44,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
52
44
|
QuotaCode?: string | undefined;
|
|
53
45
|
ServiceCode?: string | undefined;
|
|
54
46
|
RetryAfterSeconds?: number | undefined;
|
|
55
|
-
constructor(
|
|
56
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
57
|
-
);
|
|
47
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
58
48
|
}
|
|
59
49
|
export declare class ValidationException extends __BaseException {
|
|
60
50
|
readonly name: "ValidationException";
|
|
@@ -62,7 +52,5 @@ export declare class ValidationException extends __BaseException {
|
|
|
62
52
|
Message: string | undefined;
|
|
63
53
|
Reason?: ValidationExceptionReason | undefined;
|
|
64
54
|
Fields?: ValidationExceptionField[] | undefined;
|
|
65
|
-
constructor(
|
|
66
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
67
|
-
);
|
|
55
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
68
56
|
}
|
|
@@ -300,9 +300,7 @@ export interface DescribeOrganizationOverviewResponse {
|
|
|
300
300
|
ProactiveInsights: number | undefined;
|
|
301
301
|
}
|
|
302
302
|
export interface DescribeOrganizationResourceCollectionHealthRequest {
|
|
303
|
-
OrganizationResourceCollectionType:
|
|
304
|
-
| OrganizationResourceCollectionType
|
|
305
|
-
| undefined;
|
|
303
|
+
OrganizationResourceCollectionType: OrganizationResourceCollectionType | undefined;
|
|
306
304
|
AccountIds?: string[] | undefined;
|
|
307
305
|
OrganizationalUnitIds?: string[] | undefined;
|
|
308
306
|
NextToken?: string | undefined;
|
|
@@ -388,9 +386,7 @@ export interface TagCostEstimationResourceCollectionFilter {
|
|
|
388
386
|
TagValues: string[] | undefined;
|
|
389
387
|
}
|
|
390
388
|
export interface CostEstimationResourceCollectionFilter {
|
|
391
|
-
CloudFormation?:
|
|
392
|
-
| CloudFormationCostEstimationResourceCollectionFilter
|
|
393
|
-
| undefined;
|
|
389
|
+
CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter | undefined;
|
|
394
390
|
Tags?: TagCostEstimationResourceCollectionFilter[] | undefined;
|
|
395
391
|
}
|
|
396
392
|
export interface CostEstimationTimeRange {
|
|
@@ -657,9 +653,7 @@ export interface RecommendationRelatedCloudWatchMetricsSourceDetail {
|
|
|
657
653
|
Namespace?: string | undefined;
|
|
658
654
|
}
|
|
659
655
|
export interface RecommendationRelatedAnomalySourceDetail {
|
|
660
|
-
CloudWatchMetrics?:
|
|
661
|
-
| RecommendationRelatedCloudWatchMetricsSourceDetail[]
|
|
662
|
-
| undefined;
|
|
656
|
+
CloudWatchMetrics?: RecommendationRelatedCloudWatchMetricsSourceDetail[] | undefined;
|
|
663
657
|
}
|
|
664
658
|
export interface RecommendationRelatedAnomaly {
|
|
665
659
|
Resources?: RecommendationRelatedAnomalyResource[] | undefined;
|
|
@@ -771,9 +765,7 @@ export interface OpsCenterIntegrationConfig {
|
|
|
771
765
|
export interface UpdateServiceIntegrationConfig {
|
|
772
766
|
OpsCenter?: OpsCenterIntegrationConfig | undefined;
|
|
773
767
|
LogsAnomalyDetection?: LogsAnomalyDetectionIntegrationConfig | undefined;
|
|
774
|
-
KMSServerSideEncryption?:
|
|
775
|
-
| KMSServerSideEncryptionIntegrationConfig
|
|
776
|
-
| undefined;
|
|
768
|
+
KMSServerSideEncryption?: KMSServerSideEncryptionIntegrationConfig | undefined;
|
|
777
769
|
}
|
|
778
770
|
export interface UpdateServiceIntegrationRequest {
|
|
779
771
|
ServiceIntegration: UpdateServiceIntegrationConfig | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { DevOpsGuruClient } from "../DevOpsGuruClient";
|
|
3
|
-
export interface DevOpsGuruPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface DevOpsGuruPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: DevOpsGuruClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListEventsCommandInput,
|
|
4
|
-
ListEventsCommandOutput,
|
|
5
|
-
} from "../commands/ListEventsCommand";
|
|
2
|
+
import { ListEventsCommandInput, ListEventsCommandOutput } from "../commands/ListEventsCommand";
|
|
6
3
|
import { DevOpsGuruPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListEvents: (
|
|
8
5
|
config: DevOpsGuruPaginationConfiguration,
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|