Oracle Cloud Infrastructure
Rule
This resource provides the Alert Rule resource in Oracle Cloud Infrastructure Budget service.
Creates a new Alert Rule.
Example Usage
using Pulumi;
using Oci = Pulumi.Oci;
class MyStack : Stack
{
public MyStack()
{
var testAlertRule = new Oci.Budget.Rule("testAlertRule", new Oci.Budget.RuleArgs
{
BudgetId = oci_budget_budget.Test_budget.Id,
Threshold = @var.Alert_rule_threshold,
ThresholdType = @var.Alert_rule_threshold_type,
Type = @var.Alert_rule_type,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = @var.Alert_rule_description,
DisplayName = @var.Alert_rule_display_name,
FreeformTags =
{
{ "Department", "Finance" },
},
Message = @var.Alert_rule_message,
Recipients = @var.Alert_rule_recipients,
});
}
}
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Budget"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Budget.NewRule(ctx, "testAlertRule", &Budget.RuleArgs{
BudgetId: pulumi.Any(oci_budget_budget.Test_budget.Id),
Threshold: pulumi.Any(_var.Alert_rule_threshold),
ThresholdType: pulumi.Any(_var.Alert_rule_threshold_type),
Type: pulumi.Any(_var.Alert_rule_type),
DefinedTags: pulumi.AnyMap{
"Operations.CostCenter": pulumi.Any("42"),
},
Description: pulumi.Any(_var.Alert_rule_description),
DisplayName: pulumi.Any(_var.Alert_rule_display_name),
FreeformTags: pulumi.AnyMap{
"Department": pulumi.Any("Finance"),
},
Message: pulumi.Any(_var.Alert_rule_message),
Recipients: pulumi.Any(_var.Alert_rule_recipients),
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_oci as oci
test_alert_rule = oci.budget.Rule("testAlertRule",
budget_id=oci_budget_budget["test_budget"]["id"],
threshold=var["alert_rule_threshold"],
threshold_type=var["alert_rule_threshold_type"],
type=var["alert_rule_type"],
defined_tags={
"Operations.CostCenter": "42",
},
description=var["alert_rule_description"],
display_name=var["alert_rule_display_name"],
freeform_tags={
"Department": "Finance",
},
message=var["alert_rule_message"],
recipients=var["alert_rule_recipients"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAlertRule = new oci.budget.Rule("testAlertRule", {
budgetId: oci_budget_budget.test_budget.id,
threshold: _var.alert_rule_threshold,
thresholdType: _var.alert_rule_threshold_type,
type: _var.alert_rule_type,
definedTags: {
"Operations.CostCenter": "42",
},
description: _var.alert_rule_description,
displayName: _var.alert_rule_display_name,
freeformTags: {
Department: "Finance",
},
message: _var.alert_rule_message,
recipients: _var.alert_rule_recipients,
});
Coming soon!
Create a Rule Resource
new Rule(name: string, args: RuleArgs, opts?: CustomResourceOptions);
@overload
def Rule(resource_name: str,
opts: Optional[ResourceOptions] = None,
budget_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
message: Optional[str] = None,
recipients: Optional[str] = None,
threshold: Optional[float] = None,
threshold_type: Optional[str] = None,
type: Optional[str] = None)
@overload
def Rule(resource_name: str,
args: RuleArgs,
opts: Optional[ResourceOptions] = None)
func NewRule(ctx *Context, name string, args RuleArgs, opts ...ResourceOption) (*Rule, error)
public Rule(string name, RuleArgs args, CustomResourceOptions? opts = null)
type: oci:Budget:Rule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RuleArgs
- 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 RuleArgs
- 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 RuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Rule 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 Rule resource accepts the following input properties:
- Budget
Id string The unique Budget OCID
- Threshold double
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- Threshold
Type string (Updatable) The type of threshold.
- Type string
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
(Updatable) The description of the alert rule.
- Display
Name string (Updatable) The name of the alert rule.
- Dictionary<string, object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Message string
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- Recipients string
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- Budget
Id string The unique Budget OCID
- Threshold float64
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- Threshold
Type string (Updatable) The type of threshold.
- Type string
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
(Updatable) The description of the alert rule.
- Display
Name string (Updatable) The name of the alert rule.
- map[string]interface{}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Message string
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- Recipients string
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- budget
Id String The unique Budget OCID
- threshold Double
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- threshold
Type String (Updatable) The type of threshold.
- type String
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
(Updatable) The description of the alert rule.
- display
Name String (Updatable) The name of the alert rule.
- Map<String,Object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- message String
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- recipients String
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- budget
Id string The unique Budget OCID
- threshold number
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- threshold
Type string (Updatable) The type of threshold.
- type string
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
(Updatable) The description of the alert rule.
- display
Name string (Updatable) The name of the alert rule.
- {[key: string]: any}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- message string
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- recipients string
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- budget_
id str The unique Budget OCID
- threshold float
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- threshold_
type str (Updatable) The type of threshold.
- type str
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
(Updatable) The description of the alert rule.
- display_
name str (Updatable) The name of the alert rule.
- Mapping[str, Any]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- message str
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- recipients str
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- budget
Id String The unique Budget OCID
- threshold Number
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- threshold
Type String (Updatable) The type of threshold.
- type String
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
(Updatable) The description of the alert rule.
- display
Name String (Updatable) The name of the alert rule.
- Map<Any>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- message String
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- recipients String
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
Outputs
All input properties are implicitly available as output properties. Additionally, the Rule resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- State string
The current state of the alert rule.
- Time
Created string Time when budget was created
- Time
Updated string Time when budget was updated
- Version int
Version of the alert rule. Starts from 1 and increments by 1.
- Id string
The provider-assigned unique ID for this managed resource.
- State string
The current state of the alert rule.
- Time
Created string Time when budget was created
- Time
Updated string Time when budget was updated
- Version int
Version of the alert rule. Starts from 1 and increments by 1.
- id String
The provider-assigned unique ID for this managed resource.
- state String
The current state of the alert rule.
- time
Created String Time when budget was created
- time
Updated String Time when budget was updated
- version Integer
Version of the alert rule. Starts from 1 and increments by 1.
- id string
The provider-assigned unique ID for this managed resource.
- state string
The current state of the alert rule.
- time
Created string Time when budget was created
- time
Updated string Time when budget was updated
- version number
Version of the alert rule. Starts from 1 and increments by 1.
- id str
The provider-assigned unique ID for this managed resource.
- state str
The current state of the alert rule.
- time_
created str Time when budget was created
- time_
updated str Time when budget was updated
- version int
Version of the alert rule. Starts from 1 and increments by 1.
- id String
The provider-assigned unique ID for this managed resource.
- state String
The current state of the alert rule.
- time
Created String Time when budget was created
- time
Updated String Time when budget was updated
- version Number
Version of the alert rule. Starts from 1 and increments by 1.
Look up an Existing Rule Resource
Get an existing Rule 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?: RuleState, opts?: CustomResourceOptions): Rule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
budget_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
message: Optional[str] = None,
recipients: Optional[str] = None,
state: Optional[str] = None,
threshold: Optional[float] = None,
threshold_type: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
type: Optional[str] = None,
version: Optional[int] = None) -> Rule
func GetRule(ctx *Context, name string, id IDInput, state *RuleState, opts ...ResourceOption) (*Rule, error)
public static Rule Get(string name, Input<string> id, RuleState? state, CustomResourceOptions? opts = null)
public static Rule get(String name, Output<String> id, RuleState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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
Id string The unique Budget OCID
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
(Updatable) The description of the alert rule.
- Display
Name string (Updatable) The name of the alert rule.
- Dictionary<string, object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Message string
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- Recipients string
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- State string
The current state of the alert rule.
- Threshold double
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- Threshold
Type string (Updatable) The type of threshold.
- Time
Created string Time when budget was created
- Time
Updated string Time when budget was updated
- Type string
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- Version int
Version of the alert rule. Starts from 1 and increments by 1.
- Budget
Id string The unique Budget OCID
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
(Updatable) The description of the alert rule.
- Display
Name string (Updatable) The name of the alert rule.
- map[string]interface{}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Message string
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- Recipients string
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- State string
The current state of the alert rule.
- Threshold float64
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- Threshold
Type string (Updatable) The type of threshold.
- Time
Created string Time when budget was created
- Time
Updated string Time when budget was updated
- Type string
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- Version int
Version of the alert rule. Starts from 1 and increments by 1.
- budget
Id String The unique Budget OCID
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
(Updatable) The description of the alert rule.
- display
Name String (Updatable) The name of the alert rule.
- Map<String,Object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- message String
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- recipients String
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- state String
The current state of the alert rule.
- threshold Double
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- threshold
Type String (Updatable) The type of threshold.
- time
Created String Time when budget was created
- time
Updated String Time when budget was updated
- type String
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- version Integer
Version of the alert rule. Starts from 1 and increments by 1.
- budget
Id string The unique Budget OCID
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
(Updatable) The description of the alert rule.
- display
Name string (Updatable) The name of the alert rule.
- {[key: string]: any}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- message string
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- recipients string
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- state string
The current state of the alert rule.
- threshold number
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- threshold
Type string (Updatable) The type of threshold.
- time
Created string Time when budget was created
- time
Updated string Time when budget was updated
- type string
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- version number
Version of the alert rule. Starts from 1 and increments by 1.
- budget_
id str The unique Budget OCID
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
(Updatable) The description of the alert rule.
- display_
name str (Updatable) The name of the alert rule.
- Mapping[str, Any]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- message str
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- recipients str
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- state str
The current state of the alert rule.
- threshold float
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- threshold_
type str (Updatable) The type of threshold.
- time_
created str Time when budget was created
- time_
updated str Time when budget was updated
- type str
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- version int
Version of the alert rule. Starts from 1 and increments by 1.
- budget
Id String The unique Budget OCID
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
(Updatable) The description of the alert rule.
- display
Name String (Updatable) The name of the alert rule.
- Map<Any>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- message String
(Updatable) The message to be sent to the recipients when alert rule is triggered.
- recipients String
(Updatable) The audience that will receive the alert when it triggers. An empty string is interpreted as null.
- state String
The current state of the alert rule.
- threshold Number
(Updatable) The threshold for triggering the alert expressed as a whole number or decimal value. If thresholdType is ABSOLUTE, threshold can have at most 12 digits before the decimal point and up to 2 digits after the decimal point. If thresholdType is PERCENTAGE, the maximum value is 10000 and can have up to 2 digits after the decimal point.
- threshold
Type String (Updatable) The type of threshold.
- time
Created String Time when budget was created
- time
Updated String Time when budget was updated
- type String
(Updatable) Type of alert. Valid values are ACTUAL (the alert will trigger based on actual usage) or FORECAST (the alert will trigger based on predicted usage).
- version Number
Version of the alert rule. Starts from 1 and increments by 1.
Import
AlertRules can be imported using the id
, e.g.
$ pulumi import oci:Budget/rule:Rule test_alert_rule "budgets/{budgetId}/alertRules/{alertRuleId}"
Package Details
- Repository
- https://github.com/pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.