Skip to content

Commit f763c7d

Browse files
Regenerate workloadmanager client
1 parent c9fa9d7 commit f763c7d

File tree

4 files changed

+26
-32
lines changed

4 files changed

+26
-32
lines changed

src/WorkloadManager.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
9494
'type' => 'string',
9595
'required' => true,
9696
],
97+
'extraLocationTypes' => [
98+
'location' => 'query',
99+
'type' => 'string',
100+
'repeated' => true,
101+
],
97102
'filter' => [
98103
'location' => 'query',
99104
'type' => 'string',

src/WorkloadManager/Resource/ProjectsLocations.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ public function get($name, $optParams = [])
5252
* applicable.
5353
* @param array $optParams Optional parameters.
5454
*
55+
* @opt_param string extraLocationTypes Optional. A list of extra location types
56+
* that should be used as conditions for controlling the visibility of the
57+
* locations.
5558
* @opt_param string filter A filter to narrow down results to a preferred
5659
* subset. The filtering language accepts strings like `"displayName=tokyo"`,
5760
* and is documented in more detail in [AIP-160](https://google.aip.dev/160).

src/WorkloadManager/UpcomingMaintenanceEvent.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ class UpcomingMaintenanceEvent extends \Google\Model
2727
* @var string
2828
*/
2929
public $maintenanceStatus;
30+
/**
31+
* @var string
32+
*/
33+
public $onHostMaintenance;
3034
/**
3135
* @var string
3236
*/
@@ -64,6 +68,20 @@ public function getMaintenanceStatus()
6468
{
6569
return $this->maintenanceStatus;
6670
}
71+
/**
72+
* @param string
73+
*/
74+
public function setOnHostMaintenance($onHostMaintenance)
75+
{
76+
$this->onHostMaintenance = $onHostMaintenance;
77+
}
78+
/**
79+
* @return string
80+
*/
81+
public function getOnHostMaintenance()
82+
{
83+
return $this->onHostMaintenance;
84+
}
6785
/**
6886
* @param string
6987
*/

src/WorkloadManager/WorkloadProfile.php

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,10 @@ class WorkloadProfile extends \Google\Model
3939
public $refreshedTime;
4040
protected $sapWorkloadType = SapWorkload::class;
4141
protected $sapWorkloadDataType = '';
42-
protected $sqlserverWorkloadType = SqlserverWorkload::class;
43-
protected $sqlserverWorkloadDataType = '';
4442
/**
4543
* @var string
4644
*/
4745
public $state;
48-
protected $threeTierWorkloadType = ThreeTierWorkload::class;
49-
protected $threeTierWorkloadDataType = '';
5046
/**
5147
* @var string
5248
*/
@@ -150,20 +146,6 @@ public function getSapWorkload()
150146
{
151147
return $this->sapWorkload;
152148
}
153-
/**
154-
* @param SqlserverWorkload
155-
*/
156-
public function setSqlserverWorkload(SqlserverWorkload $sqlserverWorkload)
157-
{
158-
$this->sqlserverWorkload = $sqlserverWorkload;
159-
}
160-
/**
161-
* @return SqlserverWorkload
162-
*/
163-
public function getSqlserverWorkload()
164-
{
165-
return $this->sqlserverWorkload;
166-
}
167149
/**
168150
* @param string
169151
*/
@@ -178,20 +160,6 @@ public function getState()
178160
{
179161
return $this->state;
180162
}
181-
/**
182-
* @param ThreeTierWorkload
183-
*/
184-
public function setThreeTierWorkload(ThreeTierWorkload $threeTierWorkload)
185-
{
186-
$this->threeTierWorkload = $threeTierWorkload;
187-
}
188-
/**
189-
* @return ThreeTierWorkload
190-
*/
191-
public function getThreeTierWorkload()
192-
{
193-
return $this->threeTierWorkload;
194-
}
195163
/**
196164
* @param string
197165
*/

0 commit comments

Comments
 (0)