@aws-sdk/client-compute-optimizer-automation 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 +417 -275
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateAccountsCommand.js +2 -2
- package/dist-es/commands/CreateAutomationRuleCommand.js +2 -2
- package/dist-es/commands/DeleteAutomationRuleCommand.js +2 -2
- package/dist-es/commands/DisassociateAccountsCommand.js +2 -2
- package/dist-es/commands/GetAutomationEventCommand.js +2 -2
- package/dist-es/commands/GetAutomationRuleCommand.js +2 -2
- package/dist-es/commands/GetEnrollmentConfigurationCommand.js +2 -2
- package/dist-es/commands/ListAccountsCommand.js +2 -2
- package/dist-es/commands/ListAutomationEventStepsCommand.js +2 -2
- package/dist-es/commands/ListAutomationEventSummariesCommand.js +2 -2
- package/dist-es/commands/ListAutomationEventsCommand.js +2 -2
- package/dist-es/commands/ListAutomationRulePreviewCommand.js +2 -2
- package/dist-es/commands/ListAutomationRulePreviewSummariesCommand.js +2 -2
- package/dist-es/commands/ListAutomationRulesCommand.js +2 -2
- package/dist-es/commands/ListRecommendedActionSummariesCommand.js +2 -2
- package/dist-es/commands/ListRecommendedActionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RollbackAutomationEventCommand.js +2 -2
- package/dist-es/commands/StartAutomationEventCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAutomationRuleCommand.js +2 -2
- package/dist-es/commands/UpdateEnrollmentConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +255 -225
- package/dist-types/ComputeOptimizerAutomationClient.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 +113 -140
- package/dist-types/ts3.4/ComputeOptimizerAutomationClient.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 +112 -140
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.computeoptimizerautomation",
|
|
32
|
+
version: "2025-09-22",
|
|
33
|
+
serviceTarget: "ComputeOptimizerAutomationService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Compute Optimizer Automation",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateAccounts } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateAccounts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateAccountsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateAccountsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "AssociateAccounts", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "AssociateAccountsCommand")
|
|
14
|
-
.sc(AssociateAccounts)
|
|
14
|
+
.sc(AssociateAccounts$)
|
|
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 { CreateAutomationRule } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAutomationRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAutomationRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAutomationRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "CreateAutomationRule", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "CreateAutomationRuleCommand")
|
|
14
|
-
.sc(CreateAutomationRule)
|
|
14
|
+
.sc(CreateAutomationRule$)
|
|
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 { DeleteAutomationRule } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAutomationRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAutomationRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAutomationRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "DeleteAutomationRule", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "DeleteAutomationRuleCommand")
|
|
14
|
-
.sc(DeleteAutomationRule)
|
|
14
|
+
.sc(DeleteAutomationRule$)
|
|
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 { DisassociateAccounts } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateAccounts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateAccountsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateAccountsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "DisassociateAccounts", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "DisassociateAccountsCommand")
|
|
14
|
-
.sc(DisassociateAccounts)
|
|
14
|
+
.sc(DisassociateAccounts$)
|
|
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 { GetAutomationEvent } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAutomationEvent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAutomationEventCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAutomationEventCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "GetAutomationEvent", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "GetAutomationEventCommand")
|
|
14
|
-
.sc(GetAutomationEvent)
|
|
14
|
+
.sc(GetAutomationEvent$)
|
|
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 { GetAutomationRule } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAutomationRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAutomationRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAutomationRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "GetAutomationRule", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "GetAutomationRuleCommand")
|
|
14
|
-
.sc(GetAutomationRule)
|
|
14
|
+
.sc(GetAutomationRule$)
|
|
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 { GetEnrollmentConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEnrollmentConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEnrollmentConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEnrollmentConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "GetEnrollmentConfiguration", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "GetEnrollmentConfigurationCommand")
|
|
14
|
-
.sc(GetEnrollmentConfiguration)
|
|
14
|
+
.sc(GetEnrollmentConfiguration$)
|
|
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 { ListAccounts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAccounts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAccountsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAccountsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListAccounts", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListAccountsCommand")
|
|
14
|
-
.sc(ListAccounts)
|
|
14
|
+
.sc(ListAccounts$)
|
|
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 { ListAutomationEventSteps } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutomationEventSteps$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutomationEventStepsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutomationEventStepsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListAutomationEventSteps", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListAutomationEventStepsCommand")
|
|
14
|
-
.sc(ListAutomationEventSteps)
|
|
14
|
+
.sc(ListAutomationEventSteps$)
|
|
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 { ListAutomationEventSummaries } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutomationEventSummaries$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutomationEventSummariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutomationEventSummariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListAutomationEventSummaries", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListAutomationEventSummariesCommand")
|
|
14
|
-
.sc(ListAutomationEventSummaries)
|
|
14
|
+
.sc(ListAutomationEventSummaries$)
|
|
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 { ListAutomationEvents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutomationEvents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutomationEventsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutomationEventsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListAutomationEvents", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListAutomationEventsCommand")
|
|
14
|
-
.sc(ListAutomationEvents)
|
|
14
|
+
.sc(ListAutomationEvents$)
|
|
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 { ListAutomationRulePreview } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutomationRulePreview$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutomationRulePreviewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutomationRulePreviewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListAutomationRulePreview", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListAutomationRulePreviewCommand")
|
|
14
|
-
.sc(ListAutomationRulePreview)
|
|
14
|
+
.sc(ListAutomationRulePreview$)
|
|
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 { ListAutomationRulePreviewSummaries } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutomationRulePreviewSummaries$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutomationRulePreviewSummariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutomationRulePreviewSummariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListAutomationRulePreviewSummaries", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListAutomationRulePreviewSummariesCommand")
|
|
14
|
-
.sc(ListAutomationRulePreviewSummaries)
|
|
14
|
+
.sc(ListAutomationRulePreviewSummaries$)
|
|
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 { ListAutomationRules } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutomationRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutomationRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutomationRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListAutomationRules", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListAutomationRulesCommand")
|
|
14
|
-
.sc(ListAutomationRules)
|
|
14
|
+
.sc(ListAutomationRules$)
|
|
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 { ListRecommendedActionSummaries } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRecommendedActionSummaries$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRecommendedActionSummariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRecommendedActionSummariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListRecommendedActionSummaries", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListRecommendedActionSummariesCommand")
|
|
14
|
-
.sc(ListRecommendedActionSummaries)
|
|
14
|
+
.sc(ListRecommendedActionSummaries$)
|
|
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 { ListRecommendedActions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRecommendedActions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRecommendedActionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRecommendedActionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListRecommendedActions", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListRecommendedActionsCommand")
|
|
14
|
-
.sc(ListRecommendedActions)
|
|
14
|
+
.sc(ListRecommendedActions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "ListTagsForResource", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RollbackAutomationEvent } from "../schemas/schemas_0";
|
|
4
|
+
import { RollbackAutomationEvent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RollbackAutomationEventCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RollbackAutomationEventCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "RollbackAutomationEvent", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "RollbackAutomationEventCommand")
|
|
14
|
-
.sc(RollbackAutomationEvent)
|
|
14
|
+
.sc(RollbackAutomationEvent$)
|
|
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 { StartAutomationEvent } from "../schemas/schemas_0";
|
|
4
|
+
import { StartAutomationEvent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartAutomationEventCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartAutomationEventCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "StartAutomationEvent", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "StartAutomationEventCommand")
|
|
14
|
-
.sc(StartAutomationEvent)
|
|
14
|
+
.sc(StartAutomationEvent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "TagResource", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "UntagResource", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAutomationRule } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAutomationRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAutomationRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAutomationRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "UpdateAutomationRule", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "UpdateAutomationRuleCommand")
|
|
14
|
-
.sc(UpdateAutomationRule)
|
|
14
|
+
.sc(UpdateAutomationRule$)
|
|
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 { UpdateEnrollmentConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateEnrollmentConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateEnrollmentConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateEnrollmentConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComputeOptimizerAutomationService", "UpdateEnrollmentConfiguration", {})
|
|
13
13
|
.n("ComputeOptimizerAutomationClient", "UpdateEnrollmentConfigurationCommand")
|
|
14
|
-
.sc(UpdateEnrollmentConfiguration)
|
|
14
|
+
.sc(UpdateEnrollmentConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./ComputeOptimizerAutomationClient";
|
|
2
2
|
export * from "./ComputeOptimizerAutomation";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export * from "./schemas/schemas_0";
|
|
4
5
|
export * from "./pagination";
|
|
5
6
|
export * from "./models/enums";
|
|
6
7
|
export * from "./models/errors";
|
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.computeoptimizerautomation",
|
|
29
|
+
version: "2025-09-22",
|
|
30
|
+
serviceTarget: "ComputeOptimizerAutomationService",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Compute Optimizer Automation",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|