UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

109 lines 3.92 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.ContactGroup = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage vmp contact group * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const fooContact = new volcengine.vmp.Contact("fooContact", { * email: "acctest1@tftest.com", * webhook: { * address: "https://www.acctest1.com", * }, * larkBotWebhook: { * address: "https://www.acctest1.com", * }, * dingTalkBotWebhook: { * address: "https://www.dingacctest1.com", * atMobiles: ["18046891812"], * }, * phoneNumber: { * countryCode: "+86", * number: "18310101010", * }, * }); * const foo1 = new volcengine.vmp.Contact("foo1", { * email: "acctest2@tftest.com", * webhook: { * address: "https://www.acctest2.com", * }, * larkBotWebhook: { * address: "https://www.acctest2.com", * }, * dingTalkBotWebhook: { * address: "https://www.dingacctest2.com", * atMobiles: ["18046891813"], * }, * phoneNumber: { * countryCode: "+86", * number: "18310101011", * }, * }); * const fooContactGroup = new volcengine.vmp.ContactGroup("fooContactGroup", {contactIds: [ * fooContact.id, * foo1.id, * ]}); * ``` * * ## Import * * VMP Contact Group can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:vmp/contactGroup:ContactGroup default 60dde3ca-951c-4c05-8777-e5a7caa07ad6 * ``` */ 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, id, state, opts) { return new ContactGroup(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * 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) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === ContactGroup.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["contactIds"] = state ? state.contactIds : undefined; resourceInputs["createTime"] = state ? state.createTime : undefined; resourceInputs["name"] = state ? state.name : undefined; } else { const args = argsOrState; resourceInputs["contactIds"] = args ? args.contactIds : undefined; resourceInputs["name"] = args ? args.name : undefined; resourceInputs["createTime"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(ContactGroup.__pulumiType, name, resourceInputs, opts); } } exports.ContactGroup = ContactGroup; /** @internal */ ContactGroup.__pulumiType = 'volcengine:vmp/contactGroup:ContactGroup'; //# sourceMappingURL=contactGroup.js.map