<?php

require "aps/2/runtime.php";

// Main class
/**
 * @type("http://aps-standard.org/samples/starter1p/vps/1.2")
 * @implements("http://aps-standard.org/types/core/resource/1.0")
 */
class vps extends APS\ResourceBase {

   ## Relation with the management context

   /**
    * @link("http://aps-standard.org/samples/starter1p/management/1.0")
    * @required
    */
   public $management;

   ## VPS properties

   /**
    * @type("string")
    * @title("name")
    * @description("Server Name")
    */
   public $name;
   
   /**
    * @type("string")
    * @title("OS")
    * @description("Operating System")
    */
   public $os;
    
}
?>
