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/ConversionWorkspace.java
+48Lines changed: 48 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,13 @@ public final class ConversionWorkspace extends com.google.api.client.json.Generi
44
44
@com.google.api.client.util.Key
45
45
privateDatabaseEngineInfodestination;
46
46
47
+
/**
48
+
* Optional. The provider for the destination database.
49
+
* The value may be {@code null}.
50
+
*/
51
+
@com.google.api.client.util.Key
52
+
privatejava.lang.StringdestinationProvider;
53
+
47
54
/**
48
55
* Optional. The display name for the workspace.
49
56
* The value may be {@code null}.
@@ -98,6 +105,13 @@ public final class ConversionWorkspace extends com.google.api.client.json.Generi
98
105
@com.google.api.client.util.Key
99
106
privateDatabaseEngineInfosource;
100
107
108
+
/**
109
+
* Optional. The provider for the source database.
110
+
* The value may be {@code null}.
111
+
*/
112
+
@com.google.api.client.util.Key
113
+
privatejava.lang.StringsourceProvider;
114
+
101
115
/**
102
116
* Output only. The timestamp when the workspace resource was last updated.
103
117
* The value may be {@code null}.
@@ -139,6 +153,23 @@ public ConversionWorkspace setDestination(DatabaseEngineInfo destination) {
139
153
returnthis;
140
154
}
141
155
156
+
/**
157
+
* Optional. The provider for the destination database.
158
+
* @return value or {@code null} for none
159
+
*/
160
+
publicjava.lang.StringgetDestinationProvider() {
161
+
returndestinationProvider;
162
+
}
163
+
164
+
/**
165
+
* Optional. The provider for the destination database.
166
+
* @param destinationProvider destinationProvider or {@code null} for none
0 commit comments