@aws-sdk/client-budgets 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1045 -1442
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/BudgetsClient.js +2 -0
- package/dist-es/commands/CreateBudgetActionCommand.js +3 -10
- package/dist-es/commands/CreateBudgetCommand.js +3 -10
- package/dist-es/commands/CreateNotificationCommand.js +3 -10
- package/dist-es/commands/CreateSubscriberCommand.js +3 -10
- package/dist-es/commands/DeleteBudgetActionCommand.js +3 -10
- package/dist-es/commands/DeleteBudgetCommand.js +3 -9
- package/dist-es/commands/DeleteNotificationCommand.js +3 -9
- package/dist-es/commands/DeleteSubscriberCommand.js +3 -10
- package/dist-es/commands/DescribeBudgetActionCommand.js +3 -10
- package/dist-es/commands/DescribeBudgetActionHistoriesCommand.js +3 -10
- package/dist-es/commands/DescribeBudgetActionsForAccountCommand.js +3 -10
- package/dist-es/commands/DescribeBudgetActionsForBudgetCommand.js +3 -10
- package/dist-es/commands/DescribeBudgetCommand.js +3 -9
- package/dist-es/commands/DescribeBudgetNotificationsForAccountCommand.js +3 -9
- package/dist-es/commands/DescribeBudgetPerformanceHistoryCommand.js +3 -9
- package/dist-es/commands/DescribeBudgetsCommand.js +3 -9
- package/dist-es/commands/DescribeNotificationsForBudgetCommand.js +3 -9
- package/dist-es/commands/DescribeSubscribersForNotificationCommand.js +3 -10
- package/dist-es/commands/ExecuteBudgetActionCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateBudgetActionCommand.js +3 -10
- package/dist-es/commands/UpdateBudgetCommand.js +3 -9
- package/dist-es/commands/UpdateNotificationCommand.js +3 -9
- package/dist-es/commands/UpdateSubscriberCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -77
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +967 -0
- package/dist-types/BudgetsClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -76
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +143 -0
- package/dist-types/ts3.4/BudgetsClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +150 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -1133
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -236
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -317
|
@@ -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 { CreateBudgetActionCommandInput, CreateBudgetActionCommandOutput } from "./commands/CreateBudgetActionCommand";
|
|
11
11
|
import { CreateBudgetCommandInput, CreateBudgetCommandOutput } from "./commands/CreateBudgetCommand";
|
|
@@ -167,6 +167,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
167
167
|
* Optional extensions
|
|
168
168
|
*/
|
|
169
169
|
extensions?: RuntimeExtension[];
|
|
170
|
+
/**
|
|
171
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
172
|
+
* may be overridden. A default will always be set by the client.
|
|
173
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
174
|
+
* the client.
|
|
175
|
+
* @alpha
|
|
176
|
+
*
|
|
177
|
+
*/
|
|
178
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
170
179
|
/**
|
|
171
180
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
172
181
|
*/
|
|
@@ -2532,79 +2532,3 @@ export interface DescribeBudgetsResponse {
|
|
|
2532
2532
|
*/
|
|
2533
2533
|
NextToken?: string | undefined;
|
|
2534
2534
|
}
|
|
2535
|
-
/**
|
|
2536
|
-
* @internal
|
|
2537
|
-
*/
|
|
2538
|
-
export declare const SubscriberFilterSensitiveLog: (obj: Subscriber) => any;
|
|
2539
|
-
/**
|
|
2540
|
-
* @internal
|
|
2541
|
-
*/
|
|
2542
|
-
export declare const ActionFilterSensitiveLog: (obj: Action) => any;
|
|
2543
|
-
/**
|
|
2544
|
-
* @internal
|
|
2545
|
-
*/
|
|
2546
|
-
export declare const ActionHistoryDetailsFilterSensitiveLog: (obj: ActionHistoryDetails) => any;
|
|
2547
|
-
/**
|
|
2548
|
-
* @internal
|
|
2549
|
-
*/
|
|
2550
|
-
export declare const ActionHistoryFilterSensitiveLog: (obj: ActionHistory) => any;
|
|
2551
|
-
/**
|
|
2552
|
-
* @internal
|
|
2553
|
-
*/
|
|
2554
|
-
export declare const NotificationWithSubscribersFilterSensitiveLog: (obj: NotificationWithSubscribers) => any;
|
|
2555
|
-
/**
|
|
2556
|
-
* @internal
|
|
2557
|
-
*/
|
|
2558
|
-
export declare const CreateBudgetActionRequestFilterSensitiveLog: (obj: CreateBudgetActionRequest) => any;
|
|
2559
|
-
/**
|
|
2560
|
-
* @internal
|
|
2561
|
-
*/
|
|
2562
|
-
export declare const CreateNotificationRequestFilterSensitiveLog: (obj: CreateNotificationRequest) => any;
|
|
2563
|
-
/**
|
|
2564
|
-
* @internal
|
|
2565
|
-
*/
|
|
2566
|
-
export declare const CreateSubscriberRequestFilterSensitiveLog: (obj: CreateSubscriberRequest) => any;
|
|
2567
|
-
/**
|
|
2568
|
-
* @internal
|
|
2569
|
-
*/
|
|
2570
|
-
export declare const DeleteBudgetActionResponseFilterSensitiveLog: (obj: DeleteBudgetActionResponse) => any;
|
|
2571
|
-
/**
|
|
2572
|
-
* @internal
|
|
2573
|
-
*/
|
|
2574
|
-
export declare const DeleteSubscriberRequestFilterSensitiveLog: (obj: DeleteSubscriberRequest) => any;
|
|
2575
|
-
/**
|
|
2576
|
-
* @internal
|
|
2577
|
-
*/
|
|
2578
|
-
export declare const DescribeBudgetActionResponseFilterSensitiveLog: (obj: DescribeBudgetActionResponse) => any;
|
|
2579
|
-
/**
|
|
2580
|
-
* @internal
|
|
2581
|
-
*/
|
|
2582
|
-
export declare const DescribeBudgetActionHistoriesResponseFilterSensitiveLog: (obj: DescribeBudgetActionHistoriesResponse) => any;
|
|
2583
|
-
/**
|
|
2584
|
-
* @internal
|
|
2585
|
-
*/
|
|
2586
|
-
export declare const DescribeBudgetActionsForAccountResponseFilterSensitiveLog: (obj: DescribeBudgetActionsForAccountResponse) => any;
|
|
2587
|
-
/**
|
|
2588
|
-
* @internal
|
|
2589
|
-
*/
|
|
2590
|
-
export declare const DescribeBudgetActionsForBudgetResponseFilterSensitiveLog: (obj: DescribeBudgetActionsForBudgetResponse) => any;
|
|
2591
|
-
/**
|
|
2592
|
-
* @internal
|
|
2593
|
-
*/
|
|
2594
|
-
export declare const DescribeSubscribersForNotificationResponseFilterSensitiveLog: (obj: DescribeSubscribersForNotificationResponse) => any;
|
|
2595
|
-
/**
|
|
2596
|
-
* @internal
|
|
2597
|
-
*/
|
|
2598
|
-
export declare const UpdateBudgetActionRequestFilterSensitiveLog: (obj: UpdateBudgetActionRequest) => any;
|
|
2599
|
-
/**
|
|
2600
|
-
* @internal
|
|
2601
|
-
*/
|
|
2602
|
-
export declare const UpdateBudgetActionResponseFilterSensitiveLog: (obj: UpdateBudgetActionResponse) => any;
|
|
2603
|
-
/**
|
|
2604
|
-
* @internal
|
|
2605
|
-
*/
|
|
2606
|
-
export declare const UpdateSubscriberRequestFilterSensitiveLog: (obj: UpdateSubscriberRequest) => any;
|
|
2607
|
-
/**
|
|
2608
|
-
* @internal
|
|
2609
|
-
*/
|
|
2610
|
-
export declare const CreateBudgetRequestFilterSensitiveLog: (obj: CreateBudgetRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: BudgetsClientConfig) => {
|
|
|
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: BudgetsClientConfig) => {
|
|
|
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: BudgetsClientConfig) => {
|
|
|
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: BudgetsClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BudgetsHttpAuthSchemeProvider;
|
|
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,143 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var SubscriberAddress: StaticSimpleSchema;
|
|
3
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
4
|
+
export declare var Action: StaticStructureSchema;
|
|
5
|
+
export declare var ActionHistory: StaticStructureSchema;
|
|
6
|
+
export declare var ActionHistoryDetails: StaticStructureSchema;
|
|
7
|
+
export declare var ActionThreshold: StaticStructureSchema;
|
|
8
|
+
export declare var AutoAdjustData: StaticStructureSchema;
|
|
9
|
+
export declare var BillingViewHealthStatusException: StaticErrorSchema;
|
|
10
|
+
export declare var Budget: StaticStructureSchema;
|
|
11
|
+
export declare var BudgetedAndActualAmounts: StaticStructureSchema;
|
|
12
|
+
export declare var BudgetNotificationsForAccount: StaticStructureSchema;
|
|
13
|
+
export declare var BudgetPerformanceHistory: StaticStructureSchema;
|
|
14
|
+
export declare var CalculatedSpend: StaticStructureSchema;
|
|
15
|
+
export declare var CostCategoryValues: StaticStructureSchema;
|
|
16
|
+
export declare var CostTypes: StaticStructureSchema;
|
|
17
|
+
export declare var CreateBudgetActionRequest: StaticStructureSchema;
|
|
18
|
+
export declare var CreateBudgetActionResponse: StaticStructureSchema;
|
|
19
|
+
export declare var CreateBudgetRequest: StaticStructureSchema;
|
|
20
|
+
export declare var CreateBudgetResponse: StaticStructureSchema;
|
|
21
|
+
export declare var CreateNotificationRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateNotificationResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateSubscriberRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateSubscriberResponse: StaticStructureSchema;
|
|
25
|
+
export declare var CreationLimitExceededException: StaticErrorSchema;
|
|
26
|
+
export declare var Definition: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteBudgetActionRequest: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteBudgetActionResponse: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteBudgetRequest: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteBudgetResponse: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteNotificationRequest: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteNotificationResponse: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteSubscriberRequest: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteSubscriberResponse: StaticStructureSchema;
|
|
35
|
+
export declare var DescribeBudgetActionHistoriesRequest: StaticStructureSchema;
|
|
36
|
+
export declare var DescribeBudgetActionHistoriesResponse: StaticStructureSchema;
|
|
37
|
+
export declare var DescribeBudgetActionRequest: StaticStructureSchema;
|
|
38
|
+
export declare var DescribeBudgetActionResponse: StaticStructureSchema;
|
|
39
|
+
export declare var DescribeBudgetActionsForAccountRequest: StaticStructureSchema;
|
|
40
|
+
export declare var DescribeBudgetActionsForAccountResponse: StaticStructureSchema;
|
|
41
|
+
export declare var DescribeBudgetActionsForBudgetRequest: StaticStructureSchema;
|
|
42
|
+
export declare var DescribeBudgetActionsForBudgetResponse: StaticStructureSchema;
|
|
43
|
+
export declare var DescribeBudgetNotificationsForAccountRequest: StaticStructureSchema;
|
|
44
|
+
export declare var DescribeBudgetNotificationsForAccountResponse: StaticStructureSchema;
|
|
45
|
+
export declare var DescribeBudgetPerformanceHistoryRequest: StaticStructureSchema;
|
|
46
|
+
export declare var DescribeBudgetPerformanceHistoryResponse: StaticStructureSchema;
|
|
47
|
+
export declare var DescribeBudgetRequest: StaticStructureSchema;
|
|
48
|
+
export declare var DescribeBudgetResponse: StaticStructureSchema;
|
|
49
|
+
export declare var DescribeBudgetsRequest: StaticStructureSchema;
|
|
50
|
+
export declare var DescribeBudgetsResponse: StaticStructureSchema;
|
|
51
|
+
export declare var DescribeNotificationsForBudgetRequest: StaticStructureSchema;
|
|
52
|
+
export declare var DescribeNotificationsForBudgetResponse: StaticStructureSchema;
|
|
53
|
+
export declare var DescribeSubscribersForNotificationRequest: StaticStructureSchema;
|
|
54
|
+
export declare var DescribeSubscribersForNotificationResponse: StaticStructureSchema;
|
|
55
|
+
export declare var DuplicateRecordException: StaticErrorSchema;
|
|
56
|
+
export declare var ExecuteBudgetActionRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ExecuteBudgetActionResponse: StaticStructureSchema;
|
|
58
|
+
export declare var ExpiredNextTokenException: StaticErrorSchema;
|
|
59
|
+
export declare var Expression: StaticStructureSchema;
|
|
60
|
+
export declare var ExpressionDimensionValues: StaticStructureSchema;
|
|
61
|
+
export declare var HealthStatus: StaticStructureSchema;
|
|
62
|
+
export declare var HistoricalOptions: StaticStructureSchema;
|
|
63
|
+
export declare var IamActionDefinition: StaticStructureSchema;
|
|
64
|
+
export declare var InternalErrorException: StaticErrorSchema;
|
|
65
|
+
export declare var InvalidNextTokenException: StaticErrorSchema;
|
|
66
|
+
export declare var InvalidParameterException: StaticErrorSchema;
|
|
67
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
68
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
69
|
+
export declare var NotFoundException: StaticErrorSchema;
|
|
70
|
+
export declare var Notification: StaticStructureSchema;
|
|
71
|
+
export declare var NotificationWithSubscribers: StaticStructureSchema;
|
|
72
|
+
export declare var ResourceLockedException: StaticErrorSchema;
|
|
73
|
+
export declare var ResourceTag: StaticStructureSchema;
|
|
74
|
+
export declare var ScpActionDefinition: StaticStructureSchema;
|
|
75
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
76
|
+
export declare var Spend: StaticStructureSchema;
|
|
77
|
+
export declare var SsmActionDefinition: StaticStructureSchema;
|
|
78
|
+
export declare var Subscriber: StaticStructureSchema;
|
|
79
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
80
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
81
|
+
export declare var TagValues: StaticStructureSchema;
|
|
82
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
83
|
+
export declare var TimePeriod: StaticStructureSchema;
|
|
84
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
85
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
86
|
+
export declare var UpdateBudgetActionRequest: StaticStructureSchema;
|
|
87
|
+
export declare var UpdateBudgetActionResponse: StaticStructureSchema;
|
|
88
|
+
export declare var UpdateBudgetRequest: StaticStructureSchema;
|
|
89
|
+
export declare var UpdateBudgetResponse: StaticStructureSchema;
|
|
90
|
+
export declare var UpdateNotificationRequest: StaticStructureSchema;
|
|
91
|
+
export declare var UpdateNotificationResponse: StaticStructureSchema;
|
|
92
|
+
export declare var UpdateSubscriberRequest: StaticStructureSchema;
|
|
93
|
+
export declare var UpdateSubscriberResponse: StaticStructureSchema;
|
|
94
|
+
export declare var __Unit: "unit";
|
|
95
|
+
export declare var BudgetsServiceException: StaticErrorSchema;
|
|
96
|
+
export declare var ActionHistories: StaticListSchema;
|
|
97
|
+
export declare var Actions: StaticListSchema;
|
|
98
|
+
export declare var BudgetedAndActualAmountsList: StaticListSchema;
|
|
99
|
+
export declare var BudgetNotificationsForAccountList: StaticListSchema;
|
|
100
|
+
export declare var Budgets: StaticListSchema;
|
|
101
|
+
export declare var DimensionValues: number;
|
|
102
|
+
export declare var Expressions: StaticListSchema;
|
|
103
|
+
export declare var Groups: number;
|
|
104
|
+
export declare var InstanceIds: number;
|
|
105
|
+
export declare var MatchOptions: number;
|
|
106
|
+
export declare var Metrics: number;
|
|
107
|
+
export declare var Notifications: StaticListSchema;
|
|
108
|
+
export declare var NotificationWithSubscribersList: StaticListSchema;
|
|
109
|
+
export declare var ResourceTagKeyList: number;
|
|
110
|
+
export declare var ResourceTagList: StaticListSchema;
|
|
111
|
+
export declare var Roles: number;
|
|
112
|
+
export declare var Subscribers: StaticListSchema;
|
|
113
|
+
export declare var TargetIds: number;
|
|
114
|
+
export declare var Users: number;
|
|
115
|
+
export declare var Values: number;
|
|
116
|
+
export declare var CostFilters: StaticMapSchema;
|
|
117
|
+
export declare var PlannedBudgetLimits: StaticMapSchema;
|
|
118
|
+
export declare var CreateBudget: StaticOperationSchema;
|
|
119
|
+
export declare var CreateBudgetAction: StaticOperationSchema;
|
|
120
|
+
export declare var CreateNotification: StaticOperationSchema;
|
|
121
|
+
export declare var CreateSubscriber: StaticOperationSchema;
|
|
122
|
+
export declare var DeleteBudget: StaticOperationSchema;
|
|
123
|
+
export declare var DeleteBudgetAction: StaticOperationSchema;
|
|
124
|
+
export declare var DeleteNotification: StaticOperationSchema;
|
|
125
|
+
export declare var DeleteSubscriber: StaticOperationSchema;
|
|
126
|
+
export declare var DescribeBudget: StaticOperationSchema;
|
|
127
|
+
export declare var DescribeBudgetAction: StaticOperationSchema;
|
|
128
|
+
export declare var DescribeBudgetActionHistories: StaticOperationSchema;
|
|
129
|
+
export declare var DescribeBudgetActionsForAccount: StaticOperationSchema;
|
|
130
|
+
export declare var DescribeBudgetActionsForBudget: StaticOperationSchema;
|
|
131
|
+
export declare var DescribeBudgetNotificationsForAccount: StaticOperationSchema;
|
|
132
|
+
export declare var DescribeBudgetPerformanceHistory: StaticOperationSchema;
|
|
133
|
+
export declare var DescribeBudgets: StaticOperationSchema;
|
|
134
|
+
export declare var DescribeNotificationsForBudget: StaticOperationSchema;
|
|
135
|
+
export declare var DescribeSubscribersForNotification: StaticOperationSchema;
|
|
136
|
+
export declare var ExecuteBudgetAction: StaticOperationSchema;
|
|
137
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
138
|
+
export declare var TagResource: StaticOperationSchema;
|
|
139
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
140
|
+
export declare var UpdateBudget: StaticOperationSchema;
|
|
141
|
+
export declare var UpdateBudgetAction: StaticOperationSchema;
|
|
142
|
+
export declare var UpdateNotification: StaticOperationSchema;
|
|
143
|
+
export declare var UpdateSubscriber: 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,
|
|
@@ -234,6 +237,7 @@ export interface ClientDefaults
|
|
|
234
237
|
retryMode?: string | __Provider<string>;
|
|
235
238
|
logger?: __Logger;
|
|
236
239
|
extensions?: RuntimeExtension[];
|
|
240
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
237
241
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
238
242
|
}
|
|
239
243
|
export type BudgetsClientConfigType = Partial<
|
|
@@ -659,56 +659,3 @@ export interface DescribeBudgetsResponse {
|
|
|
659
659
|
Budgets?: Budget[] | undefined;
|
|
660
660
|
NextToken?: string | undefined;
|
|
661
661
|
}
|
|
662
|
-
export declare const SubscriberFilterSensitiveLog: (obj: Subscriber) => any;
|
|
663
|
-
export declare const ActionFilterSensitiveLog: (obj: Action) => any;
|
|
664
|
-
export declare const ActionHistoryDetailsFilterSensitiveLog: (
|
|
665
|
-
obj: ActionHistoryDetails
|
|
666
|
-
) => any;
|
|
667
|
-
export declare const ActionHistoryFilterSensitiveLog: (
|
|
668
|
-
obj: ActionHistory
|
|
669
|
-
) => any;
|
|
670
|
-
export declare const NotificationWithSubscribersFilterSensitiveLog: (
|
|
671
|
-
obj: NotificationWithSubscribers
|
|
672
|
-
) => any;
|
|
673
|
-
export declare const CreateBudgetActionRequestFilterSensitiveLog: (
|
|
674
|
-
obj: CreateBudgetActionRequest
|
|
675
|
-
) => any;
|
|
676
|
-
export declare const CreateNotificationRequestFilterSensitiveLog: (
|
|
677
|
-
obj: CreateNotificationRequest
|
|
678
|
-
) => any;
|
|
679
|
-
export declare const CreateSubscriberRequestFilterSensitiveLog: (
|
|
680
|
-
obj: CreateSubscriberRequest
|
|
681
|
-
) => any;
|
|
682
|
-
export declare const DeleteBudgetActionResponseFilterSensitiveLog: (
|
|
683
|
-
obj: DeleteBudgetActionResponse
|
|
684
|
-
) => any;
|
|
685
|
-
export declare const DeleteSubscriberRequestFilterSensitiveLog: (
|
|
686
|
-
obj: DeleteSubscriberRequest
|
|
687
|
-
) => any;
|
|
688
|
-
export declare const DescribeBudgetActionResponseFilterSensitiveLog: (
|
|
689
|
-
obj: DescribeBudgetActionResponse
|
|
690
|
-
) => any;
|
|
691
|
-
export declare const DescribeBudgetActionHistoriesResponseFilterSensitiveLog: (
|
|
692
|
-
obj: DescribeBudgetActionHistoriesResponse
|
|
693
|
-
) => any;
|
|
694
|
-
export declare const DescribeBudgetActionsForAccountResponseFilterSensitiveLog: (
|
|
695
|
-
obj: DescribeBudgetActionsForAccountResponse
|
|
696
|
-
) => any;
|
|
697
|
-
export declare const DescribeBudgetActionsForBudgetResponseFilterSensitiveLog: (
|
|
698
|
-
obj: DescribeBudgetActionsForBudgetResponse
|
|
699
|
-
) => any;
|
|
700
|
-
export declare const DescribeSubscribersForNotificationResponseFilterSensitiveLog: (
|
|
701
|
-
obj: DescribeSubscribersForNotificationResponse
|
|
702
|
-
) => any;
|
|
703
|
-
export declare const UpdateBudgetActionRequestFilterSensitiveLog: (
|
|
704
|
-
obj: UpdateBudgetActionRequest
|
|
705
|
-
) => any;
|
|
706
|
-
export declare const UpdateBudgetActionResponseFilterSensitiveLog: (
|
|
707
|
-
obj: UpdateBudgetActionResponse
|
|
708
|
-
) => any;
|
|
709
|
-
export declare const UpdateSubscriberRequestFilterSensitiveLog: (
|
|
710
|
-
obj: UpdateSubscriberRequest
|
|
711
|
-
) => any;
|
|
712
|
-
export declare const CreateBudgetRequestFilterSensitiveLog: (
|
|
713
|
-
obj: CreateBudgetRequest
|
|
714
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: BudgetsClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: BudgetsClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: BudgetsClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: BudgetsClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BudgetsHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var SubscriberAddress: StaticSimpleSchema;
|
|
10
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
11
|
+
export declare var Action: StaticStructureSchema;
|
|
12
|
+
export declare var ActionHistory: StaticStructureSchema;
|
|
13
|
+
export declare var ActionHistoryDetails: StaticStructureSchema;
|
|
14
|
+
export declare var ActionThreshold: StaticStructureSchema;
|
|
15
|
+
export declare var AutoAdjustData: StaticStructureSchema;
|
|
16
|
+
export declare var BillingViewHealthStatusException: StaticErrorSchema;
|
|
17
|
+
export declare var Budget: StaticStructureSchema;
|
|
18
|
+
export declare var BudgetedAndActualAmounts: StaticStructureSchema;
|
|
19
|
+
export declare var BudgetNotificationsForAccount: StaticStructureSchema;
|
|
20
|
+
export declare var BudgetPerformanceHistory: StaticStructureSchema;
|
|
21
|
+
export declare var CalculatedSpend: StaticStructureSchema;
|
|
22
|
+
export declare var CostCategoryValues: StaticStructureSchema;
|
|
23
|
+
export declare var CostTypes: StaticStructureSchema;
|
|
24
|
+
export declare var CreateBudgetActionRequest: StaticStructureSchema;
|
|
25
|
+
export declare var CreateBudgetActionResponse: StaticStructureSchema;
|
|
26
|
+
export declare var CreateBudgetRequest: StaticStructureSchema;
|
|
27
|
+
export declare var CreateBudgetResponse: StaticStructureSchema;
|
|
28
|
+
export declare var CreateNotificationRequest: StaticStructureSchema;
|
|
29
|
+
export declare var CreateNotificationResponse: StaticStructureSchema;
|
|
30
|
+
export declare var CreateSubscriberRequest: StaticStructureSchema;
|
|
31
|
+
export declare var CreateSubscriberResponse: StaticStructureSchema;
|
|
32
|
+
export declare var CreationLimitExceededException: StaticErrorSchema;
|
|
33
|
+
export declare var Definition: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteBudgetActionRequest: StaticStructureSchema;
|
|
35
|
+
export declare var DeleteBudgetActionResponse: StaticStructureSchema;
|
|
36
|
+
export declare var DeleteBudgetRequest: StaticStructureSchema;
|
|
37
|
+
export declare var DeleteBudgetResponse: StaticStructureSchema;
|
|
38
|
+
export declare var DeleteNotificationRequest: StaticStructureSchema;
|
|
39
|
+
export declare var DeleteNotificationResponse: StaticStructureSchema;
|
|
40
|
+
export declare var DeleteSubscriberRequest: StaticStructureSchema;
|
|
41
|
+
export declare var DeleteSubscriberResponse: StaticStructureSchema;
|
|
42
|
+
export declare var DescribeBudgetActionHistoriesRequest: StaticStructureSchema;
|
|
43
|
+
export declare var DescribeBudgetActionHistoriesResponse: StaticStructureSchema;
|
|
44
|
+
export declare var DescribeBudgetActionRequest: StaticStructureSchema;
|
|
45
|
+
export declare var DescribeBudgetActionResponse: StaticStructureSchema;
|
|
46
|
+
export declare var DescribeBudgetActionsForAccountRequest: StaticStructureSchema;
|
|
47
|
+
export declare var DescribeBudgetActionsForAccountResponse: StaticStructureSchema;
|
|
48
|
+
export declare var DescribeBudgetActionsForBudgetRequest: StaticStructureSchema;
|
|
49
|
+
export declare var DescribeBudgetActionsForBudgetResponse: StaticStructureSchema;
|
|
50
|
+
export declare var DescribeBudgetNotificationsForAccountRequest: StaticStructureSchema;
|
|
51
|
+
export declare var DescribeBudgetNotificationsForAccountResponse: StaticStructureSchema;
|
|
52
|
+
export declare var DescribeBudgetPerformanceHistoryRequest: StaticStructureSchema;
|
|
53
|
+
export declare var DescribeBudgetPerformanceHistoryResponse: StaticStructureSchema;
|
|
54
|
+
export declare var DescribeBudgetRequest: StaticStructureSchema;
|
|
55
|
+
export declare var DescribeBudgetResponse: StaticStructureSchema;
|
|
56
|
+
export declare var DescribeBudgetsRequest: StaticStructureSchema;
|
|
57
|
+
export declare var DescribeBudgetsResponse: StaticStructureSchema;
|
|
58
|
+
export declare var DescribeNotificationsForBudgetRequest: StaticStructureSchema;
|
|
59
|
+
export declare var DescribeNotificationsForBudgetResponse: StaticStructureSchema;
|
|
60
|
+
export declare var DescribeSubscribersForNotificationRequest: StaticStructureSchema;
|
|
61
|
+
export declare var DescribeSubscribersForNotificationResponse: StaticStructureSchema;
|
|
62
|
+
export declare var DuplicateRecordException: StaticErrorSchema;
|
|
63
|
+
export declare var ExecuteBudgetActionRequest: StaticStructureSchema;
|
|
64
|
+
export declare var ExecuteBudgetActionResponse: StaticStructureSchema;
|
|
65
|
+
export declare var ExpiredNextTokenException: StaticErrorSchema;
|
|
66
|
+
export declare var Expression: StaticStructureSchema;
|
|
67
|
+
export declare var ExpressionDimensionValues: StaticStructureSchema;
|
|
68
|
+
export declare var HealthStatus: StaticStructureSchema;
|
|
69
|
+
export declare var HistoricalOptions: StaticStructureSchema;
|
|
70
|
+
export declare var IamActionDefinition: StaticStructureSchema;
|
|
71
|
+
export declare var InternalErrorException: StaticErrorSchema;
|
|
72
|
+
export declare var InvalidNextTokenException: StaticErrorSchema;
|
|
73
|
+
export declare var InvalidParameterException: StaticErrorSchema;
|
|
74
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
75
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
76
|
+
export declare var NotFoundException: StaticErrorSchema;
|
|
77
|
+
export declare var Notification: StaticStructureSchema;
|
|
78
|
+
export declare var NotificationWithSubscribers: StaticStructureSchema;
|
|
79
|
+
export declare var ResourceLockedException: StaticErrorSchema;
|
|
80
|
+
export declare var ResourceTag: StaticStructureSchema;
|
|
81
|
+
export declare var ScpActionDefinition: StaticStructureSchema;
|
|
82
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
83
|
+
export declare var Spend: StaticStructureSchema;
|
|
84
|
+
export declare var SsmActionDefinition: StaticStructureSchema;
|
|
85
|
+
export declare var Subscriber: StaticStructureSchema;
|
|
86
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
87
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
88
|
+
export declare var TagValues: StaticStructureSchema;
|
|
89
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
90
|
+
export declare var TimePeriod: StaticStructureSchema;
|
|
91
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
92
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
93
|
+
export declare var UpdateBudgetActionRequest: StaticStructureSchema;
|
|
94
|
+
export declare var UpdateBudgetActionResponse: StaticStructureSchema;
|
|
95
|
+
export declare var UpdateBudgetRequest: StaticStructureSchema;
|
|
96
|
+
export declare var UpdateBudgetResponse: StaticStructureSchema;
|
|
97
|
+
export declare var UpdateNotificationRequest: StaticStructureSchema;
|
|
98
|
+
export declare var UpdateNotificationResponse: StaticStructureSchema;
|
|
99
|
+
export declare var UpdateSubscriberRequest: StaticStructureSchema;
|
|
100
|
+
export declare var UpdateSubscriberResponse: StaticStructureSchema;
|
|
101
|
+
export declare var __Unit: "unit";
|
|
102
|
+
export declare var BudgetsServiceException: StaticErrorSchema;
|
|
103
|
+
export declare var ActionHistories: StaticListSchema;
|
|
104
|
+
export declare var Actions: StaticListSchema;
|
|
105
|
+
export declare var BudgetedAndActualAmountsList: StaticListSchema;
|
|
106
|
+
export declare var BudgetNotificationsForAccountList: StaticListSchema;
|
|
107
|
+
export declare var Budgets: StaticListSchema;
|
|
108
|
+
export declare var DimensionValues: number;
|
|
109
|
+
export declare var Expressions: StaticListSchema;
|
|
110
|
+
export declare var Groups: number;
|
|
111
|
+
export declare var InstanceIds: number;
|
|
112
|
+
export declare var MatchOptions: number;
|
|
113
|
+
export declare var Metrics: number;
|
|
114
|
+
export declare var Notifications: StaticListSchema;
|
|
115
|
+
export declare var NotificationWithSubscribersList: StaticListSchema;
|
|
116
|
+
export declare var ResourceTagKeyList: number;
|
|
117
|
+
export declare var ResourceTagList: StaticListSchema;
|
|
118
|
+
export declare var Roles: number;
|
|
119
|
+
export declare var Subscribers: StaticListSchema;
|
|
120
|
+
export declare var TargetIds: number;
|
|
121
|
+
export declare var Users: number;
|
|
122
|
+
export declare var Values: number;
|
|
123
|
+
export declare var CostFilters: StaticMapSchema;
|
|
124
|
+
export declare var PlannedBudgetLimits: StaticMapSchema;
|
|
125
|
+
export declare var CreateBudget: StaticOperationSchema;
|
|
126
|
+
export declare var CreateBudgetAction: StaticOperationSchema;
|
|
127
|
+
export declare var CreateNotification: StaticOperationSchema;
|
|
128
|
+
export declare var CreateSubscriber: StaticOperationSchema;
|
|
129
|
+
export declare var DeleteBudget: StaticOperationSchema;
|
|
130
|
+
export declare var DeleteBudgetAction: StaticOperationSchema;
|
|
131
|
+
export declare var DeleteNotification: StaticOperationSchema;
|
|
132
|
+
export declare var DeleteSubscriber: StaticOperationSchema;
|
|
133
|
+
export declare var DescribeBudget: StaticOperationSchema;
|
|
134
|
+
export declare var DescribeBudgetAction: StaticOperationSchema;
|
|
135
|
+
export declare var DescribeBudgetActionHistories: StaticOperationSchema;
|
|
136
|
+
export declare var DescribeBudgetActionsForAccount: StaticOperationSchema;
|
|
137
|
+
export declare var DescribeBudgetActionsForBudget: StaticOperationSchema;
|
|
138
|
+
export declare var DescribeBudgetNotificationsForAccount: StaticOperationSchema;
|
|
139
|
+
export declare var DescribeBudgetPerformanceHistory: StaticOperationSchema;
|
|
140
|
+
export declare var DescribeBudgets: StaticOperationSchema;
|
|
141
|
+
export declare var DescribeNotificationsForBudget: StaticOperationSchema;
|
|
142
|
+
export declare var DescribeSubscribersForNotification: StaticOperationSchema;
|
|
143
|
+
export declare var ExecuteBudgetAction: StaticOperationSchema;
|
|
144
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
145
|
+
export declare var TagResource: StaticOperationSchema;
|
|
146
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
147
|
+
export declare var UpdateBudget: StaticOperationSchema;
|
|
148
|
+
export declare var UpdateBudgetAction: StaticOperationSchema;
|
|
149
|
+
export declare var UpdateNotification: StaticOperationSchema;
|
|
150
|
+
export declare var UpdateSubscriber: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-budgets",
|
|
3
3
|
"description": "AWS SDK for JavaScript Budgets Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.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-budgets",
|
|
@@ -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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.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.
|
|
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.
|
|
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",
|