class Fastly::Version

def self.create_new(fetcher, opts)

Create an entirely new version, not cloned from the previous one.
def self.create_new(fetcher, opts)
  hash = fetcher.client.post(Version.post_path(opts))
  return nil if hash.nil?
  Version.new(hash, fetcher)
end