1. Packages
  2. Packages
  3. Rootly
  4. API Docs
  5. Functionality
Viewing docs for Rootly v3.4.0
published on Tuesday, May 12, 2026 by rootlyhq
rootly logo
Viewing docs for Rootly v3.4.0
published on Tuesday, May 12, 2026 by rootlyhq

    Example Usage

    resource "rootly_functionality" "add_items_to_card" {
      name          = "Add items to cart"
      color         = "#800080"
      notify_emails = ["foo@acme.com", "bar@acme.com"]
      slack_aliases {
        id   = "S0614TZR7"
        name = "Alias 1" // Any string really
      }
      slack_channels {
        id   = "C06A4RZR9"
        name = "Channel 1" // Any string really
      }
      slack_channels {
        id   = "C02T4RYR2"
        name = "Channel 2" // Any string really
      }
    }
    
    resource "rootly_functionality" "logging_in" {
      name          = "Logging In"
      color         = "#800080"
      notify_emails = ["foo@acme.com", "bar@acme.com"]
      slack_aliases {
        id   = "S0614TZR7"
        name = "Alias 1" // Any string really
      }
      slack_channels {
        id   = "C06A4RZR9"
        name = "Channel 1" // Any string really
      }
      slack_channels {
        id   = "C02T4RYR2"
        name = "Channel 2" // Any string really
      }
    }
    

    Create Functionality Resource

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

    Constructor syntax

    new Functionality(name: string, args?: FunctionalityArgs, opts?: CustomResourceOptions);
    @overload
    def Functionality(resource_name: str,
                      args: Optional[FunctionalityArgs] = None,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def Functionality(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      backstage_id: Optional[str] = None,
                      color: Optional[str] = None,
                      cortex_id: Optional[str] = None,
                      description: Optional[str] = None,
                      environment_ids: Optional[Sequence[str]] = None,
                      escalation_policy_id: Optional[str] = None,
                      external_id: Optional[str] = None,
                      name: Optional[str] = None,
                      notify_emails: Optional[Sequence[str]] = None,
                      opsgenie_id: Optional[str] = None,
                      opsgenie_team_id: Optional[str] = None,
                      owner_group_ids: Optional[Sequence[str]] = None,
                      owner_user_ids: Optional[Sequence[int]] = None,
                      pagerduty_id: Optional[str] = None,
                      position: Optional[int] = None,
                      properties: Optional[Sequence[FunctionalityPropertyArgs]] = None,
                      public_description: Optional[str] = None,
                      service_ids: Optional[Sequence[str]] = None,
                      service_now_ci_sys_id: Optional[str] = None,
                      slack_aliases: Optional[Sequence[FunctionalitySlackAliasArgs]] = None,
                      slack_channels: Optional[Sequence[FunctionalitySlackChannelArgs]] = None,
                      slug: Optional[str] = None)
    func NewFunctionality(ctx *Context, name string, args *FunctionalityArgs, opts ...ResourceOption) (*Functionality, error)
    public Functionality(string name, FunctionalityArgs? args = null, CustomResourceOptions? opts = null)
    public Functionality(String name, FunctionalityArgs args)
    public Functionality(String name, FunctionalityArgs args, CustomResourceOptions options)
    
    type: rootly:Functionality
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "rootly_functionality" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args FunctionalityArgs
    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 FunctionalityArgs
    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 FunctionalityArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FunctionalityArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FunctionalityArgs
    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 functionalityResource = new Rootly.Functionality("functionalityResource", new()
    {
        BackstageId = "string",
        Color = "string",
        CortexId = "string",
        Description = "string",
        EnvironmentIds = new[]
        {
            "string",
        },
        EscalationPolicyId = "string",
        ExternalId = "string",
        Name = "string",
        NotifyEmails = new[]
        {
            "string",
        },
        OpsgenieId = "string",
        OpsgenieTeamId = "string",
        OwnerGroupIds = new[]
        {
            "string",
        },
        OwnerUserIds = new[]
        {
            0,
        },
        PagerdutyId = "string",
        Position = 0,
        Properties = new[]
        {
            new Rootly.Inputs.FunctionalityPropertyArgs
            {
                CatalogPropertyId = "string",
                Value = "string",
            },
        },
        PublicDescription = "string",
        ServiceIds = new[]
        {
            "string",
        },
        ServiceNowCiSysId = "string",
        SlackAliases = new[]
        {
            new Rootly.Inputs.FunctionalitySlackAliasArgs
            {
                Id = "string",
                Name = "string",
            },
        },
        SlackChannels = new[]
        {
            new Rootly.Inputs.FunctionalitySlackChannelArgs
            {
                Id = "string",
                Name = "string",
            },
        },
        Slug = "string",
    });
    
    example, err := rootly.NewFunctionality(ctx, "functionalityResource", &rootly.FunctionalityArgs{
    	BackstageId: pulumi.String("string"),
    	Color:       pulumi.String("string"),
    	CortexId:    pulumi.String("string"),
    	Description: pulumi.String("string"),
    	EnvironmentIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	EscalationPolicyId: pulumi.String("string"),
    	ExternalId:         pulumi.String("string"),
    	Name:               pulumi.String("string"),
    	NotifyEmails: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	OpsgenieId:     pulumi.String("string"),
    	OpsgenieTeamId: pulumi.String("string"),
    	OwnerGroupIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	OwnerUserIds: pulumi.IntArray{
    		pulumi.Int(0),
    	},
    	PagerdutyId: pulumi.String("string"),
    	Position:    pulumi.Int(0),
    	Properties: rootly.FunctionalityPropertyArray{
    		&rootly.FunctionalityPropertyArgs{
    			CatalogPropertyId: pulumi.String("string"),
    			Value:             pulumi.String("string"),
    		},
    	},
    	PublicDescription: pulumi.String("string"),
    	ServiceIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ServiceNowCiSysId: pulumi.String("string"),
    	SlackAliases: rootly.FunctionalitySlackAliasArray{
    		&rootly.FunctionalitySlackAliasArgs{
    			Id:   pulumi.String("string"),
    			Name: pulumi.String("string"),
    		},
    	},
    	SlackChannels: rootly.FunctionalitySlackChannelArray{
    		&rootly.FunctionalitySlackChannelArgs{
    			Id:   pulumi.String("string"),
    			Name: pulumi.String("string"),
    		},
    	},
    	Slug: pulumi.String("string"),
    })
    
    resource "rootly_functionality" "functionalityResource" {
      backstage_id         = "string"
      color                = "string"
      cortex_id            = "string"
      description          = "string"
      environment_ids      = ["string"]
      escalation_policy_id = "string"
      external_id          = "string"
      name                 = "string"
      notify_emails        = ["string"]
      opsgenie_id          = "string"
      opsgenie_team_id     = "string"
      owner_group_ids      = ["string"]
      owner_user_ids       = [0]
      pagerduty_id         = "string"
      position             = 0
      properties {
        catalog_property_id = "string"
        value               = "string"
      }
      public_description    = "string"
      service_ids           = ["string"]
      service_now_ci_sys_id = "string"
      slack_aliases {
        id   = "string"
        name = "string"
      }
      slack_channels {
        id   = "string"
        name = "string"
      }
      slug = "string"
    }
    
    var functionalityResource = new Functionality("functionalityResource", FunctionalityArgs.builder()
        .backstageId("string")
        .color("string")
        .cortexId("string")
        .description("string")
        .environmentIds("string")
        .escalationPolicyId("string")
        .externalId("string")
        .name("string")
        .notifyEmails("string")
        .opsgenieId("string")
        .opsgenieTeamId("string")
        .ownerGroupIds("string")
        .ownerUserIds(0)
        .pagerdutyId("string")
        .position(0)
        .properties(FunctionalityPropertyArgs.builder()
            .catalogPropertyId("string")
            .value("string")
            .build())
        .publicDescription("string")
        .serviceIds("string")
        .serviceNowCiSysId("string")
        .slackAliases(FunctionalitySlackAliasArgs.builder()
            .id("string")
            .name("string")
            .build())
        .slackChannels(FunctionalitySlackChannelArgs.builder()
            .id("string")
            .name("string")
            .build())
        .slug("string")
        .build());
    
    functionality_resource = rootly.Functionality("functionalityResource",
        backstage_id="string",
        color="string",
        cortex_id="string",
        description="string",
        environment_ids=["string"],
        escalation_policy_id="string",
        external_id="string",
        name="string",
        notify_emails=["string"],
        opsgenie_id="string",
        opsgenie_team_id="string",
        owner_group_ids=["string"],
        owner_user_ids=[0],
        pagerduty_id="string",
        position=0,
        properties=[{
            "catalog_property_id": "string",
            "value": "string",
        }],
        public_description="string",
        service_ids=["string"],
        service_now_ci_sys_id="string",
        slack_aliases=[{
            "id": "string",
            "name": "string",
        }],
        slack_channels=[{
            "id": "string",
            "name": "string",
        }],
        slug="string")
    
    const functionalityResource = new rootly.Functionality("functionalityResource", {
        backstageId: "string",
        color: "string",
        cortexId: "string",
        description: "string",
        environmentIds: ["string"],
        escalationPolicyId: "string",
        externalId: "string",
        name: "string",
        notifyEmails: ["string"],
        opsgenieId: "string",
        opsgenieTeamId: "string",
        ownerGroupIds: ["string"],
        ownerUserIds: [0],
        pagerdutyId: "string",
        position: 0,
        properties: [{
            catalogPropertyId: "string",
            value: "string",
        }],
        publicDescription: "string",
        serviceIds: ["string"],
        serviceNowCiSysId: "string",
        slackAliases: [{
            id: "string",
            name: "string",
        }],
        slackChannels: [{
            id: "string",
            name: "string",
        }],
        slug: "string",
    });
    
    type: rootly:Functionality
    properties:
        backstageId: string
        color: string
        cortexId: string
        description: string
        environmentIds:
            - string
        escalationPolicyId: string
        externalId: string
        name: string
        notifyEmails:
            - string
        opsgenieId: string
        opsgenieTeamId: string
        ownerGroupIds:
            - string
        ownerUserIds:
            - 0
        pagerdutyId: string
        position: 0
        properties:
            - catalogPropertyId: string
              value: string
        publicDescription: string
        serviceIds:
            - string
        serviceNowCiSysId: string
        slackAliases:
            - id: string
              name: string
        slackChannels:
            - id: string
              name: string
        slug: string
    

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

    BackstageId string
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    Color string
    The hex color of the functionality
    CortexId string
    The Cortex group id associated to this functionality
    Description string
    The description of the functionality
    EnvironmentIds List<string>
    Environments associated with this functionality
    EscalationPolicyId string
    The escalation policy id of the functionality
    ExternalId string
    The external id associated to this functionality
    Name string
    The name of the functionality
    NotifyEmails List<string>
    Emails attached to the functionality
    OpsgenieId string
    The Opsgenie service id associated to this functionality
    OpsgenieTeamId string
    The Opsgenie team id associated to this functionality
    OwnerGroupIds List<string>
    Owner Teams associated with this functionality
    OwnerUserIds List<int>
    Owner Users associated with this functionality
    PagerdutyId string
    The PagerDuty service id associated to this functionality
    Position int
    Position of the functionality
    Properties List<FunctionalityProperty>
    Array of property values for this functionality.
    PublicDescription string
    The public description of the functionality
    ServiceIds List<string>
    Services associated with this functionality
    ServiceNowCiSysId string
    The Service Now CI sys id associated to this functionality
    SlackAliases List<FunctionalitySlackAlias>
    Slack Aliases associated with this functionality
    SlackChannels List<FunctionalitySlackChannel>
    Slack Channels associated with this functionality
    Slug string
    The slug of the functionality
    BackstageId string
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    Color string
    The hex color of the functionality
    CortexId string
    The Cortex group id associated to this functionality
    Description string
    The description of the functionality
    EnvironmentIds []string
    Environments associated with this functionality
    EscalationPolicyId string
    The escalation policy id of the functionality
    ExternalId string
    The external id associated to this functionality
    Name string
    The name of the functionality
    NotifyEmails []string
    Emails attached to the functionality
    OpsgenieId string
    The Opsgenie service id associated to this functionality
    OpsgenieTeamId string
    The Opsgenie team id associated to this functionality
    OwnerGroupIds []string
    Owner Teams associated with this functionality
    OwnerUserIds []int
    Owner Users associated with this functionality
    PagerdutyId string
    The PagerDuty service id associated to this functionality
    Position int
    Position of the functionality
    Properties []FunctionalityPropertyArgs
    Array of property values for this functionality.
    PublicDescription string
    The public description of the functionality
    ServiceIds []string
    Services associated with this functionality
    ServiceNowCiSysId string
    The Service Now CI sys id associated to this functionality
    SlackAliases []FunctionalitySlackAliasArgs
    Slack Aliases associated with this functionality
    SlackChannels []FunctionalitySlackChannelArgs
    Slack Channels associated with this functionality
    Slug string
    The slug of the functionality
    backstage_id string
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color string
    The hex color of the functionality
    cortex_id string
    The Cortex group id associated to this functionality
    description string
    The description of the functionality
    environment_ids list(string)
    Environments associated with this functionality
    escalation_policy_id string
    The escalation policy id of the functionality
    external_id string
    The external id associated to this functionality
    name string
    The name of the functionality
    notify_emails list(string)
    Emails attached to the functionality
    opsgenie_id string
    The Opsgenie service id associated to this functionality
    opsgenie_team_id string
    The Opsgenie team id associated to this functionality
    owner_group_ids list(string)
    Owner Teams associated with this functionality
    owner_user_ids list(number)
    Owner Users associated with this functionality
    pagerduty_id string
    The PagerDuty service id associated to this functionality
    position number
    Position of the functionality
    properties list(object)
    Array of property values for this functionality.
    public_description string
    The public description of the functionality
    service_ids list(string)
    Services associated with this functionality
    service_now_ci_sys_id string
    The Service Now CI sys id associated to this functionality
    slack_aliases list(object)
    Slack Aliases associated with this functionality
    slack_channels list(object)
    Slack Channels associated with this functionality
    slug string
    The slug of the functionality
    backstageId String
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color String
    The hex color of the functionality
    cortexId String
    The Cortex group id associated to this functionality
    description String
    The description of the functionality
    environmentIds List<String>
    Environments associated with this functionality
    escalationPolicyId String
    The escalation policy id of the functionality
    externalId String
    The external id associated to this functionality
    name String
    The name of the functionality
    notifyEmails List<String>
    Emails attached to the functionality
    opsgenieId String
    The Opsgenie service id associated to this functionality
    opsgenieTeamId String
    The Opsgenie team id associated to this functionality
    ownerGroupIds List<String>
    Owner Teams associated with this functionality
    ownerUserIds List<Integer>
    Owner Users associated with this functionality
    pagerdutyId String
    The PagerDuty service id associated to this functionality
    position Integer
    Position of the functionality
    properties List<FunctionalityProperty>
    Array of property values for this functionality.
    publicDescription String
    The public description of the functionality
    serviceIds List<String>
    Services associated with this functionality
    serviceNowCiSysId String
    The Service Now CI sys id associated to this functionality
    slackAliases List<FunctionalitySlackAlias>
    Slack Aliases associated with this functionality
    slackChannels List<FunctionalitySlackChannel>
    Slack Channels associated with this functionality
    slug String
    The slug of the functionality
    backstageId string
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color string
    The hex color of the functionality
    cortexId string
    The Cortex group id associated to this functionality
    description string
    The description of the functionality
    environmentIds string[]
    Environments associated with this functionality
    escalationPolicyId string
    The escalation policy id of the functionality
    externalId string
    The external id associated to this functionality
    name string
    The name of the functionality
    notifyEmails string[]
    Emails attached to the functionality
    opsgenieId string
    The Opsgenie service id associated to this functionality
    opsgenieTeamId string
    The Opsgenie team id associated to this functionality
    ownerGroupIds string[]
    Owner Teams associated with this functionality
    ownerUserIds number[]
    Owner Users associated with this functionality
    pagerdutyId string
    The PagerDuty service id associated to this functionality
    position number
    Position of the functionality
    properties FunctionalityProperty[]
    Array of property values for this functionality.
    publicDescription string
    The public description of the functionality
    serviceIds string[]
    Services associated with this functionality
    serviceNowCiSysId string
    The Service Now CI sys id associated to this functionality
    slackAliases FunctionalitySlackAlias[]
    Slack Aliases associated with this functionality
    slackChannels FunctionalitySlackChannel[]
    Slack Channels associated with this functionality
    slug string
    The slug of the functionality
    backstage_id str
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color str
    The hex color of the functionality
    cortex_id str
    The Cortex group id associated to this functionality
    description str
    The description of the functionality
    environment_ids Sequence[str]
    Environments associated with this functionality
    escalation_policy_id str
    The escalation policy id of the functionality
    external_id str
    The external id associated to this functionality
    name str
    The name of the functionality
    notify_emails Sequence[str]
    Emails attached to the functionality
    opsgenie_id str
    The Opsgenie service id associated to this functionality
    opsgenie_team_id str
    The Opsgenie team id associated to this functionality
    owner_group_ids Sequence[str]
    Owner Teams associated with this functionality
    owner_user_ids Sequence[int]
    Owner Users associated with this functionality
    pagerduty_id str
    The PagerDuty service id associated to this functionality
    position int
    Position of the functionality
    properties Sequence[FunctionalityPropertyArgs]
    Array of property values for this functionality.
    public_description str
    The public description of the functionality
    service_ids Sequence[str]
    Services associated with this functionality
    service_now_ci_sys_id str
    The Service Now CI sys id associated to this functionality
    slack_aliases Sequence[FunctionalitySlackAliasArgs]
    Slack Aliases associated with this functionality
    slack_channels Sequence[FunctionalitySlackChannelArgs]
    Slack Channels associated with this functionality
    slug str
    The slug of the functionality
    backstageId String
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color String
    The hex color of the functionality
    cortexId String
    The Cortex group id associated to this functionality
    description String
    The description of the functionality
    environmentIds List<String>
    Environments associated with this functionality
    escalationPolicyId String
    The escalation policy id of the functionality
    externalId String
    The external id associated to this functionality
    name String
    The name of the functionality
    notifyEmails List<String>
    Emails attached to the functionality
    opsgenieId String
    The Opsgenie service id associated to this functionality
    opsgenieTeamId String
    The Opsgenie team id associated to this functionality
    ownerGroupIds List<String>
    Owner Teams associated with this functionality
    ownerUserIds List<Number>
    Owner Users associated with this functionality
    pagerdutyId String
    The PagerDuty service id associated to this functionality
    position Number
    Position of the functionality
    properties List<Property Map>
    Array of property values for this functionality.
    publicDescription String
    The public description of the functionality
    serviceIds List<String>
    Services associated with this functionality
    serviceNowCiSysId String
    The Service Now CI sys id associated to this functionality
    slackAliases List<Property Map>
    Slack Aliases associated with this functionality
    slackChannels List<Property Map>
    Slack Channels associated with this functionality
    slug String
    The slug of the functionality

    Outputs

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

    Get an existing Functionality 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?: FunctionalityState, opts?: CustomResourceOptions): Functionality
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backstage_id: Optional[str] = None,
            color: Optional[str] = None,
            cortex_id: Optional[str] = None,
            description: Optional[str] = None,
            environment_ids: Optional[Sequence[str]] = None,
            escalation_policy_id: Optional[str] = None,
            external_id: Optional[str] = None,
            name: Optional[str] = None,
            notify_emails: Optional[Sequence[str]] = None,
            opsgenie_id: Optional[str] = None,
            opsgenie_team_id: Optional[str] = None,
            owner_group_ids: Optional[Sequence[str]] = None,
            owner_user_ids: Optional[Sequence[int]] = None,
            pagerduty_id: Optional[str] = None,
            position: Optional[int] = None,
            properties: Optional[Sequence[FunctionalityPropertyArgs]] = None,
            public_description: Optional[str] = None,
            service_ids: Optional[Sequence[str]] = None,
            service_now_ci_sys_id: Optional[str] = None,
            slack_aliases: Optional[Sequence[FunctionalitySlackAliasArgs]] = None,
            slack_channels: Optional[Sequence[FunctionalitySlackChannelArgs]] = None,
            slug: Optional[str] = None) -> Functionality
    func GetFunctionality(ctx *Context, name string, id IDInput, state *FunctionalityState, opts ...ResourceOption) (*Functionality, error)
    public static Functionality Get(string name, Input<string> id, FunctionalityState? state, CustomResourceOptions? opts = null)
    public static Functionality get(String name, Output<String> id, FunctionalityState state, CustomResourceOptions options)
    resources:  _:    type: rootly:Functionality    get:      id: ${id}
    import {
      to = rootly_functionality.example
      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:
    BackstageId string
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    Color string
    The hex color of the functionality
    CortexId string
    The Cortex group id associated to this functionality
    Description string
    The description of the functionality
    EnvironmentIds List<string>
    Environments associated with this functionality
    EscalationPolicyId string
    The escalation policy id of the functionality
    ExternalId string
    The external id associated to this functionality
    Name string
    The name of the functionality
    NotifyEmails List<string>
    Emails attached to the functionality
    OpsgenieId string
    The Opsgenie service id associated to this functionality
    OpsgenieTeamId string
    The Opsgenie team id associated to this functionality
    OwnerGroupIds List<string>
    Owner Teams associated with this functionality
    OwnerUserIds List<int>
    Owner Users associated with this functionality
    PagerdutyId string
    The PagerDuty service id associated to this functionality
    Position int
    Position of the functionality
    Properties List<FunctionalityProperty>
    Array of property values for this functionality.
    PublicDescription string
    The public description of the functionality
    ServiceIds List<string>
    Services associated with this functionality
    ServiceNowCiSysId string
    The Service Now CI sys id associated to this functionality
    SlackAliases List<FunctionalitySlackAlias>
    Slack Aliases associated with this functionality
    SlackChannels List<FunctionalitySlackChannel>
    Slack Channels associated with this functionality
    Slug string
    The slug of the functionality
    BackstageId string
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    Color string
    The hex color of the functionality
    CortexId string
    The Cortex group id associated to this functionality
    Description string
    The description of the functionality
    EnvironmentIds []string
    Environments associated with this functionality
    EscalationPolicyId string
    The escalation policy id of the functionality
    ExternalId string
    The external id associated to this functionality
    Name string
    The name of the functionality
    NotifyEmails []string
    Emails attached to the functionality
    OpsgenieId string
    The Opsgenie service id associated to this functionality
    OpsgenieTeamId string
    The Opsgenie team id associated to this functionality
    OwnerGroupIds []string
    Owner Teams associated with this functionality
    OwnerUserIds []int
    Owner Users associated with this functionality
    PagerdutyId string
    The PagerDuty service id associated to this functionality
    Position int
    Position of the functionality
    Properties []FunctionalityPropertyArgs
    Array of property values for this functionality.
    PublicDescription string
    The public description of the functionality
    ServiceIds []string
    Services associated with this functionality
    ServiceNowCiSysId string
    The Service Now CI sys id associated to this functionality
    SlackAliases []FunctionalitySlackAliasArgs
    Slack Aliases associated with this functionality
    SlackChannels []FunctionalitySlackChannelArgs
    Slack Channels associated with this functionality
    Slug string
    The slug of the functionality
    backstage_id string
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color string
    The hex color of the functionality
    cortex_id string
    The Cortex group id associated to this functionality
    description string
    The description of the functionality
    environment_ids list(string)
    Environments associated with this functionality
    escalation_policy_id string
    The escalation policy id of the functionality
    external_id string
    The external id associated to this functionality
    name string
    The name of the functionality
    notify_emails list(string)
    Emails attached to the functionality
    opsgenie_id string
    The Opsgenie service id associated to this functionality
    opsgenie_team_id string
    The Opsgenie team id associated to this functionality
    owner_group_ids list(string)
    Owner Teams associated with this functionality
    owner_user_ids list(number)
    Owner Users associated with this functionality
    pagerduty_id string
    The PagerDuty service id associated to this functionality
    position number
    Position of the functionality
    properties list(object)
    Array of property values for this functionality.
    public_description string
    The public description of the functionality
    service_ids list(string)
    Services associated with this functionality
    service_now_ci_sys_id string
    The Service Now CI sys id associated to this functionality
    slack_aliases list(object)
    Slack Aliases associated with this functionality
    slack_channels list(object)
    Slack Channels associated with this functionality
    slug string
    The slug of the functionality
    backstageId String
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color String
    The hex color of the functionality
    cortexId String
    The Cortex group id associated to this functionality
    description String
    The description of the functionality
    environmentIds List<String>
    Environments associated with this functionality
    escalationPolicyId String
    The escalation policy id of the functionality
    externalId String
    The external id associated to this functionality
    name String
    The name of the functionality
    notifyEmails List<String>
    Emails attached to the functionality
    opsgenieId String
    The Opsgenie service id associated to this functionality
    opsgenieTeamId String
    The Opsgenie team id associated to this functionality
    ownerGroupIds List<String>
    Owner Teams associated with this functionality
    ownerUserIds List<Integer>
    Owner Users associated with this functionality
    pagerdutyId String
    The PagerDuty service id associated to this functionality
    position Integer
    Position of the functionality
    properties List<FunctionalityProperty>
    Array of property values for this functionality.
    publicDescription String
    The public description of the functionality
    serviceIds List<String>
    Services associated with this functionality
    serviceNowCiSysId String
    The Service Now CI sys id associated to this functionality
    slackAliases List<FunctionalitySlackAlias>
    Slack Aliases associated with this functionality
    slackChannels List<FunctionalitySlackChannel>
    Slack Channels associated with this functionality
    slug String
    The slug of the functionality
    backstageId string
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color string
    The hex color of the functionality
    cortexId string
    The Cortex group id associated to this functionality
    description string
    The description of the functionality
    environmentIds string[]
    Environments associated with this functionality
    escalationPolicyId string
    The escalation policy id of the functionality
    externalId string
    The external id associated to this functionality
    name string
    The name of the functionality
    notifyEmails string[]
    Emails attached to the functionality
    opsgenieId string
    The Opsgenie service id associated to this functionality
    opsgenieTeamId string
    The Opsgenie team id associated to this functionality
    ownerGroupIds string[]
    Owner Teams associated with this functionality
    ownerUserIds number[]
    Owner Users associated with this functionality
    pagerdutyId string
    The PagerDuty service id associated to this functionality
    position number
    Position of the functionality
    properties FunctionalityProperty[]
    Array of property values for this functionality.
    publicDescription string
    The public description of the functionality
    serviceIds string[]
    Services associated with this functionality
    serviceNowCiSysId string
    The Service Now CI sys id associated to this functionality
    slackAliases FunctionalitySlackAlias[]
    Slack Aliases associated with this functionality
    slackChannels FunctionalitySlackChannel[]
    Slack Channels associated with this functionality
    slug string
    The slug of the functionality
    backstage_id str
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color str
    The hex color of the functionality
    cortex_id str
    The Cortex group id associated to this functionality
    description str
    The description of the functionality
    environment_ids Sequence[str]
    Environments associated with this functionality
    escalation_policy_id str
    The escalation policy id of the functionality
    external_id str
    The external id associated to this functionality
    name str
    The name of the functionality
    notify_emails Sequence[str]
    Emails attached to the functionality
    opsgenie_id str
    The Opsgenie service id associated to this functionality
    opsgenie_team_id str
    The Opsgenie team id associated to this functionality
    owner_group_ids Sequence[str]
    Owner Teams associated with this functionality
    owner_user_ids Sequence[int]
    Owner Users associated with this functionality
    pagerduty_id str
    The PagerDuty service id associated to this functionality
    position int
    Position of the functionality
    properties Sequence[FunctionalityPropertyArgs]
    Array of property values for this functionality.
    public_description str
    The public description of the functionality
    service_ids Sequence[str]
    Services associated with this functionality
    service_now_ci_sys_id str
    The Service Now CI sys id associated to this functionality
    slack_aliases Sequence[FunctionalitySlackAliasArgs]
    Slack Aliases associated with this functionality
    slack_channels Sequence[FunctionalitySlackChannelArgs]
    Slack Channels associated with this functionality
    slug str
    The slug of the functionality
    backstageId String
    The Backstage entity id associated to this functionality. eg: :namespace/:kind/:entity_name
    color String
    The hex color of the functionality
    cortexId String
    The Cortex group id associated to this functionality
    description String
    The description of the functionality
    environmentIds List<String>
    Environments associated with this functionality
    escalationPolicyId String
    The escalation policy id of the functionality
    externalId String
    The external id associated to this functionality
    name String
    The name of the functionality
    notifyEmails List<String>
    Emails attached to the functionality
    opsgenieId String
    The Opsgenie service id associated to this functionality
    opsgenieTeamId String
    The Opsgenie team id associated to this functionality
    ownerGroupIds List<String>
    Owner Teams associated with this functionality
    ownerUserIds List<Number>
    Owner Users associated with this functionality
    pagerdutyId String
    The PagerDuty service id associated to this functionality
    position Number
    Position of the functionality
    properties List<Property Map>
    Array of property values for this functionality.
    publicDescription String
    The public description of the functionality
    serviceIds List<String>
    Services associated with this functionality
    serviceNowCiSysId String
    The Service Now CI sys id associated to this functionality
    slackAliases List<Property Map>
    Slack Aliases associated with this functionality
    slackChannels List<Property Map>
    Slack Channels associated with this functionality
    slug String
    The slug of the functionality

    Supporting Types

    FunctionalityProperty, FunctionalityPropertyArgs

    CatalogPropertyId string
    Catalog property ID
    Value string
    The property value
    CatalogPropertyId string
    Catalog property ID
    Value string
    The property value
    catalog_property_id string
    Catalog property ID
    value string
    The property value
    catalogPropertyId String
    Catalog property ID
    value String
    The property value
    catalogPropertyId string
    Catalog property ID
    value string
    The property value
    catalog_property_id str
    Catalog property ID
    value str
    The property value
    catalogPropertyId String
    Catalog property ID
    value String
    The property value

    FunctionalitySlackAlias, FunctionalitySlackAliasArgs

    Id string
    Slack alias ID
    Name string
    Slack alias name
    Id string
    Slack alias ID
    Name string
    Slack alias name
    id string
    Slack alias ID
    name string
    Slack alias name
    id String
    Slack alias ID
    name String
    Slack alias name
    id string
    Slack alias ID
    name string
    Slack alias name
    id str
    Slack alias ID
    name str
    Slack alias name
    id String
    Slack alias ID
    name String
    Slack alias name

    FunctionalitySlackChannel, FunctionalitySlackChannelArgs

    Id string
    Slack channel ID
    Name string
    Slack channel name
    Id string
    Slack channel ID
    Name string
    Slack channel name
    id string
    Slack channel ID
    name string
    Slack channel name
    id String
    Slack channel ID
    name String
    Slack channel name
    id string
    Slack channel ID
    name string
    Slack channel name
    id str
    Slack channel ID
    name str
    Slack channel name
    id String
    Slack channel ID
    name String
    Slack channel name

    Import

    rootly.Functionality can be imported using the import command.

    $ pulumi import rootly:index/functionality:Functionality primary a816421c-6ceb-481a-87c4-585e47451f24
    

    Or using an import block.

    Locate the resource id in the web app, or retrieve it by listing resources through the API if it’s not visible in the web app.

    HCL can be generated from the import block using the -generate-config-out flag.

    pulumi preview -generate-config-out=generated.tf
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    rootly rootlyhq/pulumi-rootly
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the rootly Terraform Provider.
    rootly logo
    Viewing docs for Rootly v3.4.0
    published on Tuesday, May 12, 2026 by rootlyhq
      Try Pulumi Cloud free. Your team will thank you.