Skip to content

Commit 2dc9e3c

Browse files
1 parent 8308660 commit 2dc9e3c

File tree

4 files changed

+72
-0
lines changed

4 files changed

+72
-0
lines changed

src/Datastream/MysqlProfile.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ class MysqlProfile extends \Google\Model
3131
* @var int
3232
*/
3333
public $port;
34+
/**
35+
* @var string
36+
*/
37+
public $secretManagerStoredPassword;
3438
protected $sslConfigType = MysqlSslConfig::class;
3539
protected $sslConfigDataType = '';
3640
/**
@@ -80,6 +84,20 @@ public function getPort()
8084
{
8185
return $this->port;
8286
}
87+
/**
88+
* @param string
89+
*/
90+
public function setSecretManagerStoredPassword($secretManagerStoredPassword)
91+
{
92+
$this->secretManagerStoredPassword = $secretManagerStoredPassword;
93+
}
94+
/**
95+
* @return string
96+
*/
97+
public function getSecretManagerStoredPassword()
98+
{
99+
return $this->secretManagerStoredPassword;
100+
}
83101
/**
84102
* @param MysqlSslConfig
85103
*/

src/Datastream/OracleAsmConfig.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ class OracleAsmConfig extends \Google\Model
4141
* @var int
4242
*/
4343
public $port;
44+
/**
45+
* @var string
46+
*/
47+
public $secretManagerStoredPassword;
4448
/**
4549
* @var string
4650
*/
@@ -130,6 +134,20 @@ public function getPort()
130134
{
131135
return $this->port;
132136
}
137+
/**
138+
* @param string
139+
*/
140+
public function setSecretManagerStoredPassword($secretManagerStoredPassword)
141+
{
142+
$this->secretManagerStoredPassword = $secretManagerStoredPassword;
143+
}
144+
/**
145+
* @return string
146+
*/
147+
public function getSecretManagerStoredPassword()
148+
{
149+
return $this->secretManagerStoredPassword;
150+
}
133151
/**
134152
* @param string
135153
*/

src/Datastream/PostgresqlProfile.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ class PostgresqlProfile extends \Google\Model
3535
* @var int
3636
*/
3737
public $port;
38+
/**
39+
* @var string
40+
*/
41+
public $secretManagerStoredPassword;
3842
protected $sslConfigType = PostgresqlSslConfig::class;
3943
protected $sslConfigDataType = '';
4044
/**
@@ -98,6 +102,20 @@ public function getPort()
98102
{
99103
return $this->port;
100104
}
105+
/**
106+
* @param string
107+
*/
108+
public function setSecretManagerStoredPassword($secretManagerStoredPassword)
109+
{
110+
$this->secretManagerStoredPassword = $secretManagerStoredPassword;
111+
}
112+
/**
113+
* @return string
114+
*/
115+
public function getSecretManagerStoredPassword()
116+
{
117+
return $this->secretManagerStoredPassword;
118+
}
101119
/**
102120
* @param PostgresqlSslConfig
103121
*/

src/Datastream/SqlServerProfile.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ class SqlServerProfile extends \Google\Model
3535
* @var int
3636
*/
3737
public $port;
38+
/**
39+
* @var string
40+
*/
41+
public $secretManagerStoredPassword;
3842
/**
3943
* @var string
4044
*/
@@ -96,6 +100,20 @@ public function getPort()
96100
{
97101
return $this->port;
98102
}
103+
/**
104+
* @param string
105+
*/
106+
public function setSecretManagerStoredPassword($secretManagerStoredPassword)
107+
{
108+
$this->secretManagerStoredPassword = $secretManagerStoredPassword;
109+
}
110+
/**
111+
* @return string
112+
*/
113+
public function getSecretManagerStoredPassword()
114+
{
115+
return $this->secretManagerStoredPassword;
116+
}
99117
/**
100118
* @param string
101119
*/

0 commit comments

Comments
 (0)