import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource for interacting with the Datadog Slack channel API * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const testChannel = new datadog.slack.Channel("test_channel", { * accountName: "foo", * channelName: "#test_channel", * display: { * message: true, * notified: false, * snapshot: false, * tags: true, * }, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Slack channel integrations can be imported using their accountName and channelName separated with a colon (`:`). * * ```sh * $ pulumi import datadog:slack/channel:Channel test_channel "foo:#test_channel" * ``` */ export declare class Channel extends pulumi.CustomResource { /** * Get an existing Channel 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?: ChannelState, opts?: pulumi.CustomResourceOptions): Channel; /** * Returns true if the given object is an instance of Channel. 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 Channel; /** * Slack account name. */ readonly accountName: pulumi.Output; /** * Slack channel name. */ readonly channelName: pulumi.Output; /** * Configuration options for what is shown in an alert event message. */ readonly display: pulumi.Output; /** * Create a Channel 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: ChannelArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Channel resources. */ export interface ChannelState { /** * Slack account name. */ accountName?: pulumi.Input; /** * Slack channel name. */ channelName?: pulumi.Input; /** * Configuration options for what is shown in an alert event message. */ display?: pulumi.Input; } /** * The set of arguments for constructing a Channel resource. */ export interface ChannelArgs { /** * Slack account name. */ accountName: pulumi.Input; /** * Slack channel name. */ channelName: pulumi.Input; /** * Configuration options for what is shown in an alert event message. */ display: pulumi.Input; }