Interface Topic

interface Topic {
    name: string;
    spec: {
        ignoreRackAssignment: boolean;
        partitions: number;
        replicationFactor: number;
        type: string;
    };
    status: {
        reason: string;
        replicaMap: {
            [key: string]: string;
        };
        resolution: string;
    };
}

Properties

Properties

name: string
spec: {
    ignoreRackAssignment: boolean;
    partitions: number;
    replicationFactor: number;
    type: string;
}

Type declaration

  • ignoreRackAssignment: boolean
  • partitions: number
  • replicationFactor: number
  • type: string
status: {
    reason: string;
    replicaMap: {
        [key: string]: string;
    };
    resolution: string;
}

Type declaration

  • reason: string
  • replicaMap: {
        [key: string]: string;
    }
    • [key: string]: string
  • resolution: string

Generated using TypeDoc