published on Thursday, May 7, 2026 by rootlyhq
published on Thursday, May 7, 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.
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"),
})
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:
- 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 stringId - 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 stringId - The Opsgenie team id associated to this functionality
- Owner
Group List<string>Ids - Owner Teams associated with this functionality
- Owner
User List<int>Ids - Owner Users associated with this functionality
- Pagerduty
Id string - The PagerDuty service id associated to this functionality
- Position int
- Position of the functionality
- Properties
List<Functionality
Property> - 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 stringCi Sys Id - The Service Now CI sys id associated to this functionality
- Slack
Aliases List<FunctionalitySlack Alias> - Slack Aliases associated with this functionality
- Slack
Channels List<FunctionalitySlack Channel> - 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 []string - Environments associated with this functionality
- Escalation
Policy stringId - 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 []string - Emails attached to the functionality
- Opsgenie
Id string - The Opsgenie service id associated to this functionality
- Opsgenie
Team stringId - The Opsgenie team id associated to this functionality
- Owner
Group []stringIds - Owner Teams associated with this functionality
- Owner
User []intIds - Owner Users associated with this functionality
- Pagerduty
Id string - The PagerDuty service id associated to this functionality
- Position int
- Position of the functionality
- Properties
[]Functionality
Property Args - Array of property values for this functionality.
- Public
Description string - The public description of the functionality
- Service
Ids []string - Services associated with this functionality
- Service
Now stringCi Sys Id - The Service Now CI sys id associated to this functionality
- Slack
Aliases []FunctionalitySlack Alias Args - Slack Aliases associated with this functionality
- Slack
Channels []FunctionalitySlack Channel Args - 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 StringId - 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 StringId - The Opsgenie team id associated to this functionality
- owner
Group List<String>Ids - Owner Teams associated with this functionality
- owner
User List<Integer>Ids - Owner Users associated with this functionality
- pagerduty
Id String - The PagerDuty service id associated to this functionality
- position Integer
- Position of the functionality
- properties
List<Functionality
Property> - 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 StringCi Sys Id - The Service Now CI sys id associated to this functionality
- slack
Aliases List<FunctionalitySlack Alias> - Slack Aliases associated with this functionality
- slack
Channels List<FunctionalitySlack Channel> - 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 string[] - Environments associated with this functionality
- escalation
Policy stringId - 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 string[] - Emails attached to the functionality
- opsgenie
Id string - The Opsgenie service id associated to this functionality
- opsgenie
Team stringId - The Opsgenie team id associated to this functionality
- owner
Group string[]Ids - Owner Teams associated with this functionality
- owner
User number[]Ids - Owner Users associated with this functionality
- pagerduty
Id string - The PagerDuty service id associated to this functionality
- position number
- Position of the functionality
- properties
Functionality
Property[] - Array of property values for this functionality.
- public
Description string - The public description of the functionality
- service
Ids string[] - Services associated with this functionality
- service
Now stringCi Sys Id - The Service Now CI sys id associated to this functionality
- slack
Aliases FunctionalitySlack Alias[] - Slack Aliases associated with this functionality
- slack
Channels FunctionalitySlack Channel[] - 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_ strid - 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_ strid - The Opsgenie team id associated to this functionality
- owner_
group_ Sequence[str]ids - Owner Teams associated with this functionality
- owner_
user_ Sequence[int]ids - 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[Functionality
Property Args] - 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_ strci_ sys_ id - The Service Now CI sys id associated to this functionality
- slack_
aliases Sequence[FunctionalitySlack Alias Args] - Slack Aliases associated with this functionality
- slack_
channels Sequence[FunctionalitySlack Channel Args] - Slack Channels associated with this functionality
- slug str
- 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 StringId - 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 StringId - The Opsgenie team id associated to this functionality
- owner
Group List<String>Ids - Owner Teams associated with this functionality
- owner
User List<Number>Ids - 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<Property Map>
- 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 StringCi Sys Id - The Service Now CI sys id associated to this functionality
- slack
Aliases List<Property Map> - Slack Aliases associated with this functionality
- slack
Channels 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 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) -> Functionalityfunc 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}- 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.
- 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 stringId - 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 stringId - The Opsgenie team id associated to this functionality
- Owner
Group List<string>Ids - Owner Teams associated with this functionality
- Owner
User List<int>Ids - Owner Users associated with this functionality
- Pagerduty
Id string - The PagerDuty service id associated to this functionality
- Position int
- Position of the functionality
- Properties
List<Functionality
Property> - 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 stringCi Sys Id - The Service Now CI sys id associated to this functionality
- Slack
Aliases List<FunctionalitySlack Alias> - Slack Aliases associated with this functionality
- Slack
Channels List<FunctionalitySlack Channel> - 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 []string - Environments associated with this functionality
- Escalation
Policy stringId - 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 []string - Emails attached to the functionality
- Opsgenie
Id string - The Opsgenie service id associated to this functionality
- Opsgenie
Team stringId - The Opsgenie team id associated to this functionality
- Owner
Group []stringIds - Owner Teams associated with this functionality
- Owner
User []intIds - Owner Users associated with this functionality
- Pagerduty
Id string - The PagerDuty service id associated to this functionality
- Position int
- Position of the functionality
- Properties
[]Functionality
Property Args - Array of property values for this functionality.
- Public
Description string - The public description of the functionality
- Service
Ids []string - Services associated with this functionality
- Service
Now stringCi Sys Id - The Service Now CI sys id associated to this functionality
- Slack
Aliases []FunctionalitySlack Alias Args - Slack Aliases associated with this functionality
- Slack
Channels []FunctionalitySlack Channel Args - 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 StringId - 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 StringId - The Opsgenie team id associated to this functionality
- owner
Group List<String>Ids - Owner Teams associated with this functionality
- owner
User List<Integer>Ids - Owner Users associated with this functionality
- pagerduty
Id String - The PagerDuty service id associated to this functionality
- position Integer
- Position of the functionality
- properties
List<Functionality
Property> - 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 StringCi Sys Id - The Service Now CI sys id associated to this functionality
- slack
Aliases List<FunctionalitySlack Alias> - Slack Aliases associated with this functionality
- slack
Channels List<FunctionalitySlack Channel> - 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 string[] - Environments associated with this functionality
- escalation
Policy stringId - 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 string[] - Emails attached to the functionality
- opsgenie
Id string - The Opsgenie service id associated to this functionality
- opsgenie
Team stringId - The Opsgenie team id associated to this functionality
- owner
Group string[]Ids - Owner Teams associated with this functionality
- owner
User number[]Ids - Owner Users associated with this functionality
- pagerduty
Id string - The PagerDuty service id associated to this functionality
- position number
- Position of the functionality
- properties
Functionality
Property[] - Array of property values for this functionality.
- public
Description string - The public description of the functionality
- service
Ids string[] - Services associated with this functionality
- service
Now stringCi Sys Id - The Service Now CI sys id associated to this functionality
- slack
Aliases FunctionalitySlack Alias[] - Slack Aliases associated with this functionality
- slack
Channels FunctionalitySlack Channel[] - 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_ strid - 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_ strid - The Opsgenie team id associated to this functionality
- owner_
group_ Sequence[str]ids - Owner Teams associated with this functionality
- owner_
user_ Sequence[int]ids - 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[Functionality
Property Args] - 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_ strci_ sys_ id - The Service Now CI sys id associated to this functionality
- slack_
aliases Sequence[FunctionalitySlack Alias Args] - Slack Aliases associated with this functionality
- slack_
channels Sequence[FunctionalitySlack Channel Args] - Slack Channels associated with this functionality
- slug str
- 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 StringId - 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 StringId - The Opsgenie team id associated to this functionality
- owner
Group List<String>Ids - Owner Teams associated with this functionality
- owner
User List<Number>Ids - 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<Property Map>
- 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 StringCi Sys Id - The Service Now CI sys id associated to this functionality
- slack
Aliases List<Property Map> - Slack Aliases associated with this functionality
- slack
Channels List<Property Map> - Slack Channels associated with this functionality
- slug String
- The slug of the functionality
Supporting Types
FunctionalityProperty, FunctionalityPropertyArgs
- Catalog
Property stringId - Catalog property ID
- Value string
- The property value
- Catalog
Property stringId - Catalog property ID
- Value string
- The property value
- catalog
Property StringId - Catalog property ID
- value String
- The property value
- catalog
Property stringId - Catalog property ID
- value string
- The property value
- catalog_
property_ strid - Catalog property ID
- value str
- The property value
- catalog
Property StringId - Catalog property ID
- value String
- The property value
FunctionalitySlackAlias, FunctionalitySlackAliasArgs
FunctionalitySlackChannel, FunctionalitySlackChannelArgs
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
rootlyTerraform Provider.
published on Thursday, May 7, 2026 by rootlyhq
