Skip to content

Commit

Permalink
Update to surface resource tiers min & max ram and cpu (#504)
Browse files Browse the repository at this point in the history
* Removed duplicate method

* Updated resource tier entity

EC-252 php-sdk: add image metadata get endpoints

* Updated properties to surface parent cpu/ram

EC-437 Update SDK to surface resource tiers min/max ram and cpu

* Updated properties to surface parent cpu/ram

EC-437 Update SDK to surface resource tiers min/max ram and cpu

* Updated reference to object type

EC-437 Update SDK to surface resource tiers min/max ram and cpu

Co-authored-by: Tim Green <[email protected]>
  • Loading branch information
rawveg and Tim Green authored Oct 4, 2022
1 parent 6bff2a1 commit 4de1aba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/eCloud/Entities/ResourceTier.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
use UKFast\SDK\Entity;

/**
* @property int $id
* @property string $id
* @property string $name
* @property string $availabilityZoneId
* @property object $cpu
* @property object $ram
* @property string $createdAt
* @property string $updatedAt
*/
Expand All @@ -19,6 +21,8 @@ class ResourceTier extends Entity
'id' => 'id',
'name' => 'name',
'availability_zone_id' => 'availabilityZoneId',
'cpu' => 'cpu',
'ram' => 'ram',
'created_at' => 'createdAt',
'updated_at' => 'updatedAt',
];
Expand Down

0 comments on commit 4de1aba

Please sign in to comment.