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-datastream/v1/2.0.0/com/google/api/services/datastream/v1/model/MongodbSourceConfig.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,13 @@ public final class MongodbSourceConfig extends com.google.api.client.json.Generi
43
43
@com.google.api.client.util.Key
44
44
privateMongodbClusterincludeObjects;
45
45
46
+
/**
47
+
* Optional. MongoDB JSON mode to use for the stream.
48
+
* The value may be {@code null}.
49
+
*/
50
+
@com.google.api.client.util.Key
51
+
privatejava.lang.StringjsonMode;
52
+
46
53
/**
47
54
* Optional. Maximum number of concurrent backfill tasks. The number should be non-negative and
48
55
* less than or equal to 50. If not set (or set to 0), the system's default value is used
@@ -85,6 +92,23 @@ public MongodbSourceConfig setIncludeObjects(MongodbCluster includeObjects) {
85
92
returnthis;
86
93
}
87
94
95
+
/**
96
+
* Optional. MongoDB JSON mode to use for the stream.
97
+
* @return value or {@code null} for none
98
+
*/
99
+
publicjava.lang.StringgetJsonMode() {
100
+
returnjsonMode;
101
+
}
102
+
103
+
/**
104
+
* Optional. MongoDB JSON mode to use for the stream.
105
+
* @param jsonMode jsonMode or {@code null} for none
0 commit comments