Skip to content

Commit 2033bb7

Browse files
1 parent 6253230 commit 2033bb7

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

src/SaaSServiceManagement/Resource/ProjectsLocations.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ public function get($name, $optParams = [])
5252
* applicable.
5353
* @param array $optParams Optional parameters.
5454
*
55-
* @opt_param string extraLocationTypes Optional. Unless explicitly documented
56-
* otherwise, don't use this unsupported field which is primarily intended for
57-
* internal usage.
55+
* @opt_param string extraLocationTypes Optional. Do not use this field. It is
56+
* unsupported and is ignored unless explicitly documented otherwise. This is
57+
* primarily for internal usage.
5858
* @opt_param string filter A filter to narrow down results to a preferred
5959
* subset. The filtering language accepts strings like `"displayName=tokyo"`,
6060
* and is documented in more detail in [AIP-160](https://google.aip.dev/160).

src/SaaSServiceManagement/Rollout.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ class Rollout extends \Google\Model
2929
* @var string
3030
*/
3131
public $createTime;
32+
/**
33+
* @var string
34+
*/
35+
public $effectiveUnitFilter;
3236
/**
3337
* @var string
3438
*/
@@ -138,6 +142,20 @@ public function getCreateTime()
138142
{
139143
return $this->createTime;
140144
}
145+
/**
146+
* @param string
147+
*/
148+
public function setEffectiveUnitFilter($effectiveUnitFilter)
149+
{
150+
$this->effectiveUnitFilter = $effectiveUnitFilter;
151+
}
152+
/**
153+
* @return string
154+
*/
155+
public function getEffectiveUnitFilter()
156+
{
157+
return $this->effectiveUnitFilter;
158+
}
141159
/**
142160
* @param string
143161
*/

0 commit comments

Comments
 (0)