@aws-sdk/client-cost-optimization-hub 3.927.0 → 3.928.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 (28) hide show
  1. package/dist-cjs/index.js +913 -730
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/CostOptimizationHubClient.js +2 -0
  4. package/dist-es/commands/GetPreferencesCommand.js +3 -9
  5. package/dist-es/commands/GetRecommendationCommand.js +3 -9
  6. package/dist-es/commands/ListEnrollmentStatusesCommand.js +3 -9
  7. package/dist-es/commands/ListRecommendationSummariesCommand.js +3 -9
  8. package/dist-es/commands/ListRecommendationsCommand.js +3 -9
  9. package/dist-es/commands/UpdateEnrollmentStatusCommand.js +3 -9
  10. package/dist-es/commands/UpdatePreferencesCommand.js +3 -9
  11. package/dist-es/runtimeConfig.shared.js +7 -0
  12. package/dist-es/schemas/schemas_0.js +892 -0
  13. package/dist-types/CostOptimizationHubClient.d.ts +10 -1
  14. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  15. package/dist-types/runtimeConfig.d.ts +1 -0
  16. package/dist-types/runtimeConfig.native.d.ts +1 -0
  17. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  18. package/dist-types/schemas/schemas_0.d.ts +105 -0
  19. package/dist-types/ts3.4/CostOptimizationHubClient.d.ts +4 -0
  20. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  21. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  22. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  23. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  24. package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -0
  25. package/package.json +5 -5
  26. package/dist-es/protocols/Aws_json1_0.js +0 -670
  27. package/dist-types/protocols/Aws_json1_0.d.ts +0 -65
  28. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -89
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { 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, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { GetPreferencesCommandInput, GetPreferencesCommandOutput } from "./commands/GetPreferencesCommand";
11
11
  import { GetRecommendationCommandInput, GetRecommendationCommandOutput } from "./commands/GetRecommendationCommand";
@@ -148,6 +148,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
148
148
  * Optional extensions
149
149
  */
150
150
  extensions?: RuntimeExtension[];
151
+ /**
152
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
153
+ * may be overridden. A default will always be set by the client.
154
+ * Available options depend on the service's supported protocols and will not be validated by
155
+ * the client.
156
+ * @alpha
157
+ *
158
+ */
159
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
151
160
  /**
152
161
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
153
162
  */
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: CostOptimizationHubClientConfig)
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: CostOptimizationHubClientConfig)
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: CostOptimizationHubClientConfig)
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: CostOptimizationHubClientConfig)
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CostOptimizationHubHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,105 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AccessDeniedException: StaticErrorSchema;
3
+ export declare var AccountEnrollmentStatus: StaticStructureSchema;
4
+ export declare var AuroraDbClusterStorage: StaticStructureSchema;
5
+ export declare var AuroraDbClusterStorageConfiguration: StaticStructureSchema;
6
+ export declare var BlockStoragePerformanceConfiguration: StaticStructureSchema;
7
+ export declare var ComputeConfiguration: StaticStructureSchema;
8
+ export declare var ComputeSavingsPlans: StaticStructureSchema;
9
+ export declare var ComputeSavingsPlansConfiguration: StaticStructureSchema;
10
+ export declare var DbInstanceConfiguration: StaticStructureSchema;
11
+ export declare var DynamoDbReservedCapacity: StaticStructureSchema;
12
+ export declare var DynamoDbReservedCapacityConfiguration: StaticStructureSchema;
13
+ export declare var EbsVolume: StaticStructureSchema;
14
+ export declare var EbsVolumeConfiguration: StaticStructureSchema;
15
+ export declare var Ec2AutoScalingGroup: StaticStructureSchema;
16
+ export declare var Ec2AutoScalingGroupConfiguration: StaticStructureSchema;
17
+ export declare var Ec2Instance: StaticStructureSchema;
18
+ export declare var Ec2InstanceConfiguration: StaticStructureSchema;
19
+ export declare var Ec2InstanceSavingsPlans: StaticStructureSchema;
20
+ export declare var Ec2InstanceSavingsPlansConfiguration: StaticStructureSchema;
21
+ export declare var Ec2ReservedInstances: StaticStructureSchema;
22
+ export declare var Ec2ReservedInstancesConfiguration: StaticStructureSchema;
23
+ export declare var EcsService: StaticStructureSchema;
24
+ export declare var EcsServiceConfiguration: StaticStructureSchema;
25
+ export declare var ElastiCacheReservedInstances: StaticStructureSchema;
26
+ export declare var ElastiCacheReservedInstancesConfiguration: StaticStructureSchema;
27
+ export declare var EstimatedDiscounts: StaticStructureSchema;
28
+ export declare var Filter: StaticStructureSchema;
29
+ export declare var GetPreferencesRequest: StaticStructureSchema;
30
+ export declare var GetPreferencesResponse: StaticStructureSchema;
31
+ export declare var GetRecommendationRequest: StaticStructureSchema;
32
+ export declare var GetRecommendationResponse: StaticStructureSchema;
33
+ export declare var InstanceConfiguration: StaticStructureSchema;
34
+ export declare var InternalServerException: StaticErrorSchema;
35
+ export declare var LambdaFunction: StaticStructureSchema;
36
+ export declare var LambdaFunctionConfiguration: StaticStructureSchema;
37
+ export declare var ListEnrollmentStatusesRequest: StaticStructureSchema;
38
+ export declare var ListEnrollmentStatusesResponse: StaticStructureSchema;
39
+ export declare var ListRecommendationsRequest: StaticStructureSchema;
40
+ export declare var ListRecommendationsResponse: StaticStructureSchema;
41
+ export declare var ListRecommendationSummariesRequest: StaticStructureSchema;
42
+ export declare var ListRecommendationSummariesResponse: StaticStructureSchema;
43
+ export declare var MemoryDbReservedInstances: StaticStructureSchema;
44
+ export declare var MemoryDbReservedInstancesConfiguration: StaticStructureSchema;
45
+ export declare var MixedInstanceConfiguration: StaticStructureSchema;
46
+ export declare var OpenSearchReservedInstances: StaticStructureSchema;
47
+ export declare var OpenSearchReservedInstancesConfiguration: StaticStructureSchema;
48
+ export declare var OrderBy: StaticStructureSchema;
49
+ export declare var PreferredCommitment: StaticStructureSchema;
50
+ export declare var RdsDbInstance: StaticStructureSchema;
51
+ export declare var RdsDbInstanceConfiguration: StaticStructureSchema;
52
+ export declare var RdsDbInstanceStorage: StaticStructureSchema;
53
+ export declare var RdsDbInstanceStorageConfiguration: StaticStructureSchema;
54
+ export declare var RdsReservedInstances: StaticStructureSchema;
55
+ export declare var RdsReservedInstancesConfiguration: StaticStructureSchema;
56
+ export declare var Recommendation: StaticStructureSchema;
57
+ export declare var RecommendationSummary: StaticStructureSchema;
58
+ export declare var RedshiftReservedInstances: StaticStructureSchema;
59
+ export declare var RedshiftReservedInstancesConfiguration: StaticStructureSchema;
60
+ export declare var ReservedInstancesCostCalculation: StaticStructureSchema;
61
+ export declare var ReservedInstancesPricing: StaticStructureSchema;
62
+ export declare var ResourceCostCalculation: StaticStructureSchema;
63
+ export declare var ResourceNotFoundException: StaticErrorSchema;
64
+ export declare var ResourcePricing: StaticStructureSchema;
65
+ export declare var SageMakerSavingsPlans: StaticStructureSchema;
66
+ export declare var SageMakerSavingsPlansConfiguration: StaticStructureSchema;
67
+ export declare var SavingsPlansCostCalculation: StaticStructureSchema;
68
+ export declare var SavingsPlansPricing: StaticStructureSchema;
69
+ export declare var StorageConfiguration: StaticStructureSchema;
70
+ export declare var SummaryMetricsResult: StaticStructureSchema;
71
+ export declare var Tag: StaticStructureSchema;
72
+ export declare var ThrottlingException: StaticErrorSchema;
73
+ export declare var UpdateEnrollmentStatusRequest: StaticStructureSchema;
74
+ export declare var UpdateEnrollmentStatusResponse: StaticStructureSchema;
75
+ export declare var UpdatePreferencesRequest: StaticStructureSchema;
76
+ export declare var UpdatePreferencesResponse: StaticStructureSchema;
77
+ export declare var Usage: StaticStructureSchema;
78
+ export declare var ValidationException: StaticErrorSchema;
79
+ export declare var ValidationExceptionDetail: StaticStructureSchema;
80
+ export declare var __Unit: "unit";
81
+ export declare var CostOptimizationHubServiceException: StaticErrorSchema;
82
+ export declare var AccountEnrollmentStatuses: StaticListSchema;
83
+ export declare var AccountIdList: number;
84
+ export declare var ActionTypeList: number;
85
+ export declare var ImplementationEffortList: number;
86
+ export declare var MixedInstanceConfigurationList: StaticListSchema;
87
+ export declare var RecommendationIdList: number;
88
+ export declare var RecommendationList: StaticListSchema;
89
+ export declare var RecommendationSummariesList: StaticListSchema;
90
+ export declare var RegionList: number;
91
+ export declare var ResourceArnList: number;
92
+ export declare var ResourceIdList: number;
93
+ export declare var ResourceTypeList: number;
94
+ export declare var SummaryMetricsList: number;
95
+ export declare var TagList: StaticListSchema;
96
+ export declare var UsageList: StaticListSchema;
97
+ export declare var ValidationExceptionDetails: StaticListSchema;
98
+ export declare var ResourceDetails: StaticStructureSchema;
99
+ export declare var GetPreferences: StaticOperationSchema;
100
+ export declare var GetRecommendation: StaticOperationSchema;
101
+ export declare var ListEnrollmentStatuses: StaticOperationSchema;
102
+ export declare var ListRecommendations: StaticOperationSchema;
103
+ export declare var ListRecommendationSummaries: StaticOperationSchema;
104
+ export declare var UpdateEnrollmentStatus: StaticOperationSchema;
105
+ export declare var UpdatePreferences: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -120,6 +123,7 @@ export interface ClientDefaults
120
123
  retryMode?: string | __Provider<string>;
