GetProjectAlertGroup

Use this data source to retrieve information about a Rancher v2 project alert group.

Example Usage

using Pulumi;
using Rancher2 = Pulumi.Rancher2;

class MyStack : Stack
{
    public MyStack()
    {
        var foo = Output.Create(Rancher2.GetProjectAlertGroup.InvokeAsync(new Rancher2.GetProjectAlertGroupArgs
        {
            Name = "<project_alert_group_name>",
            ProjectId = "<project_id>",
        }));
    }

}

Coming soon!

import pulumi
import pulumi_rancher2 as rancher2

foo = rancher2.get_project_alert_group(name="<project_alert_group_name>",
    project_id="<project_id>")
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";

const foo = pulumi.output(rancher2.getProjectAlertGroup({
    name: "<project_alert_group_name>",
    projectId: "<project_id>",
}, { async: true }));

Using GetProjectAlertGroup

function getProjectAlertGroup(args: GetProjectAlertGroupArgs, opts?: InvokeOptions): Promise<GetProjectAlertGroupResult>
function  get_project_alert_group(name=None, project_id=None, opts=None)
func LookupProjectAlertGroup(ctx *Context, args *LookupProjectAlertGroupArgs, opts ...InvokeOption) (*LookupProjectAlertGroupResult, error)

Note: This function is named LookupProjectAlertGroup in the Go SDK.

public static class GetProjectAlertGroup {
    public static Task<GetProjectAlertGroupResult> InvokeAsync(GetProjectAlertGroupArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

Name string

The project alert group name (string)

ProjectId string

The project id where create project alert group (string)

Name string

The project alert group name (string)

ProjectId string

The project id where create project alert group (string)

name string

The project alert group name (string)

projectId string

The project id where create project alert group (string)

name str

The project alert group name (string)

project_id str

The project id where create project alert group (string)

GetProjectAlertGroup Result

The following output properties are available:

Annotations Dictionary<string, object>

(Computed) The project alert group annotations (map)

Description string

(Computed) The project alert group description (string)

GroupIntervalSeconds int

(Computed) The project alert group interval seconds. Default: 180 (int)

GroupWaitSeconds int

(Computed) The project alert group wait seconds. Default: 180 (int)

Id string

The provider-assigned unique ID for this managed resource.

Labels Dictionary<string, object>

(Computed) The project alert group labels (map)

Name string
ProjectId string
Recipients List<GetProjectAlertGroupRecipient>

(Computed) The project alert group recipients (list)

RepeatIntervalSeconds int

(Computed) The project alert group wait seconds. Default: 3600 (int)

Annotations map[string]interface{}

(Computed) The project alert group annotations (map)

Description string

(Computed) The project alert group description (string)

GroupIntervalSeconds int

(Computed) The project alert group interval seconds. Default: 180 (int)

GroupWaitSeconds int

(Computed) The project alert group wait seconds. Default: 180 (int)

Id string

The provider-assigned unique ID for this managed resource.

Labels map[string]interface{}

(Computed) The project alert group labels (map)

Name string
ProjectId string
Recipients []GetProjectAlertGroupRecipient

(Computed) The project alert group recipients (list)

RepeatIntervalSeconds int

(Computed) The project alert group wait seconds. Default: 3600 (int)

annotations {[key: string]: any}

(Computed) The project alert group annotations (map)

description string

(Computed) The project alert group description (string)

groupIntervalSeconds number

(Computed) The project alert group interval seconds. Default: 180 (int)

groupWaitSeconds number

(Computed) The project alert group wait seconds. Default: 180 (int)

id string

The provider-assigned unique ID for this managed resource.

labels {[key: string]: any}

(Computed) The project alert group labels (map)

name string
projectId string
recipients GetProjectAlertGroupRecipient[]

(Computed) The project alert group recipients (list)

repeatIntervalSeconds number

(Computed) The project alert group wait seconds. Default: 3600 (int)

annotations Dict[str, Any]

(Computed) The project alert group annotations (map)

description str

(Computed) The project alert group description (string)

group_interval_seconds float

(Computed) The project alert group interval seconds. Default: 180 (int)

group_wait_seconds float

(Computed) The project alert group wait seconds. Default: 180 (int)

id str

The provider-assigned unique ID for this managed resource.

labels Dict[str, Any]

(Computed) The project alert group labels (map)

name str
project_id str
recipients List[GetProjectAlertGroupRecipient]

(Computed) The project alert group recipients (list)

repeat_interval_seconds float

(Computed) The project alert group wait seconds. Default: 3600 (int)

Supporting Types

GetProjectAlertGroupRecipient

See the output API doc for this type.

See the output API doc for this type.

See the output API doc for this type.

NotifierId string
NotifierType string
Recipient string
DefaultRecipient bool
NotifierId string
NotifierType string
Recipient string
DefaultRecipient bool
notifierId string
notifierType string
recipient string
defaultRecipient boolean
notifierId str
notifierType str
recipient str
defaultRecipient bool

Package Details

Repository
https://github.com/pulumi/pulumi-rancher2
License
Apache-2.0
Notes
This Pulumi package is based on the rancher2 Terraform Provider.