File tree Expand file tree Collapse file tree 4 files changed +72
-0
lines changed Expand file tree Collapse file tree 4 files changed +72
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ class MysqlProfile extends \Google\Model
31
31
* @var int
32
32
*/
33
33
public $ port ;
34
+ /**
35
+ * @var string
36
+ */
37
+ public $ secretManagerStoredPassword ;
34
38
protected $ sslConfigType = MysqlSslConfig::class;
35
39
protected $ sslConfigDataType = '' ;
36
40
/**
@@ -80,6 +84,20 @@ public function getPort()
80
84
{
81
85
return $ this ->port ;
82
86
}
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
+ }
83
101
/**
84
102
* @param MysqlSslConfig
85
103
*/
Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ class OracleAsmConfig extends \Google\Model
41
41
* @var int
42
42
*/
43
43
public $ port ;
44
+ /**
45
+ * @var string
46
+ */
47
+ public $ secretManagerStoredPassword ;
44
48
/**
45
49
* @var string
46
50
*/
@@ -130,6 +134,20 @@ public function getPort()
130
134
{
131
135
return $ this ->port ;
132
136
}
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
+ }
133
151
/**
134
152
* @param string
135
153
*/
Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ class PostgresqlProfile extends \Google\Model
35
35
* @var int
36
36
*/
37
37
public $ port ;
38
+ /**
39
+ * @var string
40
+ */
41
+ public $ secretManagerStoredPassword ;
38
42
protected $ sslConfigType = PostgresqlSslConfig::class;
39
43
protected $ sslConfigDataType = '' ;
40
44
/**
@@ -98,6 +102,20 @@ public function getPort()
98
102
{
99
103
return $ this ->port ;
100
104
}
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
+ }
101
119
/**
102
120
* @param PostgresqlSslConfig
103
121
*/
Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ class SqlServerProfile extends \Google\Model
35
35
* @var int
36
36
*/
37
37
public $ port ;
38
+ /**
39
+ * @var string
40
+ */
41
+ public $ secretManagerStoredPassword ;
38
42
/**
39
43
* @var string
40
44
*/
@@ -96,6 +100,20 @@ public function getPort()
96
100
{
97
101
return $ this ->port ;
98
102
}
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
+ }
99
117
/**
100
118
* @param string
101
119
*/
You can’t perform that action at this time.
0 commit comments