import { Ip } from '../../../Ip';
/** Create a member on loadbalancer creation */
export interface MemberCreate {
    /** IP address of the resource */
    address: Ip;
    /** Name of the member */
    name: string;
    /** Protocol port number for the resource */
    protocolPort: number;
    /** Weight of a member determines the portion of requests or connections it services compared to the other members of the pool. Between 1 and 256. */
    weight?: number;
}
//# sourceMappingURL=MemberCreate.d.ts.map