in compute/compute.go [159:193]
func (o OrderBy) listCallOptionApply(i interface{}) interface{} {
switch c := i.(type) {
case *compute.FirewallsListCall:
return c.OrderBy(string(o))
case *computeAlpha.ImagesListCall:
return c.OrderBy(string(o))
case *compute.ImagesListCall:
return c.OrderBy(string(o))
case *computeAlpha.MachineImagesListCall:
return c.OrderBy(string(o))
case *computeBeta.MachineImagesListCall:
return c.OrderBy(string(o))
case *compute.MachineImagesListCall:
return c.OrderBy(string(o))
case *compute.MachineTypesListCall:
return c.OrderBy(string(o))
case *compute.ZonesListCall:
return c.OrderBy(string(o))
case *compute.InstancesListCall:
return c.OrderBy(string(o))
case *compute.DisksListCall:
return c.OrderBy(string(o))
case *compute.NetworksListCall:
return c.OrderBy(string(o))
case *compute.SubnetworksListCall:
return c.OrderBy(string(o))
case *compute.InstancesAggregatedListCall:
return c.OrderBy(string(o))
case *compute.DisksAggregatedListCall:
return c.OrderBy(string(o))
case *compute.SubnetworksAggregatedListCall:
return c.OrderBy(string(o))
}
return i
}