Skip to content

Commit 002f610

Browse files
Regenerate domains client (#5414)
1 parent 1c3580d commit 002f610

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

src/CloudDomains/HealthCheckTargets.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,27 @@
2020
class HealthCheckTargets extends \Google\Collection
2121
{
2222
protected $collection_key = 'internalLoadBalancer';
23+
/**
24+
* @var string[]
25+
*/
26+
public $externalEndpoints;
2327
protected $internalLoadBalancerType = LoadBalancerTarget::class;
2428
protected $internalLoadBalancerDataType = 'array';
2529

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+
}
2644
/**
2745
* @param LoadBalancerTarget[]
2846
*/

src/CloudDomains/RRSetRoutingPolicy.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ class RRSetRoutingPolicy extends \Google\Model
2323
protected $geoDataType = '';
2424
protected $geoPolicyType = GeoPolicy::class;
2525
protected $geoPolicyDataType = '';
26+
/**
27+
* @var string
28+
*/
29+
public $healthCheck;
2630
protected $primaryBackupType = PrimaryBackupPolicy::class;
2731
protected $primaryBackupDataType = '';
2832
protected $wrrType = WrrPolicy::class;
@@ -58,6 +62,20 @@ public function getGeoPolicy()
5862
{
5963
return $this->geoPolicy;
6064
}
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+
}
6179
/**
6280
* @param PrimaryBackupPolicy
6381
*/

0 commit comments

Comments
 (0)