Skip to content

Commit 1d80ba8

Browse files
Regenerate datamigration client
1 parent c9fa9d7 commit 1d80ba8

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

src/DatabaseMigrationService.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,11 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
109109
'type' => 'string',
110110
'required' => true,
111111
],
112+
'extraLocationTypes' => [
113+
'location' => 'query',
114+
'type' => 'string',
115+
'repeated' => true,
116+
],
112117
'filter' => [
113118
'location' => 'query',
114119
'type' => 'string',

src/DatabaseMigrationService/Resource/ProjectsLocations.php

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

src/DatabaseMigrationService/SourceObjectIdentifier.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ class SourceObjectIdentifier extends \Google\Model
2323
* @var string
2424
*/
2525
public $database;
26+
/**
27+
* @var string
28+
*/
29+
public $schema;
30+
/**
31+
* @var string
32+
*/
33+
public $table;
2634
/**
2735
* @var string
2836
*/
@@ -42,6 +50,34 @@ public function getDatabase()
4250
{
4351
return $this->database;
4452
}
53+
/**
54+
* @param string
55+
*/
56+
public function setSchema($schema)
57+
{
58+
$this->schema = $schema;
59+
}
60+
/**
61+
* @return string
62+
*/
63+
public function getSchema()
64+
{
65+
return $this->schema;
66+
}
67+
/**
68+
* @param string
69+
*/
70+
public function setTable($table)
71+
{
72+
$this->table = $table;
73+
}
74+
/**
75+
* @return string
76+
*/
77+
public function getTable()
78+
{
79+
return $this->table;
80+
}
4581
/**
4682
* @param string
4783
*/

0 commit comments

Comments
 (0)