UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

110 lines (109 loc) 3.13 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({}); * ``` */ /** @deprecated volcengine.tls.AlarmNotifyGroups has been deprecated in favor of volcengine.tls.getAlarmNotifyGroups */ export declare function alarmNotifyGroups(args?: AlarmNotifyGroupsArgs, opts?: pulumi.InvokeOptions): Promise<AlarmNotifyGroupsResult>; /** * A collection of arguments for invoking AlarmNotifyGroups. */ export interface AlarmNotifyGroupsArgs { /** * 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 AlarmNotifyGroups. */ export interface AlarmNotifyGroupsResult { /** * 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.AlarmNotifyGroupsGroup[]; /** * 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({}); * ``` */ /** @deprecated volcengine.tls.AlarmNotifyGroups has been deprecated in favor of volcengine.tls.getAlarmNotifyGroups */ export declare function alarmNotifyGroupsOutput(args?: AlarmNotifyGroupsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<AlarmNotifyGroupsResult>; /** * A collection of arguments for invoking AlarmNotifyGroups. */ export interface AlarmNotifyGroupsOutputArgs { /** * 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>; }