import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Data source for retrieving a central notification channel in Harness. */ export declare function getCentralNotificationChannel(args: GetCentralNotificationChannelArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCentralNotificationChannel. */ export interface GetCentralNotificationChannelArgs { /** * Account identifier associated with this notification channel. */ account?: string; /** * Configuration details of the notification channel. */ channels?: inputs.platform.GetCentralNotificationChannelChannel[]; /** * Timestamp when the notification channel was created. */ created?: number; /** * Unique identifier of the notification channel. */ identifier: string; /** * Timestamp when the notification channel was last modified. */ lastModified?: number; /** * Name of the notification channel. */ name?: string; /** * Type of notification channel. One of: EMAIL, SLACK, PAGERDUTY, MSTeams, WEBHOOK, DATADOG. */ notificationChannelType?: string; /** * Identifier of the organization the notification channel is scoped to. */ org?: string; /** * Identifier of the project the notification channel is scoped to. */ project?: string; /** * Status of the notification channel. Possible values are ENABLED or DISABLED. */ status?: string; } /** * A collection of values returned by getCentralNotificationChannel. */ export interface GetCentralNotificationChannelResult { /** * Account identifier associated with this notification channel. */ readonly account?: string; /** * Configuration details of the notification channel. */ readonly channels?: outputs.platform.GetCentralNotificationChannelChannel[]; /** * Timestamp when the notification channel was created. */ readonly created?: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the notification channel. */ readonly identifier: string; /** * Timestamp when the notification channel was last modified. */ readonly lastModified?: number; /** * Name of the notification channel. */ readonly name?: string; /** * Type of notification channel. One of: EMAIL, SLACK, PAGERDUTY, MSTeams, WEBHOOK, DATADOG. */ readonly notificationChannelType?: string; /** * Identifier of the organization the notification channel is scoped to. */ readonly org?: string; /** * Identifier of the project the notification channel is scoped to. */ readonly project?: string; /** * Status of the notification channel. Possible values are ENABLED or DISABLED. */ readonly status?: string; } /** * Data source for retrieving a central notification channel in Harness. */ export declare function getCentralNotificationChannelOutput(args: GetCentralNotificationChannelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCentralNotificationChannel. */ export interface GetCentralNotificationChannelOutputArgs { /** * Account identifier associated with this notification channel. */ account?: pulumi.Input; /** * Configuration details of the notification channel. */ channels?: pulumi.Input[] | undefined>; /** * Timestamp when the notification channel was created. */ created?: pulumi.Input; /** * Unique identifier of the notification channel. */ identifier: pulumi.Input; /** * Timestamp when the notification channel was last modified. */ lastModified?: pulumi.Input; /** * Name of the notification channel. */ name?: pulumi.Input; /** * Type of notification channel. One of: EMAIL, SLACK, PAGERDUTY, MSTeams, WEBHOOK, DATADOG. */ notificationChannelType?: pulumi.Input; /** * Identifier of the organization the notification channel is scoped to. */ org?: pulumi.Input; /** * Identifier of the project the notification channel is scoped to. */ project?: pulumi.Input; /** * Status of the notification channel. Possible values are ENABLED or DISABLED. */ status?: pulumi.Input; } //# sourceMappingURL=getCentralNotificationChannel.d.ts.map