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

zenduty.Roles

Explore with Pulumi AI

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

    Provides a Zenduty Role Resource. This allows Roles 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 exampleRole = new zenduty.Roles("exampleRole", {
        team: zenduty_teams.exampleteam.id,
        title: "Example Role",
        description: "Role Description",
    });
    
    import pulumi
    import pulumi_zenduty as zenduty
    
    example_role = zenduty.Roles("exampleRole",
        team=zenduty_teams["exampleteam"]["id"],
        title="Example Role",
        description="Role Description")
    
    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.NewRoles(ctx, "exampleRole", &zenduty.RolesArgs{
    			Team:        pulumi.Any(zenduty_teams.Exampleteam.Id),
    			Title:       pulumi.String("Example Role"),
    			Description: pulumi.String("Role Description"),
    		})
    		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 exampleRole = new Zenduty.Roles("exampleRole", new()
        {
            Team = zenduty_teams.Exampleteam.Id,
            Title = "Example Role",
            Description = "Role Description",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zenduty.Roles;
    import com.pulumi.zenduty.RolesArgs;
    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 exampleRole = new Roles("exampleRole", RolesArgs.builder()
                .team(zenduty_teams.exampleteam().id())
                .title("Example Role")
                .description("Role Description")
                .build());
    
        }
    }
    
    resources:
      exampleRole:
        type: zenduty:Roles
        properties:
          team: ${zenduty_teams.exampleteam.id}
          title: Example Role
          description: Role Description
    

    Data Types

    Required fields:

    • description (String)
    • team (String)
    • title (String)

    Optional fields:

    • rank (Number) 1 to 10

    Create Roles Resource

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

    Constructor syntax

    new Roles(name: string, args: RolesArgs, opts?: CustomResourceOptions);
    @overload
    def Roles(resource_name: str,
              args: RolesArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Roles(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              description: Optional[str] = None,
              team: Optional[str] = None,
              title: Optional[str] = None,
              creation_date: Optional[str] = None,
              rank: Optional[float] = None,
              roles_id: Optional[str] = None,
              unique_id: Optional[str] = None)
    func NewRoles(ctx *Context, name string, args RolesArgs, opts ...ResourceOption) (*Roles, error)
    public Roles(string name, RolesArgs args, CustomResourceOptions? opts = null)
    public Roles(String name, RolesArgs args)
    public Roles(String name, RolesArgs args, CustomResourceOptions options)
    
    type: zenduty:Roles
    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 RolesArgs
    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 RolesArgs
    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 RolesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RolesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RolesArgs
    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 rolesResource = new Zenduty.Roles("rolesResource", new()
    {
        Description = "string",
        Team = "string",
        Title = "string",
        CreationDate = "string",
        Rank = 0,
        RolesId = "string",
        UniqueId = "string",
    });
    
    example, err := zenduty.NewRoles(ctx, "rolesResource", &zenduty.RolesArgs{
    Description: pulumi.String("string"),
    Team: pulumi.String("string"),
    Title: pulumi.String("string"),
    CreationDate: pulumi.String("string"),
    Rank: pulumi.Float64(0),
    RolesId: pulumi.String("string"),
    UniqueId: pulumi.String("string"),
    })
    
    var rolesResource = new Roles("rolesResource", RolesArgs.builder()
        .description("string")
        .team("string")
        .title("string")
        .creationDate("string")
        .rank(0)
        .rolesId("string")
        .uniqueId("string")
        .build());
    
    roles_resource = zenduty.Roles("rolesResource",
        description="string",
        team="string",
        title="string",
        creation_date="string",
        rank=0,
        roles_id="string",
        unique_id="string")
    
    const rolesResource = new zenduty.Roles("rolesResource", {
        description: "string",
        team: "string",
        title: "string",
        creationDate: "string",
        rank: 0,
        rolesId: "string",
        uniqueId: "string",
    });
    
    type: zenduty:Roles
    properties:
        creationDate: string
        description: string
        rank: 0
        rolesId: string
        team: string
        title: string
        uniqueId: string
    

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

    Description string
    The description of the role.
    Team string
    The unique_id of team to create the role in.
    Title string
    The title of the role.
    CreationDate string
    Rank double
    The rank value of the role. ranges from 1 to 10.
    RolesId string
    The ID of the Zenduty Role.
    UniqueId string
    Description string
    The description of the role.
    Team string
    The unique_id of team to create the role in.
    Title string
    The title of the role.
    CreationDate string
    Rank float64
    The rank value of the role. ranges from 1 to 10.
    RolesId string
    The ID of the Zenduty Role.
    UniqueId string
    description String
    The description of the role.
    team String
    The unique_id of team to create the role in.
    title String
    The title of the role.
    creationDate String
    rank Double
    The rank value of the role. ranges from 1 to 10.
    rolesId String
    The ID of the Zenduty Role.
    uniqueId String
    description string
    The description of the role.
    team string
    The unique_id of team to create the role in.
    title string
    The title of the role.
    creationDate string
    rank number
    The rank value of the role. ranges from 1 to 10.
    rolesId string
    The ID of the Zenduty Role.
    uniqueId string
    description str
    The description of the role.
    team str
    The unique_id of team to create the role in.
    title str
    The title of the role.
    creation_date str
    rank float
    The rank value of the role. ranges from 1 to 10.
    roles_id str
    The ID of the Zenduty Role.
    unique_id str
    description String
    The description of the role.
    team String
    The unique_id of team to create the role in.
    title String
    The title of the role.
    creationDate String
    rank Number
    The rank value of the role. ranges from 1 to 10.
    rolesId String
    The ID of the Zenduty Role.
    uniqueId String

    Outputs

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

    Get an existing Roles 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?: RolesState, opts?: CustomResourceOptions): Roles
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            creation_date: Optional[str] = None,
            description: Optional[str] = None,
            rank: Optional[float] = None,
            roles_id: Optional[str] = None,
            team: Optional[str] = None,
            title: Optional[str] = None,
            unique_id: Optional[str] = None) -> Roles
    func GetRoles(ctx *Context, name string, id IDInput, state *RolesState, opts ...ResourceOption) (*Roles, error)
    public static Roles Get(string name, Input<string> id, RolesState? state, CustomResourceOptions? opts = null)
    public static Roles get(String name, Output<String> id, RolesState state, CustomResourceOptions options)
    resources:  _:    type: zenduty:Roles    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:
    CreationDate string
    Description string
    The description of the role.
    Rank double
    The rank value of the role. ranges from 1 to 10.
    RolesId string
    The ID of the Zenduty Role.
    Team string
    The unique_id of team to create the role in.
    Title string
    The title of the role.
    UniqueId string
    CreationDate string
    Description string
    The description of the role.
    Rank float64
    The rank value of the role. ranges from 1 to 10.
    RolesId string
    The ID of the Zenduty Role.
    Team string
    The unique_id of team to create the role in.
    Title string
    The title of the role.
    UniqueId string
    creationDate String
    description String
    The description of the role.
    rank Double
    The rank value of the role. ranges from 1 to 10.
    rolesId String
    The ID of the Zenduty Role.
    team String
    The unique_id of team to create the role in.
    title String
    The title of the role.
    uniqueId String
    creationDate string
    description string
    The description of the role.
    rank number
    The rank value of the role. ranges from 1 to 10.
    rolesId string
    The ID of the Zenduty Role.
    team string
    The unique_id of team to create the role in.
    title string
    The title of the role.
    uniqueId string
    creation_date str
    description str
    The description of the role.
    rank float
    The rank value of the role. ranges from 1 to 10.
    roles_id str
    The ID of the Zenduty Role.
    team str
    The unique_id of team to create the role in.
    title str
    The title of the role.
    unique_id str
    creationDate String
    description String
    The description of the role.
    rank Number
    The rank value of the role. ranges from 1 to 10.
    rolesId String
    The ID of the Zenduty Role.
    team String
    The unique_id of team to create the role in.
    title String
    The title of the role.
    uniqueId String

    Import

    Incident Roles can be imported using the team_id(ie. unique_id of the team) and role_id(ie. unique_id of the role), e.g.

    hcl

    resource “zenduty_roles” “role1” {

    }

    $ pulumi import zenduty:index/roles:Roles role1 team_id/role_id`
    

    $ terraform state show zenduty_roles.role1

    * copy the output data and paste inside zenduty_roles.role1 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.
    zenduty logo
    zenduty 1.0.3 published on Monday, Mar 24, 2025 by zenduty