@aws-sdk/client-cost-optimization-hub 3.1044.0 → 3.1046.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 (59) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  2. package/dist-cjs/endpoint/bdd.js +2 -2
  3. package/dist-cjs/endpoint/endpointResolver.js +4 -4
  4. package/dist-cjs/index.js +32 -33
  5. package/dist-cjs/models/CostOptimizationHubServiceException.js +3 -3
  6. package/dist-cjs/runtimeConfig.browser.js +12 -14
  7. package/dist-cjs/runtimeConfig.js +18 -22
  8. package/dist-cjs/runtimeConfig.shared.js +9 -10
  9. package/dist-es/CostOptimizationHub.js +1 -1
  10. package/dist-es/CostOptimizationHubClient.js +5 -5
  11. package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  12. package/dist-es/commands/GetPreferencesCommand.js +2 -2
  13. package/dist-es/commands/GetRecommendationCommand.js +2 -2
  14. package/dist-es/commands/ListEfficiencyMetricsCommand.js +2 -2
  15. package/dist-es/commands/ListEnrollmentStatusesCommand.js +2 -2
  16. package/dist-es/commands/ListRecommendationSummariesCommand.js +2 -2
  17. package/dist-es/commands/ListRecommendationsCommand.js +2 -2
  18. package/dist-es/commands/UpdateEnrollmentStatusCommand.js +2 -2
  19. package/dist-es/commands/UpdatePreferencesCommand.js +2 -2
  20. package/dist-es/endpoint/bdd.js +1 -1
  21. package/dist-es/endpoint/endpointResolver.js +1 -1
  22. package/dist-es/models/CostOptimizationHubServiceException.js +1 -1
  23. package/dist-es/runtimeConfig.browser.js +4 -6
  24. package/dist-es/runtimeConfig.js +4 -8
  25. package/dist-es/runtimeConfig.shared.js +3 -4
  26. package/dist-es/runtimeExtensions.js +2 -2
  27. package/dist-types/CostOptimizationHubClient.d.ts +5 -5
  28. package/dist-types/commands/GetPreferencesCommand.d.ts +6 -4
  29. package/dist-types/commands/GetRecommendationCommand.d.ts +6 -4
  30. package/dist-types/commands/ListEfficiencyMetricsCommand.d.ts +6 -4
  31. package/dist-types/commands/ListEnrollmentStatusesCommand.d.ts +6 -4
  32. package/dist-types/commands/ListRecommendationSummariesCommand.d.ts +6 -4
  33. package/dist-types/commands/ListRecommendationsCommand.d.ts +6 -4
  34. package/dist-types/commands/UpdateEnrollmentStatusCommand.d.ts +6 -4
  35. package/dist-types/commands/UpdatePreferencesCommand.d.ts +6 -4
  36. package/dist-types/endpoint/bdd.d.ts +1 -1
  37. package/dist-types/extensionConfiguration.d.ts +1 -1
  38. package/dist-types/models/CostOptimizationHubServiceException.d.ts +1 -1
  39. package/dist-types/models/errors.d.ts +1 -1
  40. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  41. package/dist-types/runtimeConfig.d.ts +2 -2
  42. package/dist-types/runtimeConfig.native.d.ts +2 -2
  43. package/dist-types/ts3.4/CostOptimizationHubClient.d.ts +8 -14
  44. package/dist-types/ts3.4/commands/GetPreferencesCommand.d.ts +6 -4
  45. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +6 -4
  46. package/dist-types/ts3.4/commands/ListEfficiencyMetricsCommand.d.ts +6 -4
  47. package/dist-types/ts3.4/commands/ListEnrollmentStatusesCommand.d.ts +6 -4
  48. package/dist-types/ts3.4/commands/ListRecommendationSummariesCommand.d.ts +6 -4
  49. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +6 -4
  50. package/dist-types/ts3.4/commands/UpdateEnrollmentStatusCommand.d.ts +6 -4
  51. package/dist-types/ts3.4/commands/UpdatePreferencesCommand.d.ts +6 -4
  52. package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  53. package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  54. package/dist-types/ts3.4/models/CostOptimizationHubServiceException.d.ts +1 -1
  55. package/dist-types/ts3.4/models/errors.d.ts +1 -1
  56. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  57. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  58. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
  59. package/package.json +13 -34
