BudgetArgs

data class BudgetArgs(val amount: Output<Double>? = null, val budgetName: Output<String>? = null, val category: Output<Either<String, CategoryType>>? = null, val eTag: Output<String>? = null, val filter: Output<BudgetFilterArgs>? = null, val notifications: Output<Map<String, NotificationArgs>>? = null, val scope: Output<String>? = null, val timeGrain: Output<Either<String, TimeGrainType>>? = null, val timePeriod: Output<BudgetTimePeriodArgs>? = null) : ConvertibleToJava<BudgetArgs>

A budget resource. Azure REST API version: 2023-04-01-preview. Other available API versions: 2019-04-01-preview, 2023-08-01.

Constructors

Link copied to clipboard
fun BudgetArgs(amount: Output<Double>? = null, budgetName: Output<String>? = null, category: Output<Either<String, CategoryType>>? = null, eTag: Output<String>? = null, filter: Output<BudgetFilterArgs>? = null, notifications: Output<Map<String, NotificationArgs>>? = null, scope: Output<String>? = null, timeGrain: Output<Either<String, TimeGrainType>>? = null, timePeriod: Output<BudgetTimePeriodArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): BudgetArgs

Properties

Link copied to clipboard
val amount: Output<Double>? = null

The total amount of cost to track with the budget. Supported for CategoryType(s): Cost. Required for CategoryType(s): Cost.

Link copied to clipboard
val budgetName: Output<String>? = null

Budget Name.

Link copied to clipboard
val category: Output<Either<String, CategoryType>>? = null

The category of the budget.

Link copied to clipboard
val eTag: Output<String>? = null

eTag of the resource. To handle concurrent update scenario, this field will be used to determine whether the user is updating the latest version or not.

Link copied to clipboard
val filter: Output<BudgetFilterArgs>? = null

May be used to filter budgets by user-specified dimensions and/or tags. Supported for CategoryType(s): Cost, ReservationUtilization.

Link copied to clipboard
val notifications: Output<Map<String, NotificationArgs>>? = null

Dictionary of notifications associated with the budget. Supported for CategoryType(s): Cost, ReservationUtilization.

Link copied to clipboard
val scope: Output<String>? = null

The scope associated with budget operations. Supported scopes for CategoryType: Cost Azure RBAC Scopes:

Link copied to clipboard
val timeGrain: Output<Either<String, TimeGrainType>>? = null

The time covered by a budget. Tracking of the amount will be reset based on the time grain. Supported for CategoryType(s): Cost, ReservationUtilization. Supported timeGrainTypes for CategoryType: Cost

Link copied to clipboard
val timePeriod: Output<BudgetTimePeriodArgs>? = null

The time period that defines the active period of the budget. The budget will evaluate data on or after the startDate and will expire on the endDate. Supported for CategoryType(s): Cost, ReservationUtilization. Required for CategoryType(s): Cost, ReservationUtilization.