1. Packages
  2. Rootly
  3. API Docs
  4. getIncidentRole
Rootly v1.5.0 published on Thursday, Apr 25, 2024 by Rootly

rootly.getIncidentRole

Explore with Pulumi AI

Rootly v1.5.0 published on Thursday, Apr 25, 2024 by Rootly

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Rootly = Pulumi.Rootly;

return await Deployment.RunAsync(() => 
{
    var my_incident_role = Rootly.GetIncidentRole.Invoke(new()
    {
        Slug = "my-incident-role",
    });

});
Copy
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.LookupIncidentRole(ctx, &rootly.LookupIncidentRoleArgs{
			Slug: pulumi.StringRef("my-incident-role"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rootly.RootlyFunctions;
import com.pulumi.rootly.inputs.GetIncidentRoleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var my-incident-role = RootlyFunctions.getIncidentRole(GetIncidentRoleArgs.builder()
            .slug("my-incident-role")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as rootly from "@pulumi/rootly";

const my-incident-role = rootly.getIncidentRole({
    slug: "my-incident-role",
});
Copy
import pulumi
import pulumi_rootly as rootly

my_incident_role = rootly.get_incident_role(slug="my-incident-role")
Copy
variables:
  my-incident-role:
    fn::invoke:
      Function: rootly:getIncidentRole
      Arguments:
        slug: my-incident-role
Copy

Using getIncidentRole

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getIncidentRole(args: GetIncidentRoleArgs, opts?: InvokeOptions): Promise<GetIncidentRoleResult>
function getIncidentRoleOutput(args: GetIncidentRoleOutputArgs, opts?: InvokeOptions): Output<GetIncidentRoleResult>
Copy
def get_incident_role(created_at: Optional[Mapping[str, Any]] = None,
                      enabled: Optional[bool] = None,
                      name: Optional[str] = None,
                      slug: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetIncidentRoleResult
def get_incident_role_output(created_at: Optional[pulumi.Input[Mapping[str, Any]]] = None,
                      enabled: Optional[pulumi.Input[bool]] = None,
                      name: Optional[pulumi.Input[str]] = None,
                      slug: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetIncidentRoleResult]
Copy
func LookupIncidentRole(ctx *Context, args *LookupIncidentRoleArgs, opts ...InvokeOption) (*LookupIncidentRoleResult, error)
func LookupIncidentRoleOutput(ctx *Context, args *LookupIncidentRoleOutputArgs, opts ...InvokeOption) LookupIncidentRoleResultOutput
Copy

> Note: This function is named LookupIncidentRole in the Go SDK.

public static class GetIncidentRole 
{
    public static Task<GetIncidentRoleResult> InvokeAsync(GetIncidentRoleArgs args, InvokeOptions? opts = null)
    public static Output<GetIncidentRoleResult> Invoke(GetIncidentRoleInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetIncidentRoleResult> getIncidentRole(GetIncidentRoleArgs args, InvokeOptions options)
public static Output<GetIncidentRoleResult> getIncidentRole(GetIncidentRoleArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: rootly:index/getIncidentRole:getIncidentRole
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CreatedAt Dictionary<string, object>
Filter by date range using 'lt' and 'gt'.
Enabled bool
Name string
Slug string
CreatedAt map[string]interface{}
Filter by date range using 'lt' and 'gt'.
Enabled bool
Name string
Slug string
createdAt Map<String,Object>
Filter by date range using 'lt' and 'gt'.
enabled Boolean
name String
slug String
createdAt {[key: string]: any}
Filter by date range using 'lt' and 'gt'.
enabled boolean
name string
slug string
created_at Mapping[str, Any]
Filter by date range using 'lt' and 'gt'.
enabled bool
name str
slug str
createdAt Map<Any>
Filter by date range using 'lt' and 'gt'.
enabled Boolean
name String
slug String

getIncidentRole Result

The following output properties are available:

Id string
The ID of this resource.
Name string
Slug string
CreatedAt Dictionary<string, object>
Filter by date range using 'lt' and 'gt'.
Enabled bool
Id string
The ID of this resource.
Name string
Slug string
CreatedAt map[string]interface{}
Filter by date range using 'lt' and 'gt'.
Enabled bool
id String
The ID of this resource.
name String
slug String
createdAt Map<String,Object>
Filter by date range using 'lt' and 'gt'.
enabled Boolean
id string
The ID of this resource.
name string
slug string
createdAt {[key: string]: any}
Filter by date range using 'lt' and 'gt'.
enabled boolean
id str
The ID of this resource.
name str
slug str
created_at Mapping[str, Any]
Filter by date range using 'lt' and 'gt'.
enabled bool
id String
The ID of this resource.
name String
slug String
createdAt Map<Any>
Filter by date range using 'lt' and 'gt'.
enabled Boolean

Package Details

Repository
rootly rootlyhq/pulumi-rootly
License
Apache-2.0
Notes
This Pulumi package is based on the rootly Terraform Provider.
Rootly v1.5.0 published on Thursday, Apr 25, 2024 by Rootly