interface Bucket {
    createdAt?: string;
    description?: string;
    id?: string;
    labels?: Labels;
    links?: {
        labels?: string;
        members?: string;
        org?: string;
        owners?: string;
        self?: string;
        write?: string;
    };
    name: string;
    orgID?: string;
    retentionRules: RetentionRules;
    rp?: string;
    schemaType?: SchemaType;
    type?: "user"
    | "system";
    updatedAt?: string;
}

Properties

createdAt?: string
description?: string
id?: string
labels?: Labels
links?: {
    labels?: string;
    members?: string;
    org?: string;
    owners?: string;
    self?: string;
    write?: string;
}

Type declaration

  • Optionallabels?: string

    URL to retrieve labels for this bucket.

  • Optionalmembers?: string

    URL to retrieve members that can read this bucket.

  • Optionalorg?: string

    URL to retrieve parent organization for this bucket.

  • Optionalowners?: string

    URL to retrieve owners that can read and write to this bucket.

  • Optionalself?: string

    URL for this bucket.

  • Optionalwrite?: string

    URL to write line protocol to this bucket.

name: string
orgID?: string
retentionRules: RetentionRules
rp?: string
schemaType?: SchemaType
type?: "user" | "system"
updatedAt?: string
MMNEPVFCICPMFPCPTTAAATR