Skip to content

Commit 206a412

Browse files
authored
Merge pull request #507 from ans-group/lb77-lbv2-surface-ability-to-assign-an-error-page-to-a-listener
Added listenerId to Loadbalancers V2 ErrorPage entity and entity map
2 parents f6a830c + e175179 commit 206a412

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Loadbalancers/Entities/ErrorPage.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
/**
88
* @property int $id
9-
* @property int $targetGroupId
9+
* @property int|null $targetGroupId
10+
* @property int|null $listenerId
1011
* @property string $statusCodes
1112
* @property string $content
1213
* @property \DateTime $createdAt

src/Loadbalancers/ErrorPageClient.php

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public function getEntityMap()
1717
return [
1818
'id' => 'id',
1919
'target_group_id' => 'targetGroupId',
20+
'listener_id' => 'listenerId',
2021
'status_codes' => 'statusCodes',
2122
'content' => 'content',
2223
'created_at' => 'createdAt',

0 commit comments

Comments
 (0)