1. Packages
  2. Zenduty Provider
  3. API Docs
  4. Incidents
zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty

zenduty.Incidents

Explore with Pulumi AI

zenduty logo
zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty

    zenduty.Incidents is a resource to manage incidents

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as zenduty from "@pulumi/zenduty";
    
    const incident1 = new zenduty.Incidents("incident1", {
        escalationPolicy: "",
        service: "",
        summary: "",
        title: "",
        user: "",
    });
    
    import pulumi
    import pulumi_zenduty as zenduty
    
    incident1 = zenduty.Incidents("incident1",
        escalation_policy="",
        service="",
        summary="",
        title="",
        user="")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/zenduty/zenduty"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zenduty.NewIncidents(ctx, "incident1", &zenduty.IncidentsArgs{
    			EscalationPolicy: pulumi.String(""),
    			Service:          pulumi.String(""),
    			Summary:          pulumi.String(""),
    			Title:            pulumi.String(""),
    			User:             pulumi.String(""),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zenduty = Pulumi.Zenduty;
    
    return await Deployment.RunAsync(() => 
    {
        var incident1 = new Zenduty.Incidents("incident1", new()
        {
            EscalationPolicy = "",
            Service = "",
            Summary = "",
            Title = "",
            User = "",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zenduty.Incidents;
    import com.pulumi.zenduty.IncidentsArgs;
    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 incident1 = new Incidents("incident1", IncidentsArgs.builder()
                .escalationPolicy("")
                .service("")
                .summary("")
                .title("")
                .user("")
                .build());
    
        }
    }
    
    resources:
      incident1:
        type: zenduty:Incidents
        properties:
          escalationPolicy: ""
          service: ""
          summary: ""
          title: ""
          user: ""
    

    DataTypes

    Required

    • escalation_policy (String)
    • service (String)
    • summary (String)
    • title (String)
    • user (String)

    Optional

    • status (Number)
    • status (Optional) (Number) - values are 2 to acknowledge 3 to resolve

    Create Incidents Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Incidents(name: string, args: IncidentsArgs, opts?: CustomResourceOptions);
    @overload
    def Incidents(resource_name: str,
                  args: IncidentsArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Incidents(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  escalation_policy: Optional[str] = None,
                  service: Optional[str] = None,
                  summary: Optional[str] = None,
                  title: Optional[str] = None,
                  user: Optional[str] = None,
                  incidents_id: Optional[str] = None,
                  status: Optional[float] = None)
    func NewIncidents(ctx *Context, name string, args IncidentsArgs, opts ...ResourceOption) (*Incidents, error)
    public Incidents(string name, IncidentsArgs args, CustomResourceOptions? opts = null)
    public Incidents(String name, IncidentsArgs args)
    public Incidents(String name, IncidentsArgs args, CustomResourceOptions options)
    
    type: zenduty:Incidents
    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 IncidentsArgs
    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 IncidentsArgs
    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 IncidentsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IncidentsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IncidentsArgs
    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 incidentsResource = new Zenduty.Incidents("incidentsResource", new()
    {
        EscalationPolicy = "string",
        Service = "string",
        Summary = "string",
        Title = "string",
        User = "string",
        IncidentsId = "string",
        Status = 0,
    });
    
    example, err := zenduty.NewIncidents(ctx, "incidentsResource", &zenduty.IncidentsArgs{
    EscalationPolicy: pulumi.String("string"),
    Service: pulumi.String("string"),
    Summary: pulumi.String("string"),
    Title: pulumi.String("string"),
    User: pulumi.String("string"),
    IncidentsId: pulumi.String("string"),
    Status: pulumi.Float64(0),
    })
    
    var incidentsResource = new Incidents("incidentsResource", IncidentsArgs.builder()
        .escalationPolicy("string")
        .service("string")
        .summary("string")
        .title("string")
        .user("string")
        .incidentsId("string")
        .status(0)
        .build());
    
    incidents_resource = zenduty.Incidents("incidentsResource",
        escalation_policy="string",
        service="string",
        summary="string",
        title="string",
        user="string",
        incidents_id="string",
        status=0)
    
    const incidentsResource = new zenduty.Incidents("incidentsResource", {
        escalationPolicy: "string",
        service: "string",
        summary: "string",
        title: "string",
        user: "string",
        incidentsId: "string",
        status: 0,
    });
    
    type: zenduty:Incidents
    properties:
        escalationPolicy: string
        incidentsId: string
        service: string
        status: 0
        summary: string
        title: string
        user: string
    

    Incidents 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 Incidents resource accepts the following input properties:

    EscalationPolicy string
    unique_id of the escalation policy.
    Service string
    Unique_ID of the service.
    Summary string
    The summary of the incident.
    Title string
    The title of the incident.
    User string
    Username of the user.
    IncidentsId string
    Status double
    EscalationPolicy string
    unique_id of the escalation policy.
    Service string
    Unique_ID of the service.
    Summary string
    The summary of the incident.
    Title string
    The title of the incident.
    User string
    Username of the user.
    IncidentsId string
    Status float64
    escalationPolicy String
    unique_id of the escalation policy.
    service String
    Unique_ID of the service.
    summary String
    The summary of the incident.
    title String
    The title of the incident.
    user String
    Username of the user.
    incidentsId String
    status Double
    escalationPolicy string
    unique_id of the escalation policy.
    service string
    Unique_ID of the service.
    summary string
    The summary of the incident.
    title string
    The title of the incident.
    user string
    Username of the user.
    incidentsId string
    status number
    escalation_policy str
    unique_id of the escalation policy.
    service str
    Unique_ID of the service.
    summary str
    The summary of the incident.
    title str
    The title of the incident.
    user str
    Username of the user.
    incidents_id str
    status float
    escalationPolicy String
    unique_id of the escalation policy.
    service String
    Unique_ID of the service.
    summary String
    The summary of the incident.
    title String
    The title of the incident.
    user String
    Username of the user.
    incidentsId String
    status Number

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Incidents 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 Incidents Resource

    Get an existing Incidents 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?: IncidentsState, opts?: CustomResourceOptions): Incidents
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            escalation_policy: Optional[str] = None,
            incidents_id: Optional[str] = None,
            service: Optional[str] = None,
            status: Optional[float] = None,
            summary: Optional[str] = None,
            title: Optional[str] = None,
            user: Optional[str] = None) -> Incidents
    func GetIncidents(ctx *Context, name string, id IDInput, state *IncidentsState, opts ...ResourceOption) (*Incidents, error)
    public static Incidents Get(string name, Input<string> id, IncidentsState? state, CustomResourceOptions? opts = null)
    public static Incidents get(String name, Output<String> id, IncidentsState state, CustomResourceOptions options)
    resources:  _:    type: zenduty:Incidents    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.
    The following state arguments are supported:
    EscalationPolicy string
    unique_id of the escalation policy.
    IncidentsId string
    Service string
    Unique_ID of the service.
    Status double
    Summary string
    The summary of the incident.
    Title string
    The title of the incident.
    User string
    Username of the user.
    EscalationPolicy string
    unique_id of the escalation policy.
    IncidentsId string
    Service string
    Unique_ID of the service.
    Status float64
    Summary string
    The summary of the incident.
    Title string
    The title of the incident.
    User string
    Username of the user.
    escalationPolicy String
    unique_id of the escalation policy.
    incidentsId String
    service String
    Unique_ID of the service.
    status Double
    summary String
    The summary of the incident.
    title String
    The title of the incident.
    user String
    Username of the user.
    escalationPolicy string
    unique_id of the escalation policy.
    incidentsId string
    service string
    Unique_ID of the service.
    status number
    summary string
    The summary of the incident.
    title string
    The title of the incident.
    user string
    Username of the user.
    escalation_policy str
    unique_id of the escalation policy.
    incidents_id str
    service str
    Unique_ID of the service.
    status float
    summary str
    The summary of the incident.
    title str
    The title of the incident.
    user str
    Username of the user.
    escalationPolicy String
    unique_id of the escalation policy.
    incidentsId String
    service String
    Unique_ID of the service.
    status Number
    summary String
    The summary of the incident.
    title String
    The title of the incident.
    user String
    Username of the user.

    Package Details

    Repository
    zenduty zenduty/terraform-provider-zenduty
    License
    Notes
    This Pulumi package is based on the zenduty Terraform Provider.
    zenduty logo
    zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty