Skip to content

Commit

Permalink
run gradlew format (#7223)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmarxm committed Oct 20, 2021
1 parent bc78e1c commit e821919
Show file tree
Hide file tree
Showing 44 changed files with 5,270 additions and 9,940 deletions.
Expand Up @@ -78,10 +78,7 @@
"description": "When running custom transformations or Basic normalization, running queries on interactive mode can hit BQ limits, choosing batch will solve those limitss.",
"title": "Transformation Query Run Type",
"default": "interactive",
"enum": [
"interactive",
"batch"
]
"enum": ["interactive", "batch"]
},
"loading_method": {
"type": "object",
Expand Down
Expand Up @@ -24,7 +24,8 @@ public MongodbDestinationStrictEncrypt() {
@Override
public ConnectorSpecification modifySpec(ConnectorSpecification originalSpec) throws Exception {
final ConnectorSpecification spec = Jsons.clone(originalSpec);
// removing tls property for a standalone instance to disable possibility to switch off a tls connection
// removing tls property for a standalone instance to disable possibility to switch off a tls
// connection
((ObjectNode) spec.getConnectionSpecification().get("properties").get("instance_type").get("oneOf").get(0).get("properties")).remove("tls");
return spec;
}
Expand Down
@@ -1,136 +1,81 @@
{
"streams": [
{
"name": "in_app_events",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"event_time"
]
},
{
"name": "installs",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"install_time"
]
},
{
"name": "uninstall_events",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"event_time"
]
},
{
"name": "retargeting_in_app_events",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"event_time"
]
},
{
"name": "retargeting_conversions",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"install_time"
]
},
{
"name": "partners_report",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"date"
]
},
{
"name": "daily_report",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"date"
]
},
{
"name": "geo_report",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"date"
]
},
{
"name": "retargeting_partners_report",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"date"
]
},
{
"name": "retargeting_daily_report",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"date"
]
},
{
"name": "retargeting_geo_report",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"source_defined_cursor": true,
"default_cursor_field": [
"date"
]
}
{
"name": "in_app_events",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["event_time"]
},
{
"name": "installs",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["install_time"]
},
{
"name": "uninstall_events",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["event_time"]
},
{
"name": "retargeting_in_app_events",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["event_time"]
},
{
"name": "retargeting_conversions",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["install_time"]
},
{
"name": "partners_report",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["date"]
},
{
"name": "daily_report",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["date"]
},
{
"name": "geo_report",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["date"]
},
{
"name": "retargeting_partners_report",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["date"]
},
{
"name": "retargeting_daily_report",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["date"]
},
{
"name": "retargeting_geo_report",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["date"]
}
]
}
}

0 comments on commit e821919

Please sign in to comment.