121
124
  logger?: __Logger;
122
125
  extensions?: RuntimeExtension[];
126
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
123
127
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
124
128
  }
125
129
  export type CostOptimizationHubClientConfigType = Partial<
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  userAgentAppId?:
45
49
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  retryMode: string | import("@smithy/types").Provider<string>;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  defaultsMode:
43
47
  | import("@smithy/smithy-client").DefaultsMode
44
48
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CostOptimizationHubHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,110 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ } from "@smithy/types";
7
+ export declare var AccessDeniedException: StaticErrorSchema;
8
+ export declare var AccountEnrollmentStatus: StaticStructureSchema;
9
+ export declare var AuroraDbClusterStorage: StaticStructureSchema;
10
+ export declare var AuroraDbClusterStorageConfiguration: StaticStructureSchema;
11
+ export declare var BlockStoragePerformanceConfiguration: StaticStructureSchema;
12
+ export declare var ComputeConfiguration: StaticStructureSchema;
13
+ export declare var ComputeSavingsPlans: StaticStructureSchema;
14
+ export declare var ComputeSavingsPlansConfiguration: StaticStructureSchema;
15
+ export declare var DbInstanceConfiguration: StaticStructureSchema;
16
+ export declare var DynamoDbReservedCapacity: StaticStructureSchema;
17
+ export declare var DynamoDbReservedCapacityConfiguration: StaticStructureSchema;
18
+ export declare var EbsVolume: StaticStructureSchema;
19
+ export declare var EbsVolumeConfiguration: StaticStructureSchema;
20
+ export declare var Ec2AutoScalingGroup: StaticStructureSchema;
21
+ export declare var Ec2AutoScalingGroupConfiguration: StaticStructureSchema;
22
+ export declare var Ec2Instance: StaticStructureSchema;
23
+ export declare var Ec2InstanceConfiguration: StaticStructureSchema;
24
+ export declare var Ec2InstanceSavingsPlans: StaticStructureSchema;
25
+ export declare var Ec2InstanceSavingsPlansConfiguration: StaticStructureSchema;
26
+ export declare var Ec2ReservedInstances: StaticStructureSchema;
27
+ export declare var Ec2ReservedInstancesConfiguration: StaticStructureSchema;
28
+ export declare var EcsService: StaticStructureSchema;
29
+ export declare var EcsServiceConfiguration: StaticStructureSchema;
30
+ export declare var ElastiCacheReservedInstances: StaticStructureSchema;
31
+ export declare var ElastiCacheReservedInstancesConfiguration: StaticStructureSchema;
32
+ export declare var EstimatedDiscounts: StaticStructureSchema;
33
+ export declare var Filter: StaticStructureSchema;
34
+ export declare var GetPreferencesRequest: StaticStructureSchema;
35
+ export declare var GetPreferencesResponse: StaticStructureSchema;
36
+ export declare var GetRecommendationRequest: StaticStructureSchema;
37
+ export declare var GetRecommendationResponse: StaticStructureSchema;
38
+ export declare var InstanceConfiguration: StaticStructureSchema;
39
+ export declare var InternalServerException: StaticErrorSchema;
40
+ export declare var LambdaFunction: StaticStructureSchema;
41
+ export declare var LambdaFunctionConfiguration: StaticStructureSchema;
42
+ export declare var ListEnrollmentStatusesRequest: StaticStructureSchema;
43
+ export declare var ListEnrollmentStatusesResponse: StaticStructureSchema;
44
+ export declare var ListRecommendationsRequest: StaticStructureSchema;
45
+ export declare var ListRecommendationsResponse: StaticStructureSchema;
46
+ export declare var ListRecommendationSummariesRequest: StaticStructureSchema;
47
+ export declare var ListRecommendationSummariesResponse: StaticStructureSchema;
48
+ export declare var MemoryDbReservedInstances: StaticStructureSchema;
49
+ export declare var MemoryDbReservedInstancesConfiguration: StaticStructureSchema;
50
+ export declare var MixedInstanceConfiguration: StaticStructureSchema;
51
+ export declare var OpenSearchReservedInstances: StaticStructureSchema;
52
+ export declare var OpenSearchReservedInstancesConfiguration: StaticStructureSchema;
53
+ export declare var OrderBy: StaticStructureSchema;
54
+ export declare var PreferredCommitment: StaticStructureSchema;
55
+ export declare var RdsDbInstance: StaticStructureSchema;
56
+ export declare var RdsDbInstanceConfiguration: StaticStructureSchema;
57
+ export declare var RdsDbInstanceStorage: StaticStructureSchema;
58
+ export declare var RdsDbInstanceStorageConfiguration: StaticStructureSchema;
59
+ export declare var RdsReservedInstances: StaticStructureSchema;
60
+ export declare var RdsReservedInstancesConfiguration: StaticStructureSchema;
61
+ export declare var Recommendation: StaticStructureSchema;
62
+ export declare var RecommendationSummary: StaticStructureSchema;
63
+ export declare var RedshiftReservedInstances: StaticStructureSchema;
64
+ export declare var RedshiftReservedInstancesConfiguration: StaticStructureSchema;
65
+ export declare var ReservedInstancesCostCalculation: StaticStructureSchema;
66
+ export declare var ReservedInstancesPricing: StaticStructureSchema;
67
+ export declare var ResourceCostCalculation: StaticStructureSchema;
68
+ export declare var ResourceNotFoundException: StaticErrorSchema;
69
+ export declare var ResourcePricing: StaticStructureSchema;
70
+ export declare var SageMakerSavingsPlans: StaticStructureSchema;
71
+ export declare var SageMakerSavingsPlansConfiguration: StaticStructureSchema;
72
+ export declare var SavingsPlansCostCalculation: StaticStructureSchema;
73
+ export declare var SavingsPlansPricing: StaticStructureSchema;
74
+ export declare var StorageConfiguration: StaticStructureSchema;
75
+ export declare var SummaryMetricsResult: StaticStructureSchema;
76
+ export declare var Tag: StaticStructureSchema;
77
+ export declare var ThrottlingException: StaticErrorSchema;
78
+ export declare var UpdateEnrollmentStatusRequest: StaticStructureSchema;
79
+ export declare var UpdateEnrollmentStatusResponse: StaticStructureSchema;
80
+ export declare var UpdatePreferencesRequest: StaticStructureSchema;
81
+ export declare var UpdatePreferencesResponse: StaticStructureSchema;
82
+ export declare var Usage: StaticStructureSchema;
83
+ export declare var ValidationException: StaticErrorSchema;
84
+ export declare var ValidationExceptionDetail: StaticStructureSchema;
85
+ export declare var __Unit: "unit";
86
+ export declare var CostOptimizationHubServiceException: StaticErrorSchema;
87
+ export declare var AccountEnrollmentStatuses: StaticListSchema;
88
+ export declare var AccountIdList: number;
89
+ export declare var ActionTypeList: number;
90
+ export declare var ImplementationEffortList: number;
91
+ export declare var MixedInstanceConfigurationList: StaticListSchema;
92
+ export declare var RecommendationIdList: number;
93
+ export declare var RecommendationList: StaticListSchema;
94
+ export declare var RecommendationSummariesList: StaticListSchema;
95
+ export declare var RegionList: number;
96
+ export declare var ResourceArnList: number;
97
+ export declare var ResourceIdList: number;
98
+ export declare var ResourceTypeList: number;
99
+ export declare var SummaryMetricsList: number;
100
+ export declare var TagList: StaticListSchema;
101
+ export declare var UsageList: StaticListSchema;
102
+ export declare var ValidationExceptionDetails: StaticListSchema;
103
+ export declare var ResourceDetails: StaticStructureSchema;
104
+ export declare var GetPreferences: StaticOperationSchema;
105
+ export declare var GetRecommendation: StaticOperationSchema;
106
+ export declare var ListEnrollmentStatuses: StaticOperationSchema;
107
+ export declare var ListRecommendations: StaticOperationSchema;
108
+ export declare var ListRecommendationSummaries: StaticOperationSchema;
109
+ export declare var UpdateEnrollmentStatus: StaticOperationSchema;
110
+ export declare var UpdatePreferences: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cost-optimization-hub",
3
3
  "description": "AWS SDK for JavaScript Cost Optimization Hub Client for Node.js, Browser and React Native",
4
- "version": "3.927.0",
4
+ "version": "3.928.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cost-optimization-hub",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.927.0",
24
- "@aws-sdk/credential-provider-node": "3.927.0",
23
+ "@aws-sdk/core": "3.928.0",
24
+ "@aws-sdk/credential-provider-node": "3.928.0",
25
25
  "@aws-sdk/middleware-host-header": "3.922.0",
26
26
  "@aws-sdk/middleware-logger": "3.922.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.927.0",
28
+ "@aws-sdk/middleware-user-agent": "3.928.0",
29
29
  "@aws-sdk/region-config-resolver": "3.925.0",
30
30
  "@aws-sdk/types": "3.922.0",
31
31
  "@aws-sdk/util-endpoints": "3.922.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.927.0",
33
+ "@aws-sdk/util-user-agent-node": "3.928.0",
34
34
  "@smithy/config-resolver": "^4.4.2",
35
35
  "@smithy/core": "^3.17.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.5",