pagerduty.IncidentType
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as pagerduty from "@pulumi/pagerduty";
const base = pagerduty.getIncidentType({
displayName: "Base Incident",
});
const example = new pagerduty.IncidentType("example", {
name: "backoffice",
displayName: "Backoffice Incident",
parentType: base.then(base => base.id),
description: "Internal incidents not facing customer",
});
import pulumi
import pulumi_pagerduty as pagerduty
base = pagerduty.get_incident_type(display_name="Base Incident")
example = pagerduty.IncidentType("example",
name="backoffice",
display_name="Backoffice Incident",
parent_type=base.id,
description="Internal incidents not facing customer")
package main
import (
"github.com/pulumi/pulumi-pagerduty/sdk/v4/go/pagerduty"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
base, err := pagerduty.LookupIncidentType(ctx, &pagerduty.LookupIncidentTypeArgs{
DisplayName: "Base Incident",
}, nil)
if err != nil {
return err
}
_, err = pagerduty.NewIncidentType(ctx, "example", &pagerduty.IncidentTypeArgs{
Name: pulumi.String("backoffice"),
DisplayName: pulumi.String("Backoffice Incident"),
ParentType: pulumi.String(base.Id),
Description: pulumi.String("Internal incidents not facing customer"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Pagerduty = Pulumi.Pagerduty;
return await Deployment.RunAsync(() =>
{
var @base = Pagerduty.GetIncidentType.Invoke(new()
{
DisplayName = "Base Incident",
});
var example = new Pagerduty.IncidentType("example", new()
{
Name = "backoffice",
DisplayName = "Backoffice Incident",
ParentType = @base.Apply(@base => @base.Apply(getIncidentTypeResult => getIncidentTypeResult.Id)),
Description = "Internal incidents not facing customer",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.pagerduty.PagerdutyFunctions;
import com.pulumi.pagerduty.inputs.GetIncidentTypeArgs;
import com.pulumi.pagerduty.IncidentType;
import com.pulumi.pagerduty.IncidentTypeArgs;
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) {
final var base = PagerdutyFunctions.getIncidentType(GetIncidentTypeArgs.builder()
.displayName("Base Incident")
.build());
var example = new IncidentType("example", IncidentTypeArgs.builder()
.name("backoffice")
.displayName("Backoffice Incident")
.parentType(base.applyValue(getIncidentTypeResult -> getIncidentTypeResult.id()))
.description("Internal incidents not facing customer")
.build());
}
}
resources:
example:
type: pagerduty:IncidentType
properties:
name: backoffice
displayName: Backoffice Incident
parentType: ${base.id}
description: Internal incidents not facing customer
variables:
base:
fn::invoke:
function: pagerduty:getIncidentType
arguments:
displayName: Base Incident
Create IncidentType Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IncidentType(name: string, args: IncidentTypeArgs, opts?: CustomResourceOptions);
@overload
def IncidentType(resource_name: str,
args: IncidentTypeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IncidentType(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
parent_type: Optional[str] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None)
func NewIncidentType(ctx *Context, name string, args IncidentTypeArgs, opts ...ResourceOption) (*IncidentType, error)
public IncidentType(string name, IncidentTypeArgs args, CustomResourceOptions? opts = null)
public IncidentType(String name, IncidentTypeArgs args)
public IncidentType(String name, IncidentTypeArgs args, CustomResourceOptions options)
type: pagerduty:IncidentType
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 IncidentTypeArgs
- 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 IncidentTypeArgs
- 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 IncidentTypeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IncidentTypeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IncidentTypeArgs
- 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 incidentTypeResource = new Pagerduty.IncidentType("incidentTypeResource", new()
{
DisplayName = "string",
ParentType = "string",
Description = "string",
Enabled = false,
Name = "string",
});
example, err := pagerduty.NewIncidentType(ctx, "incidentTypeResource", &pagerduty.IncidentTypeArgs{
DisplayName: pulumi.String("string"),
ParentType: pulumi.String("string"),
Description: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Name: pulumi.String("string"),
})
var incidentTypeResource = new IncidentType("incidentTypeResource", IncidentTypeArgs.builder()
.displayName("string")
.parentType("string")
.description("string")
.enabled(false)
.name("string")
.build());
incident_type_resource = pagerduty.IncidentType("incidentTypeResource",
display_name="string",
parent_type="string",
description="string",
enabled=False,
name="string")
const incidentTypeResource = new pagerduty.IncidentType("incidentTypeResource", {
displayName: "string",
parentType: "string",
description: "string",
enabled: false,
name: "string",
});
type: pagerduty:IncidentType
properties:
description: string
displayName: string
enabled: false
name: string
parentType: string
IncidentType 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 IncidentType resource accepts the following input properties:
- Display
Name string - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- Parent
Type string - The parent type of the Incident Type. Either name or id of the parent type can be used.
- Description string
- A succinct description of the Incident Type.
- Enabled bool
- State of this Incident Type object. Defaults to true if not provided.
- Name string
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created.
- Display
Name string - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- Parent
Type string - The parent type of the Incident Type. Either name or id of the parent type can be used.
- Description string
- A succinct description of the Incident Type.
- Enabled bool
- State of this Incident Type object. Defaults to true if not provided.
- Name string
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created.
- display
Name String - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- parent
Type String - The parent type of the Incident Type. Either name or id of the parent type can be used.
- description String
- A succinct description of the Incident Type.
- enabled Boolean
- State of this Incident Type object. Defaults to true if not provided.
- name String
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created.
- display
Name string - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- parent
Type string - The parent type of the Incident Type. Either name or id of the parent type can be used.
- description string
- A succinct description of the Incident Type.
- enabled boolean
- State of this Incident Type object. Defaults to true if not provided.
- name string
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created.
- display_
name str - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- parent_
type str - The parent type of the Incident Type. Either name or id of the parent type can be used.
- description str
- A succinct description of the Incident Type.
- enabled bool
- State of this Incident Type object. Defaults to true if not provided.
- name str
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created.
- display
Name String - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- parent
Type String - The parent type of the Incident Type. Either name or id of the parent type can be used.
- description String
- A succinct description of the Incident Type.
- enabled Boolean
- State of this Incident Type object. Defaults to true if not provided.
- name String
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created.
Outputs
All input properties are implicitly available as output properties. Additionally, the IncidentType resource produces the following output properties:
Look up Existing IncidentType Resource
Get an existing IncidentType 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?: IncidentTypeState, opts?: CustomResourceOptions): IncidentType
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
parent_type: Optional[str] = None,
type: Optional[str] = None) -> IncidentType
func GetIncidentType(ctx *Context, name string, id IDInput, state *IncidentTypeState, opts ...ResourceOption) (*IncidentType, error)
public static IncidentType Get(string name, Input<string> id, IncidentTypeState? state, CustomResourceOptions? opts = null)
public static IncidentType get(String name, Output<String> id, IncidentTypeState state, CustomResourceOptions options)
resources: _: type: pagerduty:IncidentType 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.
- Description string
- A succinct description of the Incident Type.
- Display
Name string - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- Enabled bool
- State of this Incident Type object. Defaults to true if not provided.
- Name string
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created. - Parent
Type string - The parent type of the Incident Type. Either name or id of the parent type can be used.
- Type string
- A string that determines the schema of the object.
- Description string
- A succinct description of the Incident Type.
- Display
Name string - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- Enabled bool
- State of this Incident Type object. Defaults to true if not provided.
- Name string
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created. - Parent
Type string - The parent type of the Incident Type. Either name or id of the parent type can be used.
- Type string
- A string that determines the schema of the object.
- description String
- A succinct description of the Incident Type.
- display
Name String - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- enabled Boolean
- State of this Incident Type object. Defaults to true if not provided.
- name String
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created. - parent
Type String - The parent type of the Incident Type. Either name or id of the parent type can be used.
- type String
- A string that determines the schema of the object.
- description string
- A succinct description of the Incident Type.
- display
Name string - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- enabled boolean
- State of this Incident Type object. Defaults to true if not provided.
- name string
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created. - parent
Type string - The parent type of the Incident Type. Either name or id of the parent type can be used.
- type string
- A string that determines the schema of the object.
- description str
- A succinct description of the Incident Type.
- display_
name str - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- enabled bool
- State of this Incident Type object. Defaults to true if not provided.
- name str
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created. - parent_
type str - The parent type of the Incident Type. Either name or id of the parent type can be used.
- type str
- A string that determines the schema of the object.
- description String
- A succinct description of the Incident Type.
- display
Name String - The display name of the Incident Type. Usage of the prefixes PD, PagerDuty, or the suffixes Default, or (Default) is prohibited.
- enabled Boolean
- State of this Incident Type object. Defaults to true if not provided.
- name String
- The name of the Incident Type. Usage of the suffix
_default
is prohibited. This cannot be changed once the incident type has been created. - parent
Type String - The parent type of the Incident Type. Either name or id of the parent type can be used.
- type String
- A string that determines the schema of the object.
Import
Services can be imported using the id
, e.g.
$ pulumi import pagerduty:index/incidentType:IncidentType main P12345
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- PagerDuty pulumi/pulumi-pagerduty
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
pagerduty
Terraform Provider.