Skip to content

Commit 8b0e977

Browse files
1 parent 7752dc9 commit 8b0e977

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

src/VMMigrationService.php

+5
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,11 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
9696
'type' => 'string',
9797
'required' => true,
9898
],
99+
'extraLocationTypes' => [
100+
'location' => 'query',
101+
'type' => 'string',
102+
'repeated' => true,
103+
],
99104
'filter' => [
100105
'location' => 'query',
101106
'type' => 'string',

src/VMMigrationService/ImageImportOsAdaptationParameters.php

+18
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919

2020
class ImageImportOsAdaptationParameters extends \Google\Model
2121
{
22+
/**
23+
* @var string
24+
*/
25+
public $bootConversion;
2226
/**
2327
* @var bool
2428
*/
@@ -28,6 +32,20 @@ class ImageImportOsAdaptationParameters extends \Google\Model
2832
*/
2933
public $licenseType;
3034

35+
/**
36+
* @param string
37+
*/
38+
public function setBootConversion($bootConversion)
39+
{
40+
$this->bootConversion = $bootConversion;
41+
}
42+
/**
43+
* @return string
44+
*/
45+
public function getBootConversion()
46+
{
47+
return $this->bootConversion;
48+
}
3149
/**
3250
* @param bool
3351
*/

src/VMMigrationService/Resource/ProjectsLocations.php

+3
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).

0 commit comments

Comments
 (0)