import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::TOS::BucketNotification */ export declare function getBucketNotification(args: GetBucketNotificationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBucketNotification. */ export interface GetBucketNotificationArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getBucketNotification. */ export interface GetBucketNotificationResult { /** * Bucket name. */ readonly bucketName: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Event notification rule information. */ readonly notificationRules: outputs.tos.GetBucketNotificationNotificationRule[]; } /** * Data Source schema for Volcengine::TOS::BucketNotification */ export declare function getBucketNotificationOutput(args: GetBucketNotificationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBucketNotification. */ export interface GetBucketNotificationOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }