import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Details of contact groups that meet the criteria * * ## Import * * ```sh * $ pulumi import volcenginecc:cloudmonitor/contactGroup:ContactGroup example "contact_group_id" * ``` */ export declare class ContactGroup extends pulumi.CustomResource { /** * Get an existing ContactGroup resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ContactGroupState, opts?: pulumi.CustomResourceOptions): ContactGroup; /** * Returns true if the given object is an instance of ContactGroup. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ContactGroup; /** * Account ID that created this contact group */ readonly accountId: pulumi.Output; /** * Contact group ID */ readonly contactGroupId: pulumi.Output; readonly contacts: pulumi.Output; /** * Contact group creation time */ readonly createdAt: pulumi.Output; /** * Contact group description. If left blank, defaults to an empty string. Length must be between 1 and 255 characters. Chinese, English, underscores, and other special characters are allowed */ readonly description: pulumi.Output; /** * Contact group name. Cannot start with a digit or hyphen. Can only contain Chinese characters, letters, digits, underscores _, and hyphens -. Length must be between 1 and 128 characters */ readonly name: pulumi.Output; /** * Contact group update time */ readonly updatedAt: pulumi.Output; /** * Create a ContactGroup resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ContactGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ContactGroup resources. */ export interface ContactGroupState { /** * Account ID that created this contact group */ accountId?: pulumi.Input; /** * Contact group ID */ contactGroupId?: pulumi.Input; contacts?: pulumi.Input[]>; /** * Contact group creation time */ createdAt?: pulumi.Input; /** * Contact group description. If left blank, defaults to an empty string. Length must be between 1 and 255 characters. Chinese, English, underscores, and other special characters are allowed */ description?: pulumi.Input; /** * Contact group name. Cannot start with a digit or hyphen. Can only contain Chinese characters, letters, digits, underscores _, and hyphens -. Length must be between 1 and 128 characters */ name?: pulumi.Input; /** * Contact group update time */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a ContactGroup resource. */ export interface ContactGroupArgs { contacts?: pulumi.Input[]>; /** * Contact group description. If left blank, defaults to an empty string. Length must be between 1 and 255 characters. Chinese, English, underscores, and other special characters are allowed */ description?: pulumi.Input; /** * Contact group name. Cannot start with a digit or hyphen. Can only contain Chinese characters, letters, digits, underscores _, and hyphens -. Length must be between 1 and 128 characters */ name: pulumi.Input; }