@aws-sdk/client-compute-optimizer-automation 3.1087.0 → 3.1088.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/ComputeOptimizerAutomation.d.ts +79 -88
- package/dist-types/ts3.4/ComputeOptimizerAutomationClient.d.ts +6 -17
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- 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/AssociateAccountsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAutomationRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAutomationRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAutomationEventCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAutomationRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetEnrollmentConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListAutomationEventStepsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAutomationEventSummariesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListAutomationEventsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListAutomationRulePreviewCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAutomationRulePreviewSummariesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAutomationRulesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRecommendedActionSummariesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListRecommendedActionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RollbackAutomationEventCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartAutomationEventCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAutomationRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateEnrollmentConfigurationCommand.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 +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +11 -36
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AssociateAccountsRequest,
|
|
4
|
-
AssociateAccountsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AssociateAccountsRequest, AssociateAccountsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateAccountsCommandInput
|
|
8
|
-
extends AssociateAccountsRequest {}
|
|
4
|
+
export interface AssociateAccountsCommandInput extends AssociateAccountsRequest {}
|
|
9
5
|
export interface AssociateAccountsCommandOutput
|
|
10
|
-
extends AssociateAccountsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AssociateAccountsResponse, __MetadataBearer {}
|
|
12
7
|
declare const AssociateAccountsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AssociateAccountsCommandInput
|
|
9
|
+
input: AssociateAccountsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AssociateAccountsCommandInput,
|
|
17
12
|
AssociateAccountsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AssociateAccountsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AssociateAccountsCommandInput
|
|
18
|
+
input: AssociateAccountsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AssociateAccountsCommandInput,
|
|
26
21
|
AssociateAccountsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAutomationRuleRequest,
|
|
4
|
-
CreateAutomationRuleResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAutomationRuleRequest, CreateAutomationRuleResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAutomationRuleCommandInput
|
|
8
|
-
extends CreateAutomationRuleRequest {}
|
|
4
|
+
export interface CreateAutomationRuleCommandInput extends CreateAutomationRuleRequest {}
|
|
9
5
|
export interface CreateAutomationRuleCommandOutput
|
|
10
|
-
extends CreateAutomationRuleResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAutomationRuleResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateAutomationRuleCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateAutomationRuleCommandInput
|
|
9
|
+
input: CreateAutomationRuleCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateAutomationRuleCommandInput,
|
|
17
12
|
CreateAutomationRuleCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateAutomationRuleCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateAutomationRuleCommandInput
|
|
18
|
+
input: CreateAutomationRuleCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateAutomationRuleCommandInput,
|
|
26
21
|
CreateAutomationRuleCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAutomationRuleRequest,
|
|
4
|
-
DeleteAutomationRuleResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAutomationRuleRequest, DeleteAutomationRuleResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteAutomationRuleCommandInput
|
|
8
|
-
extends DeleteAutomationRuleRequest {}
|
|
4
|
+
export interface DeleteAutomationRuleCommandInput extends DeleteAutomationRuleRequest {}
|
|
9
5
|
export interface DeleteAutomationRuleCommandOutput
|
|
10
|
-
extends DeleteAutomationRuleResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteAutomationRuleResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteAutomationRuleCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteAutomationRuleCommandInput
|
|
9
|
+
input: DeleteAutomationRuleCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteAutomationRuleCommandInput,
|
|
17
12
|
DeleteAutomationRuleCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteAutomationRuleCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteAutomationRuleCommandInput
|
|
18
|
+
input: DeleteAutomationRuleCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteAutomationRuleCommandInput,
|
|
26
21
|
DeleteAutomationRuleCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DisassociateAccountsRequest,
|
|
4
|
-
DisassociateAccountsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DisassociateAccountsRequest, DisassociateAccountsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisassociateAccountsCommandInput
|
|
8
|
-
extends DisassociateAccountsRequest {}
|
|
4
|
+
export interface DisassociateAccountsCommandInput extends DisassociateAccountsRequest {}
|
|
9
5
|
export interface DisassociateAccountsCommandOutput
|
|
10
|
-
extends DisassociateAccountsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DisassociateAccountsResponse, __MetadataBearer {}
|
|
12
7
|
declare const DisassociateAccountsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DisassociateAccountsCommandInput
|
|
9
|
+
input: DisassociateAccountsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DisassociateAccountsCommandInput,
|
|
17
12
|
DisassociateAccountsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DisassociateAccountsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DisassociateAccountsCommandInput
|
|
18
|
+
input: DisassociateAccountsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DisassociateAccountsCommandInput,
|
|
26
21
|
DisassociateAccountsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAutomationEventRequest,
|
|
4
|
-
GetAutomationEventResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAutomationEventRequest, GetAutomationEventResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAutomationEventCommandInput
|
|
8
|
-
extends GetAutomationEventRequest {}
|
|
4
|
+
export interface GetAutomationEventCommandInput extends GetAutomationEventRequest {}
|
|
9
5
|
export interface GetAutomationEventCommandOutput
|
|
10
|
-
extends GetAutomationEventResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetAutomationEventResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetAutomationEventCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetAutomationEventCommandInput
|
|
9
|
+
input: GetAutomationEventCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetAutomationEventCommandInput,
|
|
17
12
|
GetAutomationEventCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetAutomationEventCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetAutomationEventCommandInput
|
|
18
|
+
input: GetAutomationEventCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetAutomationEventCommandInput,
|
|
26
21
|
GetAutomationEventCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAutomationRuleRequest,
|
|
4
|
-
GetAutomationRuleResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAutomationRuleRequest, GetAutomationRuleResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAutomationRuleCommandInput
|
|
8
|
-
extends GetAutomationRuleRequest {}
|
|
4
|
+
export interface GetAutomationRuleCommandInput extends GetAutomationRuleRequest {}
|
|
9
5
|
export interface GetAutomationRuleCommandOutput
|
|
10
|
-
extends GetAutomationRuleResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetAutomationRuleResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetAutomationRuleCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetAutomationRuleCommandInput
|
|
9
|
+
input: GetAutomationRuleCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetAutomationRuleCommandInput,
|
|
17
12
|
GetAutomationRuleCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetAutomationRuleCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetAutomationRuleCommandInput
|
|
18
|
+
input: GetAutomationRuleCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetAutomationRuleCommandInput,
|
|
26
21
|
GetAutomationRuleCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetEnrollmentConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEnrollmentConfigurationCommandInput
|
|
8
|
-
extends GetEnrollmentConfigurationRequest {}
|
|
7
|
+
export interface GetEnrollmentConfigurationCommandInput extends GetEnrollmentConfigurationRequest {}
|
|
9
8
|
export interface GetEnrollmentConfigurationCommandOutput
|
|
10
|
-
extends GetEnrollmentConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetEnrollmentConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetEnrollmentConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetEnrollmentConfigurationCommandInput
|
|
12
|
+
input: GetEnrollmentConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetEnrollmentConfigurationCommandInput,
|
|
17
15
|
GetEnrollmentConfigurationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListAccountsCommandInput extends ListAccountsRequest {}
|
|
5
|
-
export interface ListAccountsCommandOutput
|
|
6
|
-
extends ListAccountsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAccountsCommandOutput extends ListAccountsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListAccountsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListAccountsCommandInput
|
|
8
|
+
input: ListAccountsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListAccountsCommandInput,
|
|
13
11
|
ListAccountsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListAutomationEventStepsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAutomationEventStepsCommandInput
|
|
8
|
-
extends ListAutomationEventStepsRequest {}
|
|
7
|
+
export interface ListAutomationEventStepsCommandInput extends ListAutomationEventStepsRequest {}
|
|
9
8
|
export interface ListAutomationEventStepsCommandOutput
|
|
10
|
-
extends ListAutomationEventStepsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListAutomationEventStepsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListAutomationEventStepsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListAutomationEventStepsCommandInput
|
|
12
|
+
input: ListAutomationEventStepsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListAutomationEventStepsCommandInput,
|
|
17
15
|
ListAutomationEventStepsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListAutomationEventStepsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListAutomationEventStepsCommandInput
|
|
21
|
+
input: ListAutomationEventStepsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListAutomationEventStepsCommandInput,
|
|
26
24
|
ListAutomationEventStepsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListAutomationEventSummariesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAutomationEventSummariesCommandInput
|
|
8
|
-
extends ListAutomationEventSummariesRequest {}
|
|
7
|
+
export interface ListAutomationEventSummariesCommandInput extends ListAutomationEventSummariesRequest {}
|
|
9
8
|
export interface ListAutomationEventSummariesCommandOutput
|
|
10
|
-
extends ListAutomationEventSummariesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListAutomationEventSummariesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListAutomationEventSummariesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListAutomationEventSummariesCommandInput
|
|
12
|
+
input: ListAutomationEventSummariesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListAutomationEventSummariesCommandInput,
|
|
17
15
|
ListAutomationEventSummariesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAutomationEventsRequest,
|
|
4
|
-
ListAutomationEventsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAutomationEventsRequest, ListAutomationEventsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAutomationEventsCommandInput
|
|
8
|
-
extends ListAutomationEventsRequest {}
|
|
4
|
+
export interface ListAutomationEventsCommandInput extends ListAutomationEventsRequest {}
|
|
9
5
|
export interface ListAutomationEventsCommandOutput
|
|
10
|
-
extends ListAutomationEventsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAutomationEventsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAutomationEventsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAutomationEventsCommandInput
|
|
9
|
+
input: ListAutomationEventsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAutomationEventsCommandInput,
|
|
17
12
|
ListAutomationEventsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListAutomationRulePreviewResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAutomationRulePreviewCommandInput
|
|
8
|
-
extends ListAutomationRulePreviewRequest {}
|
|
7
|
+
export interface ListAutomationRulePreviewCommandInput extends ListAutomationRulePreviewRequest {}
|
|
9
8
|
export interface ListAutomationRulePreviewCommandOutput
|
|
10
|
-
extends ListAutomationRulePreviewResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListAutomationRulePreviewResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListAutomationRulePreviewCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListAutomationRulePreviewCommandInput
|
|
12
|
+
input: ListAutomationRulePreviewCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListAutomationRulePreviewCommandInput,
|
|
17
15
|
ListAutomationRulePreviewCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListAutomationRulePreviewCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListAutomationRulePreviewCommandInput
|
|
21
|
+
input: ListAutomationRulePreviewCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListAutomationRulePreviewCommandInput,
|
|
26
24
|
ListAutomationRulePreviewCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListAutomationRulePreviewSummariesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAutomationRulePreviewSummariesCommandInput
|
|
8
|
-
extends ListAutomationRulePreviewSummariesRequest {}
|
|
7
|
+
export interface ListAutomationRulePreviewSummariesCommandInput extends ListAutomationRulePreviewSummariesRequest {}
|
|
9
8
|
export interface ListAutomationRulePreviewSummariesCommandOutput
|
|
10
|
-
extends ListAutomationRulePreviewSummariesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListAutomationRulePreviewSummariesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListAutomationRulePreviewSummariesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListAutomationRulePreviewSummariesCommandInput
|
|
12
|
+
input: ListAutomationRulePreviewSummariesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListAutomationRulePreviewSummariesCommandInput,
|
|
17
15
|
ListAutomationRulePreviewSummariesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListAutomationRulePreviewSummariesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListAutomationRulePreviewSummariesCommandInput
|
|
21
|
+
input: ListAutomationRulePreviewSummariesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListAutomationRulePreviewSummariesCommandInput,
|
|
26
24
|
ListAutomationRulePreviewSummariesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAutomationRulesRequest,
|
|
4
|
-
ListAutomationRulesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAutomationRulesRequest, ListAutomationRulesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAutomationRulesCommandInput
|
|
8
|
-
extends ListAutomationRulesRequest {}
|
|
4
|
+
export interface ListAutomationRulesCommandInput extends ListAutomationRulesRequest {}
|
|
9
5
|
export interface ListAutomationRulesCommandOutput
|
|
10
|
-
extends ListAutomationRulesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAutomationRulesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAutomationRulesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAutomationRulesCommandInput
|
|
9
|
+
input: ListAutomationRulesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAutomationRulesCommandInput,
|
|
17
12
|
ListAutomationRulesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListRecommendedActionSummariesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRecommendedActionSummariesCommandInput
|
|
8
|
-
extends ListRecommendedActionSummariesRequest {}
|
|
7
|
+
export interface ListRecommendedActionSummariesCommandInput extends ListRecommendedActionSummariesRequest {}
|
|
9
8
|
export interface ListRecommendedActionSummariesCommandOutput
|
|
10
|
-
extends ListRecommendedActionSummariesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListRecommendedActionSummariesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListRecommendedActionSummariesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListRecommendedActionSummariesCommandInput
|
|
12
|
+
input: ListRecommendedActionSummariesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListRecommendedActionSummariesCommandInput,
|
|
17
15
|
ListRecommendedActionSummariesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListRecommendedActionsRequest,
|
|
4
|
-
ListRecommendedActionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListRecommendedActionsRequest, ListRecommendedActionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRecommendedActionsCommandInput
|
|
8
|
-
extends ListRecommendedActionsRequest {}
|
|
4
|
+
export interface ListRecommendedActionsCommandInput extends ListRecommendedActionsRequest {}
|
|
9
5
|
export interface ListRecommendedActionsCommandOutput
|
|
10
|
-
extends ListRecommendedActionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListRecommendedActionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListRecommendedActionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListRecommendedActionsCommandInput
|
|
9
|
+
input: ListRecommendedActionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListRecommendedActionsCommandInput,
|
|
17
12
|
ListRecommendedActionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
RollbackAutomationEventResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface RollbackAutomationEventCommandInput
|
|
8
|
-
extends RollbackAutomationEventRequest {}
|
|
7
|
+
export interface RollbackAutomationEventCommandInput extends RollbackAutomationEventRequest {}
|
|
9
8
|
export interface RollbackAutomationEventCommandOutput
|
|
10
|
-
extends RollbackAutomationEventResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends RollbackAutomationEventResponse, __MetadataBearer {}
|
|
12
10
|
declare const RollbackAutomationEventCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: RollbackAutomationEventCommandInput
|
|
12
|
+
input: RollbackAutomationEventCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
RollbackAutomationEventCommandInput,
|
|
17
15
|
RollbackAutomationEventCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const RollbackAutomationEventCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: RollbackAutomationEventCommandInput
|
|
21
|
+
input: RollbackAutomationEventCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
RollbackAutomationEventCommandInput,
|
|
26
24
|
RollbackAutomationEventCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartAutomationEventRequest,
|
|
4
|
-
StartAutomationEventResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartAutomationEventRequest, StartAutomationEventResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartAutomationEventCommandInput
|
|
8
|
-
extends StartAutomationEventRequest {}
|
|
4
|
+
export interface StartAutomationEventCommandInput extends StartAutomationEventRequest {}
|
|
9
5
|
export interface StartAutomationEventCommandOutput
|
|
10
|
-
extends StartAutomationEventResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartAutomationEventResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartAutomationEventCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartAutomationEventCommandInput
|
|
9
|
+
input: StartAutomationEventCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartAutomationEventCommandInput,
|
|
17
12
|
StartAutomationEventCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartAutomationEventCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartAutomationEventCommandInput
|
|
18
|
+
input: StartAutomationEventCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartAutomationEventCommandInput,
|
|
26
21
|
StartAutomationEventCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateAutomationRuleRequest,
|
|
4
|
-
UpdateAutomationRuleResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateAutomationRuleRequest, UpdateAutomationRuleResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAutomationRuleCommandInput
|
|
8
|
-
extends UpdateAutomationRuleRequest {}
|
|
4
|
+
export interface UpdateAutomationRuleCommandInput extends UpdateAutomationRuleRequest {}
|
|
9
5
|
export interface UpdateAutomationRuleCommandOutput
|
|
10
|
-
extends UpdateAutomationRuleResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateAutomationRuleResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateAutomationRuleCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateAutomationRuleCommandInput
|
|
9
|
+
input: UpdateAutomationRuleCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateAutomationRuleCommandInput,
|
|
17
12
|
UpdateAutomationRuleCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateAutomationRuleCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateAutomationRuleCommandInput
|
|
18
|
+
input: UpdateAutomationRuleCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateAutomationRuleCommandInput,
|
|
26
21
|
UpdateAutomationRuleCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateEnrollmentConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateEnrollmentConfigurationCommandInput
|
|
8
|
-
extends UpdateEnrollmentConfigurationRequest {}
|
|
7
|
+
export interface UpdateEnrollmentConfigurationCommandInput extends UpdateEnrollmentConfigurationRequest {}
|
|
9
8
|
export interface UpdateEnrollmentConfigurationCommandOutput
|
|
10
|
-
extends UpdateEnrollmentConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateEnrollmentConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateEnrollmentConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateEnrollmentConfigurationCommandInput
|
|
12
|
+
input: UpdateEnrollmentConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateEnrollmentConfigurationCommandInput,
|
|
17
15
|
UpdateEnrollmentConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateEnrollmentConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateEnrollmentConfigurationCommandInput
|
|
21
|
+
input: UpdateEnrollmentConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateEnrollmentConfigurationCommandInput,
|
|
26
24
|
UpdateEnrollmentConfigurationCommandOutput,
|
|
@@ -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 ComputeOptimizerAutomationExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|