@aws-sdk/client-compute-optimizer-automation 3.938.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.
Files changed (173) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +392 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1668 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/ComputeOptimizerAutomation.js +53 -0
  12. package/dist-es/ComputeOptimizerAutomationClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AssociateAccountsCommand.js +16 -0
  16. package/dist-es/commands/CreateAutomationRuleCommand.js +16 -0
  17. package/dist-es/commands/DeleteAutomationRuleCommand.js +16 -0
  18. package/dist-es/commands/DisassociateAccountsCommand.js +16 -0
  19. package/dist-es/commands/GetAutomationEventCommand.js +16 -0
  20. package/dist-es/commands/GetAutomationRuleCommand.js +16 -0
  21. package/dist-es/commands/GetEnrollmentConfigurationCommand.js +16 -0
  22. package/dist-es/commands/ListAccountsCommand.js +16 -0
  23. package/dist-es/commands/ListAutomationEventStepsCommand.js +16 -0
  24. package/dist-es/commands/ListAutomationEventSummariesCommand.js +16 -0
  25. package/dist-es/commands/ListAutomationEventsCommand.js +16 -0
  26. package/dist-es/commands/ListAutomationRulePreviewCommand.js +16 -0
  27. package/dist-es/commands/ListAutomationRulePreviewSummariesCommand.js +16 -0
  28. package/dist-es/commands/ListAutomationRulesCommand.js +16 -0
  29. package/dist-es/commands/ListRecommendedActionSummariesCommand.js +16 -0
  30. package/dist-es/commands/ListRecommendedActionsCommand.js +16 -0
  31. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  32. package/dist-es/commands/RollbackAutomationEventCommand.js +16 -0
  33. package/dist-es/commands/StartAutomationEventCommand.js +16 -0
  34. package/dist-es/commands/TagResourceCommand.js +16 -0
  35. package/dist-es/commands/UntagResourceCommand.js +16 -0
  36. package/dist-es/commands/UpdateAutomationRuleCommand.js +16 -0
  37. package/dist-es/commands/UpdateEnrollmentConfigurationCommand.js +16 -0
  38. package/dist-es/commands/index.js +23 -0
  39. package/dist-es/endpoint/EndpointParameters.js +13 -0
  40. package/dist-es/endpoint/endpointResolver.js +14 -0
  41. package/dist-es/endpoint/ruleset.js +4 -0
  42. package/dist-es/extensionConfiguration.js +1 -0
  43. package/dist-es/index.js +7 -0
  44. package/dist-es/models/ComputeOptimizerAutomationServiceException.js +8 -0
  45. package/dist-es/models/enums.js +74 -0
  46. package/dist-es/models/errors.js +145 -0
  47. package/dist-es/models/models_0.js +28 -0
  48. package/dist-es/pagination/Interfaces.js +1 -0
  49. package/dist-es/pagination/ListAccountsPaginator.js +4 -0
  50. package/dist-es/pagination/ListAutomationEventStepsPaginator.js +4 -0
  51. package/dist-es/pagination/ListAutomationEventSummariesPaginator.js +4 -0
  52. package/dist-es/pagination/ListAutomationEventsPaginator.js +4 -0
  53. package/dist-es/pagination/ListAutomationRulePreviewPaginator.js +4 -0
  54. package/dist-es/pagination/ListAutomationRulePreviewSummariesPaginator.js +4 -0
  55. package/dist-es/pagination/ListAutomationRulesPaginator.js +4 -0
  56. package/dist-es/pagination/ListRecommendedActionSummariesPaginator.js +4 -0
  57. package/dist-es/pagination/ListRecommendedActionsPaginator.js +4 -0
  58. package/dist-es/pagination/index.js +10 -0
  59. package/dist-es/runtimeConfig.browser.js +34 -0
  60. package/dist-es/runtimeConfig.js +51 -0
  61. package/dist-es/runtimeConfig.native.js +11 -0
  62. package/dist-es/runtimeConfig.shared.js +37 -0
  63. package/dist-es/runtimeExtensions.js +9 -0
  64. package/dist-es/schemas/schemas_0.js +950 -0
  65. package/dist-types/ComputeOptimizerAutomation.d.ts +178 -0
  66. package/dist-types/ComputeOptimizerAutomationClient.d.ts +219 -0
  67. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  68. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  69. package/dist-types/commands/AssociateAccountsCommand.d.ts +112 -0
  70. package/dist-types/commands/CreateAutomationRuleCommand.d.ts +294 -0
  71. package/dist-types/commands/DeleteAutomationRuleCommand.d.ts +104 -0
  72. package/dist-types/commands/DisassociateAccountsCommand.d.ts +112 -0
  73. package/dist-types/commands/GetAutomationEventCommand.d.ts +117 -0
  74. package/dist-types/commands/GetAutomationRuleCommand.d.ts +195 -0
  75. package/dist-types/commands/GetEnrollmentConfigurationCommand.d.ts +99 -0
  76. package/dist-types/commands/ListAccountsCommand.d.ts +108 -0
  77. package/dist-types/commands/ListAutomationEventStepsCommand.d.ts +117 -0
  78. package/dist-types/commands/ListAutomationEventSummariesCommand.d.ts +130 -0
  79. package/dist-types/commands/ListAutomationEventsCommand.d.ts +130 -0
  80. package/dist-types/commands/ListAutomationRulePreviewCommand.d.ts +219 -0
  81. package/dist-types/commands/ListAutomationRulePreviewSummariesCommand.d.ts +186 -0
  82. package/dist-types/commands/ListAutomationRulesCommand.d.ts +133 -0
  83. package/dist-types/commands/ListRecommendedActionSummariesCommand.d.ts +118 -0
  84. package/dist-types/commands/ListRecommendedActionsCommand.d.ts +151 -0
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +103 -0
  86. package/dist-types/commands/RollbackAutomationEventCommand.d.ts +106 -0
  87. package/dist-types/commands/StartAutomationEventCommand.d.ts +110 -0
  88. package/dist-types/commands/TagResourceCommand.d.ts +110 -0
  89. package/dist-types/commands/UntagResourceCommand.d.ts +107 -0
  90. package/dist-types/commands/UpdateAutomationRuleCommand.d.ts +281 -0
  91. package/dist-types/commands/UpdateEnrollmentConfigurationCommand.d.ts +110 -0
  92. package/dist-types/commands/index.d.ts +23 -0
  93. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  94. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  95. package/dist-types/endpoint/ruleset.d.ts +2 -0
  96. package/dist-types/extensionConfiguration.d.ts +9 -0
  97. package/dist-types/index.d.ts +16 -0
  98. package/dist-types/models/ComputeOptimizerAutomationServiceException.d.ts +14 -0
  99. package/dist-types/models/enums.d.ts +178 -0
  100. package/dist-types/models/errors.d.ts +146 -0
  101. package/dist-types/models/models_0.d.ts +2028 -0
  102. package/dist-types/pagination/Interfaces.d.ts +8 -0
  103. package/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/ListAutomationEventStepsPaginator.d.ts +7 -0
  105. package/dist-types/pagination/ListAutomationEventSummariesPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListAutomationEventsPaginator.d.ts +7 -0
  107. package/dist-types/pagination/ListAutomationRulePreviewPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListAutomationRulePreviewSummariesPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListAutomationRulesPaginator.d.ts +7 -0
  110. package/dist-types/pagination/ListRecommendedActionSummariesPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListRecommendedActionsPaginator.d.ts +7 -0
  112. package/dist-types/pagination/index.d.ts +10 -0
  113. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  114. package/dist-types/runtimeConfig.d.ts +51 -0
  115. package/dist-types/runtimeConfig.native.d.ts +50 -0
  116. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  117. package/dist-types/runtimeExtensions.d.ts +17 -0
  118. package/dist-types/schemas/schemas_0.d.ts +141 -0
  119. package/dist-types/ts3.4/ComputeOptimizerAutomation.d.ts +411 -0
  120. package/dist-types/ts3.4/ComputeOptimizerAutomationClient.d.ts +264 -0
  121. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  122. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  123. package/dist-types/ts3.4/commands/AssociateAccountsCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateAutomationRuleCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/DeleteAutomationRuleCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetAutomationEventCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/GetAutomationRuleCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/GetEnrollmentConfigurationCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
  131. package/dist-types/ts3.4/commands/ListAutomationEventStepsCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/ListAutomationEventSummariesCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/ListAutomationEventsCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListAutomationRulePreviewCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListAutomationRulePreviewSummariesCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/ListAutomationRulesCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ListRecommendedActionSummariesCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/ListRecommendedActionsCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  140. package/dist-types/ts3.4/commands/RollbackAutomationEventCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/StartAutomationEventCommand.d.ts +51 -0
  142. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  143. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  144. package/dist-types/ts3.4/commands/UpdateAutomationRuleCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/UpdateEnrollmentConfigurationCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/index.d.ts +23 -0
  147. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  148. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  149. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  150. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  151. package/dist-types/ts3.4/index.d.ts +11 -0
  152. package/dist-types/ts3.4/models/ComputeOptimizerAutomationServiceException.d.ts +9 -0
  153. package/dist-types/ts3.4/models/enums.d.ts +93 -0
  154. package/dist-types/ts3.4/models/errors.d.ts +87 -0
  155. package/dist-types/ts3.4/models/models_0.d.ts +520 -0
  156. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  157. package/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
  158. package/dist-types/ts3.4/pagination/ListAutomationEventStepsPaginator.d.ts +11 -0
  159. package/dist-types/ts3.4/pagination/ListAutomationEventSummariesPaginator.d.ts +11 -0
  160. package/dist-types/ts3.4/pagination/ListAutomationEventsPaginator.d.ts +11 -0
  161. package/dist-types/ts3.4/pagination/ListAutomationRulePreviewPaginator.d.ts +11 -0
  162. package/dist-types/ts3.4/pagination/ListAutomationRulePreviewSummariesPaginator.d.ts +11 -0
  163. package/dist-types/ts3.4/pagination/ListAutomationRulesPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListRecommendedActionSummariesPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListRecommendedActionsPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  167. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +98 -0
  168. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  169. package/dist-types/ts3.4/runtimeConfig.native.d.ts +102 -0
  170. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
  171. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  172. package/dist-types/ts3.4/schemas/schemas_0.d.ts +146 -0
  173. package/package.json +99 -0
@@ -0,0 +1,47 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ Provider,
13
+ } from "@smithy/types";
14
+ import { ComputeOptimizerAutomationClientResolvedConfig } from "../ComputeOptimizerAutomationClient";
15
+ export interface ComputeOptimizerAutomationHttpAuthSchemeParameters
16
+ extends HttpAuthSchemeParameters {
17
+ region?: string;
18
+ }
19
+ export interface ComputeOptimizerAutomationHttpAuthSchemeParametersProvider
20
+ extends HttpAuthSchemeParametersProvider<
21
+ ComputeOptimizerAutomationClientResolvedConfig,
22
+ HandlerExecutionContext,
23
+ ComputeOptimizerAutomationHttpAuthSchemeParameters,
24
+ object
25
+ > {}
26
+ export declare const defaultComputeOptimizerAutomationHttpAuthSchemeParametersProvider: (
27
+ config: ComputeOptimizerAutomationClientResolvedConfig,
28
+ context: HandlerExecutionContext,
29
+ input: object
30
+ ) => Promise<ComputeOptimizerAutomationHttpAuthSchemeParameters>;
31
+ export interface ComputeOptimizerAutomationHttpAuthSchemeProvider
32
+ extends HttpAuthSchemeProvider<ComputeOptimizerAutomationHttpAuthSchemeParameters> {}
33
+ export declare const defaultComputeOptimizerAutomationHttpAuthSchemeProvider: ComputeOptimizerAutomationHttpAuthSchemeProvider;
34
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
+ authSchemePreference?: string[] | Provider<string[]>;
36
+ httpAuthSchemes?: HttpAuthScheme[];
37
+ httpAuthSchemeProvider?: ComputeOptimizerAutomationHttpAuthSchemeProvider;
38
+ }
39
+ export interface HttpAuthSchemeResolvedConfig
40
+ extends AwsSdkSigV4AuthResolvedConfig {
41
+ readonly authSchemePreference: Provider<string[]>;
42
+ readonly httpAuthSchemes: HttpAuthScheme[];
43
+ readonly httpAuthSchemeProvider: ComputeOptimizerAutomationHttpAuthSchemeProvider;
44
+ }
45
+ export declare const resolveHttpAuthSchemeConfig: <T>(
46
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
47
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ AssociateAccountsRequest,
10
+ AssociateAccountsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface AssociateAccountsCommandInput
15
+ extends AssociateAccountsRequest {}
16
+ export interface AssociateAccountsCommandOutput
17
+ extends AssociateAccountsResponse,
18
+ __MetadataBearer {}
19
+ declare const AssociateAccountsCommand_base: {
20
+ new (
21
+ input: AssociateAccountsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ AssociateAccountsCommandInput,
24
+ AssociateAccountsCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: AssociateAccountsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ AssociateAccountsCommandInput,
33
+ AssociateAccountsCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class AssociateAccountsCommand extends AssociateAccountsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: AssociateAccountsRequest;
44
+ output: AssociateAccountsResponse;
45
+ };
46
+ sdk: {
47
+ input: AssociateAccountsCommandInput;
48
+ output: AssociateAccountsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ CreateAutomationRuleRequest,
10
+ CreateAutomationRuleResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAutomationRuleCommandInput
15
+ extends CreateAutomationRuleRequest {}
16
+ export interface CreateAutomationRuleCommandOutput
17
+ extends CreateAutomationRuleResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateAutomationRuleCommand_base: {
20
+ new (
21
+ input: CreateAutomationRuleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateAutomationRuleCommandInput,
24
+ CreateAutomationRuleCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateAutomationRuleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateAutomationRuleCommandInput,
33
+ CreateAutomationRuleCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateAutomationRuleCommand extends CreateAutomationRuleCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateAutomationRuleRequest;
44
+ output: CreateAutomationRuleResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateAutomationRuleCommandInput;
48
+ output: CreateAutomationRuleCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ DeleteAutomationRuleRequest,
10
+ DeleteAutomationRuleResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteAutomationRuleCommandInput
15
+ extends DeleteAutomationRuleRequest {}
16
+ export interface DeleteAutomationRuleCommandOutput
17
+ extends DeleteAutomationRuleResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteAutomationRuleCommand_base: {
20
+ new (
21
+ input: DeleteAutomationRuleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteAutomationRuleCommandInput,
24
+ DeleteAutomationRuleCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteAutomationRuleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteAutomationRuleCommandInput,
33
+ DeleteAutomationRuleCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteAutomationRuleCommand extends DeleteAutomationRuleCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteAutomationRuleRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteAutomationRuleCommandInput;
48
+ output: DeleteAutomationRuleCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ DisassociateAccountsRequest,
10
+ DisassociateAccountsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DisassociateAccountsCommandInput
15
+ extends DisassociateAccountsRequest {}
16
+ export interface DisassociateAccountsCommandOutput
17
+ extends DisassociateAccountsResponse,
18
+ __MetadataBearer {}
19
+ declare const DisassociateAccountsCommand_base: {
20
+ new (
21
+ input: DisassociateAccountsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DisassociateAccountsCommandInput,
24
+ DisassociateAccountsCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DisassociateAccountsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DisassociateAccountsCommandInput,
33
+ DisassociateAccountsCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DisassociateAccountsCommand extends DisassociateAccountsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DisassociateAccountsRequest;
44
+ output: DisassociateAccountsResponse;
45
+ };
46
+ sdk: {
47
+ input: DisassociateAccountsCommandInput;
48
+ output: DisassociateAccountsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ GetAutomationEventRequest,
10
+ GetAutomationEventResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetAutomationEventCommandInput
15
+ extends GetAutomationEventRequest {}
16
+ export interface GetAutomationEventCommandOutput
17
+ extends GetAutomationEventResponse,
18
+ __MetadataBearer {}
19
+ declare const GetAutomationEventCommand_base: {
20
+ new (
21
+ input: GetAutomationEventCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetAutomationEventCommandInput,
24
+ GetAutomationEventCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetAutomationEventCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetAutomationEventCommandInput,
33
+ GetAutomationEventCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetAutomationEventCommand extends GetAutomationEventCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetAutomationEventRequest;
44
+ output: GetAutomationEventResponse;
45
+ };
46
+ sdk: {
47
+ input: GetAutomationEventCommandInput;
48
+ output: GetAutomationEventCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ GetAutomationRuleRequest,
10
+ GetAutomationRuleResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetAutomationRuleCommandInput
15
+ extends GetAutomationRuleRequest {}
16
+ export interface GetAutomationRuleCommandOutput
17
+ extends GetAutomationRuleResponse,
18
+ __MetadataBearer {}
19
+ declare const GetAutomationRuleCommand_base: {
20
+ new (
21
+ input: GetAutomationRuleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetAutomationRuleCommandInput,
24
+ GetAutomationRuleCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetAutomationRuleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetAutomationRuleCommandInput,
33
+ GetAutomationRuleCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetAutomationRuleCommand extends GetAutomationRuleCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetAutomationRuleRequest;
44
+ output: GetAutomationRuleResponse;
45
+ };
46
+ sdk: {
47
+ input: GetAutomationRuleCommandInput;
48
+ output: GetAutomationRuleCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ GetEnrollmentConfigurationRequest,
10
+ GetEnrollmentConfigurationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetEnrollmentConfigurationCommandInput
15
+ extends GetEnrollmentConfigurationRequest {}
16
+ export interface GetEnrollmentConfigurationCommandOutput
17
+ extends GetEnrollmentConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetEnrollmentConfigurationCommand_base: {
20
+ new (
21
+ input: GetEnrollmentConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetEnrollmentConfigurationCommandInput,
24
+ GetEnrollmentConfigurationCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [GetEnrollmentConfigurationCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetEnrollmentConfigurationCommandInput,
33
+ GetEnrollmentConfigurationCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetEnrollmentConfigurationCommand extends GetEnrollmentConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: {};
44
+ output: GetEnrollmentConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetEnrollmentConfigurationCommandInput;
48
+ output: GetEnrollmentConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListAccountsCommandInput extends ListAccountsRequest {}
12
+ export interface ListAccountsCommandOutput
13
+ extends ListAccountsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListAccountsCommand_base: {
16
+ new (
17
+ input: ListAccountsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListAccountsCommandInput,
20
+ ListAccountsCommandOutput,
21
+ ComputeOptimizerAutomationClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListAccountsCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListAccountsCommandInput,
29
+ ListAccountsCommandOutput,
30
+ ComputeOptimizerAutomationClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListAccountsCommand extends ListAccountsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListAccountsRequest;
40
+ output: ListAccountsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListAccountsCommandInput;
44
+ output: ListAccountsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ ListAutomationEventStepsRequest,
10
+ ListAutomationEventStepsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAutomationEventStepsCommandInput
15
+ extends ListAutomationEventStepsRequest {}
16
+ export interface ListAutomationEventStepsCommandOutput
17
+ extends ListAutomationEventStepsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAutomationEventStepsCommand_base: {
20
+ new (
21
+ input: ListAutomationEventStepsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListAutomationEventStepsCommandInput,
24
+ ListAutomationEventStepsCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListAutomationEventStepsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListAutomationEventStepsCommandInput,
33
+ ListAutomationEventStepsCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListAutomationEventStepsCommand extends ListAutomationEventStepsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListAutomationEventStepsRequest;
44
+ output: ListAutomationEventStepsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListAutomationEventStepsCommandInput;
48
+ output: ListAutomationEventStepsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ ListAutomationEventSummariesRequest,
10
+ ListAutomationEventSummariesResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAutomationEventSummariesCommandInput
15
+ extends ListAutomationEventSummariesRequest {}
16
+ export interface ListAutomationEventSummariesCommandOutput
17
+ extends ListAutomationEventSummariesResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAutomationEventSummariesCommand_base: {
20
+ new (
21
+ input: ListAutomationEventSummariesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListAutomationEventSummariesCommandInput,
24
+ ListAutomationEventSummariesCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListAutomationEventSummariesCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListAutomationEventSummariesCommandInput,
33
+ ListAutomationEventSummariesCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListAutomationEventSummariesCommand extends ListAutomationEventSummariesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListAutomationEventSummariesRequest;
44
+ output: ListAutomationEventSummariesResponse;
45
+ };
46
+ sdk: {
47
+ input: ListAutomationEventSummariesCommandInput;
48
+ output: ListAutomationEventSummariesCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ ListAutomationEventsRequest,
10
+ ListAutomationEventsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAutomationEventsCommandInput
15
+ extends ListAutomationEventsRequest {}
16
+ export interface ListAutomationEventsCommandOutput
17
+ extends ListAutomationEventsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAutomationEventsCommand_base: {
20
+ new (
21
+ input: ListAutomationEventsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListAutomationEventsCommandInput,
24
+ ListAutomationEventsCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListAutomationEventsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListAutomationEventsCommandInput,
33
+ ListAutomationEventsCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListAutomationEventsCommand extends ListAutomationEventsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListAutomationEventsRequest;
44
+ output: ListAutomationEventsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListAutomationEventsCommandInput;
48
+ output: ListAutomationEventsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ComputeOptimizerAutomationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ComputeOptimizerAutomationClient";
8
+ import {
9
+ ListAutomationRulePreviewRequest,
10
+ ListAutomationRulePreviewResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAutomationRulePreviewCommandInput
15
+ extends ListAutomationRulePreviewRequest {}
16
+ export interface ListAutomationRulePreviewCommandOutput
17
+ extends ListAutomationRulePreviewResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAutomationRulePreviewCommand_base: {
20
+ new (
21
+ input: ListAutomationRulePreviewCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListAutomationRulePreviewCommandInput,
24
+ ListAutomationRulePreviewCommandOutput,
25
+ ComputeOptimizerAutomationClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListAutomationRulePreviewCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListAutomationRulePreviewCommandInput,
33
+ ListAutomationRulePreviewCommandOutput,
34
+ ComputeOptimizerAutomationClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListAutomationRulePreviewCommand extends ListAutomationRulePreviewCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListAutomationRulePreviewRequest;
44
+ output: ListAutomationRulePreviewResponse;
45
+ };
46
+ sdk: {
47
+ input: ListAutomationRulePreviewCommandInput;
48
+ output: ListAutomationRulePreviewCommandOutput;
49
+ };
50
+ };
51
+ }