@komminarlabs/influxdb
Version:
A Pulumi package for creating and managing InfluxDB resources.
21 lines (20 loc) • 792 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Lists buckets. InfluxDB retrieves buckets owned by the organization associated with the authorization (API token).
*/
export declare function getBuckets(opts?: pulumi.InvokeOptions): Promise<GetBucketsResult>;
/**
* A collection of values returned by getBuckets.
*/
export interface GetBucketsResult {
readonly buckets: outputs.GetBucketsBucket[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
}
/**
* Lists buckets. InfluxDB retrieves buckets owned by the organization associated with the authorization (API token).
*/
export declare function getBucketsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBucketsResult>;