@@ -1,6 +1,6 @@
1
1
  import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver";
2
- import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
3
- import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
2
+ import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/core/client";
3
+ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/core/protocols";
4
4
  import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
5
5
  export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
6
6
  const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
@@ -1,10 +1,10 @@
1
1
  import { type HostHeaderInputConfig, type HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
2
  import { type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
3
- import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/config-resolver";
4
- import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/middleware-endpoint";
5
- import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
- import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
- import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
3
+ import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/core/client";
4
+ import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/core/config";
5
+ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/core/endpoints";
6
+ import { type HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
7
+ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/retry";
8
8
  import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import type { GetPreferencesCommandInput, GetPreferencesCommandOutput } from "./commands/GetPreferencesCommand";
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostOptimizationHubClient";
4
4
  import type { GetPreferencesRequest, GetPreferencesResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface GetPreferencesCommandInput extends GetPreferencesRequest {
22
22
  export interface GetPreferencesCommandOutput extends GetPreferencesResponse, __MetadataBearer {
23
23
  }
24
24
  declare const GetPreferencesCommand_base: {
25
- new (input: GetPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<GetPreferencesCommandInput, GetPreferencesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetPreferencesCommandInput]): import("@smithy/smithy-client").CommandImpl<GetPreferencesCommandInput, GetPreferencesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetPreferencesCommandInput): import("@smithy/core/client").CommandImpl<GetPreferencesCommandInput, GetPreferencesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [GetPreferencesCommandInput]): import("@smithy/core/client").CommandImpl<GetPreferencesCommandInput, GetPreferencesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns a set of preferences for an account in order to add account-specific preferences into the service. These preferences impact how the savings associated with recommendations are presented—estimated savings after discounts or estimated savings before discounts, for example.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostOptimizationHubClient";
4
4
  import type { GetRecommendationRequest, GetRecommendationResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface GetRecommendationCommandInput extends GetRecommendationRequest
22
22
  export interface GetRecommendationCommandOutput extends GetRecommendationResponse, __MetadataBearer {
23
23
  }
24
24
  declare const GetRecommendationCommand_base: {
25
- new (input: GetRecommendationCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecommendationCommandInput, GetRecommendationCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetRecommendationCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecommendationCommandInput, GetRecommendationCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetRecommendationCommandInput): import("@smithy/core/client").CommandImpl<GetRecommendationCommandInput, GetRecommendationCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetRecommendationCommandInput): import("@smithy/core/client").CommandImpl<GetRecommendationCommandInput, GetRecommendationCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns both the current and recommended resource configuration and the estimated cost impact for a recommendation.</p> <p>The <code>recommendationId</code> is only valid for up to a maximum of 24 hours as recommendations are refreshed daily. To retrieve the <code>recommendationId</code>, use the <code>ListRecommendations</code> API.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostOptimizationHubClient";
4
4
  import type { ListEfficiencyMetricsRequest, ListEfficiencyMetricsResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface ListEfficiencyMetricsCommandInput extends ListEfficiencyMetrics
22
22
  export interface ListEfficiencyMetricsCommandOutput extends ListEfficiencyMetricsResponse, __MetadataBearer {
23
23
  }
24
24
  declare const ListEfficiencyMetricsCommand_base: {
25
- new (input: ListEfficiencyMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEfficiencyMetricsCommandInput, ListEfficiencyMetricsCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListEfficiencyMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEfficiencyMetricsCommandInput, ListEfficiencyMetricsCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListEfficiencyMetricsCommandInput): import("@smithy/core/client").CommandImpl<ListEfficiencyMetricsCommandInput, ListEfficiencyMetricsCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListEfficiencyMetricsCommandInput): import("@smithy/core/client").CommandImpl<ListEfficiencyMetricsCommandInput, ListEfficiencyMetricsCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns cost efficiency metrics aggregated over time and optionally grouped by a specified dimension. The metrics provide insights into your cost optimization progress by tracking estimated savings, spending, and measures how effectively you're optimizing your Cloud resources.</p> <p>The operation supports both daily and monthly time granularities and allows grouping results by account ID, Amazon Web Services Region. Results are returned as time-series data, enabling you to analyze trends in your cost optimization performance over the specified time period.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostOptimizationHubClient";
4
4
  import type { ListEnrollmentStatusesRequest, ListEnrollmentStatusesResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface ListEnrollmentStatusesCommandInput extends ListEnrollmentStatus
22
22
  export interface ListEnrollmentStatusesCommandOutput extends ListEnrollmentStatusesResponse, __MetadataBearer {
23
23
  }
24
24
  declare const ListEnrollmentStatusesCommand_base: {
25
- new (input: ListEnrollmentStatusesCommandInput): import("@smithy/smithy-client").CommandImpl<ListEnrollmentStatusesCommandInput, ListEnrollmentStatusesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListEnrollmentStatusesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListEnrollmentStatusesCommandInput, ListEnrollmentStatusesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListEnrollmentStatusesCommandInput): import("@smithy/core/client").CommandImpl<ListEnrollmentStatusesCommandInput, ListEnrollmentStatusesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListEnrollmentStatusesCommandInput]): import("@smithy/core/client").CommandImpl<ListEnrollmentStatusesCommandInput, ListEnrollmentStatusesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Retrieves the enrollment status for an account. It can also return the list of accounts that are enrolled under the organization.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostOptimizationHubClient";
4
4
  import type { ListRecommendationSummariesRequest, ListRecommendationSummariesResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface ListRecommendationSummariesCommandInput extends ListRecommendat
22
22
  export interface ListRecommendationSummariesCommandOutput extends ListRecommendationSummariesResponse, __MetadataBearer {
23
23
  }
24
24
  declare const ListRecommendationSummariesCommand_base: {
25
- new (input: ListRecommendationSummariesCommandInput): import("@smithy/smithy-client").CommandImpl<ListRecommendationSummariesCommandInput, ListRecommendationSummariesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListRecommendationSummariesCommandInput): import("@smithy/smithy-client").CommandImpl<ListRecommendationSummariesCommandInput, ListRecommendationSummariesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListRecommendationSummariesCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationSummariesCommandInput, ListRecommendationSummariesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListRecommendationSummariesCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationSummariesCommandInput, ListRecommendationSummariesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns a concise representation of savings estimates for resources. Also returns de-duped savings across different types of recommendations.</p> <note> <p>The following filters are not supported for this API: <code>recommendationIds</code>, <code>resourceArns</code>, and <code>resourceIds</code>.</p> </note>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostOptimizationHubClient";
4
4
  import type { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface ListRecommendationsCommandInput extends ListRecommendationsRequ
22
22
  export interface ListRecommendationsCommandOutput extends ListRecommendationsResponse, __MetadataBearer {
23
23
  }
24
24
  declare const ListRecommendationsCommand_base: {
25
- new (input: ListRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListRecommendationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListRecommendationsCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListRecommendationsCommandInput]): import("@smithy/core/client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns a list of recommendations.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostOptimizationHubClient";
4
4
  import type { UpdateEnrollmentStatusRequest, UpdateEnrollmentStatusResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface UpdateEnrollmentStatusCommandInput extends UpdateEnrollmentStat
22
22
  export interface UpdateEnrollmentStatusCommandOutput extends UpdateEnrollmentStatusResponse, __MetadataBearer {
23
23
  }
24
24
  declare const UpdateEnrollmentStatusCommand_base: {
25
- new (input: UpdateEnrollmentStatusCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateEnrollmentStatusCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: UpdateEnrollmentStatusCommandInput): import("@smithy/core/client").CommandImpl<UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateEnrollmentStatusCommandInput): import("@smithy/core/client").CommandImpl<UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Updates the enrollment (opt in and opt out) status of an account to the Cost Optimization Hub service.</p> <p>If the account is a management account of an organization, this action can also be used to enroll member accounts of the organization.</p> <p>You must have the appropriate permissions to opt in to Cost Optimization Hub and to view its recommendations. When you opt in, Cost Optimization Hub automatically creates a service-linked role in your account to access its data.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostOptimizationHubClient";
4
4
  import type { UpdatePreferencesRequest, UpdatePreferencesResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface UpdatePreferencesCommandInput extends UpdatePreferencesRequest
22
22
  export interface UpdatePreferencesCommandOutput extends UpdatePreferencesResponse, __MetadataBearer {
23
23
  }
24
24
  declare const UpdatePreferencesCommand_base: {
25
- new (input: UpdatePreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePreferencesCommandInput, UpdatePreferencesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [UpdatePreferencesCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdatePreferencesCommandInput, UpdatePreferencesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: UpdatePreferencesCommandInput): import("@smithy/core/client").CommandImpl<UpdatePreferencesCommandInput, UpdatePreferencesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [UpdatePreferencesCommandInput]): import("@smithy/core/client").CommandImpl<UpdatePreferencesCommandInput, UpdatePreferencesCommandOutput, CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Updates a set of preferences for an account in order to add account-specific preferences into the service. These preferences impact how the savings associated with recommendations are presented.</p>
@@ -1,2 +1,2 @@
1
- import { BinaryDecisionDiagram } from "@smithy/util-endpoints";
1
+ import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
2
2
  export declare const bdd: BinaryDecisionDiagram;
@@ -1,5 +1,5 @@
1
1
  import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
- import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
2
+ import type { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import type { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  /**
@@ -1,4 +1,4 @@
1
- import { type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException } from "@smithy/smithy-client";
1
+ import { type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException } from "@smithy/core/client";
2
2
  export type { __ServiceExceptionOptions };
3
3
  export { __ServiceException };
4
4
  /**
@@ -1,4 +1,4 @@
1
- import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
1
+ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
2
2
  import { CostOptimizationHubServiceException as __BaseException } from "./CostOptimizationHubServiceException";
3
3
  import type { ValidationExceptionReason } from "./enums";
4
4
  import type { ValidationExceptionDetail } from "./models_0";
@@ -5,13 +5,13 @@ import type { CostOptimizationHubClientConfig } from "./CostOptimizationHubClien
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: CostOptimizationHubClientConfig) => {
7
7
  runtime: string;
8
- defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
- requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
14
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
16
  sha256: import("@smithy/types").HashConstructor;
17
17
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,14 +5,14 @@ import type { CostOptimizationHubClientConfig } from "./CostOptimizationHubClien
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: CostOptimizationHubClientConfig) => {
7
7
  runtime: string;
8
- defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
9
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
11
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
12
12
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<string>;
15
- requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
17
  sha256: import("@smithy/types").HashConstructor;
18
18
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,7 +5,7 @@ import type { CostOptimizationHubClientConfig } from "./CostOptimizationHubClien
5
5
  export declare const getRuntimeConfig: (config: CostOptimizationHubClientConfig) => {
6
6
  runtime: string;
7
7
  sha256: import("@smithy/types").HashConstructor;
8
- requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
9
  cacheMiddleware?: boolean;
10
10
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
11
11
  protocolSettings: {
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: CostOptimizationHubClientConfig)
32
32
  retryMode: string | import("@smithy/types").Provider<string>;
33
33
  logger: import("@smithy/types").Logger;
34
34
  extensions: import("./runtimeExtensions").RuntimeExtension[];
35
- defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
35
+ defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
36
36
  customUserAgent?: string | import("@smithy/types").UserAgent;
37
37
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
38
38
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -6,25 +6,19 @@ import {
6
6
  UserAgentInputConfig,
7
7
  UserAgentResolvedConfig,
8
8
  } from "@aws-sdk/middleware-user-agent";
9
- import {
10
- RegionInputConfig,
11
- RegionResolvedConfig,
12
- } from "@smithy/config-resolver";
13
- import {
14
- EndpointInputConfig,
15
- EndpointResolvedConfig,
16
- } from "@smithy/middleware-endpoint";
17
- import {
18
- RetryInputConfig,
19
- RetryResolvedConfig,
20
- } from "@smithy/middleware-retry";
21
- import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
9
  import {
23
10
  DefaultsMode as __DefaultsMode,
24
11
  SmithyConfiguration as __SmithyConfiguration,
25
12
  SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
13
  Client as __Client,
27
- } from "@smithy/smithy-client";
14
+ } from "@smithy/core/client";
15
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
16
+ import {
17
+ EndpointInputConfig,
18
+ EndpointResolvedConfig,
19
+ } from "@smithy/core/endpoints";
20
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
21
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
28
22
  import {
29
23
  AwsCredentialIdentityProvider,
30
24
  BodyLengthCalculator as __BodyLengthCalculator,
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  CostOptimizationHubClientResolvedConfig,
@@ -18,7 +18,7 @@ export interface GetPreferencesCommandOutput
18
18
  declare const GetPreferencesCommand_base: {
19
19
  new (
20
20
  input: GetPreferencesCommandInput
21
- ): import("@smithy/smithy-client").CommandImpl<
21
+ ): import("@smithy/core/client").CommandImpl<
22
22
  GetPreferencesCommandInput,
23
23
  GetPreferencesCommandOutput,
24
24
  CostOptimizationHubClientResolvedConfig,
@@ -27,14 +27,16 @@ declare const GetPreferencesCommand_base: {
27
27
  >;
28
28
  new (
29
29
  ...[input]: [] | [GetPreferencesCommandInput]
30
- ): import("@smithy/smithy-client").CommandImpl<
30
+ ): import("@smithy/core/client").CommandImpl<
31
31
  GetPreferencesCommandInput,
32
32
  GetPreferencesCommandOutput,
33
33
  CostOptimizationHubClientResolvedConfig,
34
34
  ServiceInputTypes,
35
35
  ServiceOutputTypes
36
36
  >;
37
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
38
40
  };
39
41
  export declare class GetPreferencesCommand extends GetPreferencesCommand_base {
40
42
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  CostOptimizationHubClientResolvedConfig,
@@ -19,7 +19,7 @@ export interface GetRecommendationCommandOutput
19
19
  declare const GetRecommendationCommand_base: {
20
20
  new (
21
21
  input: GetRecommendationCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  GetRecommendationCommandInput,
24
24
  GetRecommendationCommandOutput,
25
25
  CostOptimizationHubClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const GetRecommendationCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: GetRecommendationCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  GetRecommendationCommandInput,
33
33
  GetRecommendationCommandOutput,
34
34
  CostOptimizationHubClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class GetRecommendationCommand extends GetRecommendationCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  CostOptimizationHubClientResolvedConfig,
@@ -19,7 +19,7 @@ export interface ListEfficiencyMetricsCommandOutput
19
19
  declare const ListEfficiencyMetricsCommand_base: {
20
20
  new (
21
21
  input: ListEfficiencyMetricsCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  ListEfficiencyMetricsCommandInput,
24
24
  ListEfficiencyMetricsCommandOutput,
25
25
  CostOptimizationHubClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const ListEfficiencyMetricsCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: ListEfficiencyMetricsCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  ListEfficiencyMetricsCommandInput,
33
33
  ListEfficiencyMetricsCommandOutput,
34
34
  CostOptimizationHubClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class ListEfficiencyMetricsCommand extends ListEfficiencyMetricsCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  CostOptimizationHubClientResolvedConfig,
@@ -19,7 +19,7 @@ export interface ListEnrollmentStatusesCommandOutput
19
19
  declare const ListEnrollmentStatusesCommand_base: {
20
20
  new (
21
21
  input: ListEnrollmentStatusesCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  ListEnrollmentStatusesCommandInput,
24
24
  ListEnrollmentStatusesCommandOutput,
25
25
  CostOptimizationHubClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const ListEnrollmentStatusesCommand_base: {
28
28
  >;
29
29
  new (
30
30
  ...[input]: [] | [ListEnrollmentStatusesCommandInput]
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  ListEnrollmentStatusesCommandInput,
33
33
  ListEnrollmentStatusesCommandOutput,
34
34
  CostOptimizationHubClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class ListEnrollmentStatusesCommand extends ListEnrollmentStatusesCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  CostOptimizationHubClientResolvedConfig,
@@ -19,7 +19,7 @@ export interface ListRecommendationSummariesCommandOutput
19
19
  declare const ListRecommendationSummariesCommand_base: {
20
20
  new (
21
21
  input: ListRecommendationSummariesCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  ListRecommendationSummariesCommandInput,
24
24
  ListRecommendationSummariesCommandOutput,
25
25
  CostOptimizationHubClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const ListRecommendationSummariesCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: ListRecommendationSummariesCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  ListRecommendationSummariesCommandInput,
33
33
  ListRecommendationSummariesCommandOutput,
34
34
  CostOptimizationHubClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class ListRecommendationSummariesCommand extends ListRecommendationSummariesCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  CostOptimizationHubClientResolvedConfig,
@@ -19,7 +19,7 @@ export interface ListRecommendationsCommandOutput
19
19
  declare const ListRecommendationsCommand_base: {
20
20
  new (
21
21
  input: ListRecommendationsCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  ListRecommendationsCommandInput,
24
24
  ListRecommendationsCommandOutput,
25
25
  CostOptimizationHubClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const ListRecommendationsCommand_base: {
28
28
  >;
29
29
  new (
30
30
  ...[input]: [] | [ListRecommendationsCommandInput]
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  ListRecommendationsCommandInput,
33
33
  ListRecommendationsCommandOutput,
34
34
  CostOptimizationHubClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class ListRecommendationsCommand extends ListRecommendationsCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  CostOptimizationHubClientResolvedConfig,
@@ -19,7 +19,7 @@ export interface UpdateEnrollmentStatusCommandOutput
19
19
  declare const UpdateEnrollmentStatusCommand_base: {
20
20
  new (
21
21
  input: UpdateEnrollmentStatusCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  UpdateEnrollmentStatusCommandInput,
24
24
  UpdateEnrollmentStatusCommandOutput,
25
25
  CostOptimizationHubClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const UpdateEnrollmentStatusCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: UpdateEnrollmentStatusCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  UpdateEnrollmentStatusCommandInput,
33
33
  UpdateEnrollmentStatusCommandOutput,
34
34
  CostOptimizationHubClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class UpdateEnrollmentStatusCommand extends UpdateEnrollmentStatusCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  CostOptimizationHubClientResolvedConfig,
@@ -19,7 +19,7 @@ export interface UpdatePreferencesCommandOutput
19
19
  declare const UpdatePreferencesCommand_base: {
20
20
  new (
21
21
  input: UpdatePreferencesCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  UpdatePreferencesCommandInput,
24
24
  UpdatePreferencesCommandOutput,
25
25
  CostOptimizationHubClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const UpdatePreferencesCommand_base: {
28
28
  >;
29
29
  new (
30
30
  ...[input]: [] | [UpdatePreferencesCommandInput]
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  UpdatePreferencesCommandInput,
33
33
  UpdatePreferencesCommandOutput,
34
34
  CostOptimizationHubClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class UpdatePreferencesCommand extends UpdatePreferencesCommand_base {
41
43
  protected static __types: {
@@ -1,2 +1,2 @@
1
- import { BinaryDecisionDiagram } from "@smithy/util-endpoints";
1
+ import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
2
2
  export declare const bdd: BinaryDecisionDiagram;
@@ -1,5 +1,5 @@
1
1
  import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
- import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  export interface CostOptimizationHubExtensionConfiguration