import * as pulumi from "@pulumi/pulumi"; /** * Gets a view on a log bucket. */ export declare function getOrganizationBucketView(args: GetOrganizationBucketViewArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetOrganizationBucketViewArgs { bucketId: string; location: string; organizationId: string; viewId: string; } export interface GetOrganizationBucketViewResult { /** * 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 getOrganizationBucketViewOutput(args: GetOrganizationBucketViewOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetOrganizationBucketViewOutputArgs { bucketId: pulumi.Input; location: pulumi.Input; organizationId: pulumi.Input; viewId: pulumi.Input; }