package ipranger import ( "google.golang.org/api/compute/v1" ) type computeSubnetSvc interface { List(project string) (computeSubnetAggregatedList, error) Create(project, ipRange, region, name string) (*compute.Subnetwork, error) } type computeSubnetAggregatedList map[string]compute.SubnetworksScopedList