import * as pulumi from "@pulumi/pulumi"; /** * Gets the description of an exclusion in the _Default sink. */ export declare function getExclusion(args: GetExclusionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetExclusionArgs { exclusionId: string; project?: string; } export interface GetExclusionResult { /** * The creation timestamp of the exclusion.This field may not be present for older exclusions. */ readonly createTime: string; /** * Optional. A description of this exclusion. */ readonly description: string; /** * Optional. If set to True, then this exclusion is disabled and it does not exclude any log entries. You can update an exclusion to change the value of this field. */ readonly disabled: boolean; /** * An advanced logs filter (https://cloud.google.com/logging/docs/view/advanced-queries) that matches the log entries to be excluded. By using the sample function (https://cloud.google.com/logging/docs/view/advanced-queries#sample), you can exclude less than 100% of the matching log entries.For example, the following query matches 99% of low-severity log entries from Google Cloud Storage buckets:resource.type=gcs_bucket severity; export interface GetExclusionOutputArgs { exclusionId: pulumi.Input; project?: pulumi.Input; }