diff --git a/VERSION.north.azure b/VERSION.north.azure index ac26739..49ab0f5 100644 --- a/VERSION.north.azure +++ b/VERSION.north.azure @@ -1,2 +1,2 @@ -fledge_north_azure_version=2.0.1 -fledge_version>=2.0 +fledge_north_azure_version=2.1.0 +fledge_version>=2.1 diff --git a/docs/images/azure.jpg b/docs/images/azure.jpg index 50396ca..db9ef3f 100644 Binary files a/docs/images/azure.jpg and b/docs/images/azure.jpg differ diff --git a/docs/index.rst b/docs/index.rst index fa1c274..643c1fe 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,11 +24,6 @@ The configuration of the *Azure* plugin requires a few simple configuration para - **Data Source**: Which Fledge data to send to Azure; Readings or Fledge Statistics. - - **Apply Filter**: This allows a simple jq format filter rule to be applied to the connection. This should not be confused with Fledge filters and exists for backward compatibility reason only. - - - **Filter Rule**: A jq filter rule to apply. Since the introduction of Fledge filters in the north task this has become deprecated and should not be used. - - JSON Payload ------------ diff --git a/python/fledge/plugins/north/azure/azure.py b/python/fledge/plugins/north/azure/azure.py index a6e61a7..f15b1eb 100644 --- a/python/fledge/plugins/north/azure/azure.py +++ b/python/fledge/plugins/north/azure/azure.py @@ -52,28 +52,13 @@ "options": [ "readings", "statistics" ], 'order': '3', 'displayName': 'Source' - }, - "applyFilter": { - "description": "Should filter be applied before processing data", - "type": "boolean", - "default": "false", - 'order': '4', - 'displayName': 'Apply Filter' - }, - "filterRule": { - "description": "JQ formatted filter to apply (only applicable if applyFilter is True)", - "type": "string", - "default": ".[]", - 'order': '5', - 'displayName': 'Filter Rule', - "validity": "applyFilter == \"true\"" } } def plugin_info(): return { 'name': 'azure', - 'version': '2.0.1', + 'version': '2.1.0', 'type': 'north', 'interface': '1.0', 'config': _DEFAULT_CONFIG