File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 20
20
class HealthCheckTargets extends \Google \Collection
21
21
{
22
22
protected $ collection_key = 'internalLoadBalancer ' ;
23
+ /**
24
+ * @var string[]
25
+ */
26
+ public $ externalEndpoints ;
23
27
protected $ internalLoadBalancerType = LoadBalancerTarget::class;
24
28
protected $ internalLoadBalancerDataType = 'array ' ;
25
29
30
+ /**
31
+ * @param string[]
32
+ */
33
+ public function setExternalEndpoints ($ externalEndpoints )
34
+ {
35
+ $ this ->externalEndpoints = $ externalEndpoints ;
36
+ }
37
+ /**
38
+ * @return string[]
39
+ */
40
+ public function getExternalEndpoints ()
41
+ {
42
+ return $ this ->externalEndpoints ;
43
+ }
26
44
/**
27
45
* @param LoadBalancerTarget[]
28
46
*/
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ class RRSetRoutingPolicy extends \Google\Model
23
23
protected $ geoDataType = '' ;
24
24
protected $ geoPolicyType = GeoPolicy::class;
25
25
protected $ geoPolicyDataType = '' ;
26
+ /**
27
+ * @var string
28
+ */
29
+ public $ healthCheck ;
26
30
protected $ primaryBackupType = PrimaryBackupPolicy::class;
27
31
protected $ primaryBackupDataType = '' ;
28
32
protected $ wrrType = WrrPolicy::class;
@@ -58,6 +62,20 @@ public function getGeoPolicy()
58
62
{
59
63
return $ this ->geoPolicy ;
60
64
}
65
+ /**
66
+ * @param string
67
+ */
68
+ public function setHealthCheck ($ healthCheck )
69
+ {
70
+ $ this ->healthCheck = $ healthCheck ;
71
+ }
72
+ /**
73
+ * @return string
74
+ */
75
+ public function getHealthCheck ()
76
+ {
77
+ return $ this ->healthCheck ;
78
+ }
61
79
/**
62
80
* @param PrimaryBackupPolicy
63
81
*/
You can’t perform that action at this time.
0 commit comments