@@ -54,21 +54,21 @@ public class Application {
54
54
){{
55
55
streams = new com.airbyte.api.models.shared.StreamConfiguration []{{
56
56
add(new StreamConfiguration (
57
- " string " ){{
58
- name = " string " ;
57
+ " <value> " ){{
58
+ name = " <value> " ;
59
59
}}),
60
60
}};
61
61
62
62
}};
63
63
dataResidency = GeographyEnum . EU ;
64
- name = " string " ;
64
+ name = " <value> " ;
65
65
namespaceDefinition = NamespaceDefinitionEnum . CUSTOM_FORMAT ;
66
66
namespaceFormat = " ${SOURCE_NAMESPACE}" ;
67
67
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum . IGNORE ;
68
- prefix = " string " ;
68
+ prefix = " <value> " ;
69
69
schedule = new ConnectionSchedule (
70
70
ScheduleTypeEnum . CRON ){{
71
- cronExpression = " string " ;
71
+ cronExpression = " <value> " ;
72
72
73
73
}};
74
74
status = ConnectionStatusEnum . DEPRECATED ;
@@ -129,7 +129,7 @@ public class Application {
129
129
.build();
130
130
131
131
com.airbyte.api.models.operations. DeleteConnectionRequest req = new DeleteConnectionRequest (
132
- " string " );
132
+ " <value> " );
133
133
134
134
com.airbyte.api.models.operations. DeleteConnectionResponse res = sdk. connections. deleteConnection(req);
135
135
@@ -185,7 +185,7 @@ public class Application {
185
185
.build();
186
186
187
187
com.airbyte.api.models.operations. GetConnectionRequest req = new GetConnectionRequest (
188
- " string " );
188
+ " <value> " );
189
189
190
190
com.airbyte.api.models.operations. GetConnectionResponse res = sdk. connections. getConnection(req);
191
191
@@ -321,27 +321,27 @@ public class Application {
321
321
){{
322
322
streams = new com.airbyte.api.models.shared.StreamConfiguration []{{
323
323
add(new StreamConfiguration (
324
- " string " ){{
325
- name = " string " ;
324
+ " <value> " ){{
325
+ name = " <value> " ;
326
326
}}),
327
327
}};
328
328
329
329
}};
330
330
dataResidency = GeographyEnumNoDefault . AUTO ;
331
- name = " string " ;
331
+ name = " <value> " ;
332
332
namespaceDefinition = NamespaceDefinitionEnumNoDefault . SOURCE ;
333
333
namespaceFormat = " ${SOURCE_NAMESPACE}" ;
334
334
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnumNoDefault . PROPAGATE_FULLY ;
335
- prefix = " string " ;
335
+ prefix = " <value> " ;
336
336
schedule = new ConnectionSchedule (
337
337
ScheduleTypeEnum . CRON ){{
338
- cronExpression = " string " ;
338
+ cronExpression = " <value> " ;
339
339
340
340
}};
341
341
status = ConnectionStatusEnum . ACTIVE ;
342
342
343
343
}},
344
- " string " );
344
+ " <value> " );
345
345
346
346
com.airbyte.api.models.operations. PatchConnectionResponse res = sdk. connections. patchConnection(req);
347
347
0 commit comments