import * as pulumi from "@pulumi/pulumi"; /** * Gets a view on a log bucket. */ export declare function getBillingAccountBucketView(args: GetBillingAccountBucketViewArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetBillingAccountBucketViewArgs { billingAccountId: string; bucketId: string; location: string; viewId: string; } export interface GetBillingAccountBucketViewResult { /** * The creation timestamp of the view. */ readonly createTime: string; /** * Describes this view. */ readonly description: string; /** * Filter that restricts which log entries in a bucket are visible in this view.Filters are restricted to be a logical AND of ==/!= of any of the following: originating project/folder/organization/billing account. resource type log idFor example:SOURCE("projects/myproject") AND resource.type = "gce_instance" AND LOG_ID("stdout") */ readonly filter: string; /** * The resource name of the view.For example:projects/my-project/locations/global/buckets/my-bucket/views/my-view */ readonly name: string; /** * The last update timestamp of the view. */ readonly updateTime: string; } /** * Gets a view on a log bucket. */ export declare function getBillingAccountBucketViewOutput(args: GetBillingAccountBucketViewOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetBillingAccountBucketViewOutputArgs { billingAccountId: pulumi.Input; bucketId: pulumi.Input; location: pulumi.Input; viewId: pulumi.Input; }