Skip to content

Commit 022ad90

Browse files
authored
Merge pull request #493 from ukfast/add-new-lbv2-props
Add new monitoring properties to target groups and new session cookie…
2 parents 511f5f4 + 24f5379 commit 022ad90

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

src/Loadbalancers/Entities/Target.php

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* @property boolean $disableHttp2
2020
* @property boolean $http2Only
2121
* @property boolean $active
22+
* @property string $sessionCookieValue
2223
* @property \DateTime $createdAt
2324
* @property \DateTime $updatedAt
2425
*/

src/Loadbalancers/Entities/TargetGroup.php

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
* @property string $monitorHost
2525
* @property string $monitorHttpVersion
2626
* @property string $monitorExpect
27+
* @property string $monitorExpectString
28+
* @property bool $monitorExpectStringRegex
2729
* @property bool $monitorTcpMonitoring
2830
* @property string $customOptions
2931
* @property int $checkPort

src/Loadbalancers/TargetClient.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function getEntityMap()
2424
'check_fall' => 'checkFall',
2525
'disable_http2' => 'disableHttp2',
2626
'http2_only' => 'http2Only',
27+
'session_cookie_value' => 'sessionCookieValue',
2728
'created_at' => 'createdAt',
2829
'updated_at' => 'updatedAt',
2930
];

src/Loadbalancers/TargetGroupClient.php

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ public function getEntityMap()
3030
'monitor_host' => 'monitorHost',
3131
'monitor_http_version' => 'monitorHttpVersion',
3232
'monitor_expect' => 'monitorExpect',
33+
'monitor_expect_string' => 'monitorExpectString',
34+
'monitor_expect_string_regex' => 'monitorExpectStringRegex',
3335
'monitor_tcp_monitoring' => 'monitorTcpMonitoring',
3436
'custom_options' => 'customOptions',
3537
'check_port' => 'checkPort',

0 commit comments

Comments
 (0)