class Fastly::Version

def validate

Validate this Version
def validate
  hash = fetcher.client.get("#{Version.put_path(self)}/validate")
  valid = ("ok" == hash["status"])
  message = hash['msg']
  [valid, message]
end