@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
24 lines • 832 B
TypeScript
import { StreamKindEnum } from './StreamKindEnum';
import { StreamStatusEnum } from './StreamStatusEnum';
/** A stream to send data */
export interface Stream {
/** Backlog of the stream in RFC3339 (duration) */
backlog: string;
/** Description of the stream */
description?: string;
/** ID of the stream */
id: string;
/** Kind of persistence for the stream. */
kind: StreamKindEnum;
/** Name of the stream */
name: string;
/** Regions where the stream is available */
regions: string[];
/** Retention of the stream in RFC3339 (duration) */
retention: string;
/** Status of the stream. */
status: StreamStatusEnum;
/** Throttling of the stream (number of message allowed per second for the stream) */
throttling: number;
}
//# sourceMappingURL=Stream.d.ts.map