class Fastly::Version

def upload_vcl(name, content)

Upload a VCL file for this Version
def upload_vcl(name, content)
  hash = fetcher.client.post("#{Version.put_path(self)}/vcl", name: name, content: content)
  return nil if hash.nil?
  VCL.new(hash, fetcher)
end