import * as pulumi from "@pulumi/pulumi"; /** * Creates a view over log entries in a log bucket. A bucket may contain a maximum of 30 views. * Auto-naming is currently not supported for this resource. */ export declare class FolderBucketView extends pulumi.CustomResource { /** * Get an existing FolderBucketView resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): FolderBucketView; /** * Returns true if the given object is an instance of FolderBucketView. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FolderBucketView; readonly bucketId: pulumi.Output; /** * The creation timestamp of the view. */ readonly createTime: pulumi.Output; /** * Describes this view. */ readonly description: pulumi.Output; /** * 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: pulumi.Output; readonly folderId: pulumi.Output; readonly location: pulumi.Output; /** * The resource name of the view.For example:projects/my-project/locations/global/buckets/my-bucket/views/my-view */ readonly name: pulumi.Output; /** * The last update timestamp of the view. */ readonly updateTime: pulumi.Output; /** * Required. A client-assigned identifier such as "my-view". Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. */ readonly viewId: pulumi.Output; /** * Create a FolderBucketView resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FolderBucketViewArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a FolderBucketView resource. */ export interface FolderBucketViewArgs { bucketId: pulumi.Input; /** * Describes this view. */ description?: pulumi.Input; /** * 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") */ filter?: pulumi.Input; folderId: pulumi.Input; location?: pulumi.Input; /** * The resource name of the view.For example:projects/my-project/locations/global/buckets/my-bucket/views/my-view */ name?: pulumi.Input; /** * Required. A client-assigned identifier such as "my-view". Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. */ viewId: pulumi.Input; }