Skip to content

Commit 4f10962

Browse files
Regenerate datamigration client
1 parent c9fa9d7 commit 4f10962

File tree

5 files changed

+98
-0
lines changed

5 files changed

+98
-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/ConversionWorkspace.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ class ConversionWorkspace extends \Google\Model
2525
public $createTime;
2626
protected $destinationType = DatabaseEngineInfo::class;
2727
protected $destinationDataType = '';
28+
/**
29+
* @var string
30+
*/
31+
public $destinationProvider;
2832
/**
2933
* @var string
3034
*/
@@ -51,6 +55,10 @@ class ConversionWorkspace extends \Google\Model
5155
public $name;
5256
protected $sourceType = DatabaseEngineInfo::class;
5357
protected $sourceDataType = '';
58+
/**
59+
* @var string
60+
*/
61+
public $sourceProvider;
5462
/**
5563
* @var string
5664
*/
@@ -84,6 +92,20 @@ public function getDestination()
8492
{
8593
return $this->destination;
8694
}
95+
/**
96+
* @param string
97+
*/
98+
public function setDestinationProvider($destinationProvider)
99+
{
100+
$this->destinationProvider = $destinationProvider;
101+
}
102+
/**
103+
* @return string
104+
*/
105+
public function getDestinationProvider()
106+
{
107+
return $this->destinationProvider;
108+
}
87109
/**
88110
* @param string
89111
*/
@@ -182,6 +204,20 @@ public function getSource()
182204
{
183205
return $this->source;
184206
}
207+
/**
208+
* @param string
209+
*/
210+
public function setSourceProvider($sourceProvider)
211+
{
212+
$this->sourceProvider = $sourceProvider;
213+
}
214+
/**
215+
* @return string
216+
*/
217+
public function getSourceProvider()
218+
{
219+
return $this->sourceProvider;
220+
}
185221
/**
186222
* @param string
187223
*/

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
*/

src/DatabaseMigrationService/SslConfig.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ class SslConfig extends \Google\Model
3131
* @var string
3232
*/
3333
public $clientKey;
34+
/**
35+
* @var string[]
36+
*/
37+
public $sslFlags;
3438
/**
3539
* @var string
3640
*/
@@ -78,6 +82,20 @@ public function getClientKey()
7882
{
7983
return $this->clientKey;
8084
}
85+
/**
86+
* @param string[]
87+
*/
88+
public function setSslFlags($sslFlags)
89+
{
90+
$this->sslFlags = $sslFlags;
91+
}
92+
/**
93+
* @return string[]
94+
*/
95+
public function getSslFlags()
96+
{
97+
return $this->sslFlags;
98+
}
8199
/**
82100
* @param string
83101
*/

0 commit comments

Comments
 (0)