import * as pulumi from "@pulumi/pulumi";
export declare class PlatformBucket extends pulumi.CustomResource {
    /**
     * Get an existing PlatformBucket 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 state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: PlatformBucketState, opts?: pulumi.CustomResourceOptions): PlatformBucket;
    /**
     * Returns true if the given object is an instance of PlatformBucket.  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 PlatformBucket;
    /**
     * The name of the bucket definition when visualized within the UI
     */
    readonly displayName: pulumi.Output<string | undefined>;
    /**
     * The name / id of the bucket definition
     */
    readonly name: pulumi.Output<string>;
    /**
     * The retention of stored data in days
     */
    readonly retention: pulumi.Output<number>;
    /**
     * The status of the bucket definition. Usually has the value `active` unless an update or delete is currently happening
     */
    readonly status: pulumi.Output<string>;
    /**
     * The table the bucket definition applies to. Possible values are `logs`, `spans`,	`events` and `bizevents`. Changing this attribute will result in deleting and re-creating the bucket definition
     */
    readonly table: pulumi.Output<string>;
    /**
     * Create a PlatformBucket 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: PlatformBucketArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering PlatformBucket resources.
 */
export interface PlatformBucketState {
    /**
     * The name of the bucket definition when visualized within the UI
     */
    displayName?: pulumi.Input<string>;
    /**
     * The name / id of the bucket definition
     */
    name?: pulumi.Input<string>;
    /**
     * The retention of stored data in days
     */
    retention?: pulumi.Input<number>;
    /**
     * The status of the bucket definition. Usually has the value `active` unless an update or delete is currently happening
     */
    status?: pulumi.Input<string>;
    /**
     * The table the bucket definition applies to. Possible values are `logs`, `spans`,	`events` and `bizevents`. Changing this attribute will result in deleting and re-creating the bucket definition
     */
    table?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a PlatformBucket resource.
 */
export interface PlatformBucketArgs {
    /**
     * The name of the bucket definition when visualized within the UI
     */
    displayName?: pulumi.Input<string>;
    /**
     * The name / id of the bucket definition
     */
    name?: pulumi.Input<string>;
    /**
     * The retention of stored data in days
     */
    retention: pulumi.Input<number>;
    /**
     * The table the bucket definition applies to. Possible values are `logs`, `spans`,	`events` and `bizevents`. Changing this attribute will result in deleting and re-creating the bucket definition
     */
    table: pulumi.Input<string>;
}
