Rootly v1.0.1 published on Friday, Jun 2, 2023 by Rootly
rootly.getIncidentRole
Explore with Pulumi AI
Example Usage
using Pulumi;
using Rootly = Pulumi.Rootly;
class MyStack : Stack
{
public MyStack()
{
var my_incident_role = Output.Create(Rootly.GetIncidentRole.InvokeAsync(new Rootly.GetIncidentRoleArgs
{
Slug = "my-incident-role",
}));
}
}
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, &GetIncidentRoleArgs{
Slug: pulumi.StringRef("my-incident-role"),
}, nil)
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_rootly as rootly
my_incident_role = rootly.get_incident_role(slug="my-incident-role")
import * as pulumi from "@pulumi/pulumi";
import * as rootly from "@pulumi/rootly";
const my_incident_role = pulumi.output(rootly.getIncidentRole({
slug: "my-incident-role",
}));
Coming soon!
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>
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]
func LookupIncidentRole(ctx *Context, args *LookupIncidentRoleArgs, opts ...InvokeOption) (*LookupIncidentRoleResult, error)
func LookupIncidentRoleOutput(ctx *Context, args *LookupIncidentRoleOutputArgs, opts ...InvokeOption) LookupIncidentRoleResultOutput
> 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)
}
public static CompletableFuture<GetIncidentRoleResult> getIncidentRole(GetIncidentRoleArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: rootly:index/getIncidentRole:getIncidentRole
arguments:
# arguments dictionary
The following arguments are supported:
- created_
at Mapping[str, Any] - enabled bool
- name str
- slug str
getIncidentRole Result
The following output properties are available:
- id str
- name str
- slug str
- created_
at Mapping[str, Any] - enabled bool
Package Details
- Repository
- rootly rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
rootly
Terraform Provider.