zenduty.TaskTemplates
Explore with Pulumi AI
Provides a Zenduty TaskTemplates Resource. This allows TaskTemplates 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 demotemplate = new zenduty.TaskTemplates("demotemplate", {
summary: "this is an example template",
teamId: zenduty_teams.exampleteam.id,
});
import pulumi
import pulumi_zenduty as zenduty
demotemplate = zenduty.TaskTemplates("demotemplate",
summary="this is an example template",
team_id=zenduty_teams["exampleteam"]["id"])
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.NewTaskTemplates(ctx, "demotemplate", &zenduty.TaskTemplatesArgs{
Summary: pulumi.String("this is an example template"),
TeamId: pulumi.Any(zenduty_teams.Exampleteam.Id),
})
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 demotemplate = new Zenduty.TaskTemplates("demotemplate", new()
{
Summary = "this is an example template",
TeamId = zenduty_teams.Exampleteam.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zenduty.TaskTemplates;
import com.pulumi.zenduty.TaskTemplatesArgs;
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 demotemplate = new TaskTemplates("demotemplate", TaskTemplatesArgs.builder()
.summary("this is an example template")
.teamId(zenduty_teams.exampleteam().id())
.build());
}
}
resources:
demotemplate:
type: zenduty:TaskTemplates
properties:
summary: this is an example template
teamId: ${zenduty_teams.exampleteam.id}
Create TaskTemplates Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TaskTemplates(name: string, args: TaskTemplatesArgs, opts?: CustomResourceOptions);
@overload
def TaskTemplates(resource_name: str,
args: TaskTemplatesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TaskTemplates(resource_name: str,
opts: Optional[ResourceOptions] = None,
summary: Optional[str] = None,
team_id: Optional[str] = None,
name: Optional[str] = None,
task_templates_id: Optional[str] = None)
func NewTaskTemplates(ctx *Context, name string, args TaskTemplatesArgs, opts ...ResourceOption) (*TaskTemplates, error)
public TaskTemplates(string name, TaskTemplatesArgs args, CustomResourceOptions? opts = null)
public TaskTemplates(String name, TaskTemplatesArgs args)
public TaskTemplates(String name, TaskTemplatesArgs args, CustomResourceOptions options)
type: zenduty:TaskTemplates
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 TaskTemplatesArgs
- 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 TaskTemplatesArgs
- 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 TaskTemplatesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TaskTemplatesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TaskTemplatesArgs
- 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 taskTemplatesResource = new Zenduty.TaskTemplates("taskTemplatesResource", new()
{
Summary = "string",
TeamId = "string",
Name = "string",
TaskTemplatesId = "string",
});
example, err := zenduty.NewTaskTemplates(ctx, "taskTemplatesResource", &zenduty.TaskTemplatesArgs{
Summary: pulumi.String("string"),
TeamId: pulumi.String("string"),
Name: pulumi.String("string"),
TaskTemplatesId: pulumi.String("string"),
})
var taskTemplatesResource = new TaskTemplates("taskTemplatesResource", TaskTemplatesArgs.builder()
.summary("string")
.teamId("string")
.name("string")
.taskTemplatesId("string")
.build());
task_templates_resource = zenduty.TaskTemplates("taskTemplatesResource",
summary="string",
team_id="string",
name="string",
task_templates_id="string")
const taskTemplatesResource = new zenduty.TaskTemplates("taskTemplatesResource", {
summary: "string",
teamId: "string",
name: "string",
taskTemplatesId: "string",
});
type: zenduty:TaskTemplates
properties:
name: string
summary: string
taskTemplatesId: string
teamId: string
TaskTemplates 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 TaskTemplates resource accepts the following input properties:
- Summary string
- The summary of the tasktemplate.
- Team
Id string - The unique_id of team to create the tasktemplate in.
- Name string
- The name of the tasktemplate.
- Task
Templates stringId - The ID of the Zenduty TaskTemplate.
- Summary string
- The summary of the tasktemplate.
- Team
Id string - The unique_id of team to create the tasktemplate in.
- Name string
- The name of the tasktemplate.
- Task
Templates stringId - The ID of the Zenduty TaskTemplate.
- summary String
- The summary of the tasktemplate.
- team
Id String - The unique_id of team to create the tasktemplate in.
- name String
- The name of the tasktemplate.
- task
Templates StringId - The ID of the Zenduty TaskTemplate.
- summary string
- The summary of the tasktemplate.
- team
Id string - The unique_id of team to create the tasktemplate in.
- name string
- The name of the tasktemplate.
- task
Templates stringId - The ID of the Zenduty TaskTemplate.
- summary str
- The summary of the tasktemplate.
- team_
id str - The unique_id of team to create the tasktemplate in.
- name str
- The name of the tasktemplate.
- task_
templates_ strid - The ID of the Zenduty TaskTemplate.
- summary String
- The summary of the tasktemplate.
- team
Id String - The unique_id of team to create the tasktemplate in.
- name String
- The name of the tasktemplate.
- task
Templates StringId - The ID of the Zenduty TaskTemplate.
Outputs
All input properties are implicitly available as output properties. Additionally, the TaskTemplates 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 TaskTemplates Resource
Get an existing TaskTemplates 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?: TaskTemplatesState, opts?: CustomResourceOptions): TaskTemplates
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
creation_date: Optional[str] = None,
name: Optional[str] = None,
summary: Optional[str] = None,
task_templates_id: Optional[str] = None,
team_id: Optional[str] = None,
unique_id: Optional[str] = None) -> TaskTemplates
func GetTaskTemplates(ctx *Context, name string, id IDInput, state *TaskTemplatesState, opts ...ResourceOption) (*TaskTemplates, error)
public static TaskTemplates Get(string name, Input<string> id, TaskTemplatesState? state, CustomResourceOptions? opts = null)
public static TaskTemplates get(String name, Output<String> id, TaskTemplatesState state, CustomResourceOptions options)
resources: _: type: zenduty:TaskTemplates 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.
- Creation
Date string - Name string
- The name of the tasktemplate.
- Summary string
- The summary of the tasktemplate.
- Task
Templates stringId - The ID of the Zenduty TaskTemplate.
- Team
Id string - The unique_id of team to create the tasktemplate in.
- Unique
Id string
- Creation
Date string - Name string
- The name of the tasktemplate.
- Summary string
- The summary of the tasktemplate.
- Task
Templates stringId - The ID of the Zenduty TaskTemplate.
- Team
Id string - The unique_id of team to create the tasktemplate in.
- Unique
Id string
- creation
Date String - name String
- The name of the tasktemplate.
- summary String
- The summary of the tasktemplate.
- task
Templates StringId - The ID of the Zenduty TaskTemplate.
- team
Id String - The unique_id of team to create the tasktemplate in.
- unique
Id String
- creation
Date string - name string
- The name of the tasktemplate.
- summary string
- The summary of the tasktemplate.
- task
Templates stringId - The ID of the Zenduty TaskTemplate.
- team
Id string - The unique_id of team to create the tasktemplate in.
- unique
Id string
- creation_
date str - name str
- The name of the tasktemplate.
- summary str
- The summary of the tasktemplate.
- task_
templates_ strid - The ID of the Zenduty TaskTemplate.
- team_
id str - The unique_id of team to create the tasktemplate in.
- unique_
id str
- creation
Date String - name String
- The name of the tasktemplate.
- summary String
- The summary of the tasktemplate.
- task
Templates StringId - The ID of the Zenduty TaskTemplate.
- team
Id String - The unique_id of team to create the tasktemplate in.
- unique
Id String
Import
Team TaskTemplate can be imported using the team_id
(ie. unique_id of the team) and task_template_id
(ie. unique_id of the task template), e.g.
hcl
resource “zenduty_task_templates” “demotemplate” {
}
$ pulumi import zenduty:index/taskTemplates:TaskTemplates demotemplate team_id/task_template_id`
$ terraform state show zenduty_task_templates.demotemplate
* copy the output data and paste inside zenduty_task_templates.demotemplate 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.