getClusterAlertGroup
Use this data source to retrieve information about a Rancher v2 cluster alert group.
Example Usage
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(Rancher2.GetClusterAlertGroup.InvokeAsync(new Rancher2.GetClusterAlertGroupArgs
{
ClusterId = "<cluster_id>",
Name = "<cluster_alert_group_name>",
}));
}
}
package main
import (
"github.com/pulumi/pulumi-rancher2/sdk/v2/go/rancher2"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rancher2.LookupClusterAlertGroup(ctx, &rancher2.LookupClusterAlertGroupArgs{
ClusterId: "<cluster_id>",
Name: "<cluster_alert_group_name>",
}, nil)
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_rancher2 as rancher2
foo = rancher2.get_cluster_alert_group(cluster_id="<cluster_id>",
name="<cluster_alert_group_name>")
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
const foo = pulumi.output(rancher2.getClusterAlertGroup({
clusterId: "<cluster_id>",
name: "<cluster_alert_group_name>",
}, { async: true }));
Using getClusterAlertGroup
function getClusterAlertGroup(args: GetClusterAlertGroupArgs, opts?: InvokeOptions): Promise<GetClusterAlertGroupResult>
def get_cluster_alert_group(cluster_id: Optional[str] = None, name: Optional[str] = None, opts: Optional[InvokeOptions] = None) -> GetClusterAlertGroupResult
func LookupClusterAlertGroup(ctx *Context, args *LookupClusterAlertGroupArgs, opts ...InvokeOption) (*LookupClusterAlertGroupResult, error)
Note: This function is named
LookupClusterAlertGroup
in the Go SDK.
public static class GetClusterAlertGroup {
public static Task<GetClusterAlertGroupResult> InvokeAsync(GetClusterAlertGroupArgs args, InvokeOptions? opts = null)
}
The following arguments are supported:
- cluster_
id str The cluster id where create cluster alert group (string)
- name str
The cluster alert group name (string)
getClusterAlertGroup Result
The following output properties are available:
- Annotations Dictionary<string, object>
(Computed) The cluster alert group annotations (map)
- Cluster
Id string - Description string
(Computed) The cluster alert group description (string)
- Group
Interval intSeconds (Computed) The cluster alert group interval seconds. Default:
180
(int)- Group
Wait intSeconds (Computed) The cluster alert group wait seconds. Default:
180
(int)- Id string
The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, object>
(Computed) The cluster alert group labels (map)
- Name string
- Recipients
List<Get
Cluster Alert Group Recipient> (Computed) The cluster alert group recipients (list)
- Repeat
Interval intSeconds (Computed) The cluster alert group wait seconds. Default:
3600
(int)
- Annotations map[string]interface{}
(Computed) The cluster alert group annotations (map)
- Cluster
Id string - Description string
(Computed) The cluster alert group description (string)
- Group
Interval intSeconds (Computed) The cluster alert group interval seconds. Default:
180
(int)- Group
Wait intSeconds (Computed) The cluster alert group wait seconds. Default:
180
(int)- Id string
The provider-assigned unique ID for this managed resource.
- Labels map[string]interface{}
(Computed) The cluster alert group labels (map)
- Name string
- Recipients
[]Get
Cluster Alert Group Recipient (Computed) The cluster alert group recipients (list)
- Repeat
Interval intSeconds (Computed) The cluster alert group wait seconds. Default:
3600
(int)
- annotations {[key: string]: any}
(Computed) The cluster alert group annotations (map)
- cluster
Id string - description string
(Computed) The cluster alert group description (string)
- group
Interval numberSeconds (Computed) The cluster alert group interval seconds. Default:
180
(int)- group
Wait numberSeconds (Computed) The cluster alert group wait seconds. Default:
180
(int)- id string
The provider-assigned unique ID for this managed resource.
- labels {[key: string]: any}
(Computed) The cluster alert group labels (map)
- name string
- recipients
Get
Cluster Alert Group Recipient[] (Computed) The cluster alert group recipients (list)
- repeat
Interval numberSeconds (Computed) The cluster alert group wait seconds. Default:
3600
(int)
- annotations Mapping[str, Any]
(Computed) The cluster alert group annotations (map)
- cluster_
id str - description str
(Computed) The cluster alert group description (string)
- group_
interval_ intseconds (Computed) The cluster alert group interval seconds. Default:
180
(int)- group_
wait_ intseconds (Computed) The cluster alert group wait seconds. Default:
180
(int)- id str
The provider-assigned unique ID for this managed resource.
- labels Mapping[str, Any]
(Computed) The cluster alert group labels (map)
- name str
- recipients
Sequence[Get
Cluster Alert Group Recipient] (Computed) The cluster alert group recipients (list)
- repeat_
interval_ intseconds (Computed) The cluster alert group wait seconds. Default:
3600
(int)
Supporting Types
GetClusterAlertGroupRecipient
- Notifier
Id string - Notifier
Type string - Recipient string
- Default
Recipient bool
- Notifier
Id string - Notifier
Type string - Recipient string
- Default
Recipient bool
- notifier
Id string - notifier
Type string - recipient string
- default
Recipient boolean
- notifier_
id str - notifier_
type str - recipient str
- default_
recipient 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.