UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

65 lines (64 loc) 3.14 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciBudgetAlertRuleConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/budget_alert_rule#alert_rule_id DataOciBudgetAlertRule#alert_rule_id} */ readonly alertRuleId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/budget_alert_rule#budget_id DataOciBudgetAlertRule#budget_id} */ readonly budgetId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/budget_alert_rule oci_budget_alert_rule} */ export declare class DataOciBudgetAlertRule extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_budget_alert_rule"; /** * Generates CDKTF code for importing a DataOciBudgetAlertRule 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 DataOciBudgetAlertRule to import * @param importFromId The id of the existing DataOciBudgetAlertRule that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/budget_alert_rule#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciBudgetAlertRule 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_alert_rule oci_budget_alert_rule} 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 DataOciBudgetAlertRuleConfig */ constructor(scope: Construct, id: string, config: DataOciBudgetAlertRuleConfig); private _alertRuleId?; get alertRuleId(): string; set alertRuleId(value: string); get alertRuleIdInput(): string | undefined; private _budgetId?; get budgetId(): string; set budgetId(value: string); get budgetIdInput(): string | undefined; private _definedTags; get definedTags(): cdktf.StringMap; get description(): string; get displayName(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get id(): string; get message(): string; get recipients(): string; get state(): string; get threshold(): number; get thresholdType(): string; get timeCreated(): string; get timeUpdated(): string; get type(): string; get version(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }