@aws-sdk/client-budgets 3.180.0 → 3.183.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 (44) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +29 -23
  3. package/dist-es/Budgets.js +94 -101
  4. package/dist-es/BudgetsClient.js +22 -28
  5. package/dist-es/commands/CreateBudgetActionCommand.js +21 -28
  6. package/dist-es/commands/CreateBudgetCommand.js +21 -28
  7. package/dist-es/commands/CreateNotificationCommand.js +21 -28
  8. package/dist-es/commands/CreateSubscriberCommand.js +21 -28
  9. package/dist-es/commands/DeleteBudgetActionCommand.js +21 -28
  10. package/dist-es/commands/DeleteBudgetCommand.js +21 -28
  11. package/dist-es/commands/DeleteNotificationCommand.js +21 -28
  12. package/dist-es/commands/DeleteSubscriberCommand.js +21 -28
  13. package/dist-es/commands/DescribeBudgetActionCommand.js +21 -28
  14. package/dist-es/commands/DescribeBudgetActionHistoriesCommand.js +21 -28
  15. package/dist-es/commands/DescribeBudgetActionsForAccountCommand.js +21 -28
  16. package/dist-es/commands/DescribeBudgetActionsForBudgetCommand.js +21 -28
  17. package/dist-es/commands/DescribeBudgetCommand.js +21 -28
  18. package/dist-es/commands/DescribeBudgetNotificationsForAccountCommand.js +21 -28
  19. package/dist-es/commands/DescribeBudgetPerformanceHistoryCommand.js +21 -28
  20. package/dist-es/commands/DescribeBudgetsCommand.js +21 -28
  21. package/dist-es/commands/DescribeNotificationsForBudgetCommand.js +21 -28
  22. package/dist-es/commands/DescribeSubscribersForNotificationCommand.js +21 -28
  23. package/dist-es/commands/ExecuteBudgetActionCommand.js +21 -28
  24. package/dist-es/commands/UpdateBudgetActionCommand.js +21 -28
  25. package/dist-es/commands/UpdateBudgetCommand.js +21 -28
  26. package/dist-es/commands/UpdateNotificationCommand.js +21 -28
  27. package/dist-es/commands/UpdateSubscriberCommand.js +21 -28
  28. package/dist-es/endpoints.js +8 -8
  29. package/dist-es/models/BudgetsServiceException.js +5 -10
  30. package/dist-es/models/models_0.js +340 -190
  31. package/dist-es/pagination/DescribeBudgetActionHistoriesPaginator.js +25 -68
  32. package/dist-es/pagination/DescribeBudgetActionsForAccountPaginator.js +25 -68
  33. package/dist-es/pagination/DescribeBudgetActionsForBudgetPaginator.js +25 -68
  34. package/dist-es/pagination/DescribeBudgetNotificationsForAccountPaginator.js +25 -68
  35. package/dist-es/pagination/DescribeBudgetPerformanceHistoryPaginator.js +25 -68
  36. package/dist-es/pagination/DescribeBudgetsPaginator.js +25 -68
  37. package/dist-es/pagination/DescribeNotificationsForBudgetPaginator.js +25 -68
  38. package/dist-es/pagination/DescribeSubscribersForNotificationPaginator.js +25 -68
  39. package/dist-es/protocols/Aws_json1_1.js +1894 -2289
  40. package/dist-es/runtimeConfig.browser.js +26 -12
  41. package/dist-es/runtimeConfig.js +30 -12
  42. package/dist-es/runtimeConfig.native.js +8 -5
  43. package/dist-es/runtimeConfig.shared.js +8 -11
  44. package/package.json +33 -33
@@ -1,19 +1,18 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
2
  import { BudgetsServiceException as __BaseException } from "./BudgetsServiceException";
4
- var AccessDeniedException = (function (_super) {
5
- __extends(AccessDeniedException, _super);
6
- function AccessDeniedException(opts) {
7
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
8
- _this.name = "AccessDeniedException";
9
- _this.$fault = "client";
10
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
11
- _this.Message = opts.Message;
12
- return _this;
3
+ export class AccessDeniedException extends __BaseException {
4
+ constructor(opts) {
5
+ super({
6
+ name: "AccessDeniedException",
7
+ $fault: "client",
8
+ ...opts,
9
+ });
10
+ this.name = "AccessDeniedException";
11
+ this.$fault = "client";
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
13
14
  }
14
- return AccessDeniedException;
15
- }(__BaseException));
16
- export { AccessDeniedException };
15
+ }
17
16
  export var ThresholdType;
18
17
  (function (ThresholdType) {
19
18
  ThresholdType["ABSOLUTE_VALUE"] = "ABSOLUTE_VALUE";
@@ -98,123 +97,123 @@ export var NotificationState;
98
97
  NotificationState["ALARM"] = "ALARM";
99
98
  NotificationState["OK"] = "OK";
100
99
  })(NotificationState || (NotificationState = {}));
101
- var CreationLimitExceededException = (function (_super) {
102
- __extends(CreationLimitExceededException, _super);
103
- function CreationLimitExceededException(opts) {
104
- var _this = _super.call(this, __assign({ name: "CreationLimitExceededException", $fault: "client" }, opts)) || this;
105
- _this.name = "CreationLimitExceededException";
106
- _this.$fault = "client";
107
- Object.setPrototypeOf(_this, CreationLimitExceededException.prototype);
108
- _this.Message = opts.Message;
109
- return _this;
100
+ export class CreationLimitExceededException extends __BaseException {
101
+ constructor(opts) {
102
+ super({
103
+ name: "CreationLimitExceededException",
104
+ $fault: "client",
105
+ ...opts,
106
+ });
107
+ this.name = "CreationLimitExceededException";
108
+ this.$fault = "client";
109
+ Object.setPrototypeOf(this, CreationLimitExceededException.prototype);
110
+ this.Message = opts.Message;
110
111
  }
111
- return CreationLimitExceededException;
112
- }(__BaseException));
113
- export { CreationLimitExceededException };
114
- var DuplicateRecordException = (function (_super) {
115
- __extends(DuplicateRecordException, _super);
116
- function DuplicateRecordException(opts) {
117
- var _this = _super.call(this, __assign({ name: "DuplicateRecordException", $fault: "client" }, opts)) || this;
118
- _this.name = "DuplicateRecordException";
119
- _this.$fault = "client";
120
- Object.setPrototypeOf(_this, DuplicateRecordException.prototype);
121
- _this.Message = opts.Message;
122
- return _this;
112
+ }
113
+ export class DuplicateRecordException extends __BaseException {
114
+ constructor(opts) {
115
+ super({
116
+ name: "DuplicateRecordException",
117
+ $fault: "client",
118
+ ...opts,
119
+ });
120
+ this.name = "DuplicateRecordException";
121
+ this.$fault = "client";
122
+ Object.setPrototypeOf(this, DuplicateRecordException.prototype);
123
+ this.Message = opts.Message;
123
124
  }
124
- return DuplicateRecordException;
125
- }(__BaseException));
126
- export { DuplicateRecordException };
127
- var InternalErrorException = (function (_super) {
128
- __extends(InternalErrorException, _super);
129
- function InternalErrorException(opts) {
130
- var _this = _super.call(this, __assign({ name: "InternalErrorException", $fault: "server" }, opts)) || this;
131
- _this.name = "InternalErrorException";
132
- _this.$fault = "server";
133
- Object.setPrototypeOf(_this, InternalErrorException.prototype);
134
- _this.Message = opts.Message;
135
- return _this;
125
+ }
126
+ export class InternalErrorException extends __BaseException {
127
+ constructor(opts) {
128
+ super({
129
+ name: "InternalErrorException",
130
+ $fault: "server",
131
+ ...opts,
132
+ });
133
+ this.name = "InternalErrorException";
134
+ this.$fault = "server";
135
+ Object.setPrototypeOf(this, InternalErrorException.prototype);
136
+ this.Message = opts.Message;
136
137
  }
137
- return InternalErrorException;
138
- }(__BaseException));
139
- export { InternalErrorException };
140
- var InvalidParameterException = (function (_super) {
141
- __extends(InvalidParameterException, _super);
142
- function InvalidParameterException(opts) {
143
- var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
144
- _this.name = "InvalidParameterException";
145
- _this.$fault = "client";
146
- Object.setPrototypeOf(_this, InvalidParameterException.prototype);
147
- _this.Message = opts.Message;
148
- return _this;
138
+ }
139
+ export class InvalidParameterException extends __BaseException {
140
+ constructor(opts) {
141
+ super({
142
+ name: "InvalidParameterException",
143
+ $fault: "client",
144
+ ...opts,
145
+ });
146
+ this.name = "InvalidParameterException";
147
+ this.$fault = "client";
148
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
149
+ this.Message = opts.Message;
149
150
  }
150
- return InvalidParameterException;
151
- }(__BaseException));
152
- export { InvalidParameterException };
153
- var ThrottlingException = (function (_super) {
154
- __extends(ThrottlingException, _super);
155
- function ThrottlingException(opts) {
156
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
157
- _this.name = "ThrottlingException";
158
- _this.$fault = "client";
159
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
160
- _this.Message = opts.Message;
161
- return _this;
151
+ }
152
+ export class ThrottlingException extends __BaseException {
153
+ constructor(opts) {
154
+ super({
155
+ name: "ThrottlingException",
156
+ $fault: "client",
157
+ ...opts,
158
+ });
159
+ this.name = "ThrottlingException";
160
+ this.$fault = "client";
161
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
162
+ this.Message = opts.Message;
162
163
  }
163
- return ThrottlingException;
164
- }(__BaseException));
165
- export { ThrottlingException };
166
- var NotFoundException = (function (_super) {
167
- __extends(NotFoundException, _super);
168
- function NotFoundException(opts) {
169
- var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
170
- _this.name = "NotFoundException";
171
- _this.$fault = "client";
172
- Object.setPrototypeOf(_this, NotFoundException.prototype);
173
- _this.Message = opts.Message;
174
- return _this;
164
+ }
165
+ export class NotFoundException extends __BaseException {
166
+ constructor(opts) {
167
+ super({
168
+ name: "NotFoundException",
169
+ $fault: "client",
170
+ ...opts,
171
+ });
172
+ this.name = "NotFoundException";
173
+ this.$fault = "client";
174
+ Object.setPrototypeOf(this, NotFoundException.prototype);
175
+ this.Message = opts.Message;
175
176
  }
176
- return NotFoundException;
177
- }(__BaseException));
178
- export { NotFoundException };
179
- var ResourceLockedException = (function (_super) {
180
- __extends(ResourceLockedException, _super);
181
- function ResourceLockedException(opts) {
182
- var _this = _super.call(this, __assign({ name: "ResourceLockedException", $fault: "client" }, opts)) || this;
183
- _this.name = "ResourceLockedException";
184
- _this.$fault = "client";
185
- Object.setPrototypeOf(_this, ResourceLockedException.prototype);
186
- _this.Message = opts.Message;
187
- return _this;
177
+ }
178
+ export class ResourceLockedException extends __BaseException {
179
+ constructor(opts) {
180
+ super({
181
+ name: "ResourceLockedException",
182
+ $fault: "client",
183
+ ...opts,
184
+ });
185
+ this.name = "ResourceLockedException";
186
+ this.$fault = "client";
187
+ Object.setPrototypeOf(this, ResourceLockedException.prototype);
188
+ this.Message = opts.Message;
188
189
  }
189
- return ResourceLockedException;
190
- }(__BaseException));
191
- export { ResourceLockedException };
192
- var InvalidNextTokenException = (function (_super) {
193
- __extends(InvalidNextTokenException, _super);
194
- function InvalidNextTokenException(opts) {
195
- var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
196
- _this.name = "InvalidNextTokenException";
197
- _this.$fault = "client";
198
- Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
199
- _this.Message = opts.Message;
200
- return _this;
190
+ }
191
+ export class InvalidNextTokenException extends __BaseException {
192
+ constructor(opts) {
193
+ super({
194
+ name: "InvalidNextTokenException",
195
+ $fault: "client",
196
+ ...opts,
197
+ });
198
+ this.name = "InvalidNextTokenException";
199
+ this.$fault = "client";
200
+ Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
201
+ this.Message = opts.Message;
201
202
  }
202
- return InvalidNextTokenException;
203
- }(__BaseException));
204
- export { InvalidNextTokenException };
205
- var ExpiredNextTokenException = (function (_super) {
206
- __extends(ExpiredNextTokenException, _super);
207
- function ExpiredNextTokenException(opts) {
208
- var _this = _super.call(this, __assign({ name: "ExpiredNextTokenException", $fault: "client" }, opts)) || this;
209
- _this.name = "ExpiredNextTokenException";
210
- _this.$fault = "client";
211
- Object.setPrototypeOf(_this, ExpiredNextTokenException.prototype);
212
- _this.Message = opts.Message;
213
- return _this;
203
+ }
204
+ export class ExpiredNextTokenException extends __BaseException {
205
+ constructor(opts) {
206
+ super({
207
+ name: "ExpiredNextTokenException",
208
+ $fault: "client",
209
+ ...opts,
210
+ });
211
+ this.name = "ExpiredNextTokenException";
212
+ this.$fault = "client";
213
+ Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
214
+ this.Message = opts.Message;
214
215
  }
215
- return ExpiredNextTokenException;
216
- }(__BaseException));
217
- export { ExpiredNextTokenException };
216
+ }
218
217
  export var ExecutionType;
219
218
  (function (ExecutionType) {
220
219
  ExecutionType["ApproveBudgetAction"] = "APPROVE_BUDGET_ACTION";
@@ -222,72 +221,223 @@ export var ExecutionType;
222
221
  ExecutionType["RetryBudgetAction"] = "RETRY_BUDGET_ACTION";
223
222
  ExecutionType["ReverseBudgetAction"] = "REVERSE_BUDGET_ACTION";
224
223
  })(ExecutionType || (ExecutionType = {}));
225
- export var ActionThresholdFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
- export var IamActionDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
- export var ScpActionDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
- export var SsmActionDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
- export var DefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
- export var SubscriberFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Address && { Address: SENSITIVE_STRING }))); };
231
- export var ActionFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Subscribers && { Subscribers: obj.Subscribers.map(function (item) { return SubscriberFilterSensitiveLog(item); }) }))); };
232
- export var ActionHistoryDetailsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }))); };
233
- export var ActionHistoryFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ActionHistoryDetails && {
234
- ActionHistoryDetails: ActionHistoryDetailsFilterSensitiveLog(obj.ActionHistoryDetails),
235
- }))); };
236
- export var HistoricalOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
- export var AutoAdjustDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
238
- export var SpendFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
239
- export var CalculatedSpendFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
240
- export var CostTypesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
241
- export var TimePeriodFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
242
- export var BudgetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
243
- export var NotificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
- export var NotificationWithSubscribersFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Subscribers && { Subscribers: obj.Subscribers.map(function (item) { return SubscriberFilterSensitiveLog(item); }) }))); };
245
- export var CreateBudgetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
- export var CreateBudgetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
- export var CreateBudgetActionRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Subscribers && { Subscribers: obj.Subscribers.map(function (item) { return SubscriberFilterSensitiveLog(item); }) }))); };
248
- export var CreateBudgetActionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
249
- export var CreateNotificationRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Subscribers && { Subscribers: obj.Subscribers.map(function (item) { return SubscriberFilterSensitiveLog(item); }) }))); };
250
- export var CreateNotificationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
- export var CreateSubscriberRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Subscriber && { Subscriber: SubscriberFilterSensitiveLog(obj.Subscriber) }))); };
252
- export var CreateSubscriberResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
253
- export var DeleteBudgetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
- export var DeleteBudgetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
- export var DeleteBudgetActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
256
- export var DeleteBudgetActionResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }))); };
257
- export var DeleteNotificationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
- export var DeleteNotificationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
259
- export var DeleteSubscriberRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Subscriber && { Subscriber: SubscriberFilterSensitiveLog(obj.Subscriber) }))); };
260
- export var DeleteSubscriberResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
- export var DescribeBudgetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
- export var DescribeBudgetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
- export var DescribeBudgetActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
- export var DescribeBudgetActionResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }))); };
265
- export var DescribeBudgetActionHistoriesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
- export var DescribeBudgetActionHistoriesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
- export var DescribeBudgetActionsForAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
- export var DescribeBudgetActionsForAccountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
- export var DescribeBudgetActionsForBudgetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
- export var DescribeBudgetActionsForBudgetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
- export var DescribeBudgetNotificationsForAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
- export var BudgetNotificationsForAccountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
- export var DescribeBudgetNotificationsForAccountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
- export var DescribeBudgetPerformanceHistoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
- export var BudgetedAndActualAmountsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
- export var BudgetPerformanceHistoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
- export var DescribeBudgetPerformanceHistoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var DescribeBudgetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
- export var DescribeBudgetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
- export var DescribeNotificationsForBudgetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
- export var DescribeNotificationsForBudgetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
- export var DescribeSubscribersForNotificationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var DescribeSubscribersForNotificationResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Subscribers && { Subscribers: obj.Subscribers.map(function (item) { return SubscriberFilterSensitiveLog(item); }) }))); };
284
- export var ExecuteBudgetActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var ExecuteBudgetActionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var UpdateBudgetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
- export var UpdateBudgetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var UpdateBudgetActionRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Subscribers && { Subscribers: obj.Subscribers.map(function (item) { return SubscriberFilterSensitiveLog(item); }) }))); };
289
- export var UpdateBudgetActionResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.OldAction && { OldAction: ActionFilterSensitiveLog(obj.OldAction) })), (obj.NewAction && { NewAction: ActionFilterSensitiveLog(obj.NewAction) }))); };
290
- export var UpdateNotificationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var UpdateNotificationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var UpdateSubscriberRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.OldSubscriber && { OldSubscriber: SubscriberFilterSensitiveLog(obj.OldSubscriber) })), (obj.NewSubscriber && { NewSubscriber: SubscriberFilterSensitiveLog(obj.NewSubscriber) }))); };
293
- export var UpdateSubscriberResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
+ export const ActionThresholdFilterSensitiveLog = (obj) => ({
225
+ ...obj,
226
+ });
227
+ export const IamActionDefinitionFilterSensitiveLog = (obj) => ({
228
+ ...obj,
229
+ });
230
+ export const ScpActionDefinitionFilterSensitiveLog = (obj) => ({
231
+ ...obj,
232
+ });
233
+ export const SsmActionDefinitionFilterSensitiveLog = (obj) => ({
234
+ ...obj,
235
+ });
236
+ export const DefinitionFilterSensitiveLog = (obj) => ({
237
+ ...obj,
238
+ });
239
+ export const SubscriberFilterSensitiveLog = (obj) => ({
240
+ ...obj,
241
+ ...(obj.Address && { Address: SENSITIVE_STRING }),
242
+ });
243
+ export const ActionFilterSensitiveLog = (obj) => ({
244
+ ...obj,
245
+ ...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
246
+ });
247
+ export const ActionHistoryDetailsFilterSensitiveLog = (obj) => ({
248
+ ...obj,
249
+ ...(obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }),
250
+ });
251
+ export const ActionHistoryFilterSensitiveLog = (obj) => ({
252
+ ...obj,
253
+ ...(obj.ActionHistoryDetails && {
254
+ ActionHistoryDetails: ActionHistoryDetailsFilterSensitiveLog(obj.ActionHistoryDetails),
255
+ }),
256
+ });
257
+ export const HistoricalOptionsFilterSensitiveLog = (obj) => ({
258
+ ...obj,
259
+ });
260
+ export const AutoAdjustDataFilterSensitiveLog = (obj) => ({
261
+ ...obj,
262
+ });
263
+ export const SpendFilterSensitiveLog = (obj) => ({
264
+ ...obj,
265
+ });
266
+ export const CalculatedSpendFilterSensitiveLog = (obj) => ({
267
+ ...obj,
268
+ });
269
+ export const CostTypesFilterSensitiveLog = (obj) => ({
270
+ ...obj,
271
+ });
272
+ export const TimePeriodFilterSensitiveLog = (obj) => ({
273
+ ...obj,
274
+ });
275
+ export const BudgetFilterSensitiveLog = (obj) => ({
276
+ ...obj,
277
+ });
278
+ export const NotificationFilterSensitiveLog = (obj) => ({
279
+ ...obj,
280
+ });
281
+ export const NotificationWithSubscribersFilterSensitiveLog = (obj) => ({
282
+ ...obj,
283
+ ...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
284
+ });
285
+ export const CreateBudgetRequestFilterSensitiveLog = (obj) => ({
286
+ ...obj,
287
+ });
288
+ export const CreateBudgetResponseFilterSensitiveLog = (obj) => ({
289
+ ...obj,
290
+ });
291
+ export const CreateBudgetActionRequestFilterSensitiveLog = (obj) => ({
292
+ ...obj,
293
+ ...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
294
+ });
295
+ export const CreateBudgetActionResponseFilterSensitiveLog = (obj) => ({
296
+ ...obj,
297
+ });
298
+ export const CreateNotificationRequestFilterSensitiveLog = (obj) => ({
299
+ ...obj,
300
+ ...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
301
+ });
302
+ export const CreateNotificationResponseFilterSensitiveLog = (obj) => ({
303
+ ...obj,
304
+ });
305
+ export const CreateSubscriberRequestFilterSensitiveLog = (obj) => ({
306
+ ...obj,
307
+ ...(obj.Subscriber && { Subscriber: SubscriberFilterSensitiveLog(obj.Subscriber) }),
308
+ });
309
+ export const CreateSubscriberResponseFilterSensitiveLog = (obj) => ({
310
+ ...obj,
311
+ });
312
+ export const DeleteBudgetRequestFilterSensitiveLog = (obj) => ({
313
+ ...obj,
314
+ });
315
+ export const DeleteBudgetResponseFilterSensitiveLog = (obj) => ({
316
+ ...obj,
317
+ });
318
+ export const DeleteBudgetActionRequestFilterSensitiveLog = (obj) => ({
319
+ ...obj,
320
+ });
321
+ export const DeleteBudgetActionResponseFilterSensitiveLog = (obj) => ({
322
+ ...obj,
323
+ ...(obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }),
324
+ });
325
+ export const DeleteNotificationRequestFilterSensitiveLog = (obj) => ({
326
+ ...obj,
327
+ });
328
+ export const DeleteNotificationResponseFilterSensitiveLog = (obj) => ({
329
+ ...obj,
330
+ });
331
+ export const DeleteSubscriberRequestFilterSensitiveLog = (obj) => ({
332
+ ...obj,
333
+ ...(obj.Subscriber && { Subscriber: SubscriberFilterSensitiveLog(obj.Subscriber) }),
334
+ });
335
+ export const DeleteSubscriberResponseFilterSensitiveLog = (obj) => ({
336
+ ...obj,
337
+ });
338
+ export const DescribeBudgetRequestFilterSensitiveLog = (obj) => ({
339
+ ...obj,
340
+ });
341
+ export const DescribeBudgetResponseFilterSensitiveLog = (obj) => ({
342
+ ...obj,
343
+ });
344
+ export const DescribeBudgetActionRequestFilterSensitiveLog = (obj) => ({
345
+ ...obj,
346
+ });
347
+ export const DescribeBudgetActionResponseFilterSensitiveLog = (obj) => ({
348
+ ...obj,
349
+ ...(obj.Action && { Action: ActionFilterSensitiveLog(obj.Action) }),
350
+ });
351
+ export const DescribeBudgetActionHistoriesRequestFilterSensitiveLog = (obj) => ({
352
+ ...obj,
353
+ });
354
+ export const DescribeBudgetActionHistoriesResponseFilterSensitiveLog = (obj) => ({
355
+ ...obj,
356
+ });
357
+ export const DescribeBudgetActionsForAccountRequestFilterSensitiveLog = (obj) => ({
358
+ ...obj,
359
+ });
360
+ export const DescribeBudgetActionsForAccountResponseFilterSensitiveLog = (obj) => ({
361
+ ...obj,
362
+ });
363
+ export const DescribeBudgetActionsForBudgetRequestFilterSensitiveLog = (obj) => ({
364
+ ...obj,
365
+ });
366
+ export const DescribeBudgetActionsForBudgetResponseFilterSensitiveLog = (obj) => ({
367
+ ...obj,
368
+ });
369
+ export const DescribeBudgetNotificationsForAccountRequestFilterSensitiveLog = (obj) => ({
370
+ ...obj,
371
+ });
372
+ export const BudgetNotificationsForAccountFilterSensitiveLog = (obj) => ({
373
+ ...obj,
374
+ });
375
+ export const DescribeBudgetNotificationsForAccountResponseFilterSensitiveLog = (obj) => ({
376
+ ...obj,
377
+ });
378
+ export const DescribeBudgetPerformanceHistoryRequestFilterSensitiveLog = (obj) => ({
379
+ ...obj,
380
+ });
381
+ export const BudgetedAndActualAmountsFilterSensitiveLog = (obj) => ({
382
+ ...obj,
383
+ });
384
+ export const BudgetPerformanceHistoryFilterSensitiveLog = (obj) => ({
385
+ ...obj,
386
+ });
387
+ export const DescribeBudgetPerformanceHistoryResponseFilterSensitiveLog = (obj) => ({
388
+ ...obj,
389
+ });
390
+ export const DescribeBudgetsRequestFilterSensitiveLog = (obj) => ({
391
+ ...obj,
392
+ });
393
+ export const DescribeBudgetsResponseFilterSensitiveLog = (obj) => ({
394
+ ...obj,
395
+ });
396
+ export const DescribeNotificationsForBudgetRequestFilterSensitiveLog = (obj) => ({
397
+ ...obj,
398
+ });
399
+ export const DescribeNotificationsForBudgetResponseFilterSensitiveLog = (obj) => ({
400
+ ...obj,
401
+ });
402
+ export const DescribeSubscribersForNotificationRequestFilterSensitiveLog = (obj) => ({
403
+ ...obj,
404
+ });
405
+ export const DescribeSubscribersForNotificationResponseFilterSensitiveLog = (obj) => ({
406
+ ...obj,
407
+ ...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
408
+ });
409
+ export const ExecuteBudgetActionRequestFilterSensitiveLog = (obj) => ({
410
+ ...obj,
411
+ });
412
+ export const ExecuteBudgetActionResponseFilterSensitiveLog = (obj) => ({
413
+ ...obj,
414
+ });
415
+ export const UpdateBudgetRequestFilterSensitiveLog = (obj) => ({
416
+ ...obj,
417
+ });
418
+ export const UpdateBudgetResponseFilterSensitiveLog = (obj) => ({
419
+ ...obj,
420
+ });
421
+ export const UpdateBudgetActionRequestFilterSensitiveLog = (obj) => ({
422
+ ...obj,
423
+ ...(obj.Subscribers && { Subscribers: obj.Subscribers.map((item) => SubscriberFilterSensitiveLog(item)) }),
424
+ });
425
+ export const UpdateBudgetActionResponseFilterSensitiveLog = (obj) => ({
426
+ ...obj,
427
+ ...(obj.OldAction && { OldAction: ActionFilterSensitiveLog(obj.OldAction) }),
428
+ ...(obj.NewAction && { NewAction: ActionFilterSensitiveLog(obj.NewAction) }),
429
+ });
430
+ export const UpdateNotificationRequestFilterSensitiveLog = (obj) => ({
431
+ ...obj,
432
+ });
433
+ export const UpdateNotificationResponseFilterSensitiveLog = (obj) => ({
434
+ ...obj,
435
+ });
436
+ export const UpdateSubscriberRequestFilterSensitiveLog = (obj) => ({
437
+ ...obj,
438
+ ...(obj.OldSubscriber && { OldSubscriber: SubscriberFilterSensitiveLog(obj.OldSubscriber) }),
439
+ ...(obj.NewSubscriber && { NewSubscriber: SubscriberFilterSensitiveLog(obj.NewSubscriber) }),
440
+ });
441
+ export const UpdateSubscriberResponseFilterSensitiveLog = (obj) => ({
442
+ ...obj,
443
+ });