UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

108 lines (107 loc) 2.93 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of tls alarm notify groups * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.tls.getAlarmNotifyGroups({}); * ``` */ export declare function getAlarmNotifyGroups(args?: GetAlarmNotifyGroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetAlarmNotifyGroupsResult>; /** * A collection of arguments for invoking getAlarmNotifyGroups. */ export interface GetAlarmNotifyGroupsArgs { /** * The id of the alarm notify group. */ alarmNotifyGroupId?: string; /** * The name of the alarm notify group. */ alarmNotifyGroupName?: string; /** * The name of the iam project. */ iamProjectName?: string; /** * File name where to save data source results. */ outputFile?: string; /** * The name of the receiver. */ receiverName?: string; } /** * A collection of values returned by getAlarmNotifyGroups. */ export interface GetAlarmNotifyGroupsResult { /** * The id of the notify group. */ readonly alarmNotifyGroupId?: string; /** * Name of the notification group. */ readonly alarmNotifyGroupName?: string; /** * The list of the notify groups. */ readonly groups: outputs.tls.GetAlarmNotifyGroupsGroup[]; /** * The iam project name. */ readonly iamProjectName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly outputFile?: string; readonly receiverName?: string; /** * The total count of query. */ readonly totalCount: number; } /** * Use this data source to query detailed information of tls alarm notify groups * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.tls.getAlarmNotifyGroups({}); * ``` */ export declare function getAlarmNotifyGroupsOutput(args?: GetAlarmNotifyGroupsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAlarmNotifyGroupsResult>; /** * A collection of arguments for invoking getAlarmNotifyGroups. */ export interface GetAlarmNotifyGroupsOutputArgs { /** * The id of the alarm notify group. */ alarmNotifyGroupId?: pulumi.Input<string>; /** * The name of the alarm notify group. */ alarmNotifyGroupName?: pulumi.Input<string>; /** * The name of the iam project. */ iamProjectName?: pulumi.Input<string>; /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; /** * The name of the receiver. */ receiverName?: pulumi.Input<string>; }