@aws-sdk/client-budgets 3.934.0 → 3.935.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 +144 -143
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +143 -0
- package/dist-es/models/errors.js +169 -0
- package/dist-es/models/models_0.js +1 -312
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +295 -0
- package/dist-types/models/errors.d.ts +210 -0
- package/dist-types/models/models_0.d.ts +1 -505
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +169 -0
- package/dist-types/ts3.4/models/errors.d.ts +99 -0
- package/dist-types/ts3.4/models/models_0.d.ts +21 -268
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,312 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export const ThresholdType = {
|
|
17
|
-
ABSOLUTE_VALUE: "ABSOLUTE_VALUE",
|
|
18
|
-
PERCENTAGE: "PERCENTAGE",
|
|
19
|
-
};
|
|
20
|
-
export const ActionType = {
|
|
21
|
-
IAM: "APPLY_IAM_POLICY",
|
|
22
|
-
SCP: "APPLY_SCP_POLICY",
|
|
23
|
-
SSM: "RUN_SSM_DOCUMENTS",
|
|
24
|
-
};
|
|
25
|
-
export const ApprovalModel = {
|
|
26
|
-
AUTO: "AUTOMATIC",
|
|
27
|
-
MANUAL: "MANUAL",
|
|
28
|
-
};
|
|
29
|
-
export const ActionSubType = {
|
|
30
|
-
STOP_EC2: "STOP_EC2_INSTANCES",
|
|
31
|
-
STOP_RDS: "STOP_RDS_INSTANCES",
|
|
32
|
-
};
|
|
33
|
-
export const NotificationType = {
|
|
34
|
-
ACTUAL: "ACTUAL",
|
|
35
|
-
FORECASTED: "FORECASTED",
|
|
36
|
-
};
|
|
37
|
-
export const ActionStatus = {
|
|
38
|
-
Execution_Failure: "EXECUTION_FAILURE",
|
|
39
|
-
Execution_In_Progress: "EXECUTION_IN_PROGRESS",
|
|
40
|
-
Execution_Success: "EXECUTION_SUCCESS",
|
|
41
|
-
Pending: "PENDING",
|
|
42
|
-
Reset_Failure: "RESET_FAILURE",
|
|
43
|
-
Reset_In_Progress: "RESET_IN_PROGRESS",
|
|
44
|
-
Reverse_Failure: "REVERSE_FAILURE",
|
|
45
|
-
Reverse_In_Progress: "REVERSE_IN_PROGRESS",
|
|
46
|
-
Reverse_Success: "REVERSE_SUCCESS",
|
|
47
|
-
Standby: "STANDBY",
|
|
48
|
-
};
|
|
49
|
-
export const SubscriptionType = {
|
|
50
|
-
EMAIL: "EMAIL",
|
|
51
|
-
SNS: "SNS",
|
|
52
|
-
};
|
|
53
|
-
export const EventType = {
|
|
54
|
-
CreateAction: "CREATE_ACTION",
|
|
55
|
-
DeleteAction: "DELETE_ACTION",
|
|
56
|
-
ExecuteAction: "EXECUTE_ACTION",
|
|
57
|
-
System: "SYSTEM",
|
|
58
|
-
UpdateAction: "UPDATE_ACTION",
|
|
59
|
-
};
|
|
60
|
-
export const AutoAdjustType = {
|
|
61
|
-
FORECAST: "FORECAST",
|
|
62
|
-
HISTORICAL: "HISTORICAL",
|
|
63
|
-
};
|
|
64
|
-
export class BillingViewHealthStatusException extends __BaseException {
|
|
65
|
-
name = "BillingViewHealthStatusException";
|
|
66
|
-
$fault = "client";
|
|
67
|
-
Message;
|
|
68
|
-
constructor(opts) {
|
|
69
|
-
super({
|
|
70
|
-
name: "BillingViewHealthStatusException",
|
|
71
|
-
$fault: "client",
|
|
72
|
-
...opts,
|
|
73
|
-
});
|
|
74
|
-
Object.setPrototypeOf(this, BillingViewHealthStatusException.prototype);
|
|
75
|
-
this.Message = opts.Message;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
export const BudgetType = {
|
|
79
|
-
Cost: "COST",
|
|
80
|
-
RICoverage: "RI_COVERAGE",
|
|
81
|
-
RIUtilization: "RI_UTILIZATION",
|
|
82
|
-
SPCoverage: "SAVINGS_PLANS_COVERAGE",
|
|
83
|
-
SPUtilization: "SAVINGS_PLANS_UTILIZATION",
|
|
84
|
-
Usage: "USAGE",
|
|
85
|
-
};
|
|
86
|
-
export const MatchOption = {
|
|
87
|
-
ABSENT: "ABSENT",
|
|
88
|
-
CASE_INSENSITIVE: "CASE_INSENSITIVE",
|
|
89
|
-
CASE_SENSITIVE: "CASE_SENSITIVE",
|
|
90
|
-
CONTAINS: "CONTAINS",
|
|
91
|
-
ENDS_WITH: "ENDS_WITH",
|
|
92
|
-
EQUALS: "EQUALS",
|
|
93
|
-
GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL",
|
|
94
|
-
STARTS_WITH: "STARTS_WITH",
|
|
95
|
-
};
|
|
96
|
-
export const Dimension = {
|
|
97
|
-
AZ: "AZ",
|
|
98
|
-
BILLING_ENTITY: "BILLING_ENTITY",
|
|
99
|
-
CACHE_ENGINE: "CACHE_ENGINE",
|
|
100
|
-
COST_CATEGORY_NAME: "COST_CATEGORY_NAME",
|
|
101
|
-
DATABASE_ENGINE: "DATABASE_ENGINE",
|
|
102
|
-
DEPLOYMENT_OPTION: "DEPLOYMENT_OPTION",
|
|
103
|
-
INSTANCE_TYPE: "INSTANCE_TYPE",
|
|
104
|
-
INSTANCE_TYPE_FAMILY: "INSTANCE_TYPE_FAMILY",
|
|
105
|
-
INVOICING_ENTITY: "INVOICING_ENTITY",
|
|
106
|
-
LEGAL_ENTITY_NAME: "LEGAL_ENTITY_NAME",
|
|
107
|
-
LINKED_ACCOUNT: "LINKED_ACCOUNT",
|
|
108
|
-
LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME",
|
|
109
|
-
OPERATING_SYSTEM: "OPERATING_SYSTEM",
|
|
110
|
-
OPERATION: "OPERATION",
|
|
111
|
-
PAYMENT_OPTION: "PAYMENT_OPTION",
|
|
112
|
-
PLATFORM: "PLATFORM",
|
|
113
|
-
PURCHASE_TYPE: "PURCHASE_TYPE",
|
|
114
|
-
RECORD_TYPE: "RECORD_TYPE",
|
|
115
|
-
REGION: "REGION",
|
|
116
|
-
RESERVATION_ID: "RESERVATION_ID",
|
|
117
|
-
RESERVATION_MODIFIED: "RESERVATION_MODIFIED",
|
|
118
|
-
RESOURCE_ID: "RESOURCE_ID",
|
|
119
|
-
RIGHTSIZING_TYPE: "RIGHTSIZING_TYPE",
|
|
120
|
-
SAVINGS_PLANS_TYPE: "SAVINGS_PLANS_TYPE",
|
|
121
|
-
SAVINGS_PLAN_ARN: "SAVINGS_PLAN_ARN",
|
|
122
|
-
SCOPE: "SCOPE",
|
|
123
|
-
SERVICE: "SERVICE",
|
|
124
|
-
SERVICE_CODE: "SERVICE_CODE",
|
|
125
|
-
SUBSCRIPTION_ID: "SUBSCRIPTION_ID",
|
|
126
|
-
TAG_KEY: "TAG_KEY",
|
|
127
|
-
TENANCY: "TENANCY",
|
|
128
|
-
USAGE_TYPE: "USAGE_TYPE",
|
|
129
|
-
USAGE_TYPE_GROUP: "USAGE_TYPE_GROUP",
|
|
130
|
-
};
|
|
131
|
-
export const HealthStatusValue = {
|
|
132
|
-
HEALTHY: "HEALTHY",
|
|
133
|
-
UNHEALTHY: "UNHEALTHY",
|
|
134
|
-
};
|
|
135
|
-
export const HealthStatusReason = {
|
|
136
|
-
BILLING_VIEW_NO_ACCESS: "BILLING_VIEW_NO_ACCESS",
|
|
137
|
-
BILLING_VIEW_UNHEALTHY: "BILLING_VIEW_UNHEALTHY",
|
|
138
|
-
FILTER_INVALID: "FILTER_INVALID",
|
|
139
|
-
MULTI_YEAR_HISTORICAL_DATA_DISABLED: "MULTI_YEAR_HISTORICAL_DATA_DISABLED",
|
|
140
|
-
};
|
|
141
|
-
export const Metric = {
|
|
142
|
-
AMORTIZED_COST: "AmortizedCost",
|
|
143
|
-
BLENDED_COST: "BlendedCost",
|
|
144
|
-
HOURS: "Hours",
|
|
145
|
-
NET_AMORTIZED_COST: "NetAmortizedCost",
|
|
146
|
-
NET_UNBLENDED_COST: "NetUnblendedCost",
|
|
147
|
-
NORMALIZED_USAGE_AMOUNT: "NormalizedUsageAmount",
|
|
148
|
-
UNBLENDED_COST: "UnblendedCost",
|
|
149
|
-
USAGE_QUANTITY: "UsageQuantity",
|
|
150
|
-
};
|
|
151
|
-
export const TimeUnit = {
|
|
152
|
-
ANNUALLY: "ANNUALLY",
|
|
153
|
-
CUSTOM: "CUSTOM",
|
|
154
|
-
DAILY: "DAILY",
|
|
155
|
-
MONTHLY: "MONTHLY",
|
|
156
|
-
QUARTERLY: "QUARTERLY",
|
|
157
|
-
};
|
|
158
|
-
export const ComparisonOperator = {
|
|
159
|
-
EQUAL_TO: "EQUAL_TO",
|
|
160
|
-
GREATER_THAN: "GREATER_THAN",
|
|
161
|
-
LESS_THAN: "LESS_THAN",
|
|
162
|
-
};
|
|
163
|
-
export const NotificationState = {
|
|
164
|
-
ALARM: "ALARM",
|
|
165
|
-
OK: "OK",
|
|
166
|
-
};
|
|
167
|
-
export class CreationLimitExceededException extends __BaseException {
|
|
168
|
-
name = "CreationLimitExceededException";
|
|
169
|
-
$fault = "client";
|
|
170
|
-
Message;
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "CreationLimitExceededException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, CreationLimitExceededException.prototype);
|
|
178
|
-
this.Message = opts.Message;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
export class DuplicateRecordException extends __BaseException {
|
|
182
|
-
name = "DuplicateRecordException";
|
|
183
|
-
$fault = "client";
|
|
184
|
-
Message;
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "DuplicateRecordException",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, DuplicateRecordException.prototype);
|
|
192
|
-
this.Message = opts.Message;
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
export class InternalErrorException extends __BaseException {
|
|
196
|
-
name = "InternalErrorException";
|
|
197
|
-
$fault = "server";
|
|
198
|
-
Message;
|
|
199
|
-
constructor(opts) {
|
|
200
|
-
super({
|
|
201
|
-
name: "InternalErrorException",
|
|
202
|
-
$fault: "server",
|
|
203
|
-
...opts,
|
|
204
|
-
});
|
|
205
|
-
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
206
|
-
this.Message = opts.Message;
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
export class InvalidParameterException extends __BaseException {
|
|
210
|
-
name = "InvalidParameterException";
|
|
211
|
-
$fault = "client";
|
|
212
|
-
Message;
|
|
213
|
-
constructor(opts) {
|
|
214
|
-
super({
|
|
215
|
-
name: "InvalidParameterException",
|
|
216
|
-
$fault: "client",
|
|
217
|
-
...opts,
|
|
218
|
-
});
|
|
219
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
220
|
-
this.Message = opts.Message;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
export class NotFoundException extends __BaseException {
|
|
224
|
-
name = "NotFoundException";
|
|
225
|
-
$fault = "client";
|
|
226
|
-
Message;
|
|
227
|
-
constructor(opts) {
|
|
228
|
-
super({
|
|
229
|
-
name: "NotFoundException",
|
|
230
|
-
$fault: "client",
|
|
231
|
-
...opts,
|
|
232
|
-
});
|
|
233
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
234
|
-
this.Message = opts.Message;
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
238
|
-
name = "ServiceQuotaExceededException";
|
|
239
|
-
$fault = "client";
|
|
240
|
-
Message;
|
|
241
|
-
constructor(opts) {
|
|
242
|
-
super({
|
|
243
|
-
name: "ServiceQuotaExceededException",
|
|
244
|
-
$fault: "client",
|
|
245
|
-
...opts,
|
|
246
|
-
});
|
|
247
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
248
|
-
this.Message = opts.Message;
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
export class ThrottlingException extends __BaseException {
|
|
252
|
-
name = "ThrottlingException";
|
|
253
|
-
$fault = "client";
|
|
254
|
-
Message;
|
|
255
|
-
constructor(opts) {
|
|
256
|
-
super({
|
|
257
|
-
name: "ThrottlingException",
|
|
258
|
-
$fault: "client",
|
|
259
|
-
...opts,
|
|
260
|
-
});
|
|
261
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
262
|
-
this.Message = opts.Message;
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
export class ResourceLockedException extends __BaseException {
|
|
266
|
-
name = "ResourceLockedException";
|
|
267
|
-
$fault = "client";
|
|
268
|
-
Message;
|
|
269
|
-
constructor(opts) {
|
|
270
|
-
super({
|
|
271
|
-
name: "ResourceLockedException",
|
|
272
|
-
$fault: "client",
|
|
273
|
-
...opts,
|
|
274
|
-
});
|
|
275
|
-
Object.setPrototypeOf(this, ResourceLockedException.prototype);
|
|
276
|
-
this.Message = opts.Message;
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
export class InvalidNextTokenException extends __BaseException {
|
|
280
|
-
name = "InvalidNextTokenException";
|
|
281
|
-
$fault = "client";
|
|
282
|
-
Message;
|
|
283
|
-
constructor(opts) {
|
|
284
|
-
super({
|
|
285
|
-
name: "InvalidNextTokenException",
|
|
286
|
-
$fault: "client",
|
|
287
|
-
...opts,
|
|
288
|
-
});
|
|
289
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
290
|
-
this.Message = opts.Message;
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
export class ExpiredNextTokenException extends __BaseException {
|
|
294
|
-
name = "ExpiredNextTokenException";
|
|
295
|
-
$fault = "client";
|
|
296
|
-
Message;
|
|
297
|
-
constructor(opts) {
|
|
298
|
-
super({
|
|
299
|
-
name: "ExpiredNextTokenException",
|
|
300
|
-
$fault: "client",
|
|
301
|
-
...opts,
|
|
302
|
-
});
|
|
303
|
-
Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
|
|
304
|
-
this.Message = opts.Message;
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
export const ExecutionType = {
|
|
308
|
-
ApproveBudgetAction: "APPROVE_BUDGET_ACTION",
|
|
309
|
-
ResetBudgetAction: "RESET_BUDGET_ACTION",
|
|
310
|
-
RetryBudgetAction: "RETRY_BUDGET_ACTION",
|
|
311
|
-
ReverseBudgetAction: "REVERSE_BUDGET_ACTION",
|
|
312
|
-
};
|
|
1
|
+
export {};
|
|
@@ -220,7 +220,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.budgets";
|
|
|
220
220
|
const n0 = "com.amazonaws.budgets";
|
|
221
221
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
222
222
|
import { BudgetsServiceException as __BudgetsServiceException } from "../models/BudgetsServiceException";
|
|
223
|
-
import { AccessDeniedException as __AccessDeniedException, BillingViewHealthStatusException as __BillingViewHealthStatusException, CreationLimitExceededException as __CreationLimitExceededException, DuplicateRecordException as __DuplicateRecordException, ExpiredNextTokenException as __ExpiredNextTokenException, InternalErrorException as __InternalErrorException, InvalidNextTokenException as __InvalidNextTokenException, InvalidParameterException as __InvalidParameterException, NotFoundException as __NotFoundException, ResourceLockedException as __ResourceLockedException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, } from "../models/
|
|
223
|
+
import { AccessDeniedException as __AccessDeniedException, BillingViewHealthStatusException as __BillingViewHealthStatusException, CreationLimitExceededException as __CreationLimitExceededException, DuplicateRecordException as __DuplicateRecordException, ExpiredNextTokenException as __ExpiredNextTokenException, InternalErrorException as __InternalErrorException, InvalidNextTokenException as __InvalidNextTokenException, InvalidParameterException as __InvalidParameterException, NotFoundException as __NotFoundException, ResourceLockedException as __ResourceLockedException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, } from "../models/errors";
|
|
224
224
|
export var SubscriberAddress = [0, n0, _SA, 8, 0];
|
|
225
225
|
export var AccessDeniedException = [
|
|
226
226
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -52,5 +52,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
52
52
|
export type { BudgetsExtensionConfiguration } from "./extensionConfiguration";
|
|
53
53
|
export * from "./commands";
|
|
54
54
|
export * from "./pagination";
|
|
55
|
-
export * from "./models";
|
|
55
|
+
export * from "./models/enums";
|
|
56
|
+
export * from "./models/errors";
|
|
57
|
+
export type * from "./models/models_0";
|
|
56
58
|
export { BudgetsServiceException } from "./models/BudgetsServiceException";
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ThresholdType: {
|
|
6
|
+
readonly ABSOLUTE_VALUE: "ABSOLUTE_VALUE";
|
|
7
|
+
readonly PERCENTAGE: "PERCENTAGE";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const ActionType: {
|
|
18
|
+
readonly IAM: "APPLY_IAM_POLICY";
|
|
19
|
+
readonly SCP: "APPLY_SCP_POLICY";
|
|
20
|
+
readonly SSM: "RUN_SSM_DOCUMENTS";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const ApprovalModel: {
|
|
31
|
+
readonly AUTO: "AUTOMATIC";
|
|
32
|
+
readonly MANUAL: "MANUAL";
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export type ApprovalModel = (typeof ApprovalModel)[keyof typeof ApprovalModel];
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
* @enum
|
|
41
|
+
*/
|
|
42
|
+
export declare const ActionSubType: {
|
|
43
|
+
readonly STOP_EC2: "STOP_EC2_INSTANCES";
|
|
44
|
+
readonly STOP_RDS: "STOP_RDS_INSTANCES";
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export type ActionSubType = (typeof ActionSubType)[keyof typeof ActionSubType];
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
* @enum
|
|
53
|
+
*/
|
|
54
|
+
export declare const NotificationType: {
|
|
55
|
+
readonly ACTUAL: "ACTUAL";
|
|
56
|
+
readonly FORECASTED: "FORECASTED";
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
* @enum
|
|
65
|
+
*/
|
|
66
|
+
export declare const ActionStatus: {
|
|
67
|
+
readonly Execution_Failure: "EXECUTION_FAILURE";
|
|
68
|
+
readonly Execution_In_Progress: "EXECUTION_IN_PROGRESS";
|
|
69
|
+
readonly Execution_Success: "EXECUTION_SUCCESS";
|
|
70
|
+
readonly Pending: "PENDING";
|
|
71
|
+
readonly Reset_Failure: "RESET_FAILURE";
|
|
72
|
+
readonly Reset_In_Progress: "RESET_IN_PROGRESS";
|
|
73
|
+
readonly Reverse_Failure: "REVERSE_FAILURE";
|
|
74
|
+
readonly Reverse_In_Progress: "REVERSE_IN_PROGRESS";
|
|
75
|
+
readonly Reverse_Success: "REVERSE_SUCCESS";
|
|
76
|
+
readonly Standby: "STANDBY";
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
* @enum
|
|
85
|
+
*/
|
|
86
|
+
export declare const SubscriptionType: {
|
|
87
|
+
readonly EMAIL: "EMAIL";
|
|
88
|
+
readonly SNS: "SNS";
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export type SubscriptionType = (typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
* @enum
|
|
97
|
+
*/
|
|
98
|
+
export declare const EventType: {
|
|
99
|
+
readonly CreateAction: "CREATE_ACTION";
|
|
100
|
+
readonly DeleteAction: "DELETE_ACTION";
|
|
101
|
+
readonly ExecuteAction: "EXECUTE_ACTION";
|
|
102
|
+
readonly System: "SYSTEM";
|
|
103
|
+
readonly UpdateAction: "UPDATE_ACTION";
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
109
|
+
/**
|
|
110
|
+
* @public
|
|
111
|
+
* @enum
|
|
112
|
+
*/
|
|
113
|
+
export declare const AutoAdjustType: {
|
|
114
|
+
readonly FORECAST: "FORECAST";
|
|
115
|
+
readonly HISTORICAL: "HISTORICAL";
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export type AutoAdjustType = (typeof AutoAdjustType)[keyof typeof AutoAdjustType];
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
* @enum
|
|
124
|
+
*/
|
|
125
|
+
export declare const BudgetType: {
|
|
126
|
+
readonly Cost: "COST";
|
|
127
|
+
readonly RICoverage: "RI_COVERAGE";
|
|
128
|
+
readonly RIUtilization: "RI_UTILIZATION";
|
|
129
|
+
readonly SPCoverage: "SAVINGS_PLANS_COVERAGE";
|
|
130
|
+
readonly SPUtilization: "SAVINGS_PLANS_UTILIZATION";
|
|
131
|
+
readonly Usage: "USAGE";
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
export type BudgetType = (typeof BudgetType)[keyof typeof BudgetType];
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
* @enum
|
|
140
|
+
*/
|
|
141
|
+
export declare const MatchOption: {
|
|
142
|
+
readonly ABSENT: "ABSENT";
|
|
143
|
+
readonly CASE_INSENSITIVE: "CASE_INSENSITIVE";
|
|
144
|
+
readonly CASE_SENSITIVE: "CASE_SENSITIVE";
|
|
145
|
+
readonly CONTAINS: "CONTAINS";
|
|
146
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
147
|
+
readonly EQUALS: "EQUALS";
|
|
148
|
+
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
149
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
export type MatchOption = (typeof MatchOption)[keyof typeof MatchOption];
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
* @enum
|
|
158
|
+
*/
|
|
159
|
+
export declare const Dimension: {
|
|
160
|
+
readonly AZ: "AZ";
|
|
161
|
+
readonly BILLING_ENTITY: "BILLING_ENTITY";
|
|
162
|
+
readonly CACHE_ENGINE: "CACHE_ENGINE";
|
|
163
|
+
readonly COST_CATEGORY_NAME: "COST_CATEGORY_NAME";
|
|
164
|
+
readonly DATABASE_ENGINE: "DATABASE_ENGINE";
|
|
165
|
+
readonly DEPLOYMENT_OPTION: "DEPLOYMENT_OPTION";
|
|
166
|
+
readonly INSTANCE_TYPE: "INSTANCE_TYPE";
|
|
167
|
+
readonly INSTANCE_TYPE_FAMILY: "INSTANCE_TYPE_FAMILY";
|
|
168
|
+
readonly INVOICING_ENTITY: "INVOICING_ENTITY";
|
|
169
|
+
readonly LEGAL_ENTITY_NAME: "LEGAL_ENTITY_NAME";
|
|
170
|
+
readonly LINKED_ACCOUNT: "LINKED_ACCOUNT";
|
|
171
|
+
readonly LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME";
|
|
172
|
+
readonly OPERATING_SYSTEM: "OPERATING_SYSTEM";
|
|
173
|
+
readonly OPERATION: "OPERATION";
|
|
174
|
+
readonly PAYMENT_OPTION: "PAYMENT_OPTION";
|
|
175
|
+
readonly PLATFORM: "PLATFORM";
|
|
176
|
+
readonly PURCHASE_TYPE: "PURCHASE_TYPE";
|
|
177
|
+
readonly RECORD_TYPE: "RECORD_TYPE";
|
|
178
|
+
readonly REGION: "REGION";
|
|
179
|
+
readonly RESERVATION_ID: "RESERVATION_ID";
|
|
180
|
+
readonly RESERVATION_MODIFIED: "RESERVATION_MODIFIED";
|
|
181
|
+
readonly RESOURCE_ID: "RESOURCE_ID";
|
|
182
|
+
readonly RIGHTSIZING_TYPE: "RIGHTSIZING_TYPE";
|
|
183
|
+
readonly SAVINGS_PLANS_TYPE: "SAVINGS_PLANS_TYPE";
|
|
184
|
+
readonly SAVINGS_PLAN_ARN: "SAVINGS_PLAN_ARN";
|
|
185
|
+
readonly SCOPE: "SCOPE";
|
|
186
|
+
readonly SERVICE: "SERVICE";
|
|
187
|
+
readonly SERVICE_CODE: "SERVICE_CODE";
|
|
188
|
+
readonly SUBSCRIPTION_ID: "SUBSCRIPTION_ID";
|
|
189
|
+
readonly TAG_KEY: "TAG_KEY";
|
|
190
|
+
readonly TENANCY: "TENANCY";
|
|
191
|
+
readonly USAGE_TYPE: "USAGE_TYPE";
|
|
192
|
+
readonly USAGE_TYPE_GROUP: "USAGE_TYPE_GROUP";
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export type Dimension = (typeof Dimension)[keyof typeof Dimension];
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
* @enum
|
|
201
|
+
*/
|
|
202
|
+
export declare const HealthStatusValue: {
|
|
203
|
+
readonly HEALTHY: "HEALTHY";
|
|
204
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
export type HealthStatusValue = (typeof HealthStatusValue)[keyof typeof HealthStatusValue];
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
* @enum
|
|
213
|
+
*/
|
|
214
|
+
export declare const HealthStatusReason: {
|
|
215
|
+
readonly BILLING_VIEW_NO_ACCESS: "BILLING_VIEW_NO_ACCESS";
|
|
216
|
+
readonly BILLING_VIEW_UNHEALTHY: "BILLING_VIEW_UNHEALTHY";
|
|
217
|
+
readonly FILTER_INVALID: "FILTER_INVALID";
|
|
218
|
+
readonly MULTI_YEAR_HISTORICAL_DATA_DISABLED: "MULTI_YEAR_HISTORICAL_DATA_DISABLED";
|
|
219
|
+
};
|
|
220
|
+
/**
|
|
221
|
+
* @public
|
|
222
|
+
*/
|
|
223
|
+
export type HealthStatusReason = (typeof HealthStatusReason)[keyof typeof HealthStatusReason];
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
* @enum
|
|
227
|
+
*/
|
|
228
|
+
export declare const Metric: {
|
|
229
|
+
readonly AMORTIZED_COST: "AmortizedCost";
|
|
230
|
+
readonly BLENDED_COST: "BlendedCost";
|
|
231
|
+
readonly HOURS: "Hours";
|
|
232
|
+
readonly NET_AMORTIZED_COST: "NetAmortizedCost";
|
|
233
|
+
readonly NET_UNBLENDED_COST: "NetUnblendedCost";
|
|
234
|
+
readonly NORMALIZED_USAGE_AMOUNT: "NormalizedUsageAmount";
|
|
235
|
+
readonly UNBLENDED_COST: "UnblendedCost";
|
|
236
|
+
readonly USAGE_QUANTITY: "UsageQuantity";
|
|
237
|
+
};
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
export type Metric = (typeof Metric)[keyof typeof Metric];
|
|
242
|
+
/**
|
|
243
|
+
* @public
|
|
244
|
+
* @enum
|
|
245
|
+
*/
|
|
246
|
+
export declare const TimeUnit: {
|
|
247
|
+
readonly ANNUALLY: "ANNUALLY";
|
|
248
|
+
readonly CUSTOM: "CUSTOM";
|
|
249
|
+
readonly DAILY: "DAILY";
|
|
250
|
+
readonly MONTHLY: "MONTHLY";
|
|
251
|
+
readonly QUARTERLY: "QUARTERLY";
|
|
252
|
+
};
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
256
|
+
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
257
|
+
/**
|
|
258
|
+
* @public
|
|
259
|
+
* @enum
|
|
260
|
+
*/
|
|
261
|
+
export declare const ComparisonOperator: {
|
|
262
|
+
readonly EQUAL_TO: "EQUAL_TO";
|
|
263
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
264
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* @public
|
|
268
|
+
*/
|
|
269
|
+
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
* @enum
|
|
273
|
+
*/
|
|
274
|
+
export declare const NotificationState: {
|
|
275
|
+
readonly ALARM: "ALARM";
|
|
276
|
+
readonly OK: "OK";
|
|
277
|
+
};
|
|
278
|
+
/**
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
export type NotificationState = (typeof NotificationState)[keyof typeof NotificationState];
|
|
282
|
+
/**
|
|
283
|
+
* @public
|
|
284
|
+
* @enum
|
|
285
|
+
*/
|
|
286
|
+
export declare const ExecutionType: {
|
|
287
|
+
readonly ApproveBudgetAction: "APPROVE_BUDGET_ACTION";
|
|
288
|
+
readonly ResetBudgetAction: "RESET_BUDGET_ACTION";
|
|
289
|
+
readonly RetryBudgetAction: "RETRY_BUDGET_ACTION";
|
|
290
|
+
readonly ReverseBudgetAction: "REVERSE_BUDGET_ACTION";
|
|
291
|
+
};
|
|
292
|
+
/**
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
|