
Grafana v0.0.10, May 21 23

Grafana v0.0.10, May 21 23
grafana.OncallEscalation
Explore with Pulumi AI
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Grafana = Lbrlabs.PulumiPackage.Grafana;
using Grafana = Pulumi.Grafana;
return await Deployment.RunAsync(() =>
{
var @default = new Grafana.OncallEscalationChain("default", new()
{
}, new CustomResourceOptions
{
Provider = grafana.Oncall,
});
var alex = Grafana.GetOncallUser.Invoke(new()
{
Username = "alex",
});
// Notify step
var exampleNotifyStepOncallEscalation = new Grafana.OncallEscalation("exampleNotifyStepOncallEscalation", new()
{
EscalationChainId = @default.Id,
Type = "notify_persons",
PersonsToNotifies = new[]
{
alex.Apply(getOncallUserResult => getOncallUserResult.Id),
},
Position = 0,
});
// Wait step
var exampleNotifyStepIndex_oncallEscalationOncallEscalation = new Grafana.OncallEscalation("exampleNotifyStepIndex/oncallEscalationOncallEscalation", new()
{
EscalationChainId = @default.Id,
Type = "wait",
Duration = 300,
Position = 1,
});
// Important step
var exampleNotifyStepGrafanaIndex_oncallEscalationOncallEscalation = new Grafana.OncallEscalation("exampleNotifyStepGrafanaIndex/oncallEscalationOncallEscalation", new()
{
EscalationChainId = @default.Id,
Type = "notify_persons",
Important = true,
PersonsToNotifies = new[]
{
alex.Apply(getOncallUserResult => getOncallUserResult.Id),
},
Position = 0,
});
});
package main
import (
"github.com/lbrlabs/pulumi-grafana/sdk/go/grafana"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := grafana.NewOncallEscalationChain(ctx, "default", nil, pulumi.Provider(grafana.Oncall))
if err != nil {
return err
}
alex, err := grafana.GetOncallUser(ctx, &grafana.GetOncallUserArgs{
Username: "alex",
}, nil)
if err != nil {
return err
}
_, err = grafana.NewOncallEscalation(ctx, "exampleNotifyStepOncallEscalation", &grafana.OncallEscalationArgs{
EscalationChainId: _default.ID(),
Type: pulumi.String("notify_persons"),
PersonsToNotifies: pulumi.StringArray{
*pulumi.String(alex.Id),
},
Position: pulumi.Int(0),
})
if err != nil {
return err
}
_, err = grafana.NewOncallEscalation(ctx, "exampleNotifyStepIndex/oncallEscalationOncallEscalation", &grafana.OncallEscalationArgs{
EscalationChainId: _default.ID(),
Type: pulumi.String("wait"),
Duration: pulumi.Int(300),
Position: pulumi.Int(1),
})
if err != nil {
return err
}
_, err = grafana.NewOncallEscalation(ctx, "exampleNotifyStepGrafanaIndex/oncallEscalationOncallEscalation", &grafana.OncallEscalationArgs{
EscalationChainId: _default.ID(),
Type: pulumi.String("notify_persons"),
Important: pulumi.Bool(true),
PersonsToNotifies: pulumi.StringArray{
*pulumi.String(alex.Id),
},
Position: pulumi.Int(0),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.grafana.OncallEscalationChain;
import com.pulumi.grafana.OncallEscalationChainArgs;
import com.pulumi.grafana.GrafanaFunctions;
import com.pulumi.grafana.inputs.GetOncallUserArgs;
import com.pulumi.grafana.OncallEscalation;
import com.pulumi.grafana.OncallEscalationArgs;
import com.pulumi.resources.CustomResourceOptions;
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 default_ = new OncallEscalationChain("default", OncallEscalationChainArgs.Empty, CustomResourceOptions.builder()
.provider(grafana.oncall())
.build());
final var alex = GrafanaFunctions.getOncallUser(GetOncallUserArgs.builder()
.username("alex")
.build());
var exampleNotifyStepOncallEscalation = new OncallEscalation("exampleNotifyStepOncallEscalation", OncallEscalationArgs.builder()
.escalationChainId(default_.id())
.type("notify_persons")
.personsToNotifies(alex.applyValue(getOncallUserResult -> getOncallUserResult.id()))
.position(0)
.build());
var exampleNotifyStepIndex_oncallEscalationOncallEscalation = new OncallEscalation("exampleNotifyStepIndex/oncallEscalationOncallEscalation", OncallEscalationArgs.builder()
.escalationChainId(default_.id())
.type("wait")
.duration(300)
.position(1)
.build());
var exampleNotifyStepGrafanaIndex_oncallEscalationOncallEscalation = new OncallEscalation("exampleNotifyStepGrafanaIndex/oncallEscalationOncallEscalation", OncallEscalationArgs.builder()
.escalationChainId(default_.id())
.type("notify_persons")
.important(true)
.personsToNotifies(alex.applyValue(getOncallUserResult -> getOncallUserResult.id()))
.position(0)
.build());
}
}
import pulumi
import lbrlabs_pulumi_grafana as grafana
import pulumi_grafana as grafana
default = grafana.OncallEscalationChain("default", opts=pulumi.ResourceOptions(provider=grafana["oncall"]))
alex = grafana.get_oncall_user(username="alex")
# Notify step
example_notify_step_oncall_escalation = grafana.OncallEscalation("exampleNotifyStepOncallEscalation",
escalation_chain_id=default.id,
type="notify_persons",
persons_to_notifies=[alex.id],
position=0)
# Wait step
example_notify_step_index_oncall_escalation_oncall_escalation = grafana.OncallEscalation("exampleNotifyStepIndex/oncallEscalationOncallEscalation",
escalation_chain_id=default.id,
type="wait",
duration=300,
position=1)
# Important step
example_notify_step_grafana_index_oncall_escalation_oncall_escalation = grafana.OncallEscalation("exampleNotifyStepGrafanaIndex/oncallEscalationOncallEscalation",
escalation_chain_id=default.id,
type="notify_persons",
important=True,
persons_to_notifies=[alex.id],
position=0)
import * as pulumi from "@pulumi/pulumi";
import * as grafana from "@lbrlabs/pulumi-grafana";
import * as grafana from "@pulumi/grafana";
const _default = new grafana.OncallEscalationChain("default", {}, {
provider: grafana.oncall,
});
const alex = grafana.getOncallUser({
username: "alex",
});
// Notify step
const exampleNotifyStepOncallEscalation = new grafana.OncallEscalation("exampleNotifyStepOncallEscalation", {
escalationChainId: _default.id,
type: "notify_persons",
personsToNotifies: [alex.then(alex => alex.id)],
position: 0,
});
// Wait step
const exampleNotifyStepIndex_oncallEscalationOncallEscalation = new grafana.OncallEscalation("exampleNotifyStepIndex/oncallEscalationOncallEscalation", {
escalationChainId: _default.id,
type: "wait",
duration: 300,
position: 1,
});
// Important step
const exampleNotifyStepGrafanaIndex_oncallEscalationOncallEscalation = new grafana.OncallEscalation("exampleNotifyStepGrafanaIndex/oncallEscalationOncallEscalation", {
escalationChainId: _default.id,
type: "notify_persons",
important: true,
personsToNotifies: [alex.then(alex => alex.id)],
position: 0,
});
resources:
default:
type: grafana:OncallEscalationChain
options:
provider: ${grafana.oncall}
# Notify step
exampleNotifyStepOncallEscalation:
type: grafana:OncallEscalation
properties:
escalationChainId: ${default.id}
type: notify_persons
personsToNotifies:
- ${alex.id}
position: 0
# Wait step
exampleNotifyStepIndex/oncallEscalationOncallEscalation:
type: grafana:OncallEscalation
properties:
escalationChainId: ${default.id}
type: wait
duration: 300
position: 1
# Important step
exampleNotifyStepGrafanaIndex/oncallEscalationOncallEscalation:
type: grafana:OncallEscalation
properties:
escalationChainId: ${default.id}
type: notify_persons
important: true
personsToNotifies:
- ${alex.id}
position: 0
variables:
alex:
fn::invoke:
Function: grafana:getOncallUser
Arguments:
username: alex
Create OncallEscalation Resource
new OncallEscalation(name: string, args: OncallEscalationArgs, opts?: CustomResourceOptions);
@overload
def OncallEscalation(resource_name: str,
opts: Optional[ResourceOptions] = None,
action_to_trigger: Optional[str] = None,
duration: Optional[int] = None,
escalation_chain_id: Optional[str] = None,
group_to_notify: Optional[str] = None,
important: Optional[bool] = None,
notify_if_time_from: Optional[str] = None,
notify_if_time_to: Optional[str] = None,
notify_on_call_from_schedule: Optional[str] = None,
persons_to_notifies: Optional[Sequence[str]] = None,
persons_to_notify_next_each_times: Optional[Sequence[str]] = None,
position: Optional[int] = None,
type: Optional[str] = None)
@overload
def OncallEscalation(resource_name: str,
args: OncallEscalationArgs,
opts: Optional[ResourceOptions] = None)
func NewOncallEscalation(ctx *Context, name string, args OncallEscalationArgs, opts ...ResourceOption) (*OncallEscalation, error)
public OncallEscalation(string name, OncallEscalationArgs args, CustomResourceOptions? opts = null)
public OncallEscalation(String name, OncallEscalationArgs args)
public OncallEscalation(String name, OncallEscalationArgs args, CustomResourceOptions options)
type: grafana:OncallEscalation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OncallEscalationArgs
- 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 OncallEscalationArgs
- 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 OncallEscalationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OncallEscalationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OncallEscalationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
OncallEscalation 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 OncallEscalation resource accepts the following input properties:
- Escalation
Chain stringId The ID of the escalation chain.
- Position int
The position of the escalation step (starts from 0).
- Action
To stringTrigger The ID of an Action for trigger_action type step.
- Duration int
The duration of delay for wait type step.
- Group
To stringNotify The ID of a User Group for notifyusergroup type step.
- Important bool
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- Notify
If stringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- Notify
If stringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- Notify
On stringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- Persons
To List<string>Notifies The list of ID's of users for notify_persons type step.
- Persons
To List<string>Notify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- Type string
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- Escalation
Chain stringId The ID of the escalation chain.
- Position int
The position of the escalation step (starts from 0).
- Action
To stringTrigger The ID of an Action for trigger_action type step.
- Duration int
The duration of delay for wait type step.
- Group
To stringNotify The ID of a User Group for notifyusergroup type step.
- Important bool
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- Notify
If stringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- Notify
If stringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- Notify
On stringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- Persons
To []stringNotifies The list of ID's of users for notify_persons type step.
- Persons
To []stringNotify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- Type string
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- escalation
Chain StringId The ID of the escalation chain.
- position Integer
The position of the escalation step (starts from 0).
- action
To StringTrigger The ID of an Action for trigger_action type step.
- duration Integer
The duration of delay for wait type step.
- group
To StringNotify The ID of a User Group for notifyusergroup type step.
- important Boolean
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- notify
If StringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- notify
If StringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- notify
On StringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- persons
To List<String>Notifies The list of ID's of users for notify_persons type step.
- persons
To List<String>Notify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- type String
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- escalation
Chain stringId The ID of the escalation chain.
- position number
The position of the escalation step (starts from 0).
- action
To stringTrigger The ID of an Action for trigger_action type step.
- duration number
The duration of delay for wait type step.
- group
To stringNotify The ID of a User Group for notifyusergroup type step.
- important boolean
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- notify
If stringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- notify
If stringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- notify
On stringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- persons
To string[]Notifies The list of ID's of users for notify_persons type step.
- persons
To string[]Notify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- type string
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- escalation_
chain_ strid The ID of the escalation chain.
- position int
The position of the escalation step (starts from 0).
- action_
to_ strtrigger The ID of an Action for trigger_action type step.
- duration int
The duration of delay for wait type step.
- group_
to_ strnotify The ID of a User Group for notifyusergroup type step.
- important bool
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- notify_
if_ strtime_ from The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- notify_
if_ strtime_ to The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- notify_
on_ strcall_ from_ schedule ID of a Schedule for notifyoncallfromschedule type step.
- persons_
to_ Sequence[str]notifies The list of ID's of users for notify_persons type step.
- persons_
to_ Sequence[str]notify_ next_ each_ times The list of ID's of users for notifypersonnexteachtime type step.
- type str
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- escalation
Chain StringId The ID of the escalation chain.
- position Number
The position of the escalation step (starts from 0).
- action
To StringTrigger The ID of an Action for trigger_action type step.
- duration Number
The duration of delay for wait type step.
- group
To StringNotify The ID of a User Group for notifyusergroup type step.
- important Boolean
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- notify
If StringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- notify
If StringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- notify
On StringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- persons
To List<String>Notifies The list of ID's of users for notify_persons type step.
- persons
To List<String>Notify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- type String
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
Outputs
All input properties are implicitly available as output properties. Additionally, the OncallEscalation resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing OncallEscalation Resource
Get an existing OncallEscalation 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?: OncallEscalationState, opts?: CustomResourceOptions): OncallEscalation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_to_trigger: Optional[str] = None,
duration: Optional[int] = None,
escalation_chain_id: Optional[str] = None,
group_to_notify: Optional[str] = None,
important: Optional[bool] = None,
notify_if_time_from: Optional[str] = None,
notify_if_time_to: Optional[str] = None,
notify_on_call_from_schedule: Optional[str] = None,
persons_to_notifies: Optional[Sequence[str]] = None,
persons_to_notify_next_each_times: Optional[Sequence[str]] = None,
position: Optional[int] = None,
type: Optional[str] = None) -> OncallEscalation
func GetOncallEscalation(ctx *Context, name string, id IDInput, state *OncallEscalationState, opts ...ResourceOption) (*OncallEscalation, error)
public static OncallEscalation Get(string name, Input<string> id, OncallEscalationState? state, CustomResourceOptions? opts = null)
public static OncallEscalation get(String name, Output<String> id, OncallEscalationState 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.
- Action
To stringTrigger The ID of an Action for trigger_action type step.
- Duration int
The duration of delay for wait type step.
- Escalation
Chain stringId The ID of the escalation chain.
- Group
To stringNotify The ID of a User Group for notifyusergroup type step.
- Important bool
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- Notify
If stringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- Notify
If stringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- Notify
On stringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- Persons
To List<string>Notifies The list of ID's of users for notify_persons type step.
- Persons
To List<string>Notify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- Position int
The position of the escalation step (starts from 0).
- Type string
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- Action
To stringTrigger The ID of an Action for trigger_action type step.
- Duration int
The duration of delay for wait type step.
- Escalation
Chain stringId The ID of the escalation chain.
- Group
To stringNotify The ID of a User Group for notifyusergroup type step.
- Important bool
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- Notify
If stringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- Notify
If stringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- Notify
On stringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- Persons
To []stringNotifies The list of ID's of users for notify_persons type step.
- Persons
To []stringNotify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- Position int
The position of the escalation step (starts from 0).
- Type string
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- action
To StringTrigger The ID of an Action for trigger_action type step.
- duration Integer
The duration of delay for wait type step.
- escalation
Chain StringId The ID of the escalation chain.
- group
To StringNotify The ID of a User Group for notifyusergroup type step.
- important Boolean
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- notify
If StringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- notify
If StringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- notify
On StringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- persons
To List<String>Notifies The list of ID's of users for notify_persons type step.
- persons
To List<String>Notify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- position Integer
The position of the escalation step (starts from 0).
- type String
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- action
To stringTrigger The ID of an Action for trigger_action type step.
- duration number
The duration of delay for wait type step.
- escalation
Chain stringId The ID of the escalation chain.
- group
To stringNotify The ID of a User Group for notifyusergroup type step.
- important boolean
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- notify
If stringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- notify
If stringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- notify
On stringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- persons
To string[]Notifies The list of ID's of users for notify_persons type step.
- persons
To string[]Notify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- position number
The position of the escalation step (starts from 0).
- type string
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- action_
to_ strtrigger The ID of an Action for trigger_action type step.
- duration int
The duration of delay for wait type step.
- escalation_
chain_ strid The ID of the escalation chain.
- group_
to_ strnotify The ID of a User Group for notifyusergroup type step.
- important bool
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- notify_
if_ strtime_ from The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- notify_
if_ strtime_ to The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- notify_
on_ strcall_ from_ schedule ID of a Schedule for notifyoncallfromschedule type step.
- persons_
to_ Sequence[str]notifies The list of ID's of users for notify_persons type step.
- persons_
to_ Sequence[str]notify_ next_ each_ times The list of ID's of users for notifypersonnexteachtime type step.
- position int
The position of the escalation step (starts from 0).
- type str
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
- action
To StringTrigger The ID of an Action for trigger_action type step.
- duration Number
The duration of delay for wait type step.
- escalation
Chain StringId The ID of the escalation chain.
- group
To StringNotify The ID of a User Group for notifyusergroup type step.
- important Boolean
Will activate "important" personal notification rules. Actual for steps: notifypersons, notifyoncallfromschedule and notifyuser_group
- notify
If StringTime From The beginning of the time interval for notifyiftimefromto type step in UTC (for example 08:00:00Z).
- notify
If StringTime To The end of the time interval for notifyiftimefromto type step in UTC (for example 18:00:00Z).
- notify
On StringCall From Schedule ID of a Schedule for notifyoncallfromschedule type step.
- persons
To List<String>Notifies The list of ID's of users for notify_persons type step.
- persons
To List<String>Notify Next Each Times The list of ID's of users for notifypersonnexteachtime type step.
- position Number
The position of the escalation step (starts from 0).
- type String
The type of escalation policy. Can be wait, notifypersons, notifypersonnexteachtime, notifyoncallfromschedule, triggeraction, notifyusergroup, resolve, notifywholechannel, notifyiftimefromto, repeat_escalation
Import
$ pulumi import grafana:index/oncallEscalation:OncallEscalation escalation_name {{escalation_id}}
Package Details
- Repository
- grafana lbrlabs/pulumi-grafana
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
grafana
Terraform Provider.