-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ecced7
commit 251804a
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
namespace UKFast\SDK\eCloud\Entities; | ||
|
||
use DateTime; | ||
use UKFast\SDK\Entity; | ||
|
||
/** | ||
* @property string $id | ||
* @property string $name | ||
* @property string $availabilityZoneId | ||
* @property string $routerId | ||
* @property string $networkId | ||
* @property string $specificationId | ||
* @property string $instanceId | ||
* @property DateTime $createdAt | ||
* @property DateTime $updatedAt | ||
*/ | ||
class VpnGateway extends Entity | ||
{ | ||
protected $dates = ['createdAt', 'updatedAt']; | ||
|
||
public static $entityMap = [ | ||
'id' => 'id', | ||
'name' => 'name', | ||
'availability_zone_id' => 'availabilityZoneId', | ||
'router_id' => 'routerId', | ||
'network_id' => 'networkId', | ||
'specification_id' => 'specificationId', | ||
'instance_id' => 'instanceId', | ||
'created_at' => 'createdAt', | ||
'updated_at' => 'updatedAt', | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
namespace UKFast\SDK\eCloud; | ||
|
||
use UKFast\SDK\eCloud\Entities\VpnGateway; | ||
use UKFast\SDK\Entities\ClientEntityInterface; | ||
use UKFast\SDK\Traits\PageItems; | ||
|
||
class VpnGatewayClient extends Client implements ClientEntityInterface | ||
{ | ||
use PageItems; | ||
|
||
protected $collectionPath = 'v2/vpn-gateways'; | ||
|
||
public function getEntityMap() | ||
{ | ||
return VpnGateway::$entityMap; | ||
} | ||
|
||
public function loadEntity($data) | ||
{ | ||
return new VpnGateway( | ||
$this->apiToFriendly($data, VpnGateway::$entityMap) | ||
); | ||
} | ||
} |