azure-native.consumption.Budget
Explore with Pulumi AI
A budget resource. API Version: 2019-10-01.
Example Usage
CreateOrUpdateBudget
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var budget = new AzureNative.Consumption.Budget("budget", new()
{
Amount = 100.65,
BudgetName = "TestBudget",
Category = "Cost",
ETag = "\"1d34d016a593709\"",
Filter = new AzureNative.Consumption.Inputs.BudgetFilterArgs
{
And = new[]
{
new AzureNative.Consumption.Inputs.BudgetFilterPropertiesArgs
{
Dimensions = new AzureNative.Consumption.Inputs.BudgetComparisonExpressionArgs
{
Name = "ResourceId",
Operator = "In",
Values = new[]
{
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/MSVM2",
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/platformcloudplatformGeneric1",
},
},
},
new AzureNative.Consumption.Inputs.BudgetFilterPropertiesArgs
{
Tags = new AzureNative.Consumption.Inputs.BudgetComparisonExpressionArgs
{
Name = "category",
Operator = "In",
Values = new[]
{
"Dev",
"Prod",
},
},
},
new AzureNative.Consumption.Inputs.BudgetFilterPropertiesArgs
{
Tags = new AzureNative.Consumption.Inputs.BudgetComparisonExpressionArgs
{
Name = "department",
Operator = "In",
Values = new[]
{
"engineering",
"sales",
},
},
},
},
},
Notifications =
{
{ "Actual_GreaterThan_80_Percent", new AzureNative.Consumption.Inputs.NotificationArgs
{
ContactEmails = new[]
{
"johndoe@contoso.com",
"janesmith@contoso.com",
},
ContactGroups = new[]
{
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup",
},
ContactRoles = new[]
{
"Contributor",
"Reader",
},
Enabled = true,
Locale = "en-us",
Operator = "GreaterThan",
Threshold = 80,
ThresholdType = "Actual",
} },
},
Scope = "subscriptions/00000000-0000-0000-0000-000000000000",
TimeGrain = "Monthly",
TimePeriod = new AzureNative.Consumption.Inputs.BudgetTimePeriodArgs
{
EndDate = "2018-10-31T00:00:00Z",
StartDate = "2017-10-01T00:00:00Z",
},
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.consumption.Budget;
import com.pulumi.azurenative.consumption.BudgetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var budget = new Budget("budget", BudgetArgs.builder()
.amount(100.65)
.budgetName("TestBudget")
.category("Cost")
.eTag("\"1d34d016a593709\"")
.filter(Map.of("and",
Map.of("dimensions", Map.ofEntries(
Map.entry("name", "ResourceId"),
Map.entry("operator", "In"),
Map.entry("values",
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/MSVM2",
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/platformcloudplatformGeneric1")
)),
Map.of("tags", Map.ofEntries(
Map.entry("name", "category"),
Map.entry("operator", "In"),
Map.entry("values",
"Dev",
"Prod")
)),
Map.of("tags", Map.ofEntries(
Map.entry("name", "department"),
Map.entry("operator", "In"),
Map.entry("values",
"engineering",
"sales")
))))
.notifications(Map.of("Actual_GreaterThan_80_Percent", Map.ofEntries(
Map.entry("contactEmails",
"johndoe@contoso.com",
"janesmith@contoso.com"),
Map.entry("contactGroups", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup"),
Map.entry("contactRoles",
"Contributor",
"Reader"),
Map.entry("enabled", true),
Map.entry("locale", "en-us"),
Map.entry("operator", "GreaterThan"),
Map.entry("threshold", 80),
Map.entry("thresholdType", "Actual")
)))
.scope("subscriptions/00000000-0000-0000-0000-000000000000")
.timeGrain("Monthly")
.timePeriod(Map.ofEntries(
Map.entry("endDate", "2018-10-31T00:00:00Z"),
Map.entry("startDate", "2017-10-01T00:00:00Z")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
budget = azure_native.consumption.Budget("budget",
amount=100.65,
budget_name="TestBudget",
category="Cost",
e_tag="\"1d34d016a593709\"",
filter=azure_native.consumption.BudgetFilterResponseArgs(
and_=[
{
"dimensions": azure_native.consumption.BudgetComparisonExpressionArgs(
name="ResourceId",
operator="In",
values=[
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/MSVM2",
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/platformcloudplatformGeneric1",
],
),
},
{
"tags": azure_native.consumption.BudgetComparisonExpressionArgs(
name="category",
operator="In",
values=[
"Dev",
"Prod",
],
),
},
{
"tags": azure_native.consumption.BudgetComparisonExpressionArgs(
name="department",
operator="In",
values=[
"engineering",
"sales",
],
),
},
],
),
notifications={
"Actual_GreaterThan_80_Percent": azure_native.consumption.NotificationArgs(
contact_emails=[
"johndoe@contoso.com",
"janesmith@contoso.com",
],
contact_groups=["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup"],
contact_roles=[
"Contributor",
"Reader",
],
enabled=True,
locale="en-us",
operator="GreaterThan",
threshold=80,
threshold_type="Actual",
),
},
scope="subscriptions/00000000-0000-0000-0000-000000000000",
time_grain="Monthly",
time_period=azure_native.consumption.BudgetTimePeriodArgs(
end_date="2018-10-31T00:00:00Z",
start_date="2017-10-01T00:00:00Z",
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const budget = new azure_native.consumption.Budget("budget", {
amount: 100.65,
budgetName: "TestBudget",
category: "Cost",
eTag: "\"1d34d016a593709\"",
filter: {
and: [
{
dimensions: {
name: "ResourceId",
operator: "In",
values: [
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/MSVM2",
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/platformcloudplatformGeneric1",
],
},
},
{
tags: {
name: "category",
operator: "In",
values: [
"Dev",
"Prod",
],
},
},
{
tags: {
name: "department",
operator: "In",
values: [
"engineering",
"sales",
],
},
},
],
},
notifications: {
Actual_GreaterThan_80_Percent: {
contactEmails: [
"johndoe@contoso.com",
"janesmith@contoso.com",
],
contactGroups: ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup"],
contactRoles: [
"Contributor",
"Reader",
],
enabled: true,
locale: "en-us",
operator: "GreaterThan",
threshold: 80,
thresholdType: "Actual",
},
},
scope: "subscriptions/00000000-0000-0000-0000-000000000000",
timeGrain: "Monthly",
timePeriod: {
endDate: "2018-10-31T00:00:00Z",
startDate: "2017-10-01T00:00:00Z",
},
});
resources:
budget:
type: azure-native:consumption:Budget
properties:
amount: 100.65
budgetName: TestBudget
category: Cost
eTag: '"1d34d016a593709"'
filter:
and:
- dimensions:
name: ResourceId
operator: In
values:
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/MSVM2
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/Microsoft.Compute/virtualMachines/platformcloudplatformGeneric1
- tags:
name: category
operator: In
values:
- Dev
- Prod
- tags:
name: department
operator: In
values:
- engineering
- sales
notifications:
Actual_GreaterThan_80_Percent:
contactEmails:
- johndoe@contoso.com
- janesmith@contoso.com
contactGroups:
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MYDEVTESTRG/providers/microsoft.insights/actionGroups/SampleActionGroup
contactRoles:
- Contributor
- Reader
enabled: true
locale: en-us
operator: GreaterThan
threshold: 80
thresholdType: Actual
scope: subscriptions/00000000-0000-0000-0000-000000000000
timeGrain: Monthly
timePeriod:
endDate: 2018-10-31T00:00:00Z
startDate: 2017-10-01T00:00:00Z
Create Budget Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Budget(name: string, args: BudgetArgs, opts?: CustomResourceOptions);
@overload
def Budget(resource_name: str,
args: BudgetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Budget(resource_name: str,
opts: Optional[ResourceOptions] = None,
amount: Optional[float] = None,
category: Optional[Union[str, CategoryType]] = None,
scope: Optional[str] = None,
time_grain: Optional[Union[str, TimeGrainType]] = None,
time_period: Optional[BudgetTimePeriodArgs] = None,
budget_name: Optional[str] = None,
e_tag: Optional[str] = None,
filter: Optional[BudgetFilterArgs] = None,
notifications: Optional[Mapping[str, NotificationArgs]] = None)
func NewBudget(ctx *Context, name string, args BudgetArgs, opts ...ResourceOption) (*Budget, error)
public Budget(string name, BudgetArgs args, CustomResourceOptions? opts = null)
public Budget(String name, BudgetArgs args)
public Budget(String name, BudgetArgs args, CustomResourceOptions options)
type: azure-native:consumption:Budget
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BudgetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BudgetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BudgetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BudgetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BudgetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var budgetResource = new AzureNative.Consumption.Budget("budgetResource", new()
{
Amount = 0,
Category = "string",
Scope = "string",
TimeGrain = "string",
TimePeriod =
{
{ "startDate", "string" },
{ "endDate", "string" },
},
BudgetName = "string",
ETag = "string",
Filter =
{
{ "and", new[]
{
{
{ "dimensions",
{
{ "name", "string" },
{ "operator", "string" },
{ "values", new[]
{
"string",
} },
} },
{ "tags",
{
{ "name", "string" },
{ "operator", "string" },
{ "values", new[]
{
"string",
} },
} },
},
} },
{ "dimensions",
{
{ "name", "string" },
{ "operator", "string" },
{ "values", new[]
{
"string",
} },
} },
{ "not",
{
{ "dimensions",
{
{ "name", "string" },
{ "operator", "string" },
{ "values", new[]
{
"string",
} },
} },
{ "tags",
{
{ "name", "string" },
{ "operator", "string" },
{ "values", new[]
{
"string",
} },
} },
} },
{ "tags",
{
{ "name", "string" },
{ "operator", "string" },
{ "values", new[]
{
"string",
} },
} },
},
Notifications =
{
{ "string",
{
{ "contactEmails", new[]
{
"string",
} },
{ "enabled", false },
{ "operator", "string" },
{ "threshold", 0 },
{ "contactGroups", new[]
{
"string",
} },
{ "contactRoles", new[]
{
"string",
} },
{ "locale", "string" },
{ "thresholdType", "string" },
} },
},
});
example, err := consumption.NewBudget(ctx, "budgetResource", &consumption.BudgetArgs{
Amount: 0,
Category: "string",
Scope: "string",
TimeGrain: "string",
TimePeriod: map[string]interface{}{
"startDate": "string",
"endDate": "string",
},
BudgetName: "string",
ETag: "string",
Filter: map[string]interface{}{
"and": []map[string]interface{}{
map[string]interface{}{
"dimensions": map[string]interface{}{
"name": "string",
"operator": "string",
"values": []string{
"string",
},
},
"tags": map[string]interface{}{
"name": "string",
"operator": "string",
"values": []string{
"string",
},
},
},
},
"dimensions": map[string]interface{}{
"name": "string",
"operator": "string",
"values": []string{
"string",
},
},
"not": map[string]interface{}{
"dimensions": map[string]interface{}{
"name": "string",
"operator": "string",
"values": []string{
"string",
},
},
"tags": map[string]interface{}{
"name": "string",
"operator": "string",
"values": []string{
"string",
},
},
},
"tags": map[string]interface{}{
"name": "string",
"operator": "string",
"values": []string{
"string",
},
},
},
Notifications: map[string]interface{}{
"string": map[string]interface{}{
"contactEmails": []string{
"string",
},
"enabled": false,
"operator": "string",
"threshold": 0,
"contactGroups": []string{
"string",
},
"contactRoles": []string{
"string",
},
"locale": "string",
"thresholdType": "string",
},
},
})
var budgetResource = new Budget("budgetResource", BudgetArgs.builder()
.amount(0)
.category("string")
.scope("string")
.timeGrain("string")
.timePeriod(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.budgetName("string")
.eTag("string")
.filter(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.notifications(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
budget_resource = azure_native.consumption.Budget("budgetResource",
amount=0,
category=string,
scope=string,
time_grain=string,
time_period={
startDate: string,
endDate: string,
},
budget_name=string,
e_tag=string,
filter={
and: [{
dimensions: {
name: string,
operator: string,
values: [string],
},
tags: {
name: string,
operator: string,
values: [string],
},
}],
dimensions: {
name: string,
operator: string,
values: [string],
},
not: {
dimensions: {
name: string,
operator: string,
values: [string],
},
tags: {
name: string,
operator: string,
values: [string],
},
},
tags: {
name: string,
operator: string,
values: [string],
},
},
notifications={
string: {
contactEmails: [string],
enabled: False,
operator: string,
threshold: 0,
contactGroups: [string],
contactRoles: [string],
locale: string,
thresholdType: string,
},
})
const budgetResource = new azure_native.consumption.Budget("budgetResource", {
amount: 0,
category: "string",
scope: "string",
timeGrain: "string",
timePeriod: {
startDate: "string",
endDate: "string",
},
budgetName: "string",
eTag: "string",
filter: {
and: [{
dimensions: {
name: "string",
operator: "string",
values: ["string"],
},
tags: {
name: "string",
operator: "string",
values: ["string"],
},
}],
dimensions: {
name: "string",
operator: "string",
values: ["string"],
},
not: {
dimensions: {
name: "string",
operator: "string",
values: ["string"],
},
tags: {
name: "string",
operator: "string",
values: ["string"],
},
},
tags: {
name: "string",
operator: "string",
values: ["string"],
},
},
notifications: {
string: {
contactEmails: ["string"],
enabled: false,
operator: "string",
threshold: 0,
contactGroups: ["string"],
contactRoles: ["string"],
locale: "string",
thresholdType: "string",
},
},
});
type: azure-native:consumption:Budget
properties:
amount: 0
budgetName: string
category: string
eTag: string
filter:
and:
- dimensions:
name: string
operator: string
values:
- string
tags:
name: string
operator: string
values:
- string
dimensions:
name: string
operator: string
values:
- string
not:
dimensions:
name: string
operator: string
values:
- string
tags:
name: string
operator: string
values:
- string
tags:
name: string
operator: string
values:
- string
notifications:
string:
contactEmails:
- string
contactGroups:
- string
contactRoles:
- string
enabled: false
locale: string
operator: string
threshold: 0
thresholdType: string
scope: string
timeGrain: string
timePeriod:
endDate: string
startDate: string
Budget Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Budget resource accepts the following input properties:
- Amount double
- The total amount of cost to track with the budget
- Category
string | Pulumi.
Azure Native. Consumption. Category Type - The category of the budget, whether the budget tracks cost or usage.
- Scope string
- The scope associated with budget operations. This includes '/subscriptions/{subscriptionId}/' for subscription scope, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for resourceGroup scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for Billing Account scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}' for Department scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/enrollmentAccounts/{enrollmentAccountId}' for EnrollmentAccount scope, '/providers/Microsoft.Management/managementGroups/{managementGroupId}' for Management Group scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' for billingProfile scope, 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/invoiceSections/{invoiceSectionId}' for invoiceSection scope.
- Time
Grain string | Pulumi.Azure Native. Consumption. Time Grain Type - The time covered by a budget. Tracking of the amount will be reset based on the time grain. BillingMonth, BillingQuarter, and BillingAnnual are only supported by WD customers
- Time
Period Pulumi.Azure Native. Consumption. Inputs. Budget Time Period - Has start and end date of the budget. The start date must be first of the month and should be less than the end date. Budget start date must be on or after June 1, 2017. Future start date should not be more than twelve months. Past start date should be selected within the timegrain period. There are no restrictions on the end date.
- Budget
Name string - Budget Name.
- ETag string
- 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.
- Filter
Pulumi.
Azure Native. Consumption. Inputs. Budget Filter - May be used to filter budgets by user-specified dimensions and/or tags.
- Notifications
Dictionary<string, Pulumi.
Azure Native. Consumption. Inputs. Notification Args> - Dictionary of notifications associated with the budget. Budget can have up to five notifications.
- Amount float64
- The total amount of cost to track with the budget
- Category
string | Category
Type - The category of the budget, whether the budget tracks cost or usage.
- Scope string
- The scope associated with budget operations. This includes '/subscriptions/{subscriptionId}/' for subscription scope, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for resourceGroup scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for Billing Account scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}' for Department scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/enrollmentAccounts/{enrollmentAccountId}' for EnrollmentAccount scope, '/providers/Microsoft.Management/managementGroups/{managementGroupId}' for Management Group scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' for billingProfile scope, 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/invoiceSections/{invoiceSectionId}' for invoiceSection scope.
- Time
Grain string | TimeGrain Type - The time covered by a budget. Tracking of the amount will be reset based on the time grain. BillingMonth, BillingQuarter, and BillingAnnual are only supported by WD customers
- Time
Period BudgetTime Period Args - Has start and end date of the budget. The start date must be first of the month and should be less than the end date. Budget start date must be on or after June 1, 2017. Future start date should not be more than twelve months. Past start date should be selected within the timegrain period. There are no restrictions on the end date.
- Budget
Name string - Budget Name.
- ETag string
- 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.
- Filter
Budget
Filter Args - May be used to filter budgets by user-specified dimensions and/or tags.
- Notifications
map[string]Notification
Args - Dictionary of notifications associated with the budget. Budget can have up to five notifications.
- amount Double
- The total amount of cost to track with the budget
- category
String | Category
Type - The category of the budget, whether the budget tracks cost or usage.
- scope String
- The scope associated with budget operations. This includes '/subscriptions/{subscriptionId}/' for subscription scope, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for resourceGroup scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for Billing Account scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}' for Department scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/enrollmentAccounts/{enrollmentAccountId}' for EnrollmentAccount scope, '/providers/Microsoft.Management/managementGroups/{managementGroupId}' for Management Group scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' for billingProfile scope, 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/invoiceSections/{invoiceSectionId}' for invoiceSection scope.
- time
Grain String | TimeGrain Type - The time covered by a budget. Tracking of the amount will be reset based on the time grain. BillingMonth, BillingQuarter, and BillingAnnual are only supported by WD customers
- time
Period BudgetTime Period - Has start and end date of the budget. The start date must be first of the month and should be less than the end date. Budget start date must be on or after June 1, 2017. Future start date should not be more than twelve months. Past start date should be selected within the timegrain period. There are no restrictions on the end date.
- budget
Name String - Budget Name.
- e
Tag String - 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.
- filter
Budget
Filter - May be used to filter budgets by user-specified dimensions and/or tags.
- notifications
Map<String,Notification
Args> - Dictionary of notifications associated with the budget. Budget can have up to five notifications.
- amount number
- The total amount of cost to track with the budget
- category
string | Category
Type - The category of the budget, whether the budget tracks cost or usage.
- scope string
- The scope associated with budget operations. This includes '/subscriptions/{subscriptionId}/' for subscription scope, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for resourceGroup scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for Billing Account scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}' for Department scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/enrollmentAccounts/{enrollmentAccountId}' for EnrollmentAccount scope, '/providers/Microsoft.Management/managementGroups/{managementGroupId}' for Management Group scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' for billingProfile scope, 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/invoiceSections/{invoiceSectionId}' for invoiceSection scope.
- time
Grain string | TimeGrain Type - The time covered by a budget. Tracking of the amount will be reset based on the time grain. BillingMonth, BillingQuarter, and BillingAnnual are only supported by WD customers
- time
Period BudgetTime Period - Has start and end date of the budget. The start date must be first of the month and should be less than the end date. Budget start date must be on or after June 1, 2017. Future start date should not be more than twelve months. Past start date should be selected within the timegrain period. There are no restrictions on the end date.
- budget
Name string - Budget Name.
- e
Tag string - 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.
- filter
Budget
Filter - May be used to filter budgets by user-specified dimensions and/or tags.
- notifications
{[key: string]: Notification
Args} - Dictionary of notifications associated with the budget. Budget can have up to five notifications.
- amount float
- The total amount of cost to track with the budget
- category
str | Category
Type - The category of the budget, whether the budget tracks cost or usage.
- scope str
- The scope associated with budget operations. This includes '/subscriptions/{subscriptionId}/' for subscription scope, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for resourceGroup scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for Billing Account scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}' for Department scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/enrollmentAccounts/{enrollmentAccountId}' for EnrollmentAccount scope, '/providers/Microsoft.Management/managementGroups/{managementGroupId}' for Management Group scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' for billingProfile scope, 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/invoiceSections/{invoiceSectionId}' for invoiceSection scope.
- time_
grain str | TimeGrain Type - The time covered by a budget. Tracking of the amount will be reset based on the time grain. BillingMonth, BillingQuarter, and BillingAnnual are only supported by WD customers
- time_
period BudgetTime Period Args - Has start and end date of the budget. The start date must be first of the month and should be less than the end date. Budget start date must be on or after June 1, 2017. Future start date should not be more than twelve months. Past start date should be selected within the timegrain period. There are no restrictions on the end date.
- budget_
name str - Budget Name.
- e_
tag str - 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.
- filter
Budget
Filter Args - May be used to filter budgets by user-specified dimensions and/or tags.
- notifications
Mapping[str, Notification
Args] - Dictionary of notifications associated with the budget. Budget can have up to five notifications.
- amount Number
- The total amount of cost to track with the budget
- category String | "Cost"
- The category of the budget, whether the budget tracks cost or usage.
- scope String
- The scope associated with budget operations. This includes '/subscriptions/{subscriptionId}/' for subscription scope, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for resourceGroup scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for Billing Account scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}' for Department scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/enrollmentAccounts/{enrollmentAccountId}' for EnrollmentAccount scope, '/providers/Microsoft.Management/managementGroups/{managementGroupId}' for Management Group scope, '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' for billingProfile scope, 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/invoiceSections/{invoiceSectionId}' for invoiceSection scope.
- time
Grain String | "Monthly" | "Quarterly" | "Annually" | "BillingMonth" | "Billing Quarter" | "Billing Annual" - The time covered by a budget. Tracking of the amount will be reset based on the time grain. BillingMonth, BillingQuarter, and BillingAnnual are only supported by WD customers
- time
Period Property Map - Has start and end date of the budget. The start date must be first of the month and should be less than the end date. Budget start date must be on or after June 1, 2017. Future start date should not be more than twelve months. Past start date should be selected within the timegrain period. There are no restrictions on the end date.
- budget
Name String - Budget Name.
- e
Tag String - 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.
- filter Property Map
- May be used to filter budgets by user-specified dimensions and/or tags.
- notifications Map<Property Map>
- Dictionary of notifications associated with the budget. Budget can have up to five notifications.
Outputs
All input properties are implicitly available as output properties. Additionally, the Budget resource produces the following output properties:
- Current
Spend Pulumi.Azure Native. Consumption. Outputs. Current Spend Response - The current amount of cost which is being tracked for a budget.
- Forecast
Spend Pulumi.Azure Native. Consumption. Outputs. Forecast Spend Response - The forecasted cost which is being tracked for a budget.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Type string
- Resource type.
- Current
Spend CurrentSpend Response - The current amount of cost which is being tracked for a budget.
- Forecast
Spend ForecastSpend Response - The forecasted cost which is being tracked for a budget.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Type string
- Resource type.
- current
Spend CurrentSpend Response - The current amount of cost which is being tracked for a budget.
- forecast
Spend ForecastSpend Response - The forecasted cost which is being tracked for a budget.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- type String
- Resource type.
- current
Spend CurrentSpend Response - The current amount of cost which is being tracked for a budget.
- forecast
Spend ForecastSpend Response - The forecasted cost which is being tracked for a budget.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- type string
- Resource type.
- current_
spend CurrentSpend Response - The current amount of cost which is being tracked for a budget.
- forecast_
spend ForecastSpend Response - The forecasted cost which is being tracked for a budget.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- type str
- Resource type.
- current
Spend Property Map - The current amount of cost which is being tracked for a budget.
- forecast
Spend Property Map - The forecasted cost which is being tracked for a budget.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- type String
- Resource type.
Supporting Types
BudgetComparisonExpression, BudgetComparisonExpressionArgs
- Name string
- The name of the column to use in comparison.
- Operator
string | Pulumi.
Azure Native. Consumption. Budget Operator Type - The operator to use for comparison.
- Values List<string>
- Array of values to use for comparison
- Name string
- The name of the column to use in comparison.
- Operator
string | Budget
Operator Type - The operator to use for comparison.
- Values []string
- Array of values to use for comparison
- name String
- The name of the column to use in comparison.
- operator
String | Budget
Operator Type - The operator to use for comparison.
- values List<String>
- Array of values to use for comparison
- name string
- The name of the column to use in comparison.
- operator
string | Budget
Operator Type - The operator to use for comparison.
- values string[]
- Array of values to use for comparison
- name str
- The name of the column to use in comparison.
- operator
str | Budget
Operator Type - The operator to use for comparison.
- values Sequence[str]
- Array of values to use for comparison
BudgetComparisonExpressionResponse, BudgetComparisonExpressionResponseArgs
BudgetFilter, BudgetFilterArgs
- And
List<Pulumi.
Azure Native. Consumption. Inputs. Budget Filter Properties> - The logical "AND" expression. Must have at least 2 items.
- Dimensions
Pulumi.
Azure Native. Consumption. Inputs. Budget Comparison Expression - Has comparison expression for a dimension
- Not
Pulumi.
Azure Native. Consumption. Inputs. Budget Filter Properties - The logical "NOT" expression.
- Pulumi.
Azure Native. Consumption. Inputs. Budget Comparison Expression - Has comparison expression for a tag
- And
[]Budget
Filter Properties - The logical "AND" expression. Must have at least 2 items.
- Dimensions
Budget
Comparison Expression - Has comparison expression for a dimension
- Not
Budget
Filter Properties - The logical "NOT" expression.
- Budget
Comparison Expression - Has comparison expression for a tag
- and
List<Budget
Filter Properties> - The logical "AND" expression. Must have at least 2 items.
- dimensions
Budget
Comparison Expression - Has comparison expression for a dimension
- not
Budget
Filter Properties - The logical "NOT" expression.
- Budget
Comparison Expression - Has comparison expression for a tag
- and
Budget
Filter Properties[] - The logical "AND" expression. Must have at least 2 items.
- dimensions
Budget
Comparison Expression - Has comparison expression for a dimension
- not
Budget
Filter Properties - The logical "NOT" expression.
- Budget
Comparison Expression - Has comparison expression for a tag
- and_
Sequence[Budget
Filter Properties] - The logical "AND" expression. Must have at least 2 items.
- dimensions
Budget
Comparison Expression - Has comparison expression for a dimension
- not_
Budget
Filter Properties - The logical "NOT" expression.
- Budget
Comparison Expression - Has comparison expression for a tag
- and List<Property Map>
- The logical "AND" expression. Must have at least 2 items.
- dimensions Property Map
- Has comparison expression for a dimension
- not Property Map
- The logical "NOT" expression.
- Property Map
- Has comparison expression for a tag
BudgetFilterProperties, BudgetFilterPropertiesArgs
- Dimensions
Pulumi.
Azure Native. Consumption. Inputs. Budget Comparison Expression - Has comparison expression for a dimension
- Pulumi.
Azure Native. Consumption. Inputs. Budget Comparison Expression - Has comparison expression for a tag
- Dimensions
Budget
Comparison Expression - Has comparison expression for a dimension
- Budget
Comparison Expression - Has comparison expression for a tag
- dimensions
Budget
Comparison Expression - Has comparison expression for a dimension
- Budget
Comparison Expression - Has comparison expression for a tag
- dimensions
Budget
Comparison Expression - Has comparison expression for a dimension
- Budget
Comparison Expression - Has comparison expression for a tag
- dimensions
Budget
Comparison Expression - Has comparison expression for a dimension
- Budget
Comparison Expression - Has comparison expression for a tag
- dimensions Property Map
- Has comparison expression for a dimension
- Property Map
- Has comparison expression for a tag
BudgetFilterPropertiesResponse, BudgetFilterPropertiesResponseArgs
- Dimensions
Pulumi.
Azure Native. Consumption. Inputs. Budget Comparison Expression Response - Has comparison expression for a dimension
- Pulumi.
Azure Native. Consumption. Inputs. Budget Comparison Expression Response - Has comparison expression for a tag
- Dimensions
Budget
Comparison Expression Response - Has comparison expression for a dimension
- Budget
Comparison Expression Response - Has comparison expression for a tag
- dimensions
Budget
Comparison Expression Response - Has comparison expression for a dimension
- Budget
Comparison Expression Response - Has comparison expression for a tag
- dimensions
Budget
Comparison Expression Response - Has comparison expression for a dimension
- Budget
Comparison Expression Response - Has comparison expression for a tag
- dimensions
Budget
Comparison Expression Response - Has comparison expression for a dimension
- Budget
Comparison Expression Response - Has comparison expression for a tag
- dimensions Property Map
- Has comparison expression for a dimension
- Property Map
- Has comparison expression for a tag
BudgetFilterResponse, BudgetFilterResponseArgs
- And
List<Pulumi.
Azure Native. Consumption. Inputs. Budget Filter Properties Response> - The logical "AND" expression. Must have at least 2 items.
- Dimensions
Pulumi.
Azure Native. Consumption. Inputs. Budget Comparison Expression Response - Has comparison expression for a dimension
- Not
Pulumi.
Azure Native. Consumption. Inputs. Budget Filter Properties Response - The logical "NOT" expression.
- Pulumi.
Azure Native. Consumption. Inputs. Budget Comparison Expression Response - Has comparison expression for a tag
- And
[]Budget
Filter Properties Response - The logical "AND" expression. Must have at least 2 items.
- Dimensions
Budget
Comparison Expression Response - Has comparison expression for a dimension
- Not
Budget
Filter Properties Response - The logical "NOT" expression.
- Budget
Comparison Expression Response - Has comparison expression for a tag
- and
List<Budget
Filter Properties Response> - The logical "AND" expression. Must have at least 2 items.
- dimensions
Budget
Comparison Expression Response - Has comparison expression for a dimension
- not
Budget
Filter Properties Response - The logical "NOT" expression.
- Budget
Comparison Expression Response - Has comparison expression for a tag
- and
Budget
Filter Properties Response[] - The logical "AND" expression. Must have at least 2 items.
- dimensions
Budget
Comparison Expression Response - Has comparison expression for a dimension
- not
Budget
Filter Properties Response - The logical "NOT" expression.
- Budget
Comparison Expression Response - Has comparison expression for a tag
- and_
Sequence[Budget
Filter Properties Response] - The logical "AND" expression. Must have at least 2 items.
- dimensions
Budget
Comparison Expression Response - Has comparison expression for a dimension
- not_
Budget
Filter Properties Response - The logical "NOT" expression.
- Budget
Comparison Expression Response - Has comparison expression for a tag
- and List<Property Map>
- The logical "AND" expression. Must have at least 2 items.
- dimensions Property Map
- Has comparison expression for a dimension
- not Property Map
- The logical "NOT" expression.
- Property Map
- Has comparison expression for a tag
BudgetOperatorType, BudgetOperatorTypeArgs
- In
- In
- Budget
Operator Type In - In
- In
- In
- In
- In
- IN_
- In
- "In"
- In
BudgetTimePeriod, BudgetTimePeriodArgs
- start_
date str - The start date for the budget.
- end_
date str - The end date for the budget. If not provided, we default this to 10 years from the start date.
BudgetTimePeriodResponse, BudgetTimePeriodResponseArgs
- start_
date str - The start date for the budget.
- end_
date str - The end date for the budget. If not provided, we default this to 10 years from the start date.
CategoryType, CategoryTypeArgs
- Cost
- Cost
- Category
Type Cost - Cost
- Cost
- Cost
- Cost
- Cost
- COST
- Cost
- "Cost"
- Cost
CultureCode, CultureCodeArgs
- En_
us - en-us
- Ja_
jp - ja-jp
- Zh_
cn - zh-cn
- De_
de - de-de
- Es_
es - es-es
- Fr_
fr - fr-fr
- It_
it - it-it
- Ko_
kr - ko-kr
- Pt_
br - pt-br
- Ru_
ru - ru-ru
- Zh_
tw - zh-tw
- Cs_
cz - cs-cz
- Pl_
pl - pl-pl
- Tr_
tr - tr-tr
- Da_
dk - da-dk
- En_
gb - en-gb
- Hu_
hu - hu-hu
- Nb_
no - nb-no
- Nl_
nl - nl-nl
- Pt_
pt - pt-pt
- Sv_
se - sv-se
- Culture
Code_En_Us - en-us
- Culture
Code_Ja_Jp - ja-jp
- Culture
Code_Zh_Cn - zh-cn
- Culture
Code_De_De - de-de
- Culture
Code_Es_Es - es-es
- Culture
Code_Fr_Fr - fr-fr
- Culture
Code_It_It - it-it
- Culture
Code_Ko_Kr - ko-kr
- Culture
Code_Pt_Br - pt-br
- Culture
Code_Ru_Ru - ru-ru
- Culture
Code_Zh_Tw - zh-tw
- Culture
Code_Cs_Cz - cs-cz
- Culture
Code_Pl_Pl - pl-pl
- Culture
Code_Tr_Tr - tr-tr
- Culture
Code_Da_Dk - da-dk
- Culture
Code_En_Gb - en-gb
- Culture
Code_Hu_Hu - hu-hu
- Culture
Code_Nb_No - nb-no
- Culture
Code_Nl_Nl - nl-nl
- Culture
Code_Pt_Pt - pt-pt
- Culture
Code_Sv_Se - sv-se
- Enus
- en-us
- Jajp
- ja-jp
- Zhcn
- zh-cn
- Dede
- de-de
- Eses
- es-es
- Frfr
- fr-fr
- Itit
- it-it
- Kokr
- ko-kr
- Ptbr
- pt-br
- Ruru
- ru-ru
- Zhtw
- zh-tw
- Cscz
- cs-cz
- Plpl
- pl-pl
- Trtr
- tr-tr
- Dadk
- da-dk
- Engb
- en-gb
- Huhu
- hu-hu
- Nbno
- nb-no
- Nlnl
- nl-nl
- Ptpt
- pt-pt
- Svse
- sv-se
- En_
us - en-us
- Ja_
jp - ja-jp
- Zh_
cn - zh-cn
- De_
de - de-de
- Es_
es - es-es
- Fr_
fr - fr-fr
- It_
it - it-it
- Ko_
kr - ko-kr
- Pt_
br - pt-br
- Ru_
ru - ru-ru
- Zh_
tw - zh-tw
- Cs_
cz - cs-cz
- Pl_
pl - pl-pl
- Tr_
tr - tr-tr
- Da_
dk - da-dk
- En_
gb - en-gb
- Hu_
hu - hu-hu
- Nb_
no - nb-no
- Nl_
nl - nl-nl
- Pt_
pt - pt-pt
- Sv_
se - sv-se
- EN_US
- en-us
- JA_JP
- ja-jp
- ZH_CN
- zh-cn
- DE_DE
- de-de
- ES_ES
- es-es
- FR_FR
- fr-fr
- IT_IT
- it-it
- KO_KR
- ko-kr
- PT_BR
- pt-br
- RU_RU
- ru-ru
- ZH_TW
- zh-tw
- CS_CZ
- cs-cz
- PL_PL
- pl-pl
- TR_TR
- tr-tr
- DA_DK
- da-dk
- EN_GB
- en-gb
- HU_HU
- hu-hu
- NB_NO
- nb-no
- NL_NL
- nl-nl
- PT_PT
- pt-pt
- SV_SE
- sv-se
- "en-us"
- en-us
- "ja-jp"
- ja-jp
- "zh-cn"
- zh-cn
- "de-de"
- de-de
- "es-es"
- es-es
- "fr-fr"
- fr-fr
- "it-it"
- it-it
- "ko-kr"
- ko-kr
- "pt-br"
- pt-br
- "ru-ru"
- ru-ru
- "zh-tw"
- zh-tw
- "cs-cz"
- cs-cz
- "pl-pl"
- pl-pl
- "tr-tr"
- tr-tr
- "da-dk"
- da-dk
- "en-gb"
- en-gb
- "hu-hu"
- hu-hu
- "nb-no"
- nb-no
- "nl-nl"
- nl-nl
- "pt-pt"
- pt-pt
- "sv-se"
- sv-se
CurrentSpendResponse, CurrentSpendResponseArgs
ForecastSpendResponse, ForecastSpendResponseArgs
Notification, NotificationArgs
- Contact
Emails List<string> - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- Enabled bool
- The notification is enabled or not.
- Operator
string | Pulumi.
Azure Native. Consumption. Operator Type - The comparison operator.
- Threshold double
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- Contact
Groups List<string> - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- Contact
Roles List<string> - Contact roles to send the budget notification to when the threshold is exceeded.
- Locale
string | Pulumi.
Azure Native. Consumption. Culture Code - Language in which the recipient will receive the notification
- Threshold
Type string | Pulumi.Azure Native. Consumption. Threshold Type - The type of threshold
- Contact
Emails []string - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- Enabled bool
- The notification is enabled or not.
- Operator
string | Operator
Type - The comparison operator.
- Threshold float64
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- Contact
Groups []string - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- Contact
Roles []string - Contact roles to send the budget notification to when the threshold is exceeded.
- Locale
string | Culture
Code - Language in which the recipient will receive the notification
- Threshold
Type string | ThresholdType - The type of threshold
- contact
Emails List<String> - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- enabled Boolean
- The notification is enabled or not.
- operator
String | Operator
Type - The comparison operator.
- threshold Double
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- contact
Groups List<String> - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- contact
Roles List<String> - Contact roles to send the budget notification to when the threshold is exceeded.
- locale
String | Culture
Code - Language in which the recipient will receive the notification
- threshold
Type String | ThresholdType - The type of threshold
- contact
Emails string[] - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- enabled boolean
- The notification is enabled or not.
- operator
string | Operator
Type - The comparison operator.
- threshold number
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- contact
Groups string[] - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- contact
Roles string[] - Contact roles to send the budget notification to when the threshold is exceeded.
- locale
string | Culture
Code - Language in which the recipient will receive the notification
- threshold
Type string | ThresholdType - The type of threshold
- contact_
emails Sequence[str] - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- enabled bool
- The notification is enabled or not.
- operator
str | Operator
Type - The comparison operator.
- threshold float
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- contact_
groups Sequence[str] - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- contact_
roles Sequence[str] - Contact roles to send the budget notification to when the threshold is exceeded.
- locale
str | Culture
Code - Language in which the recipient will receive the notification
- threshold_
type str | ThresholdType - The type of threshold
- contact
Emails List<String> - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- enabled Boolean
- The notification is enabled or not.
- operator
String | "Equal
To" | "Greater Than" | "Greater Than Or Equal To" - The comparison operator.
- threshold Number
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- contact
Groups List<String> - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- contact
Roles List<String> - Contact roles to send the budget notification to when the threshold is exceeded.
- locale String | "en-us" | "ja-jp" | "zh-cn" | "de-de" | "es-es" | "fr-fr" | "it-it" | "ko-kr" | "pt-br" | "ru-ru" | "zh-tw" | "cs-cz" | "pl-pl" | "tr-tr" | "da-dk" | "en-gb" | "hu-hu" | "nb-no" | "nl-nl" | "pt-pt" | "sv-se"
- Language in which the recipient will receive the notification
- threshold
Type String | "Actual" - The type of threshold
NotificationResponse, NotificationResponseArgs
- Contact
Emails List<string> - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- Enabled bool
- The notification is enabled or not.
- Operator string
- The comparison operator.
- Threshold double
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- Contact
Groups List<string> - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- Contact
Roles List<string> - Contact roles to send the budget notification to when the threshold is exceeded.
- Locale string
- Language in which the recipient will receive the notification
- Threshold
Type string - The type of threshold
- Contact
Emails []string - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- Enabled bool
- The notification is enabled or not.
- Operator string
- The comparison operator.
- Threshold float64
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- Contact
Groups []string - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- Contact
Roles []string - Contact roles to send the budget notification to when the threshold is exceeded.
- Locale string
- Language in which the recipient will receive the notification
- Threshold
Type string - The type of threshold
- contact
Emails List<String> - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- enabled Boolean
- The notification is enabled or not.
- operator String
- The comparison operator.
- threshold Double
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- contact
Groups List<String> - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- contact
Roles List<String> - Contact roles to send the budget notification to when the threshold is exceeded.
- locale String
- Language in which the recipient will receive the notification
- threshold
Type String - The type of threshold
- contact
Emails string[] - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- enabled boolean
- The notification is enabled or not.
- operator string
- The comparison operator.
- threshold number
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- contact
Groups string[] - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- contact
Roles string[] - Contact roles to send the budget notification to when the threshold is exceeded.
- locale string
- Language in which the recipient will receive the notification
- threshold
Type string - The type of threshold
- contact_
emails Sequence[str] - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- enabled bool
- The notification is enabled or not.
- operator str
- The comparison operator.
- threshold float
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- contact_
groups Sequence[str] - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- contact_
roles Sequence[str] - Contact roles to send the budget notification to when the threshold is exceeded.
- locale str
- Language in which the recipient will receive the notification
- threshold_
type str - The type of threshold
- contact
Emails List<String> - Email addresses to send the budget notification to when the threshold is exceeded. Must have at least one contact email or contact group specified at the Subscription or Resource Group scopes. All other scopes must have at least one contact email specified.
- enabled Boolean
- The notification is enabled or not.
- operator String
- The comparison operator.
- threshold Number
- Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.
- contact
Groups List<String> - Action groups to send the budget notification to when the threshold is exceeded. Must be provided as a fully qualified Azure resource id. Only supported at Subscription or Resource Group scopes.
- contact
Roles List<String> - Contact roles to send the budget notification to when the threshold is exceeded.
- locale String
- Language in which the recipient will receive the notification
- threshold
Type String - The type of threshold
OperatorType, OperatorTypeArgs
- Equal
To - EqualTo
- Greater
Than - GreaterThan
- Greater
Than Or Equal To - GreaterThanOrEqualTo
- Operator
Type Equal To - EqualTo
- Operator
Type Greater Than - GreaterThan
- Operator
Type Greater Than Or Equal To - GreaterThanOrEqualTo
- Equal
To - EqualTo
- Greater
Than - GreaterThan
- Greater
Than Or Equal To - GreaterThanOrEqualTo
- Equal
To - EqualTo
- Greater
Than - GreaterThan
- Greater
Than Or Equal To - GreaterThanOrEqualTo
- EQUAL_TO
- EqualTo
- GREATER_THAN
- GreaterThan
- GREATER_THAN_OR_EQUAL_TO
- GreaterThanOrEqualTo
- "Equal
To" - EqualTo
- "Greater
Than" - GreaterThan
- "Greater
Than Or Equal To" - GreaterThanOrEqualTo
ThresholdType, ThresholdTypeArgs
- Actual
- Actual
- Threshold
Type Actual - Actual
- Actual
- Actual
- Actual
- Actual
- ACTUAL
- Actual
- "Actual"
- Actual
TimeGrainType, TimeGrainTypeArgs
- Monthly
- Monthly
- Quarterly
- Quarterly
- Annually
- Annually
- Billing
Month - BillingMonth
- Billing
Quarter - BillingQuarter
- Billing
Annual - BillingAnnual
- Time
Grain Type Monthly - Monthly
- Time
Grain Type Quarterly - Quarterly
- Time
Grain Type Annually - Annually
- Time
Grain Type Billing Month - BillingMonth
- Time
Grain Type Billing Quarter - BillingQuarter
- Time
Grain Type Billing Annual - BillingAnnual
- Monthly
- Monthly
- Quarterly
- Quarterly
- Annually
- Annually
- Billing
Month - BillingMonth
- Billing
Quarter - BillingQuarter
- Billing
Annual - BillingAnnual
- Monthly
- Monthly
- Quarterly
- Quarterly
- Annually
- Annually
- Billing
Month - BillingMonth
- Billing
Quarter - BillingQuarter
- Billing
Annual - BillingAnnual
- MONTHLY
- Monthly
- QUARTERLY
- Quarterly
- ANNUALLY
- Annually
- BILLING_MONTH
- BillingMonth
- BILLING_QUARTER
- BillingQuarter
- BILLING_ANNUAL
- BillingAnnual
- "Monthly"
- Monthly
- "Quarterly"
- Quarterly
- "Annually"
- Annually
- "Billing
Month" - BillingMonth
- "Billing
Quarter" - BillingQuarter
- "Billing
Annual" - BillingAnnual
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:consumption:Budget TestBudget subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Consumption/budgets/TestBudget
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0