Skip to content

Commit

Permalink
Merge pull request #493 from ukfast/add-new-lbv2-props
Browse files Browse the repository at this point in the history
Add new monitoring properties to target groups and new session cookie…
  • Loading branch information
rbibby authored Jun 29, 2022
2 parents 511f5f4 + 24f5379 commit 022ad90
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Loadbalancers/Entities/Target.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @property boolean $disableHttp2
* @property boolean $http2Only
* @property boolean $active
* @property string $sessionCookieValue
* @property \DateTime $createdAt
* @property \DateTime $updatedAt
*/
Expand Down
2 changes: 2 additions & 0 deletions src/Loadbalancers/Entities/TargetGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
* @property string $monitorHost
* @property string $monitorHttpVersion
* @property string $monitorExpect
* @property string $monitorExpectString
* @property bool $monitorExpectStringRegex
* @property bool $monitorTcpMonitoring
* @property string $customOptions
* @property int $checkPort
Expand Down
1 change: 1 addition & 0 deletions src/Loadbalancers/TargetClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public function getEntityMap()
'check_fall' => 'checkFall',
'disable_http2' => 'disableHttp2',
'http2_only' => 'http2Only',
'session_cookie_value' => 'sessionCookieValue',
'created_at' => 'createdAt',
'updated_at' => 'updatedAt',
];
Expand Down
2 changes: 2 additions & 0 deletions src/Loadbalancers/TargetGroupClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public function getEntityMap()
'monitor_host' => 'monitorHost',
'monitor_http_version' => 'monitorHttpVersion',
'monitor_expect' => 'monitorExpect',
'monitor_expect_string' => 'monitorExpectString',
'monitor_expect_string_regex' => 'monitorExpectStringRegex',
'monitor_tcp_monitoring' => 'monitorTcpMonitoring',
'custom_options' => 'customOptions',
'check_port' => 'checkPort',
Expand Down

0 comments on commit 022ad90

Please sign in to comment.