dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
12 lines (11 loc) • 361 B
TypeScript
import { IFirewallInboundRule, IFirewallOutboundRule, IFirewallPendingChange } from '.';
export interface IFirewall {
droplet_ids?: number[];
id?: string;
inbound_rules: IFirewallInboundRule[];
name: string;
outbound_rules: IFirewallOutboundRule[];
pending_changes?: IFirewallPendingChange[];
status?: string;
tags?: string[];
}