/** Parameters to update a pool member */
export interface MemberUpdate {
    /** Name of the resource */
    name?: string;
    /** Weight of a member determines the portion of requests or connections it services compared to the other members of the pool */
    weight?: number;
}
//# sourceMappingURL=MemberUpdate.d.ts.map