import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a notification config. */ export declare function getNotificationConfig(args: GetNotificationConfigArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetNotificationConfigArgs { notificationConfigId: string; project?: string; } export interface GetNotificationConfigResult { /** * The description of the notification config (max of 1024 characters). */ readonly description: string; /** * The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket". */ readonly name: string; /** * The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]". */ readonly pubsubTopic: string; /** * The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic. */ readonly serviceAccount: string; /** * The config for triggering streaming-based notifications. */ readonly streamingConfig: outputs.securitycenter.v1.StreamingConfigResponse; } /** * Gets a notification config. */ export declare function getNotificationConfigOutput(args: GetNotificationConfigOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetNotificationConfigOutputArgs { notificationConfigId: pulumi.Input; project?: pulumi.Input; }