import { SubResource } from './network-interface-ip-config.js'; import { PublicIPAddress } from './public-ip-adress.js'; import { Subnet } from './subnet.js'; export type FrontendIPConfiguration = { etag: string; id: string; name: string; properties: { gatewayLoadBalancer: SubResource; inboundNatPools: SubResource[]; inboundNatRules: SubResource[]; loadBalancingRules: SubResource[]; outboundRules: SubResource[]; privateIPAddress: string; privateIPAddressVersion: string; privateIPAllocationMethod: string; provisioningState: string; publicIPAddress: PublicIPAddress; publicIPPrefix: SubResource; subnet: Subnet; }; type: string; zones: string[]; };