Overview

Namespaces

  • PHP
  • Saklient
    • Cloud
      • Enums
      • Errors
      • Models
      • Resources
    • Errors

Classes

  • Activity
  • Appliance
  • Archive
  • Bridge
  • Disk
  • DiskActivity
  • DiskConfig
  • DiskPlan
  • FtpInfo
  • Icon
  • Iface
  • IfaceActivity
  • Ipv4Net
  • Ipv4Range
  • Ipv6Net
  • IsoImage
  • LbServer
  • LbVirtualIp
  • License
  • LicenseInfo
  • LoadBalancer
  • Region
  • Router
  • RouterActivity
  • RouterPlan
  • Script
  • Server
  • ServerActivity
  • ServerInstance
  • ServerPlan
  • Swytch
  • VpcRouter
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace Saklient\Cloud\Resources;
 4: 
 5: require_once __DIR__ . "/../../../Saklient/Errors/SaklientException.php";
 6: use \Saklient\Errors\SaklientException;
 7: require_once __DIR__ . "/../../../Saklient/Cloud/Client.php";
 8: use \Saklient\Cloud\Client;
 9: require_once __DIR__ . "/../../../Saklient/Cloud/Resources/Appliance.php";
10: use \Saklient\Cloud\Resources\Appliance;
11: require_once __DIR__ . "/../../../Saklient/Util.php";
12: use \Saklient\Util;
13: 
14: /** ロードバランサの実体1つに対応し、属性の取得や操作を行うためのクラス。 */
15: class VpcRouter extends Appliance {
16:     
17:     /**
18:      * @ignore
19:      * @access public
20:      * @param \Saklient\Cloud\Client $client
21:      * @param mixed $obj
22:      * @param boolean $wrapped=false
23:      */
24:     public function __construct(\Saklient\Cloud\Client $client, $obj, $wrapped=false)
25:     {
26:         parent::__construct($client, $obj, $wrapped);
27:         Util::validateArgCount(func_num_args(), 2);
28:         Util::validateType($client, "\\Saklient\\Cloud\\Client");
29:         Util::validateType($wrapped, "boolean");
30:     }
31:     
32:     
33: 
34: }
35: 
36: 
API documentation generated by ApiGen 2.8.0