UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

66 lines (65 loc) 3.04 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciBudgetBudgetConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/budget_budget#budget_id DataOciBudgetBudget#budget_id} */ readonly budgetId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/budget_budget oci_budget_budget} */ export declare class DataOciBudgetBudget extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_budget_budget"; /** * Generates CDKTF code for importing a DataOciBudgetBudget resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataOciBudgetBudget to import * @param importFromId The id of the existing DataOciBudgetBudget that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/budget_budget#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciBudgetBudget to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/budget_budget oci_budget_budget} Data Source * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options DataOciBudgetBudgetConfig */ constructor(scope: Construct, id: string, config: DataOciBudgetBudgetConfig); get actualSpend(): number; get alertRuleCount(): number; get amount(): number; private _budgetId?; get budgetId(): string; set budgetId(value: string); get budgetIdInput(): string | undefined; get budgetProcessingPeriodStartOffset(): number; get compartmentId(): string; private _definedTags; get definedTags(): cdktf.StringMap; get description(): string; get displayName(): string; get endDate(): string; get forecastedSpend(): number; private _freeformTags; get freeformTags(): cdktf.StringMap; get id(): string; get processingPeriodType(): string; get resetPeriod(): string; get startDate(): string; get state(): string; get targetCompartmentId(): string; get targetType(): string; get targets(): string[]; get timeCreated(): string; get timeSpendComputed(): string; get timeUpdated(): string; get version(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }