1. Packages
  2. Rootly
  3. API Docs
  4. Service
Rootly v1.0.1 published on Friday, Jun 2, 2023 by Rootly

rootly.Service

Explore with Pulumi AI

rootly logo
Rootly v1.0.1 published on Friday, Jun 2, 2023 by Rootly

    Example Usage

    using Pulumi;
    using Rootly = Pulumi.Rootly;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var elasticsearchProd = new Rootly.Service("elasticsearchProd", new Rootly.ServiceArgs
            {
                Color = "#800080",
                NotifyEmails = 
                {
                    "foo@acme.com",
                    "bar@acme.com",
                },
                SlackAliases = 
                {
                    new Rootly.Inputs.ServiceSlackAliasArgs
                    {
                        Id = "S0614TZR7",
                        Name = "Alias 1",
                    },
                },
                SlackChannels = 
                {
                    new Rootly.Inputs.ServiceSlackChannelArgs
                    {
                        Id = "C06A4RZR9",
                        Name = "Channel 1",
                    },
                    new Rootly.Inputs.ServiceSlackChannelArgs
                    {
                        Id = "C02T4RYR2",
                        Name = "Channel 2",
                    },
                },
            });
            var customerPostgresqlProd = new Rootly.Service("customerPostgresqlProd", new Rootly.ServiceArgs
            {
                Color = "#800080",
                NotifyEmails = 
                {
                    "foo@acme.com",
                    "bar@acme.com",
                },
                SlackAliases = 
                {
                    new Rootly.Inputs.ServiceSlackAliasArgs
                    {
                        Id = "S0614TZR7",
                        Name = "Alias 1",
                    },
                },
                SlackChannels = 
                {
                    new Rootly.Inputs.ServiceSlackChannelArgs
                    {
                        Id = "C06A4RZR9",
                        Name = "Channel 1",
                    },
                    new Rootly.Inputs.ServiceSlackChannelArgs
                    {
                        Id = "C02T4RYR2",
                        Name = "Channel 2",
                    },
                },
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-rootly/sdk/go/rootly"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rootly.NewService(ctx, "elasticsearchProd", &rootly.ServiceArgs{
    			Color: pulumi.String("#800080"),
    			NotifyEmails: pulumi.StringArray{
    				pulumi.String("foo@acme.com"),
    				pulumi.String("bar@acme.com"),
    			},
    			SlackAliases: ServiceSlackAliasArray{
    				&ServiceSlackAliasArgs{
    					Id:   pulumi.String("S0614TZR7"),
    					Name: pulumi.String("Alias 1"),
    				},
    			},
    			SlackChannels: ServiceSlackChannelArray{
    				&ServiceSlackChannelArgs{
    					Id:   pulumi.String("C06A4RZR9"),
    					Name: pulumi.String("Channel 1"),
    				},
    				&ServiceSlackChannelArgs{
    					Id:   pulumi.String("C02T4RYR2"),
    					Name: pulumi.String("Channel 2"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = rootly.NewService(ctx, "customerPostgresqlProd", &rootly.ServiceArgs{
    			Color: pulumi.String("#800080"),
    			NotifyEmails: pulumi.StringArray{
    				pulumi.String("foo@acme.com"),
    				pulumi.String("bar@acme.com"),
    			},
    			SlackAliases: ServiceSlackAliasArray{
    				&ServiceSlackAliasArgs{
    					Id:   pulumi.String("S0614TZR7"),
    					Name: pulumi.String("Alias 1"),
    				},
    			},
    			SlackChannels: ServiceSlackChannelArray{
    				&ServiceSlackChannelArgs{
    					Id:   pulumi.String("C06A4RZR9"),
    					Name: pulumi.String("Channel 1"),
    				},
    				&ServiceSlackChannelArgs{
    					Id:   pulumi.String("C02T4RYR2"),
    					Name: pulumi.String("Channel 2"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Coming soon!

    import pulumi
    import pulumi_rootly as rootly
    
    elasticsearch_prod = rootly.Service("elasticsearchProd",
        color="#800080",
        notify_emails=[
            "foo@acme.com",
            "bar@acme.com",
        ],
        slack_aliases=[rootly.ServiceSlackAliasArgs(
            id="S0614TZR7",
            name="Alias 1",
        )],
        slack_channels=[
            rootly.ServiceSlackChannelArgs(
                id="C06A4RZR9",
                name="Channel 1",
            ),
            rootly.ServiceSlackChannelArgs(
                id="C02T4RYR2",
                name="Channel 2",
            ),
        ])
    customer_postgresql_prod = rootly.Service("customerPostgresqlProd",
        color="#800080",
        notify_emails=[
            "foo@acme.com",
            "bar@acme.com",
        ],
        slack_aliases=[rootly.ServiceSlackAliasArgs(
            id="S0614TZR7",
            name="Alias 1",
        )],
        slack_channels=[
            rootly.ServiceSlackChannelArgs(
                id="C06A4RZR9",
                name="Channel 1",
            ),
            rootly.ServiceSlackChannelArgs(
                id="C02T4RYR2",
                name="Channel 2",
            ),
        ])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as rootly from "@pulumi/rootly";
    
    const elasticsearchProd = new rootly.Service("elasticsearch_prod", {
        color: "#800080",
        notifyEmails: [
            "foo@acme.com",
            "bar@acme.com",
        ],
        slackAliases: [{
            id: "S0614TZR7",
            name: "Alias 1", // Any string really
        }],
        slackChannels: [
            {
                id: "C06A4RZR9",
                name: "Channel 1", // Any string really
            },
            {
                id: "C02T4RYR2",
                name: "Channel 2", // Any string really
            },
        ],
    });
    const customerPostgresqlProd = new rootly.Service("customer_postgresql_prod", {
        color: "#800080",
        notifyEmails: [
            "foo@acme.com",
            "bar@acme.com",
        ],
        slackAliases: [{
            id: "S0614TZR7",
            name: "Alias 1", // Any string really
        }],
        slackChannels: [
            {
                id: "C06A4RZR9",
                name: "Channel 1", // Any string really
            },
            {
                id: "C02T4RYR2",
                name: "Channel 2", // Any string really
            },
        ],
    });
    

    Coming soon!

    Create Service Resource

    new Service(name: string, args?: ServiceArgs, opts?: CustomResourceOptions);
    @overload
    def Service(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                backstage_id: Optional[str] = None,
                color: Optional[str] = None,
                description: Optional[str] = None,
                environment_ids: Optional[Sequence[str]] = None,
                github_repository_branch: Optional[str] = None,
                github_repository_name: Optional[str] = None,
                gitlab_repository_branch: Optional[str] = None,
                gitlab_repository_name: Optional[str] = None,
                name: Optional[str] = None,
                notify_emails: Optional[Sequence[str]] = None,
                opsgenie_id: Optional[str] = None,
                owners_group_ids: Optional[Sequence[str]] = None,
                owners_user_ids: Optional[Sequence[int]] = None,
                pagerduty_id: Optional[str] = None,
                position: Optional[int] = None,
                public_description: Optional[str] = None,
                service_ids: Optional[Sequence[str]] = None,
                slack_aliases: Optional[Sequence[ServiceSlackAliasArgs]] = None,
                slack_channels: Optional[Sequence[ServiceSlackChannelArgs]] = None,
                slug: Optional[str] = None,
                status: Optional[str] = None)
    @overload
    def Service(resource_name: str,
                args: Optional[ServiceArgs] = None,
                opts: Optional[ResourceOptions] = None)
    func NewService(ctx *Context, name string, args *ServiceArgs, opts ...ResourceOption) (*Service, error)
    public Service(string name, ServiceArgs? args = null, CustomResourceOptions? opts = null)
    public Service(String name, ServiceArgs args)
    public Service(String name, ServiceArgs args, CustomResourceOptions options)
    
    type: rootly:Service
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ServiceArgs
    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 ServiceArgs
    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 ServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Service Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Service resource accepts the following input properties:

    BackstageId string

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    Color string
    Description string

    The description of the service

    EnvironmentIds List<string>

    Environments associated with this service

    GithubRepositoryBranch string

    The GitHub repository branch associated to this service. eg: main

    GithubRepositoryName string

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    GitlabRepositoryBranch string

    The Gitlab repository branch associated to this service. eg: main

    GitlabRepositoryName string

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    Name string

    The name of the service

    NotifyEmails List<string>

    Emails attached to the service

    OpsgenieId string

    The Opsgenie service id associated to this service

    OwnersGroupIds List<string>

    Owner Teams associated with this service

    OwnersUserIds List<int>

    Owner Users associated with this service

    PagerdutyId string

    The PagerDuty service id associated to this service

    Position int

    Position of the service

    PublicDescription string

    The public description of the service

    ServiceIds List<string>

    Services dependent on this service

    SlackAliases List<ServiceSlackAlias>

    Slack Aliases associated with this service

    SlackChannels List<ServiceSlackChannel>

    Slack Channels associated with this service

    Slug string

    The slug of the service

    Status string

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    BackstageId string

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    Color string
    Description string

    The description of the service

    EnvironmentIds []string

    Environments associated with this service

    GithubRepositoryBranch string

    The GitHub repository branch associated to this service. eg: main

    GithubRepositoryName string

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    GitlabRepositoryBranch string

    The Gitlab repository branch associated to this service. eg: main

    GitlabRepositoryName string

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    Name string

    The name of the service

    NotifyEmails []string

    Emails attached to the service

    OpsgenieId string

    The Opsgenie service id associated to this service

    OwnersGroupIds []string

    Owner Teams associated with this service

    OwnersUserIds []int

    Owner Users associated with this service

    PagerdutyId string

    The PagerDuty service id associated to this service

    Position int

    Position of the service

    PublicDescription string

    The public description of the service

    ServiceIds []string

    Services dependent on this service

    SlackAliases []ServiceSlackAliasArgs

    Slack Aliases associated with this service

    SlackChannels []ServiceSlackChannelArgs

    Slack Channels associated with this service

    Slug string

    The slug of the service

    Status string

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    backstageId String

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    color String
    description String

    The description of the service

    environmentIds List<String>

    Environments associated with this service

    githubRepositoryBranch String

    The GitHub repository branch associated to this service. eg: main

    githubRepositoryName String

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    gitlabRepositoryBranch String

    The Gitlab repository branch associated to this service. eg: main

    gitlabRepositoryName String

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    name String

    The name of the service

    notifyEmails List<String>

    Emails attached to the service

    opsgenieId String

    The Opsgenie service id associated to this service

    ownersGroupIds List<String>

    Owner Teams associated with this service

    ownersUserIds List<Integer>

    Owner Users associated with this service

    pagerdutyId String

    The PagerDuty service id associated to this service

    position Integer

    Position of the service

    publicDescription String

    The public description of the service

    serviceIds List<String>

    Services dependent on this service

    slackAliases List<ServiceSlackAlias>

    Slack Aliases associated with this service

    slackChannels List<ServiceSlackChannel>

    Slack Channels associated with this service

    slug String

    The slug of the service

    status String

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    backstageId string

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    color string
    description string

    The description of the service

    environmentIds string[]

    Environments associated with this service

    githubRepositoryBranch string

    The GitHub repository branch associated to this service. eg: main

    githubRepositoryName string

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    gitlabRepositoryBranch string

    The Gitlab repository branch associated to this service. eg: main

    gitlabRepositoryName string

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    name string

    The name of the service

    notifyEmails string[]

    Emails attached to the service

    opsgenieId string

    The Opsgenie service id associated to this service

    ownersGroupIds string[]

    Owner Teams associated with this service

    ownersUserIds number[]

    Owner Users associated with this service

    pagerdutyId string

    The PagerDuty service id associated to this service

    position number

    Position of the service

    publicDescription string

    The public description of the service

    serviceIds string[]

    Services dependent on this service

    slackAliases ServiceSlackAlias[]

    Slack Aliases associated with this service

    slackChannels ServiceSlackChannel[]

    Slack Channels associated with this service

    slug string

    The slug of the service

    status string

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    backstage_id str

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    color str
    description str

    The description of the service

    environment_ids Sequence[str]

    Environments associated with this service

    github_repository_branch str

    The GitHub repository branch associated to this service. eg: main

    github_repository_name str

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    gitlab_repository_branch str

    The Gitlab repository branch associated to this service. eg: main

    gitlab_repository_name str

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    name str

    The name of the service

    notify_emails Sequence[str]

    Emails attached to the service

    opsgenie_id str

    The Opsgenie service id associated to this service

    owners_group_ids Sequence[str]

    Owner Teams associated with this service

    owners_user_ids Sequence[int]

    Owner Users associated with this service

    pagerduty_id str

    The PagerDuty service id associated to this service

    position int

    Position of the service

    public_description str

    The public description of the service

    service_ids Sequence[str]

    Services dependent on this service

    slack_aliases Sequence[ServiceSlackAliasArgs]

    Slack Aliases associated with this service

    slack_channels Sequence[ServiceSlackChannelArgs]

    Slack Channels associated with this service

    slug str

    The slug of the service

    status str

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    backstageId String

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    color String
    description String

    The description of the service

    environmentIds List<String>

    Environments associated with this service

    githubRepositoryBranch String

    The GitHub repository branch associated to this service. eg: main

    githubRepositoryName String

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    gitlabRepositoryBranch String

    The Gitlab repository branch associated to this service. eg: main

    gitlabRepositoryName String

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    name String

    The name of the service

    notifyEmails List<String>

    Emails attached to the service

    opsgenieId String

    The Opsgenie service id associated to this service

    ownersGroupIds List<String>

    Owner Teams associated with this service

    ownersUserIds List<Number>

    Owner Users associated with this service

    pagerdutyId String

    The PagerDuty service id associated to this service

    position Number

    Position of the service

    publicDescription String

    The public description of the service

    serviceIds List<String>

    Services dependent on this service

    slackAliases List<Property Map>

    Slack Aliases associated with this service

    slackChannels List<Property Map>

    Slack Channels associated with this service

    slug String

    The slug of the service

    status String

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    Outputs

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

    Get an existing Service 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?: ServiceState, opts?: CustomResourceOptions): Service
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backstage_id: Optional[str] = None,
            color: Optional[str] = None,
            description: Optional[str] = None,
            environment_ids: Optional[Sequence[str]] = None,
            github_repository_branch: Optional[str] = None,
            github_repository_name: Optional[str] = None,
            gitlab_repository_branch: Optional[str] = None,
            gitlab_repository_name: Optional[str] = None,
            name: Optional[str] = None,
            notify_emails: Optional[Sequence[str]] = None,
            opsgenie_id: Optional[str] = None,
            owners_group_ids: Optional[Sequence[str]] = None,
            owners_user_ids: Optional[Sequence[int]] = None,
            pagerduty_id: Optional[str] = None,
            position: Optional[int] = None,
            public_description: Optional[str] = None,
            service_ids: Optional[Sequence[str]] = None,
            slack_aliases: Optional[Sequence[ServiceSlackAliasArgs]] = None,
            slack_channels: Optional[Sequence[ServiceSlackChannelArgs]] = None,
            slug: Optional[str] = None,
            status: Optional[str] = None) -> Service
    func GetService(ctx *Context, name string, id IDInput, state *ServiceState, opts ...ResourceOption) (*Service, error)
    public static Service Get(string name, Input<string> id, ServiceState? state, CustomResourceOptions? opts = null)
    public static Service get(String name, Output<String> id, ServiceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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 service. eg: :namespace/:kind/:entity_name

    Color string
    Description string

    The description of the service

    EnvironmentIds List<string>

    Environments associated with this service

    GithubRepositoryBranch string

    The GitHub repository branch associated to this service. eg: main

    GithubRepositoryName string

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    GitlabRepositoryBranch string

    The Gitlab repository branch associated to this service. eg: main

    GitlabRepositoryName string

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    Name string

    The name of the service

    NotifyEmails List<string>

    Emails attached to the service

    OpsgenieId string

    The Opsgenie service id associated to this service

    OwnersGroupIds List<string>

    Owner Teams associated with this service

    OwnersUserIds List<int>

    Owner Users associated with this service

    PagerdutyId string

    The PagerDuty service id associated to this service

    Position int

    Position of the service

    PublicDescription string

    The public description of the service

    ServiceIds List<string>

    Services dependent on this service

    SlackAliases List<ServiceSlackAlias>

    Slack Aliases associated with this service

    SlackChannels List<ServiceSlackChannel>

    Slack Channels associated with this service

    Slug string

    The slug of the service

    Status string

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    BackstageId string

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    Color string
    Description string

    The description of the service

    EnvironmentIds []string

    Environments associated with this service

    GithubRepositoryBranch string

    The GitHub repository branch associated to this service. eg: main

    GithubRepositoryName string

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    GitlabRepositoryBranch string

    The Gitlab repository branch associated to this service. eg: main

    GitlabRepositoryName string

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    Name string

    The name of the service

    NotifyEmails []string

    Emails attached to the service

    OpsgenieId string

    The Opsgenie service id associated to this service

    OwnersGroupIds []string

    Owner Teams associated with this service

    OwnersUserIds []int

    Owner Users associated with this service

    PagerdutyId string

    The PagerDuty service id associated to this service

    Position int

    Position of the service

    PublicDescription string

    The public description of the service

    ServiceIds []string

    Services dependent on this service

    SlackAliases []ServiceSlackAliasArgs

    Slack Aliases associated with this service

    SlackChannels []ServiceSlackChannelArgs

    Slack Channels associated with this service

    Slug string

    The slug of the service

    Status string

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    backstageId String

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    color String
    description String

    The description of the service

    environmentIds List<String>

    Environments associated with this service

    githubRepositoryBranch String

    The GitHub repository branch associated to this service. eg: main

    githubRepositoryName String

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    gitlabRepositoryBranch String

    The Gitlab repository branch associated to this service. eg: main

    gitlabRepositoryName String

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    name String

    The name of the service

    notifyEmails List<String>

    Emails attached to the service

    opsgenieId String

    The Opsgenie service id associated to this service

    ownersGroupIds List<String>

    Owner Teams associated with this service

    ownersUserIds List<Integer>

    Owner Users associated with this service

    pagerdutyId String

    The PagerDuty service id associated to this service

    position Integer

    Position of the service

    publicDescription String

    The public description of the service

    serviceIds List<String>

    Services dependent on this service

    slackAliases List<ServiceSlackAlias>

    Slack Aliases associated with this service

    slackChannels List<ServiceSlackChannel>

    Slack Channels associated with this service

    slug String

    The slug of the service

    status String

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    backstageId string

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    color string
    description string

    The description of the service

    environmentIds string[]

    Environments associated with this service

    githubRepositoryBranch string

    The GitHub repository branch associated to this service. eg: main

    githubRepositoryName string

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    gitlabRepositoryBranch string

    The Gitlab repository branch associated to this service. eg: main

    gitlabRepositoryName string

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    name string

    The name of the service

    notifyEmails string[]

    Emails attached to the service

    opsgenieId string

    The Opsgenie service id associated to this service

    ownersGroupIds string[]

    Owner Teams associated with this service

    ownersUserIds number[]

    Owner Users associated with this service

    pagerdutyId string

    The PagerDuty service id associated to this service

    position number

    Position of the service

    publicDescription string

    The public description of the service

    serviceIds string[]

    Services dependent on this service

    slackAliases ServiceSlackAlias[]

    Slack Aliases associated with this service

    slackChannels ServiceSlackChannel[]

    Slack Channels associated with this service

    slug string

    The slug of the service

    status string

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    backstage_id str

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    color str
    description str

    The description of the service

    environment_ids Sequence[str]

    Environments associated with this service

    github_repository_branch str

    The GitHub repository branch associated to this service. eg: main

    github_repository_name str

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    gitlab_repository_branch str

    The Gitlab repository branch associated to this service. eg: main

    gitlab_repository_name str

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    name str

    The name of the service

    notify_emails Sequence[str]

    Emails attached to the service

    opsgenie_id str

    The Opsgenie service id associated to this service

    owners_group_ids Sequence[str]

    Owner Teams associated with this service

    owners_user_ids Sequence[int]

    Owner Users associated with this service

    pagerduty_id str

    The PagerDuty service id associated to this service

    position int

    Position of the service

    public_description str

    The public description of the service

    service_ids Sequence[str]

    Services dependent on this service

    slack_aliases Sequence[ServiceSlackAliasArgs]

    Slack Aliases associated with this service

    slack_channels Sequence[ServiceSlackChannelArgs]

    Slack Channels associated with this service

    slug str

    The slug of the service

    status str

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    backstageId String

    The Backstage entity id associated to this service. eg: :namespace/:kind/:entity_name

    color String
    description String

    The description of the service

    environmentIds List<String>

    Environments associated with this service

    githubRepositoryBranch String

    The GitHub repository branch associated to this service. eg: main

    githubRepositoryName String

    The GitHub repository name associated to this service. eg: rootlyhq/my-service

    gitlabRepositoryBranch String

    The Gitlab repository branch associated to this service. eg: main

    gitlabRepositoryName String

    The Gitlab repository name associated to this service. eg: rootlyhq/my-service

    name String

    The name of the service

    notifyEmails List<String>

    Emails attached to the service

    opsgenieId String

    The Opsgenie service id associated to this service

    ownersGroupIds List<String>

    Owner Teams associated with this service

    ownersUserIds List<Number>

    Owner Users associated with this service

    pagerdutyId String

    The PagerDuty service id associated to this service

    position Number

    Position of the service

    publicDescription String

    The public description of the service

    serviceIds List<String>

    Services dependent on this service

    slackAliases List<Property Map>

    Slack Aliases associated with this service

    slackChannels List<Property Map>

    Slack Channels associated with this service

    slug String

    The slug of the service

    status String

    The status of the service. Value must be one of operational, impacted, outage, partial_outage, major_outage.

    Supporting Types

    ServiceSlackAlias, ServiceSlackAliasArgs

    Id string
    Name string
    Id string
    Name string
    id String
    name String
    id string
    name string
    id str
    name str
    id String
    name String

    ServiceSlackChannel, ServiceSlackChannelArgs

    Id string
    Name string
    Id string
    Name string
    id String
    name String
    id string
    name string
    id str
    name str
    id String
    name String

    Package Details

    Repository
    rootly rootlyhq/pulumi-rootly
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the rootly Terraform Provider.

    rootly logo
    Rootly v1.0.1 published on Friday, Jun 2, 2023 by Rootly