import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a notification config. */ export declare function getOrganizationNotificationConfig(args: GetOrganizationNotificationConfigArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetOrganizationNotificationConfigArgs { notificationConfigId: string; organizationId: string; } export interface GetOrganizationNotificationConfigResult { /** * 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 getOrganizationNotificationConfigOutput(args: GetOrganizationNotificationConfigOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetOrganizationNotificationConfigOutputArgs { notificationConfigId: pulumi.Input; organizationId: pulumi.Input; }