vantage.Budget
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vantage from "@pulumi/vantage";
const demoBudget = new vantage.Budget("demoBudget", {
costReportToken: vantage_cost_report.demo_report.token,
periods: [{
startAt: "2023-12-01",
endAt: "2024-01-01",
amount: 1000,
}],
});
import pulumi
import pulumi_vantage as vantage
demo_budget = vantage.Budget("demoBudget",
cost_report_token=vantage_cost_report["demo_report"]["token"],
periods=[{
"start_at": "2023-12-01",
"end_at": "2024-01-01",
"amount": 1000,
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/vantage/vantage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vantage.NewBudget(ctx, "demoBudget", &vantage.BudgetArgs{
CostReportToken: pulumi.Any(vantage_cost_report.Demo_report.Token),
Periods: vantage.BudgetPeriodArray{
&vantage.BudgetPeriodArgs{
StartAt: pulumi.String("2023-12-01"),
EndAt: pulumi.String("2024-01-01"),
Amount: pulumi.Float64(1000),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vantage = Pulumi.Vantage;
return await Deployment.RunAsync(() =>
{
var demoBudget = new Vantage.Budget("demoBudget", new()
{
CostReportToken = vantage_cost_report.Demo_report.Token,
Periods = new[]
{
new Vantage.Inputs.BudgetPeriodArgs
{
StartAt = "2023-12-01",
EndAt = "2024-01-01",
Amount = 1000,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vantage.Budget;
import com.pulumi.vantage.BudgetArgs;
import com.pulumi.vantage.inputs.BudgetPeriodArgs;
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 demoBudget = new Budget("demoBudget", BudgetArgs.builder()
.costReportToken(vantage_cost_report.demo_report().token())
.periods(BudgetPeriodArgs.builder()
.startAt("2023-12-01")
.endAt("2024-01-01")
.amount(1000)
.build())
.build());
}
}
resources:
demoBudget:
type: vantage:Budget
properties:
costReportToken: ${vantage_cost_report.demo_report.token}
periods:
- startAt: 2023-12-01
endAt: 2024-01-01
amount: 1000
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: Optional[BudgetArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Budget(resource_name: str,
opts: Optional[ResourceOptions] = None,
child_budget_tokens: Optional[Sequence[str]] = None,
cost_report_token: Optional[str] = None,
name: Optional[str] = None,
periods: Optional[Sequence[BudgetPeriodArgs]] = None,
workspace_token: Optional[str] = None)
func NewBudget(ctx *Context, name string, args *BudgetArgs, opts ...ResourceOption) (*Budget, error)
public Budget(string name, BudgetArgs? args = null, CustomResourceOptions? opts = null)
public Budget(String name, BudgetArgs args)
public Budget(String name, BudgetArgs args, CustomResourceOptions options)
type: vantage: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 Vantage.Budget("budgetResource", new()
{
ChildBudgetTokens = new[]
{
"string",
},
CostReportToken = "string",
Name = "string",
Periods = new[]
{
new Vantage.Inputs.BudgetPeriodArgs
{
Amount = 0,
StartAt = "string",
EndAt = "string",
},
},
WorkspaceToken = "string",
});
example, err := vantage.NewBudget(ctx, "budgetResource", &vantage.BudgetArgs{
ChildBudgetTokens: pulumi.StringArray{
pulumi.String("string"),
},
CostReportToken: pulumi.String("string"),
Name: pulumi.String("string"),
Periods: .BudgetPeriodArray{
&.BudgetPeriodArgs{
Amount: pulumi.Float64(0),
StartAt: pulumi.String("string"),
EndAt: pulumi.String("string"),
},
},
WorkspaceToken: pulumi.String("string"),
})
var budgetResource = new Budget("budgetResource", BudgetArgs.builder()
.childBudgetTokens("string")
.costReportToken("string")
.name("string")
.periods(BudgetPeriodArgs.builder()
.amount(0)
.startAt("string")
.endAt("string")
.build())
.workspaceToken("string")
.build());
budget_resource = vantage.Budget("budgetResource",
child_budget_tokens=["string"],
cost_report_token="string",
name="string",
periods=[{
"amount": 0,
"start_at": "string",
"end_at": "string",
}],
workspace_token="string")
const budgetResource = new vantage.Budget("budgetResource", {
childBudgetTokens: ["string"],
costReportToken: "string",
name: "string",
periods: [{
amount: 0,
startAt: "string",
endAt: "string",
}],
workspaceToken: "string",
});
type: vantage:Budget
properties:
childBudgetTokens:
- string
costReportToken: string
name: string
periods:
- amount: 0
endAt: string
startAt: string
workspaceToken: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Budget resource accepts the following input properties:
- Child
Budget List<string>Tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- Cost
Report stringToken - The CostReport token. Ignored for hierarchical Budgets.
- Name string
- The name of the Budget.
- Periods
List<Budget
Period> - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- Workspace
Token string - The token of the Workspace to add the Budget to.
- Child
Budget []stringTokens - The tokens of any child Budgets when creating a hierarchical Budget.
- Cost
Report stringToken - The CostReport token. Ignored for hierarchical Budgets.
- Name string
- The name of the Budget.
- Periods
[]Budget
Period Args - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- Workspace
Token string - The token of the Workspace to add the Budget to.
- child
Budget List<String>Tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- cost
Report StringToken - The CostReport token. Ignored for hierarchical Budgets.
- name String
- The name of the Budget.
- periods
List<Budget
Period> - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- workspace
Token String - The token of the Workspace to add the Budget to.
- child
Budget string[]Tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- cost
Report stringToken - The CostReport token. Ignored for hierarchical Budgets.
- name string
- The name of the Budget.
- periods
Budget
Period[] - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- workspace
Token string - The token of the Workspace to add the Budget to.
- child_
budget_ Sequence[str]tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- cost_
report_ strtoken - The CostReport token. Ignored for hierarchical Budgets.
- name str
- The name of the Budget.
- periods
Sequence[Budget
Period Args] - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- workspace_
token str - The token of the Workspace to add the Budget to.
- child
Budget List<String>Tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- cost
Report StringToken - The CostReport token. Ignored for hierarchical Budgets.
- name String
- The name of the Budget.
- periods List<Property Map>
- The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- workspace
Token String - The token of the Workspace to add the Budget to.
Outputs
All input properties are implicitly available as output properties. Additionally, the Budget resource produces the following output properties:
- Budget
Alert List<string>Tokens - The tokens of the BudgetAlerts associated with the Budget.
- Created
At string - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- Created
By stringToken - The token of the Creator of the Budget.
- Id string
- The provider-assigned unique ID for this managed resource.
- Performances
List<Budget
Performance> - The historical performance of the Budget.
- Token string
- The token of the budget
- User
Token string - The token for the User who created this Budget.
- Budget
Alert []stringTokens - The tokens of the BudgetAlerts associated with the Budget.
- Created
At string - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- Created
By stringToken - The token of the Creator of the Budget.
- Id string
- The provider-assigned unique ID for this managed resource.
- Performances
[]Budget
Performance - The historical performance of the Budget.
- Token string
- The token of the budget
- User
Token string - The token for the User who created this Budget.
- budget
Alert List<String>Tokens - The tokens of the BudgetAlerts associated with the Budget.
- created
At String - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- created
By StringToken - The token of the Creator of the Budget.
- id String
- The provider-assigned unique ID for this managed resource.
- performances
List<Budget
Performance> - The historical performance of the Budget.
- token String
- The token of the budget
- user
Token String - The token for the User who created this Budget.
- budget
Alert string[]Tokens - The tokens of the BudgetAlerts associated with the Budget.
- created
At string - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- created
By stringToken - The token of the Creator of the Budget.
- id string
- The provider-assigned unique ID for this managed resource.
- performances
Budget
Performance[] - The historical performance of the Budget.
- token string
- The token of the budget
- user
Token string - The token for the User who created this Budget.
- budget_
alert_ Sequence[str]tokens - The tokens of the BudgetAlerts associated with the Budget.
- created_
at str - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- created_
by_ strtoken - The token of the Creator of the Budget.
- id str
- The provider-assigned unique ID for this managed resource.
- performances
Sequence[Budget
Performance] - The historical performance of the Budget.
- token str
- The token of the budget
- user_
token str - The token for the User who created this Budget.
- budget
Alert List<String>Tokens - The tokens of the BudgetAlerts associated with the Budget.
- created
At String - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- created
By StringToken - The token of the Creator of the Budget.
- id String
- The provider-assigned unique ID for this managed resource.
- performances List<Property Map>
- The historical performance of the Budget.
- token String
- The token of the budget
- user
Token String - The token for the User who created this Budget.
Look up Existing Budget Resource
Get an existing Budget resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BudgetState, opts?: CustomResourceOptions): Budget
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
budget_alert_tokens: Optional[Sequence[str]] = None,
child_budget_tokens: Optional[Sequence[str]] = None,
cost_report_token: Optional[str] = None,
created_at: Optional[str] = None,
created_by_token: Optional[str] = None,
name: Optional[str] = None,
performances: Optional[Sequence[BudgetPerformanceArgs]] = None,
periods: Optional[Sequence[BudgetPeriodArgs]] = None,
token: Optional[str] = None,
user_token: Optional[str] = None,
workspace_token: Optional[str] = None) -> Budget
func GetBudget(ctx *Context, name string, id IDInput, state *BudgetState, opts ...ResourceOption) (*Budget, error)
public static Budget Get(string name, Input<string> id, BudgetState? state, CustomResourceOptions? opts = null)
public static Budget get(String name, Output<String> id, BudgetState state, CustomResourceOptions options)
resources: _: type: vantage:Budget get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Budget
Alert List<string>Tokens - The tokens of the BudgetAlerts associated with the Budget.
- Child
Budget List<string>Tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- Cost
Report stringToken - The CostReport token. Ignored for hierarchical Budgets.
- Created
At string - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- Created
By stringToken - The token of the Creator of the Budget.
- Name string
- The name of the Budget.
- Performances
List<Budget
Performance> - The historical performance of the Budget.
- Periods
List<Budget
Period> - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- Token string
- The token of the budget
- User
Token string - The token for the User who created this Budget.
- Workspace
Token string - The token of the Workspace to add the Budget to.
- Budget
Alert []stringTokens - The tokens of the BudgetAlerts associated with the Budget.
- Child
Budget []stringTokens - The tokens of any child Budgets when creating a hierarchical Budget.
- Cost
Report stringToken - The CostReport token. Ignored for hierarchical Budgets.
- Created
At string - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- Created
By stringToken - The token of the Creator of the Budget.
- Name string
- The name of the Budget.
- Performances
[]Budget
Performance Args - The historical performance of the Budget.
- Periods
[]Budget
Period Args - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- Token string
- The token of the budget
- User
Token string - The token for the User who created this Budget.
- Workspace
Token string - The token of the Workspace to add the Budget to.
- budget
Alert List<String>Tokens - The tokens of the BudgetAlerts associated with the Budget.
- child
Budget List<String>Tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- cost
Report StringToken - The CostReport token. Ignored for hierarchical Budgets.
- created
At String - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- created
By StringToken - The token of the Creator of the Budget.
- name String
- The name of the Budget.
- performances
List<Budget
Performance> - The historical performance of the Budget.
- periods
List<Budget
Period> - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- token String
- The token of the budget
- user
Token String - The token for the User who created this Budget.
- workspace
Token String - The token of the Workspace to add the Budget to.
- budget
Alert string[]Tokens - The tokens of the BudgetAlerts associated with the Budget.
- child
Budget string[]Tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- cost
Report stringToken - The CostReport token. Ignored for hierarchical Budgets.
- created
At string - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- created
By stringToken - The token of the Creator of the Budget.
- name string
- The name of the Budget.
- performances
Budget
Performance[] - The historical performance of the Budget.
- periods
Budget
Period[] - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- token string
- The token of the budget
- user
Token string - The token for the User who created this Budget.
- workspace
Token string - The token of the Workspace to add the Budget to.
- budget_
alert_ Sequence[str]tokens - The tokens of the BudgetAlerts associated with the Budget.
- child_
budget_ Sequence[str]tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- cost_
report_ strtoken - The CostReport token. Ignored for hierarchical Budgets.
- created_
at str - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- created_
by_ strtoken - The token of the Creator of the Budget.
- name str
- The name of the Budget.
- performances
Sequence[Budget
Performance Args] - The historical performance of the Budget.
- periods
Sequence[Budget
Period Args] - The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- token str
- The token of the budget
- user_
token str - The token for the User who created this Budget.
- workspace_
token str - The token of the Workspace to add the Budget to.
- budget
Alert List<String>Tokens - The tokens of the BudgetAlerts associated with the Budget.
- child
Budget List<String>Tokens - The tokens of any child Budgets when creating a hierarchical Budget.
- cost
Report StringToken - The CostReport token. Ignored for hierarchical Budgets.
- created
At String - The date and time, in UTC, the Budget was created. ISO 8601 Formatted.
- created
By StringToken - The token of the Creator of the Budget.
- name String
- The name of the Budget.
- performances List<Property Map>
- The historical performance of the Budget.
- periods List<Property Map>
- The periods for the Budget. The startat and endat must be iso8601 formatted e.g. YYYY-MM-DD. Ignored for hierarchical Budgets.
- token String
- The token of the budget
- user
Token String - The token for the User who created this Budget.
- workspace
Token String - The token of the Workspace to add the Budget to.
Supporting Types
BudgetPerformance, BudgetPerformanceArgs
BudgetPeriod, BudgetPeriodArgs
Package Details
- Repository
- vantage vantage-sh/terraform-provider-vantage
- License
- Notes
- This Pulumi package is based on the
vantage
Terraform Provider.