Skip to content

Commit 521cc3a

Browse files
authored
Merge pull request #558 from ans-group/update-ecloud-availiability-zone-entity
Update the AvailabilityZone entity. Entity property changes: Added a new property features (an array of strings) to the AvailabilityZone entity and removed the createdAt and updatedAt properties from the docblock. Mapping updates: Updated the mapping array in AvailabilityZone to include the new features property.
2 parents b2d645f + b3e49dd commit 521cc3a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/eCloud/Entities/AvailabilityZone.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
* @property string $datacentreSiteId
1212
* @property string $resourceTierId
1313
* @property string $state
14-
* @property string $createdAt
15-
* @property string $updatedAt
14+
* @property array<int, string> $features
1615
*/
1716
class AvailabilityZone extends Entity
1817
{
@@ -25,5 +24,6 @@ class AvailabilityZone extends Entity
2524
'datacentre_site_id' => 'datacentreSiteId',
2625
'resource_tier_id' => 'resourceTierId',
2726
'state' => 'state',
27+
'features' => 'features',
2828
];
2929
}

0 commit comments

Comments
 (0)