zenduty.PostIncidentTasks
Explore with Pulumi AI
Provides a Zenduty PostIncidentTasks Resource. This allows PostIncidentTasks to be created, updated, and deleted.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as zenduty from "@pulumi/zenduty";
const exampleteam = new zenduty.Teams("exampleteam", {});
import pulumi
import pulumi_zenduty as zenduty
exampleteam = zenduty.Teams("exampleteam")
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.NewTeams(ctx, "exampleteam", nil)
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 exampleteam = new Zenduty.Teams("exampleteam");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zenduty.Teams;
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 exampleteam = new Teams("exampleteam");
}
}
resources:
exampleteam:
type: zenduty:Teams
import * as pulumi from "@pulumi/pulumi";
import * as zenduty from "@pulumi/zenduty";
const demotask = new zenduty.PostIncidentTasks("demotask", {
title: "demo task template",
description: "this is a description of demo task",
teamId: zenduty_teams.exampleteam.id,
dueInTime: "YYYY-MM-DD HH:MM",
status: 0,
});
import pulumi
import pulumi_zenduty as zenduty
demotask = zenduty.PostIncidentTasks("demotask",
title="demo task template",
description="this is a description of demo task",
team_id=zenduty_teams["exampleteam"]["id"],
due_in_time="YYYY-MM-DD HH:MM",
status=0)
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.NewPostIncidentTasks(ctx, "demotask", &zenduty.PostIncidentTasksArgs{
Title: pulumi.String("demo task template"),
Description: pulumi.String("this is a description of demo task"),
TeamId: pulumi.Any(zenduty_teams.Exampleteam.Id),
DueInTime: pulumi.String("YYYY-MM-DD HH:MM"),
Status: pulumi.Float64(0),
})
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 demotask = new Zenduty.PostIncidentTasks("demotask", new()
{
Title = "demo task template",
Description = "this is a description of demo task",
TeamId = zenduty_teams.Exampleteam.Id,
DueInTime = "YYYY-MM-DD HH:MM",
Status = 0,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zenduty.PostIncidentTasks;
import com.pulumi.zenduty.PostIncidentTasksArgs;
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 demotask = new PostIncidentTasks("demotask", PostIncidentTasksArgs.builder()
.title("demo task template")
.description("this is a description of demo task")
.teamId(zenduty_teams.exampleteam().id())
.dueInTime("YYYY-MM-DD HH:MM")
.status(0)
.build());
}
}
resources:
demotask:
type: zenduty:PostIncidentTasks
properties:
title: demo task template
description: this is a description of demo task
teamId: ${zenduty_teams.exampleteam.id}
dueInTime: YYYY-MM-DD HH:MM
status: 0
Create PostIncidentTasks Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PostIncidentTasks(name: string, args: PostIncidentTasksArgs, opts?: CustomResourceOptions);
@overload
def PostIncidentTasks(resource_name: str,
args: PostIncidentTasksArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PostIncidentTasks(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
team_id: Optional[str] = None,
title: Optional[str] = None,
assigned_to: Optional[str] = None,
due_in_time: Optional[str] = None,
post_incident_tasks_id: Optional[str] = None,
status: Optional[float] = None)
func NewPostIncidentTasks(ctx *Context, name string, args PostIncidentTasksArgs, opts ...ResourceOption) (*PostIncidentTasks, error)
public PostIncidentTasks(string name, PostIncidentTasksArgs args, CustomResourceOptions? opts = null)
public PostIncidentTasks(String name, PostIncidentTasksArgs args)
public PostIncidentTasks(String name, PostIncidentTasksArgs args, CustomResourceOptions options)
type: zenduty:PostIncidentTasks
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 PostIncidentTasksArgs
- 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 PostIncidentTasksArgs
- 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 PostIncidentTasksArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PostIncidentTasksArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PostIncidentTasksArgs
- 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 postIncidentTasksResource = new Zenduty.PostIncidentTasks("postIncidentTasksResource", new()
{
Description = "string",
TeamId = "string",
Title = "string",
AssignedTo = "string",
DueInTime = "string",
PostIncidentTasksId = "string",
Status = 0,
});
example, err := zenduty.NewPostIncidentTasks(ctx, "postIncidentTasksResource", &zenduty.PostIncidentTasksArgs{
Description: pulumi.String("string"),
TeamId: pulumi.String("string"),
Title: pulumi.String("string"),
AssignedTo: pulumi.String("string"),
DueInTime: pulumi.String("string"),
PostIncidentTasksId: pulumi.String("string"),
Status: pulumi.Float64(0),
})
var postIncidentTasksResource = new PostIncidentTasks("postIncidentTasksResource", PostIncidentTasksArgs.builder()
.description("string")
.teamId("string")
.title("string")
.assignedTo("string")
.dueInTime("string")
.postIncidentTasksId("string")
.status(0)
.build());
post_incident_tasks_resource = zenduty.PostIncidentTasks("postIncidentTasksResource",
description="string",
team_id="string",
title="string",
assigned_to="string",
due_in_time="string",
post_incident_tasks_id="string",
status=0)
const postIncidentTasksResource = new zenduty.PostIncidentTasks("postIncidentTasksResource", {
description: "string",
teamId: "string",
title: "string",
assignedTo: "string",
dueInTime: "string",
postIncidentTasksId: "string",
status: 0,
});
type: zenduty:PostIncidentTasks
properties:
assignedTo: string
description: string
dueInTime: string
postIncidentTasksId: string
status: 0
teamId: string
title: string
PostIncidentTasks 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 PostIncidentTasks resource accepts the following input properties:
- Description string
- The description of the task.
- Team
Id string - The unique_id of team.
- Title string
- The title of the task.
- Assigned
To string - username of the user to assign the task
- Due
In stringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- Post
Incident stringTasks Id - The ID of the Zenduty PostIncidentTasks.
- Status double
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done
- Description string
- The description of the task.
- Team
Id string - The unique_id of team.
- Title string
- The title of the task.
- Assigned
To string - username of the user to assign the task
- Due
In stringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- Post
Incident stringTasks Id - The ID of the Zenduty PostIncidentTasks.
- Status float64
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done
- description String
- The description of the task.
- team
Id String - The unique_id of team.
- title String
- The title of the task.
- assigned
To String - username of the user to assign the task
- due
In StringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- post
Incident StringTasks Id - The ID of the Zenduty PostIncidentTasks.
- status Double
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done
- description string
- The description of the task.
- team
Id string - The unique_id of team.
- title string
- The title of the task.
- assigned
To string - username of the user to assign the task
- due
In stringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- post
Incident stringTasks Id - The ID of the Zenduty PostIncidentTasks.
- status number
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done
- description str
- The description of the task.
- team_
id str - The unique_id of team.
- title str
- The title of the task.
- assigned_
to str - username of the user to assign the task
- due_
in_ strtime - The due time of the task in format YYYY-MM-DD HH:MM.
- post_
incident_ strtasks_ id - The ID of the Zenduty PostIncidentTasks.
- status float
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done
- description String
- The description of the task.
- team
Id String - The unique_id of team.
- title String
- The title of the task.
- assigned
To String - username of the user to assign the task
- due
In StringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- post
Incident StringTasks Id - The ID of the Zenduty PostIncidentTasks.
- status Number
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done
Outputs
All input properties are implicitly available as output properties. Additionally, the PostIncidentTasks resource produces the following output properties:
- Creation
Date string - Id string
- The provider-assigned unique ID for this managed resource.
- Unique
Id string
- Creation
Date string - Id string
- The provider-assigned unique ID for this managed resource.
- Unique
Id string
- creation
Date String - id String
- The provider-assigned unique ID for this managed resource.
- unique
Id String
- creation
Date string - id string
- The provider-assigned unique ID for this managed resource.
- unique
Id string
- creation_
date str - id str
- The provider-assigned unique ID for this managed resource.
- unique_
id str
- creation
Date String - id String
- The provider-assigned unique ID for this managed resource.
- unique
Id String
Look up Existing PostIncidentTasks Resource
Get an existing PostIncidentTasks 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?: PostIncidentTasksState, opts?: CustomResourceOptions): PostIncidentTasks
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
assigned_to: Optional[str] = None,
creation_date: Optional[str] = None,
description: Optional[str] = None,
due_in_time: Optional[str] = None,
post_incident_tasks_id: Optional[str] = None,
status: Optional[float] = None,
team_id: Optional[str] = None,
title: Optional[str] = None,
unique_id: Optional[str] = None) -> PostIncidentTasks
func GetPostIncidentTasks(ctx *Context, name string, id IDInput, state *PostIncidentTasksState, opts ...ResourceOption) (*PostIncidentTasks, error)
public static PostIncidentTasks Get(string name, Input<string> id, PostIncidentTasksState? state, CustomResourceOptions? opts = null)
public static PostIncidentTasks get(String name, Output<String> id, PostIncidentTasksState state, CustomResourceOptions options)
resources: _: type: zenduty:PostIncidentTasks 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.
- Assigned
To string - username of the user to assign the task
- Creation
Date string - Description string
- The description of the task.
- Due
In stringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- Post
Incident stringTasks Id - The ID of the Zenduty PostIncidentTasks.
- Status double
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done - Team
Id string - The unique_id of team.
- Title string
- The title of the task.
- Unique
Id string
- Assigned
To string - username of the user to assign the task
- Creation
Date string - Description string
- The description of the task.
- Due
In stringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- Post
Incident stringTasks Id - The ID of the Zenduty PostIncidentTasks.
- Status float64
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done - Team
Id string - The unique_id of team.
- Title string
- The title of the task.
- Unique
Id string
- assigned
To String - username of the user to assign the task
- creation
Date String - description String
- The description of the task.
- due
In StringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- post
Incident StringTasks Id - The ID of the Zenduty PostIncidentTasks.
- status Double
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done - team
Id String - The unique_id of team.
- title String
- The title of the task.
- unique
Id String
- assigned
To string - username of the user to assign the task
- creation
Date string - description string
- The description of the task.
- due
In stringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- post
Incident stringTasks Id - The ID of the Zenduty PostIncidentTasks.
- status number
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done - team
Id string - The unique_id of team.
- title string
- The title of the task.
- unique
Id string
- assigned_
to str - username of the user to assign the task
- creation_
date str - description str
- The description of the task.
- due_
in_ strtime - The due time of the task in format YYYY-MM-DD HH:MM.
- post_
incident_ strtasks_ id - The ID of the Zenduty PostIncidentTasks.
- status float
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done - team_
id str - The unique_id of team.
- title str
- The title of the task.
- unique_
id str
- assigned
To String - username of the user to assign the task
- creation
Date String - description String
- The description of the task.
- due
In StringTime - The due time of the task in format YYYY-MM-DD HH:MM.
- post
Incident StringTasks Id - The ID of the Zenduty PostIncidentTasks.
- status Number
- the status of the task choices are
0
is To-Do,1
is In-Progress,2
- Done - team
Id String - The unique_id of team.
- title String
- The title of the task.
- unique
Id String
Import
Team PostIncidentTask can be imported using the team_id
(ie. unique_id of the team) and task_id
(ie. unique_id of the task template)
hcl
resource “zenduty_post_incident_tasks” “demotask” {
}
$ pulumi import zenduty:index/postIncidentTasks:PostIncidentTasks demotask team_id/task_id`
$ terraform state show zenduty_post_incident_tasks.demotask
* copy the output data and paste inside zenduty_post_incident_tasks.demotask resource block and remove the id attribute
$ pulumi preview
to verify the import
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zenduty zenduty/terraform-provider-zenduty
- License
- Notes
- This Pulumi package is based on the
zenduty
Terraform Provider.