You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-datamigration/v1/2.0.0/com/google/api/services/datamigration/v1/model/PostgreSqlConnectionProfile.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,13 @@ public final class PostgreSqlConnectionProfile extends com.google.api.client.jso
46
46
@com.google.api.client.util.Key
47
47
privatejava.lang.StringcloudSqlId;
48
48
49
+
/**
50
+
* Optional. The name of the specific database within the host.
51
+
* The value may be {@code null}.
52
+
*/
53
+
@com.google.api.client.util.Key
54
+
privatejava.lang.Stringdatabase;
55
+
49
56
/**
50
57
* Required. The IP or hostname of the source PostgreSQL database.
51
58
* The value may be {@code null}.
@@ -151,6 +158,23 @@ public PostgreSqlConnectionProfile setCloudSqlId(java.lang.String cloudSqlId) {
151
158
returnthis;
152
159
}
153
160
161
+
/**
162
+
* Optional. The name of the specific database within the host.
163
+
* @return value or {@code null} for none
164
+
*/
165
+
publicjava.lang.StringgetDatabase() {
166
+
returndatabase;
167
+
}
168
+
169
+
/**
170
+
* Optional. The name of the specific database within the host.
171
+
* @param database database or {@code null} for none
0 commit comments