diff --git a/Makefile b/Makefile index 42cd3ee2..686ad7ca 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ .DEFAULT_GOAL := help # Default NiFi/Registry version for docker compose profiles -NIFI_VERSION ?= 2.5.0 +NIFI_VERSION ?= 2.6.0 # Python command for cross-platform compatibility # Defaults to 'python' for conda/venv users, override with PYTHON=python3 for system installs @@ -245,8 +245,8 @@ wait-ready: ## wait for readiness using profile configuration; requires NIPYAPI_ # API & Client generation fetch-openapi-base: ## refresh base OpenAPI specs for current NIFI_VERSION (always overwrite base) @echo "Refreshing base specs for NIFI_VERSION=$(NIFI_VERSION)" - bash resources/client_gen/fetch_nifi_openapi.sh nifi-single || exit 1 - bash resources/client_gen/fetch_registry_openapi.sh registry-single || exit 1 + NIFI_VERSION=$(NIFI_VERSION) bash resources/client_gen/fetch_nifi_openapi.sh nifi-single || exit 1 + NIFI_VERSION=$(NIFI_VERSION) bash resources/client_gen/fetch_registry_openapi.sh registry-single || exit 1 @echo "Base specs refreshed." augment-openapi: ## generate augmented OpenAPI specs from base (always overwrite augmented) @@ -263,8 +263,8 @@ augment-openapi: ## generate augmented OpenAPI specs from base (always overwrite fetch-openapi: fetch-openapi-base augment-openapi ## convenience: fetch base then augment -gen-clients: ## generate NiFi and Registry clients from specs (use wv_spec_variant=augmented|base) - WV_SPEC_VARIANT=augmented bash resources/client_gen/generate_api_client.sh +gen-clients: ## generate NiFi and Registry clients from specs (use wv_spec_variant=base|augmented) + wv_spec_variant=$${wv_spec_variant:-augmented} bash resources/client_gen/generate_api_client.sh # Individual testing diff --git a/docs/contributing.rst b/docs/contributing.rst index a65e0b08..a5786741 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -112,6 +112,178 @@ Ready to contribute? Here's how to set up `nipyapi` for local development. 8. Submit a pull request through the GitHub website. +Common Mistakes to Avoid +------------------------ + +When contributing to NiPyAPI, watch out for these frequent pitfalls: + +**Installation & Environment** + +* **Bracket quoting in zsh**: Running ``pip install -e .[dev]`` fails in zsh due to glob expansion. Always use quotes: ``pip install -e ".[dev]"`` or use ``make dev-install``. +* **Wrong Python version**: Project supports Python 3.9-3.12. Using 3.8 (end of life) or 3.13+ (untested) may cause compatibility issues. +* **Missing virtual environment**: Always activate a virtual environment before installing dependencies to avoid polluting system Python. + +**Testing** + +* **Missing NIPYAPI_PROFILE**: Never run ``pytest`` without setting ``NIPYAPI_PROFILE`` environment variable. Always use ``make test NIPYAPI_PROFILE=single-user`` or equivalent. +* **Services not ready**: Never assume Docker services are immediately ready after ``make up``. Always run ``make wait-ready NIPYAPI_PROFILE=`` before testing. +* **Stale certificates**: If you encounter certificate errors, run ``make down`` then ``make certs`` to regenerate fresh certificates. Never run ``make certs`` while containers are running. + +**Code Quality** + +* **Modifying generated code**: Never edit files in ``nipyapi/nifi/``, ``nipyapi/registry/``, or ``nipyapi/_version.py``. These are auto-generated and your changes will be overwritten. +* **Skipping lint checks**: Always run ``make lint`` before committing. Both flake8 and pylint must pass. +* **Incorrect line length**: Project uses 100-character line limit consistently across all tools (flake8, pylint, black, isort). + +**NiFi vs Registry Security Differences** + +**Important:** NiFi and Registry have different security implementations in their OpenAPI specifications: + +* **NiFi 2.6.0+**: Includes native security schemes (``HTTPBearerJWT``, ``CookieSecureAuthorizationBearer``) in base OpenAPI spec +* **Registry 2.6.0+**: Has NO security schemes in base OpenAPI spec - requires augmentation + +**Key implications:** + +* Registry augmentation scripts (``resources/client_gen/augmentations/registry_security.py``) remain necessary even though NiFi 2.6.0 has native security +* Both services use the same authentication flow: username/password → JWT token → Bearer auth +* The template (``configuration.mustache``) handles both cases via hardcoded ``bearerAuth`` fallback plus native scheme aliases +* Always use ``augmented`` variant when regenerating clients (default) to support both NiFi and Registry +* NiFi can work without augmentation using the ``base`` variant (2.6.0+), but Registry cannot + +**Docker & Infrastructure** + +* **Docker volume caching**: If you experience persistent issues, run ``make clean-docker`` to remove all containers and volumes, then restart the setup process. +* **Wrong profile for test**: Ensure your ``NIPYAPI_PROFILE`` matches the profile you started with ``make up``. Mixing profiles causes authentication failures. + +Make Targets Quick Reference +----------------------------- + +NiPyAPI uses Makefile targets as the primary automation interface. Run ``make help`` to see all available targets organized by category. + +**Setup & Installation** +:: + + make dev-install # Install package with dev dependencies (recommended) + make docs-install # Install documentation dependencies + make clean # Remove build, pyc, and temp artifacts + make clean-all # Nuclear clean: removes ALL including generated code + +**Testing Workflow** +:: + + # Basic test workflow + make certs # Generate certificates (once) + make up NIPYAPI_PROFILE=single-user # Start Docker services + make wait-ready NIPYAPI_PROFILE=single-user # Wait for readiness + make test NIPYAPI_PROFILE=single-user # Run tests + make down # Stop services + + # Shortcuts for specific profiles + make test-su # single-user profile + make test-ldap # secure-ldap profile + make test-mtls # secure-mtls profile + + # Comprehensive testing + make test-all # Run all automated profiles (single-user, ldap, mtls) + make coverage # Run tests with coverage report + +**Code Quality** +:: + + make lint # Run flake8 + pylint (excludes generated code) + make flake8 # Run flake8 only + make pylint # Run pylint only + make pre-commit # Run pre-commit hooks on all files + + # Formatting (manual) + black nipyapi/ && isort nipyapi/ # Auto-format code + +**Docker Operations** +:: + + make certs # Generate PKCS12 certificates for secure profiles + make up NIPYAPI_PROFILE= # Start specific profile + make down # Stop all Docker services + make wait-ready NIPYAPI_PROFILE= # Wait for services to be ready + make clean-docker # Comprehensive Docker cleanup + + # Available profiles: single-user, secure-ldap, secure-mtls, secure-oidc + +**Build & Documentation** +:: + + make dist # Build wheel and source distribution + make check-dist # Validate distribution files + make test-dist # Test that distribution can be imported + make docs # Generate Sphinx documentation + +**Complete Workflows** +:: + + make sandbox NIPYAPI_PROFILE=single-user # Create sandbox with sample objects + make rebuild-all # Comprehensive rebuild: clean → certs → APIs → clients → test → build → docs + +Generated vs Maintained Code +----------------------------- + +Understanding which code is generated vs maintained is crucial for contributing: + +**Generated Code (DO NOT MODIFY)** + +These files are automatically generated from OpenAPI specifications and should never be edited directly: + +* ``nipyapi/nifi/`` - NiFi API client +* ``nipyapi/registry/`` - Registry API client +* ``nipyapi/_version.py`` - Git version via setuptools-scm + +**Why this matters:** + +1. Your changes will be overwritten during the next client generation +2. These files are excluded from linting (flake8, pylint, black, isort) +3. Test coverage doesn't include generated code +4. Pull requests should not modify these paths + +**Maintained Code (Where to Contribute)** + +Focus your contributions on these core modules: + +* ``nipyapi/canvas.py`` - Canvas management functions +* ``nipyapi/config.py`` - Configuration and endpoints +* ``nipyapi/parameters.py`` - Parameter context operations +* ``nipyapi/profiles.py`` - Profile management system +* ``nipyapi/security.py`` - Authentication and security +* ``nipyapi/system.py`` - System-level operations +* ``nipyapi/utils.py`` - Utility functions +* ``nipyapi/versioning.py`` - Version control operations +* ``tests/`` - Test suite (always add tests for new features) +* ``examples/`` - Example scripts and usage patterns +* ``docs/`` - Documentation (RST files) + +**Regenerating Clients** + +If you need to update the generated clients (e.g., for a new NiFi version): +:: + + # Set target NiFi version + export NIFI_VERSION=2.5.0 + + # Fetch and generate + make fetch-openapi # Fetch specs from running NiFi + make gen-clients # Generate Python clients + + # Test with new clients + make test-all + +**Augmentation System** + +The project includes an augmentation system for fixing OpenAPI spec issues: + +* Base specs: ``resources/client_gen/api_defs/nifi-.json`` +* Augmentations: ``resources/client_gen/augmentations/*.py`` +* Augmented specs: ``resources/client_gen/api_defs/*-.augmented.json`` + +If you find spec issues, contribute fixes to the augmentation scripts rather than modifying generated code. + Pull Request Guidelines ----------------------- diff --git a/nipyapi/nifi/__init__.py b/nipyapi/nifi/__init__.py index b669f91c..5f4c6477 100644 --- a/nipyapi/nifi/__init__.py +++ b/nipyapi/nifi/__init__.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/api_client.py b/nipyapi/nifi/api_client.py index abade8c8..4647dc7a 100644 --- a/nipyapi/nifi/api_client.py +++ b/nipyapi/nifi/api_client.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/access_api.py b/nipyapi/nifi/apis/access_api.py index 407a958c..0ee8fc30 100644 --- a/nipyapi/nifi/apis/access_api.py +++ b/nipyapi/nifi/apis/access_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/authentication_api.py b/nipyapi/nifi/apis/authentication_api.py index 77c0b442..4664dc05 100644 --- a/nipyapi/nifi/apis/authentication_api.py +++ b/nipyapi/nifi/apis/authentication_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -98,7 +98,7 @@ def get_authentication_configuration_with_http_info(self, **kwargs): select_header_accept(['application/json']) # Authentication setting - auth_settings = ['bearerAuth'] + auth_settings = [] return self.api_client.call_api('/authentication/configuration', 'GET', path_params, diff --git a/nipyapi/nifi/apis/connections_api.py b/nipyapi/nifi/apis/connections_api.py index c9c6b6f8..7e8f3561 100644 --- a/nipyapi/nifi/apis/connections_api.py +++ b/nipyapi/nifi/apis/connections_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/controller_api.py b/nipyapi/nifi/apis/controller_api.py index f5f005d8..5d829524 100644 --- a/nipyapi/nifi/apis/controller_api.py +++ b/nipyapi/nifi/apis/controller_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -149,6 +149,8 @@ def clear_state(self, id, **kwargs): Args: id (str): The flow analysis rule id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: :class:`~nipyapi.nifi.models.ComponentStateEntity`: The response data. @@ -171,12 +173,14 @@ def clear_state_with_http_info(self, id, **kwargs): Args: id (str): The flow analysis rule id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: tuple: (:class:`~nipyapi.nifi.models.ComponentStateEntity`, status_code, headers) - Response data with HTTP details. """ - all_params = ['id'] + all_params = ['id', 'body'] all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') @@ -195,6 +199,7 @@ def clear_state_with_http_info(self, id, **kwargs): raise ValueError("Missing the required parameter `id` when calling `clear_state`") + collection_formats = {} path_params = {} @@ -209,10 +214,16 @@ def clear_state_with_http_info(self, id, **kwargs): local_var_files = {} body_params = None + if 'body' in params: + body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.\ + select_header_content_type(['*/*', 'application/json']) + # Authentication setting auth_settings = ['bearerAuth'] diff --git a/nipyapi/nifi/apis/controller_services_api.py b/nipyapi/nifi/apis/controller_services_api.py index 6364fa51..51b04d9d 100644 --- a/nipyapi/nifi/apis/controller_services_api.py +++ b/nipyapi/nifi/apis/controller_services_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -149,6 +149,8 @@ def clear_state1(self, id, **kwargs): Args: id (str): The controller service id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: :class:`~nipyapi.nifi.models.ComponentStateEntity`: The response data. @@ -171,12 +173,14 @@ def clear_state1_with_http_info(self, id, **kwargs): Args: id (str): The controller service id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: tuple: (:class:`~nipyapi.nifi.models.ComponentStateEntity`, status_code, headers) - Response data with HTTP details. """ - all_params = ['id'] + all_params = ['id', 'body'] all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') @@ -195,6 +199,7 @@ def clear_state1_with_http_info(self, id, **kwargs): raise ValueError("Missing the required parameter `id` when calling `clear_state1`") + collection_formats = {} path_params = {} @@ -209,10 +214,16 @@ def clear_state1_with_http_info(self, id, **kwargs): local_var_files = {} body_params = None + if 'body' in params: + body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.\ + select_header_content_type(['*/*', 'application/json']) + # Authentication setting auth_settings = ['bearerAuth'] diff --git a/nipyapi/nifi/apis/counters_api.py b/nipyapi/nifi/apis/counters_api.py index a69524ad..c8e22732 100644 --- a/nipyapi/nifi/apis/counters_api.py +++ b/nipyapi/nifi/apis/counters_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -134,6 +134,94 @@ def get_counters_with_http_info(self, **kwargs): _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) + def update_all_counters(self, **kwargs): + """ + Updates all counters. This will reset all counter values to 0. + + Note: This endpoint is subject to change as NiFi and it's REST API evolve. + + This method makes a synchronous HTTP request and returns the response data directly. + + For full HTTP response details (status code, headers, etc.), use the corresponding + ``update_all_counters_with_http_info()`` method instead. + + Args: + + Returns: + :class:`~nipyapi.nifi.models.CountersEntity`: The response data. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('callback'): + return self.update_all_counters_with_http_info(**kwargs) + else: + (data) = self.update_all_counters_with_http_info(**kwargs) + return data + + def update_all_counters_with_http_info(self, **kwargs): + """ + Updates all counters. This will reset all counter values to 0. + + Note: This endpoint is subject to change as NiFi and it's REST API evolve. + + This method makes a synchronous HTTP request and returns detailed response information. + + Returns the response data along with HTTP status code, headers, and other metadata. + For just the response data, use the corresponding ``update_all_counters()`` method instead. + + Args: + + Returns: + tuple: (:class:`~nipyapi.nifi.models.CountersEntity`, status_code, headers) - Response data with HTTP details. + """ + + all_params = [] + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + params = locals() + for key, val in params['kwargs'].items(): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method update_all_counters" % key + ) + params[key] = val + del params['kwargs'] + + collection_formats = {} + + path_params = {} + + query_params = [] + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + # HTTP header `Accept` + header_params['Accept'] = self.api_client.\ + select_header_accept(['application/json']) + + # Authentication setting + auth_settings = ['bearerAuth'] + + return self.api_client.call_api('/counters', 'PUT', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type='CountersEntity', + auth_settings=auth_settings, + _return_http_data_only=params.get('_return_http_data_only'), + _preload_content=params.get('_preload_content', True), + _request_timeout=params.get('_request_timeout'), + collection_formats=collection_formats) + def update_counter(self, id, **kwargs): """ Updates the specified counter. This will reset the counter value to 0. diff --git a/nipyapi/nifi/apis/data_transfer_api.py b/nipyapi/nifi/apis/data_transfer_api.py index 99ed28db..ee775a8d 100644 --- a/nipyapi/nifi/apis/data_transfer_api.py +++ b/nipyapi/nifi/apis/data_transfer_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/flow_api.py b/nipyapi/nifi/apis/flow_api.py index 02f0973c..0b0de25d 100644 --- a/nipyapi/nifi/apis/flow_api.py +++ b/nipyapi/nifi/apis/flow_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -3133,7 +3133,7 @@ def get_flow_metrics(self, producer, **kwargs): Args: producer (str): The producer for flow file metrics. Each producer may have its own output format. (required) - included_registries (:class:`~nipyapi.nifi.models.list[str]`): + included_registries (str): Set of included metrics registries. Duplicate the parameter to include multiple registries. All registries are included by default. sample_name (str): Regular Expression Pattern to be applied against the sample name field @@ -3163,7 +3163,7 @@ def get_flow_metrics_with_http_info(self, producer, **kwargs): Args: producer (str): The producer for flow file metrics. Each producer may have its own output format. (required) - included_registries (:class:`~nipyapi.nifi.models.list[str]`): + included_registries (str): Set of included metrics registries. Duplicate the parameter to include multiple registries. All registries are included by default. sample_name (str): Regular Expression Pattern to be applied against the sample name field @@ -3208,7 +3208,6 @@ def get_flow_metrics_with_http_info(self, producer, **kwargs): query_params = [] if 'included_registries' in params: query_params.append(('includedRegistries', params['included_registries'])) - collection_formats['includedRegistries'] = 'multi' if 'sample_name' in params: query_params.append(('sampleName', params['sample_name'])) if 'sample_label_value' in params: diff --git a/nipyapi/nifi/apis/flow_file_queues_api.py b/nipyapi/nifi/apis/flow_file_queues_api.py index 0cae1f70..7a88f226 100644 --- a/nipyapi/nifi/apis/flow_file_queues_api.py +++ b/nipyapi/nifi/apis/flow_file_queues_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/funnels_api.py b/nipyapi/nifi/apis/funnels_api.py index 04e2c9db..0e76f6a3 100644 --- a/nipyapi/nifi/apis/funnels_api.py +++ b/nipyapi/nifi/apis/funnels_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/input_ports_api.py b/nipyapi/nifi/apis/input_ports_api.py index f28c34ff..85897d06 100644 --- a/nipyapi/nifi/apis/input_ports_api.py +++ b/nipyapi/nifi/apis/input_ports_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/labels_api.py b/nipyapi/nifi/apis/labels_api.py index 04d68bcc..543d5f77 100644 --- a/nipyapi/nifi/apis/labels_api.py +++ b/nipyapi/nifi/apis/labels_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/output_ports_api.py b/nipyapi/nifi/apis/output_ports_api.py index 739111e4..7ab9721a 100644 --- a/nipyapi/nifi/apis/output_ports_api.py +++ b/nipyapi/nifi/apis/output_ports_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/parameter_contexts_api.py b/nipyapi/nifi/apis/parameter_contexts_api.py index 0040393e..3551086e 100644 --- a/nipyapi/nifi/apis/parameter_contexts_api.py +++ b/nipyapi/nifi/apis/parameter_contexts_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/parameter_providers_api.py b/nipyapi/nifi/apis/parameter_providers_api.py index d753430d..ffd4570b 100644 --- a/nipyapi/nifi/apis/parameter_providers_api.py +++ b/nipyapi/nifi/apis/parameter_providers_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -149,6 +149,8 @@ def clear_state2(self, id, **kwargs): Args: id (str): The parameter provider id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: :class:`~nipyapi.nifi.models.ComponentStateEntity`: The response data. @@ -171,12 +173,14 @@ def clear_state2_with_http_info(self, id, **kwargs): Args: id (str): The parameter provider id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: tuple: (:class:`~nipyapi.nifi.models.ComponentStateEntity`, status_code, headers) - Response data with HTTP details. """ - all_params = ['id'] + all_params = ['id', 'body'] all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') @@ -195,6 +199,7 @@ def clear_state2_with_http_info(self, id, **kwargs): raise ValueError("Missing the required parameter `id` when calling `clear_state2`") + collection_formats = {} path_params = {} @@ -209,10 +214,16 @@ def clear_state2_with_http_info(self, id, **kwargs): local_var_files = {} body_params = None + if 'body' in params: + body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.\ + select_header_content_type(['*/*', 'application/json']) + # Authentication setting auth_settings = ['bearerAuth'] diff --git a/nipyapi/nifi/apis/policies_api.py b/nipyapi/nifi/apis/policies_api.py index 575d214c..1b8615c5 100644 --- a/nipyapi/nifi/apis/policies_api.py +++ b/nipyapi/nifi/apis/policies_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/process_groups_api.py b/nipyapi/nifi/apis/process_groups_api.py index e1aab21a..7df7733d 100644 --- a/nipyapi/nifi/apis/process_groups_api.py +++ b/nipyapi/nifi/apis/process_groups_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/processors_api.py b/nipyapi/nifi/apis/processors_api.py index 100ac912..e6fab59b 100644 --- a/nipyapi/nifi/apis/processors_api.py +++ b/nipyapi/nifi/apis/processors_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -149,6 +149,8 @@ def clear_state3(self, id, **kwargs): Args: id (str): The processor id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: :class:`~nipyapi.nifi.models.ComponentStateEntity`: The response data. @@ -171,12 +173,14 @@ def clear_state3_with_http_info(self, id, **kwargs): Args: id (str): The processor id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: tuple: (:class:`~nipyapi.nifi.models.ComponentStateEntity`, status_code, headers) - Response data with HTTP details. """ - all_params = ['id'] + all_params = ['id', 'body'] all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') @@ -195,6 +199,7 @@ def clear_state3_with_http_info(self, id, **kwargs): raise ValueError("Missing the required parameter `id` when calling `clear_state3`") + collection_formats = {} path_params = {} @@ -209,10 +214,16 @@ def clear_state3_with_http_info(self, id, **kwargs): local_var_files = {} body_params = None + if 'body' in params: + body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.\ + select_header_content_type(['*/*', 'application/json']) + # Authentication setting auth_settings = ['bearerAuth'] @@ -715,7 +726,7 @@ def get_processor_run_status_details_with_http_info(self, **kwargs): # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.\ - select_header_content_type(['application/json']) + select_header_content_type(['*/*', 'application/json']) # Authentication setting auth_settings = ['bearerAuth'] diff --git a/nipyapi/nifi/apis/provenance_api.py b/nipyapi/nifi/apis/provenance_api.py index 13b89171..60898c31 100644 --- a/nipyapi/nifi/apis/provenance_api.py +++ b/nipyapi/nifi/apis/provenance_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/provenance_events_api.py b/nipyapi/nifi/apis/provenance_events_api.py index b4b394fd..c9e85eb0 100644 --- a/nipyapi/nifi/apis/provenance_events_api.py +++ b/nipyapi/nifi/apis/provenance_events_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/remote_process_groups_api.py b/nipyapi/nifi/apis/remote_process_groups_api.py index 4f556a89..949b390d 100644 --- a/nipyapi/nifi/apis/remote_process_groups_api.py +++ b/nipyapi/nifi/apis/remote_process_groups_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/reporting_tasks_api.py b/nipyapi/nifi/apis/reporting_tasks_api.py index 17df435e..1fa265cf 100644 --- a/nipyapi/nifi/apis/reporting_tasks_api.py +++ b/nipyapi/nifi/apis/reporting_tasks_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -149,6 +149,8 @@ def clear_state4(self, id, **kwargs): Args: id (str): The reporting task id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: :class:`~nipyapi.nifi.models.ComponentStateEntity`: The response data. @@ -171,12 +173,14 @@ def clear_state4_with_http_info(self, id, **kwargs): Args: id (str): The reporting task id. (required) + body (:class:`~nipyapi.nifi.models.ComponentStateEntity`): + Optional component state to perform a selective key removal. If omitted, clears all state. Returns: tuple: (:class:`~nipyapi.nifi.models.ComponentStateEntity`, status_code, headers) - Response data with HTTP details. """ - all_params = ['id'] + all_params = ['id', 'body'] all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') @@ -195,6 +199,7 @@ def clear_state4_with_http_info(self, id, **kwargs): raise ValueError("Missing the required parameter `id` when calling `clear_state4`") + collection_formats = {} path_params = {} @@ -209,10 +214,16 @@ def clear_state4_with_http_info(self, id, **kwargs): local_var_files = {} body_params = None + if 'body' in params: + body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.\ + select_header_content_type(['*/*', 'application/json']) + # Authentication setting auth_settings = ['bearerAuth'] diff --git a/nipyapi/nifi/apis/resources_api.py b/nipyapi/nifi/apis/resources_api.py index b88c0934..2ec15de3 100644 --- a/nipyapi/nifi/apis/resources_api.py +++ b/nipyapi/nifi/apis/resources_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/site_to_site_api.py b/nipyapi/nifi/apis/site_to_site_api.py index 8b17a7ac..81a80870 100644 --- a/nipyapi/nifi/apis/site_to_site_api.py +++ b/nipyapi/nifi/apis/site_to_site_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/snippets_api.py b/nipyapi/nifi/apis/snippets_api.py index 1f5d5042..4a6b707b 100644 --- a/nipyapi/nifi/apis/snippets_api.py +++ b/nipyapi/nifi/apis/snippets_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/system_diagnostics_api.py b/nipyapi/nifi/apis/system_diagnostics_api.py index 2872c98c..6c4c5ca4 100644 --- a/nipyapi/nifi/apis/system_diagnostics_api.py +++ b/nipyapi/nifi/apis/system_diagnostics_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/tenants_api.py b/nipyapi/nifi/apis/tenants_api.py index f831a40d..a686b27b 100644 --- a/nipyapi/nifi/apis/tenants_api.py +++ b/nipyapi/nifi/apis/tenants_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/apis/versions_api.py b/nipyapi/nifi/apis/versions_api.py index 56fedb11..34b0ff55 100644 --- a/nipyapi/nifi/apis/versions_api.py +++ b/nipyapi/nifi/apis/versions_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/configuration.py b/nipyapi/nifi/configuration.py index a782ae7a..58db3282 100644 --- a/nipyapi/nifi/configuration.py +++ b/nipyapi/nifi/configuration.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -213,6 +213,27 @@ def auth_settings(self): 'key': 'Authorization', 'value': self.get_api_key_with_prefix('bearerAuth') }, + 'CookieSecureAuthorizationBearer': + { + 'type': 'api_key', + 'in': 'query', + 'key': '__Secure-Authorization-Bearer', + 'value': self.get_api_key_with_prefix('__Secure-Authorization-Bearer') + }, + 'HTTPBearerJWT': + { + 'type': 'api_key', + 'in': 'header', + 'key': 'Authorization', + 'value': self.get_api_key_with_prefix('bearerAuth') + }, + 'bearerAuth': + { + 'type': 'api_key', + 'in': 'header', + 'key': 'Authorization', + 'value': self.get_api_key_with_prefix('bearerAuth') + }, } def to_debug_report(self): @@ -224,6 +245,6 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 2.5.0\n"\ + "Version of the API: 2.6.0\n"\ "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/nipyapi/nifi/models/__init__.py b/nipyapi/nifi/models/__init__.py index 31d8964b..f6ae03af 100644 --- a/nipyapi/nifi/models/__init__.py +++ b/nipyapi/nifi/models/__init__.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/about_dto.py b/nipyapi/nifi/models/about_dto.py index 9cc84e51..b88356bc 100644 --- a/nipyapi/nifi/models/about_dto.py +++ b/nipyapi/nifi/models/about_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/about_entity.py b/nipyapi/nifi/models/about_entity.py index 18ce0ade..e7740a48 100644 --- a/nipyapi/nifi/models/about_entity.py +++ b/nipyapi/nifi/models/about_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/access_policy_dto.py b/nipyapi/nifi/models/access_policy_dto.py index 337f1dcc..53132cc1 100644 --- a/nipyapi/nifi/models/access_policy_dto.py +++ b/nipyapi/nifi/models/access_policy_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/access_policy_entity.py b/nipyapi/nifi/models/access_policy_entity.py index 36f9303d..07f0a9eb 100644 --- a/nipyapi/nifi/models/access_policy_entity.py +++ b/nipyapi/nifi/models/access_policy_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/access_policy_summary_dto.py b/nipyapi/nifi/models/access_policy_summary_dto.py index 04a7e1f0..be7cbb17 100644 --- a/nipyapi/nifi/models/access_policy_summary_dto.py +++ b/nipyapi/nifi/models/access_policy_summary_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/access_policy_summary_entity.py b/nipyapi/nifi/models/access_policy_summary_entity.py index fe5620af..84a02b00 100644 --- a/nipyapi/nifi/models/access_policy_summary_entity.py +++ b/nipyapi/nifi/models/access_policy_summary_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/access_token_body.py b/nipyapi/nifi/models/access_token_body.py index 45864b3b..fb2080ca 100644 --- a/nipyapi/nifi/models/access_token_body.py +++ b/nipyapi/nifi/models/access_token_body.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/action_details_dto.py b/nipyapi/nifi/models/action_details_dto.py index b9881b84..25356ab5 100644 --- a/nipyapi/nifi/models/action_details_dto.py +++ b/nipyapi/nifi/models/action_details_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/action_dto.py b/nipyapi/nifi/models/action_dto.py index 1202fb98..4413979f 100644 --- a/nipyapi/nifi/models/action_dto.py +++ b/nipyapi/nifi/models/action_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/action_entity.py b/nipyapi/nifi/models/action_entity.py index 5d3928fc..0f43842d 100644 --- a/nipyapi/nifi/models/action_entity.py +++ b/nipyapi/nifi/models/action_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/activate_controller_services_entity.py b/nipyapi/nifi/models/activate_controller_services_entity.py index 45c6b0a0..d269f320 100644 --- a/nipyapi/nifi/models/activate_controller_services_entity.py +++ b/nipyapi/nifi/models/activate_controller_services_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/additional_details_entity.py b/nipyapi/nifi/models/additional_details_entity.py index af873c72..b7de4485 100644 --- a/nipyapi/nifi/models/additional_details_entity.py +++ b/nipyapi/nifi/models/additional_details_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/affected_component_dto.py b/nipyapi/nifi/models/affected_component_dto.py index 45ba174f..f5d3745a 100644 --- a/nipyapi/nifi/models/affected_component_dto.py +++ b/nipyapi/nifi/models/affected_component_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/affected_component_entity.py b/nipyapi/nifi/models/affected_component_entity.py index 25efafe5..819e56df 100644 --- a/nipyapi/nifi/models/affected_component_entity.py +++ b/nipyapi/nifi/models/affected_component_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/allowable_value_dto.py b/nipyapi/nifi/models/allowable_value_dto.py index 9577152c..9014200c 100644 --- a/nipyapi/nifi/models/allowable_value_dto.py +++ b/nipyapi/nifi/models/allowable_value_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/allowable_value_entity.py b/nipyapi/nifi/models/allowable_value_entity.py index 3e632361..e6395e4e 100644 --- a/nipyapi/nifi/models/allowable_value_entity.py +++ b/nipyapi/nifi/models/allowable_value_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/asset_dto.py b/nipyapi/nifi/models/asset_dto.py index 555f6ce8..ec25cb40 100644 --- a/nipyapi/nifi/models/asset_dto.py +++ b/nipyapi/nifi/models/asset_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/asset_entity.py b/nipyapi/nifi/models/asset_entity.py index 6c7aff7e..e3d9e7ba 100644 --- a/nipyapi/nifi/models/asset_entity.py +++ b/nipyapi/nifi/models/asset_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/asset_reference_dto.py b/nipyapi/nifi/models/asset_reference_dto.py index 930d2cbd..e5c9a7ae 100644 --- a/nipyapi/nifi/models/asset_reference_dto.py +++ b/nipyapi/nifi/models/asset_reference_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/assets_entity.py b/nipyapi/nifi/models/assets_entity.py index e38c7b9d..7de1ce66 100644 --- a/nipyapi/nifi/models/assets_entity.py +++ b/nipyapi/nifi/models/assets_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/attribute.py b/nipyapi/nifi/models/attribute.py index 8f349411..fd9d635e 100644 --- a/nipyapi/nifi/models/attribute.py +++ b/nipyapi/nifi/models/attribute.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/attribute_dto.py b/nipyapi/nifi/models/attribute_dto.py index 5a04fc4e..7e51c413 100644 --- a/nipyapi/nifi/models/attribute_dto.py +++ b/nipyapi/nifi/models/attribute_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/authentication_configuration_dto.py b/nipyapi/nifi/models/authentication_configuration_dto.py index 21b3fb5b..9d788e7d 100644 --- a/nipyapi/nifi/models/authentication_configuration_dto.py +++ b/nipyapi/nifi/models/authentication_configuration_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/authentication_configuration_entity.py b/nipyapi/nifi/models/authentication_configuration_entity.py index f29039b5..0ed69402 100644 --- a/nipyapi/nifi/models/authentication_configuration_entity.py +++ b/nipyapi/nifi/models/authentication_configuration_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/banner_dto.py b/nipyapi/nifi/models/banner_dto.py index 5b1e12b7..72db1440 100644 --- a/nipyapi/nifi/models/banner_dto.py +++ b/nipyapi/nifi/models/banner_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/banner_entity.py b/nipyapi/nifi/models/banner_entity.py index 0a53b275..73661446 100644 --- a/nipyapi/nifi/models/banner_entity.py +++ b/nipyapi/nifi/models/banner_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/batch_settings_dto.py b/nipyapi/nifi/models/batch_settings_dto.py index 00d3804a..543b6924 100644 --- a/nipyapi/nifi/models/batch_settings_dto.py +++ b/nipyapi/nifi/models/batch_settings_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/batch_size.py b/nipyapi/nifi/models/batch_size.py index b76fd864..bd615ab8 100644 --- a/nipyapi/nifi/models/batch_size.py +++ b/nipyapi/nifi/models/batch_size.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/build_info.py b/nipyapi/nifi/models/build_info.py index bf5109bd..9440bf2b 100644 --- a/nipyapi/nifi/models/build_info.py +++ b/nipyapi/nifi/models/build_info.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/bulletin_board_dto.py b/nipyapi/nifi/models/bulletin_board_dto.py index c03de6fa..8658af49 100644 --- a/nipyapi/nifi/models/bulletin_board_dto.py +++ b/nipyapi/nifi/models/bulletin_board_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/bulletin_board_entity.py b/nipyapi/nifi/models/bulletin_board_entity.py index 2185b823..8b0259a4 100644 --- a/nipyapi/nifi/models/bulletin_board_entity.py +++ b/nipyapi/nifi/models/bulletin_board_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/bulletin_board_pattern_parameter.py b/nipyapi/nifi/models/bulletin_board_pattern_parameter.py index 07556882..607ca10f 100644 --- a/nipyapi/nifi/models/bulletin_board_pattern_parameter.py +++ b/nipyapi/nifi/models/bulletin_board_pattern_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/bulletin_dto.py b/nipyapi/nifi/models/bulletin_dto.py index c3e63b43..d42993be 100644 --- a/nipyapi/nifi/models/bulletin_dto.py +++ b/nipyapi/nifi/models/bulletin_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/bulletin_entity.py b/nipyapi/nifi/models/bulletin_entity.py index 8051c8ae..13624cec 100644 --- a/nipyapi/nifi/models/bulletin_entity.py +++ b/nipyapi/nifi/models/bulletin_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/bundle.py b/nipyapi/nifi/models/bundle.py index 4985373f..8d72573e 100644 --- a/nipyapi/nifi/models/bundle.py +++ b/nipyapi/nifi/models/bundle.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/bundle_dto.py b/nipyapi/nifi/models/bundle_dto.py index 06051619..912d1cc2 100644 --- a/nipyapi/nifi/models/bundle_dto.py +++ b/nipyapi/nifi/models/bundle_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/client_id_parameter.py b/nipyapi/nifi/models/client_id_parameter.py index f2a639c2..9bb95de2 100644 --- a/nipyapi/nifi/models/client_id_parameter.py +++ b/nipyapi/nifi/models/client_id_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/cluster_dto.py b/nipyapi/nifi/models/cluster_dto.py index 3561706b..d6476f56 100644 --- a/nipyapi/nifi/models/cluster_dto.py +++ b/nipyapi/nifi/models/cluster_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/cluster_entity.py b/nipyapi/nifi/models/cluster_entity.py index faccfcf8..3ab77986 100644 --- a/nipyapi/nifi/models/cluster_entity.py +++ b/nipyapi/nifi/models/cluster_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/cluster_search_results_entity.py b/nipyapi/nifi/models/cluster_search_results_entity.py index dc24a833..e548fc01 100644 --- a/nipyapi/nifi/models/cluster_search_results_entity.py +++ b/nipyapi/nifi/models/cluster_search_results_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/cluster_summary_dto.py b/nipyapi/nifi/models/cluster_summary_dto.py index 29416bb3..b942c342 100644 --- a/nipyapi/nifi/models/cluster_summary_dto.py +++ b/nipyapi/nifi/models/cluster_summary_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/cluster_summary_entity.py b/nipyapi/nifi/models/cluster_summary_entity.py index cb45754c..ddf4182d 100644 --- a/nipyapi/nifi/models/cluster_summary_entity.py +++ b/nipyapi/nifi/models/cluster_summary_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_details_dto.py b/nipyapi/nifi/models/component_details_dto.py index e5999f0b..8da196de 100644 --- a/nipyapi/nifi/models/component_details_dto.py +++ b/nipyapi/nifi/models/component_details_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_difference_dto.py b/nipyapi/nifi/models/component_difference_dto.py index da5bd8d2..99cdf9d5 100644 --- a/nipyapi/nifi/models/component_difference_dto.py +++ b/nipyapi/nifi/models/component_difference_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_history_dto.py b/nipyapi/nifi/models/component_history_dto.py index e46a3113..90a165f5 100644 --- a/nipyapi/nifi/models/component_history_dto.py +++ b/nipyapi/nifi/models/component_history_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_history_entity.py b/nipyapi/nifi/models/component_history_entity.py index f459ef16..e8c4dfd1 100644 --- a/nipyapi/nifi/models/component_history_entity.py +++ b/nipyapi/nifi/models/component_history_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_manifest.py b/nipyapi/nifi/models/component_manifest.py index bf7c7896..2f63c526 100644 --- a/nipyapi/nifi/models/component_manifest.py +++ b/nipyapi/nifi/models/component_manifest.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_reference_dto.py b/nipyapi/nifi/models/component_reference_dto.py index 5f55b2e0..9a6196f0 100644 --- a/nipyapi/nifi/models/component_reference_dto.py +++ b/nipyapi/nifi/models/component_reference_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_reference_entity.py b/nipyapi/nifi/models/component_reference_entity.py index 76e05201..c3182617 100644 --- a/nipyapi/nifi/models/component_reference_entity.py +++ b/nipyapi/nifi/models/component_reference_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_restriction_permission_dto.py b/nipyapi/nifi/models/component_restriction_permission_dto.py index b2611e88..036facbb 100644 --- a/nipyapi/nifi/models/component_restriction_permission_dto.py +++ b/nipyapi/nifi/models/component_restriction_permission_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_search_result_dto.py b/nipyapi/nifi/models/component_search_result_dto.py index 5fc7a57b..726bf80e 100644 --- a/nipyapi/nifi/models/component_search_result_dto.py +++ b/nipyapi/nifi/models/component_search_result_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_state_dto.py b/nipyapi/nifi/models/component_state_dto.py index 21f99687..ba4d91a4 100644 --- a/nipyapi/nifi/models/component_state_dto.py +++ b/nipyapi/nifi/models/component_state_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -29,22 +29,25 @@ class ComponentStateDTO(object): swagger_types = { 'cluster_state': 'StateMapDTO', 'component_id': 'str', +'drop_state_key_supported': 'bool', 'local_state': 'StateMapDTO', 'state_description': 'str' } attribute_map = { 'cluster_state': 'clusterState', 'component_id': 'componentId', +'drop_state_key_supported': 'dropStateKeySupported', 'local_state': 'localState', 'state_description': 'stateDescription' } - def __init__(self, cluster_state=None, component_id=None, local_state=None, state_description=None): + def __init__(self, cluster_state=None, component_id=None, drop_state_key_supported=None, local_state=None, state_description=None): """ ComponentStateDTO - a model defined in Swagger """ self._cluster_state = None self._component_id = None + self._drop_state_key_supported = None self._local_state = None self._state_description = None @@ -52,6 +55,8 @@ def __init__(self, cluster_state=None, component_id=None, local_state=None, stat self.cluster_state = cluster_state if component_id is not None: self.component_id = component_id + if drop_state_key_supported is not None: + self.drop_state_key_supported = drop_state_key_supported if local_state is not None: self.local_state = local_state if state_description is not None: @@ -101,6 +106,29 @@ def component_id(self, component_id): self._component_id = component_id + @property + def drop_state_key_supported(self): + """ + Gets the drop_state_key_supported of this ComponentStateDTO. + Whether dropping state by key is supported for this component. Defaults to false when not specified by the component. + + :return: The drop_state_key_supported of this ComponentStateDTO. + :rtype: bool + """ + return self._drop_state_key_supported + + @drop_state_key_supported.setter + def drop_state_key_supported(self, drop_state_key_supported): + """ + Sets the drop_state_key_supported of this ComponentStateDTO. + Whether dropping state by key is supported for this component. Defaults to false when not specified by the component. + + :param drop_state_key_supported: The drop_state_key_supported of this ComponentStateDTO. + :type: bool + """ + + self._drop_state_key_supported = drop_state_key_supported + @property def local_state(self): """ diff --git a/nipyapi/nifi/models/component_state_entity.py b/nipyapi/nifi/models/component_state_entity.py index b9b5826a..1d46b57a 100644 --- a/nipyapi/nifi/models/component_state_entity.py +++ b/nipyapi/nifi/models/component_state_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_validation_result_dto.py b/nipyapi/nifi/models/component_validation_result_dto.py index 8fdc650c..3dd82cae 100644 --- a/nipyapi/nifi/models/component_validation_result_dto.py +++ b/nipyapi/nifi/models/component_validation_result_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_validation_result_entity.py b/nipyapi/nifi/models/component_validation_result_entity.py index b9e1055d..c09e0624 100644 --- a/nipyapi/nifi/models/component_validation_result_entity.py +++ b/nipyapi/nifi/models/component_validation_result_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/component_validation_results_entity.py b/nipyapi/nifi/models/component_validation_results_entity.py index 254830c0..3fe85a65 100644 --- a/nipyapi/nifi/models/component_validation_results_entity.py +++ b/nipyapi/nifi/models/component_validation_results_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/config_verification_result_dto.py b/nipyapi/nifi/models/config_verification_result_dto.py index b974aed9..aebcd94f 100644 --- a/nipyapi/nifi/models/config_verification_result_dto.py +++ b/nipyapi/nifi/models/config_verification_result_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/configuration_analysis_dto.py b/nipyapi/nifi/models/configuration_analysis_dto.py index 4d90797f..a7fb8e1e 100644 --- a/nipyapi/nifi/models/configuration_analysis_dto.py +++ b/nipyapi/nifi/models/configuration_analysis_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/configuration_analysis_entity.py b/nipyapi/nifi/models/configuration_analysis_entity.py index b199f338..705221bb 100644 --- a/nipyapi/nifi/models/configuration_analysis_entity.py +++ b/nipyapi/nifi/models/configuration_analysis_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connectable_component.py b/nipyapi/nifi/models/connectable_component.py index 515a8238..0ad54d84 100644 --- a/nipyapi/nifi/models/connectable_component.py +++ b/nipyapi/nifi/models/connectable_component.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connectable_dto.py b/nipyapi/nifi/models/connectable_dto.py index c9003330..f4bc1e54 100644 --- a/nipyapi/nifi/models/connectable_dto.py +++ b/nipyapi/nifi/models/connectable_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connection_dto.py b/nipyapi/nifi/models/connection_dto.py index 37d6f649..465392ef 100644 --- a/nipyapi/nifi/models/connection_dto.py +++ b/nipyapi/nifi/models/connection_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -44,6 +44,7 @@ class ConnectionDTO(object): 'parent_group_id': 'str', 'position': 'PositionDTO', 'prioritizers': 'list[str]', +'retried_relationships': 'list[str]', 'selected_relationships': 'list[str]', 'source': 'ConnectableDTO', 'versioned_component_id': 'str' } @@ -66,11 +67,12 @@ class ConnectionDTO(object): 'parent_group_id': 'parentGroupId', 'position': 'position', 'prioritizers': 'prioritizers', +'retried_relationships': 'retriedRelationships', 'selected_relationships': 'selectedRelationships', 'source': 'source', 'versioned_component_id': 'versionedComponentId' } - def __init__(self, available_relationships=None, back_pressure_data_size_threshold=None, back_pressure_object_threshold=None, bends=None, destination=None, flow_file_expiration=None, getz_index=None, id=None, label_index=None, load_balance_compression=None, load_balance_partition_attribute=None, load_balance_status=None, load_balance_strategy=None, name=None, parent_group_id=None, position=None, prioritizers=None, selected_relationships=None, source=None, versioned_component_id=None): + def __init__(self, available_relationships=None, back_pressure_data_size_threshold=None, back_pressure_object_threshold=None, bends=None, destination=None, flow_file_expiration=None, getz_index=None, id=None, label_index=None, load_balance_compression=None, load_balance_partition_attribute=None, load_balance_status=None, load_balance_strategy=None, name=None, parent_group_id=None, position=None, prioritizers=None, retried_relationships=None, selected_relationships=None, source=None, versioned_component_id=None): """ ConnectionDTO - a model defined in Swagger """ @@ -92,6 +94,7 @@ def __init__(self, available_relationships=None, back_pressure_data_size_thresho self._parent_group_id = None self._position = None self._prioritizers = None + self._retried_relationships = None self._selected_relationships = None self._source = None self._versioned_component_id = None @@ -130,6 +133,8 @@ def __init__(self, available_relationships=None, back_pressure_data_size_thresho self.position = position if prioritizers is not None: self.prioritizers = prioritizers + if retried_relationships is not None: + self.retried_relationships = retried_relationships if selected_relationships is not None: self.selected_relationships = selected_relationships if source is not None: @@ -346,7 +351,7 @@ def label_index(self, label_index): def load_balance_compression(self): """ Gets the load_balance_compression of this ConnectionDTO. - Whether or not data should be compressed when being transferred between nodes in the cluster. + Whether or not data should be compressed when being transferred between nodes in the cluster. Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details. :return: The load_balance_compression of this ConnectionDTO. :rtype: str @@ -357,17 +362,11 @@ def load_balance_compression(self): def load_balance_compression(self, load_balance_compression): """ Sets the load_balance_compression of this ConnectionDTO. - Whether or not data should be compressed when being transferred between nodes in the cluster. + Whether or not data should be compressed when being transferred between nodes in the cluster. Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details. :param load_balance_compression: The load_balance_compression of this ConnectionDTO. :type: str """ - allowed_values = ["DO_NOT_COMPRESS", "COMPRESS_ATTRIBUTES_ONLY", "COMPRESS_ATTRIBUTES_AND_CONTENT", ] - if load_balance_compression not in allowed_values: - raise ValueError( - "Invalid value for `load_balance_compression` ({0}), must be one of {1}" - .format(load_balance_compression, allowed_values) - ) self._load_balance_compression = load_balance_compression @@ -398,7 +397,7 @@ def load_balance_partition_attribute(self, load_balance_partition_attribute): def load_balance_status(self): """ Gets the load_balance_status of this ConnectionDTO. - The current status of the Connection's Load Balancing Activities. Status can indicate that Load Balancing is not configured for the connection, that Load Balancing is configured but inactive (not currently transferring data to another node), or that Load Balancing is configured and actively transferring data to another node. + The current status of the Connection's Load Balancing Activities. Status can indicate that Load Balancing is not configured for the connection, that Load Balancing is configured but inactive (not currently transferring data to another node), or that Load Balancing is configured and actively transferring data to another node. Possible returned values: LOAD_BALANCE_NOT_CONFIGURED, LOAD_BALANCE_INACTIVE, LOAD_BALANCE_ACTIVE. See LoadBalanceStatus.class for more details. :return: The load_balance_status of this ConnectionDTO. :rtype: str @@ -409,17 +408,11 @@ def load_balance_status(self): def load_balance_status(self, load_balance_status): """ Sets the load_balance_status of this ConnectionDTO. - The current status of the Connection's Load Balancing Activities. Status can indicate that Load Balancing is not configured for the connection, that Load Balancing is configured but inactive (not currently transferring data to another node), or that Load Balancing is configured and actively transferring data to another node. + The current status of the Connection's Load Balancing Activities. Status can indicate that Load Balancing is not configured for the connection, that Load Balancing is configured but inactive (not currently transferring data to another node), or that Load Balancing is configured and actively transferring data to another node. Possible returned values: LOAD_BALANCE_NOT_CONFIGURED, LOAD_BALANCE_INACTIVE, LOAD_BALANCE_ACTIVE. See LoadBalanceStatus.class for more details. :param load_balance_status: The load_balance_status of this ConnectionDTO. :type: str """ - allowed_values = ["LOAD_BALANCE_NOT_CONFIGURED", "LOAD_BALANCE_INACTIVE", "LOAD_BALANCE_ACTIVE", ] - if load_balance_status not in allowed_values: - raise ValueError( - "Invalid value for `load_balance_status` ({0}), must be one of {1}" - .format(load_balance_status, allowed_values) - ) self._load_balance_status = load_balance_status @@ -427,7 +420,7 @@ def load_balance_status(self, load_balance_status): def load_balance_strategy(self): """ Gets the load_balance_strategy of this ConnectionDTO. - How to load balance the data in this Connection across the nodes in the cluster. + How to load balance the data in this Connection across the nodes in the cluster. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details. :return: The load_balance_strategy of this ConnectionDTO. :rtype: str @@ -438,17 +431,11 @@ def load_balance_strategy(self): def load_balance_strategy(self, load_balance_strategy): """ Sets the load_balance_strategy of this ConnectionDTO. - How to load balance the data in this Connection across the nodes in the cluster. + How to load balance the data in this Connection across the nodes in the cluster. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details. :param load_balance_strategy: The load_balance_strategy of this ConnectionDTO. :type: str """ - allowed_values = ["DO_NOT_LOAD_BALANCE", "PARTITION_BY_ATTRIBUTE", "ROUND_ROBIN", "SINGLE_NODE", ] - if load_balance_strategy not in allowed_values: - raise ValueError( - "Invalid value for `load_balance_strategy` ({0}), must be one of {1}" - .format(load_balance_strategy, allowed_values) - ) self._load_balance_strategy = load_balance_strategy @@ -542,6 +529,29 @@ def prioritizers(self, prioritizers): self._prioritizers = prioritizers + @property + def retried_relationships(self): + """ + Gets the retried_relationships of this ConnectionDTO. + The relationships from the source of the connection that are configured to be retried. + + :return: The retried_relationships of this ConnectionDTO. + :rtype: list[str] + """ + return self._retried_relationships + + @retried_relationships.setter + def retried_relationships(self, retried_relationships): + """ + Sets the retried_relationships of this ConnectionDTO. + The relationships from the source of the connection that are configured to be retried. + + :param retried_relationships: The retried_relationships of this ConnectionDTO. + :type: list[str] + """ + + self._retried_relationships = retried_relationships + @property def selected_relationships(self): """ diff --git a/nipyapi/nifi/models/connection_entity.py b/nipyapi/nifi/models/connection_entity.py index 9bd42b1f..2503af08 100644 --- a/nipyapi/nifi/models/connection_entity.py +++ b/nipyapi/nifi/models/connection_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connection_statistics_dto.py b/nipyapi/nifi/models/connection_statistics_dto.py index fbb1b181..8c1fa1cc 100644 --- a/nipyapi/nifi/models/connection_statistics_dto.py +++ b/nipyapi/nifi/models/connection_statistics_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connection_statistics_entity.py b/nipyapi/nifi/models/connection_statistics_entity.py index f34bdee5..89090d83 100644 --- a/nipyapi/nifi/models/connection_statistics_entity.py +++ b/nipyapi/nifi/models/connection_statistics_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connection_statistics_snapshot_dto.py b/nipyapi/nifi/models/connection_statistics_snapshot_dto.py index 0f1a48a9..dea788f4 100644 --- a/nipyapi/nifi/models/connection_statistics_snapshot_dto.py +++ b/nipyapi/nifi/models/connection_statistics_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connection_status_dto.py b/nipyapi/nifi/models/connection_status_dto.py index b91157a7..4281e955 100644 --- a/nipyapi/nifi/models/connection_status_dto.py +++ b/nipyapi/nifi/models/connection_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connection_status_entity.py b/nipyapi/nifi/models/connection_status_entity.py index f42a4412..e8be7e9e 100644 --- a/nipyapi/nifi/models/connection_status_entity.py +++ b/nipyapi/nifi/models/connection_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connection_status_predictions_snapshot_dto.py b/nipyapi/nifi/models/connection_status_predictions_snapshot_dto.py index e4b5cf68..ce7b8707 100644 --- a/nipyapi/nifi/models/connection_status_predictions_snapshot_dto.py +++ b/nipyapi/nifi/models/connection_status_predictions_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connection_status_snapshot_dto.py b/nipyapi/nifi/models/connection_status_snapshot_dto.py index fde8edd6..be1b2fb1 100644 --- a/nipyapi/nifi/models/connection_status_snapshot_dto.py +++ b/nipyapi/nifi/models/connection_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -39,6 +39,7 @@ class ConnectionStatusSnapshotDTO(object): 'group_id': 'str', 'id': 'str', 'input': 'str', +'load_balance_status': 'str', 'name': 'str', 'output': 'str', 'percent_use_bytes': 'int', @@ -63,6 +64,7 @@ class ConnectionStatusSnapshotDTO(object): 'group_id': 'groupId', 'id': 'id', 'input': 'input', +'load_balance_status': 'loadBalanceStatus', 'name': 'name', 'output': 'output', 'percent_use_bytes': 'percentUseBytes', @@ -74,7 +76,7 @@ class ConnectionStatusSnapshotDTO(object): 'source_id': 'sourceId', 'source_name': 'sourceName' } - def __init__(self, bytes_in=None, bytes_out=None, bytes_queued=None, destination_id=None, destination_name=None, flow_file_availability=None, flow_files_in=None, flow_files_out=None, flow_files_queued=None, group_id=None, id=None, input=None, name=None, output=None, percent_use_bytes=None, percent_use_count=None, predictions=None, queued=None, queued_count=None, queued_size=None, source_id=None, source_name=None): + def __init__(self, bytes_in=None, bytes_out=None, bytes_queued=None, destination_id=None, destination_name=None, flow_file_availability=None, flow_files_in=None, flow_files_out=None, flow_files_queued=None, group_id=None, id=None, input=None, load_balance_status=None, name=None, output=None, percent_use_bytes=None, percent_use_count=None, predictions=None, queued=None, queued_count=None, queued_size=None, source_id=None, source_name=None): """ ConnectionStatusSnapshotDTO - a model defined in Swagger """ @@ -91,6 +93,7 @@ def __init__(self, bytes_in=None, bytes_out=None, bytes_queued=None, destination self._group_id = None self._id = None self._input = None + self._load_balance_status = None self._name = None self._output = None self._percent_use_bytes = None @@ -126,6 +129,8 @@ def __init__(self, bytes_in=None, bytes_out=None, bytes_queued=None, destination self.id = id if input is not None: self.input = input + if load_balance_status is not None: + self.load_balance_status = load_balance_status if name is not None: self.name = name if output is not None: @@ -423,6 +428,35 @@ def input(self, input): self._input = input + @property + def load_balance_status(self): + """ + Gets the load_balance_status of this ConnectionStatusSnapshotDTO. + The load balance status of the connection + + :return: The load_balance_status of this ConnectionStatusSnapshotDTO. + :rtype: str + """ + return self._load_balance_status + + @load_balance_status.setter + def load_balance_status(self, load_balance_status): + """ + Sets the load_balance_status of this ConnectionStatusSnapshotDTO. + The load balance status of the connection + + :param load_balance_status: The load_balance_status of this ConnectionStatusSnapshotDTO. + :type: str + """ + allowed_values = ["LOAD_BALANCE_NOT_CONFIGURED", "LOAD_BALANCE_ACTIVE", "LOAD_BALANCE_INACTIVE", ] + if load_balance_status not in allowed_values: + raise ValueError( + "Invalid value for `load_balance_status` ({0}), must be one of {1}" + .format(load_balance_status, allowed_values) + ) + + self._load_balance_status = load_balance_status + @property def name(self): """ @@ -450,7 +484,7 @@ def name(self, name): def output(self): """ Gets the output of this ConnectionStatusSnapshotDTO. - The output count/sie for the connection in the last 5 minutes, pretty printed. + The output count/size for the connection in the last 5 minutes, pretty printed. :return: The output of this ConnectionStatusSnapshotDTO. :rtype: str @@ -461,7 +495,7 @@ def output(self): def output(self, output): """ Sets the output of this ConnectionStatusSnapshotDTO. - The output count/sie for the connection in the last 5 minutes, pretty printed. + The output count/size for the connection in the last 5 minutes, pretty printed. :param output: The output of this ConnectionStatusSnapshotDTO. :type: str diff --git a/nipyapi/nifi/models/connection_status_snapshot_entity.py b/nipyapi/nifi/models/connection_status_snapshot_entity.py index 40b45f53..417a1b81 100644 --- a/nipyapi/nifi/models/connection_status_snapshot_entity.py +++ b/nipyapi/nifi/models/connection_status_snapshot_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/connections_entity.py b/nipyapi/nifi/models/connections_entity.py index 148709f0..c6dc09dc 100644 --- a/nipyapi/nifi/models/connections_entity.py +++ b/nipyapi/nifi/models/connections_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/content_viewer_dto.py b/nipyapi/nifi/models/content_viewer_dto.py index 9dea6f11..b517fe92 100644 --- a/nipyapi/nifi/models/content_viewer_dto.py +++ b/nipyapi/nifi/models/content_viewer_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/content_viewer_entity.py b/nipyapi/nifi/models/content_viewer_entity.py index 8502481d..fdc4fb09 100644 --- a/nipyapi/nifi/models/content_viewer_entity.py +++ b/nipyapi/nifi/models/content_viewer_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_bulletins_entity.py b/nipyapi/nifi/models/controller_bulletins_entity.py index 26e94578..cf2d0658 100644 --- a/nipyapi/nifi/models/controller_bulletins_entity.py +++ b/nipyapi/nifi/models/controller_bulletins_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_configuration_dto.py b/nipyapi/nifi/models/controller_configuration_dto.py index dba782a6..236a2b28 100644 --- a/nipyapi/nifi/models/controller_configuration_dto.py +++ b/nipyapi/nifi/models/controller_configuration_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_configuration_entity.py b/nipyapi/nifi/models/controller_configuration_entity.py index 8ddca5f3..12693048 100644 --- a/nipyapi/nifi/models/controller_configuration_entity.py +++ b/nipyapi/nifi/models/controller_configuration_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_dto.py b/nipyapi/nifi/models/controller_dto.py index dbb27caf..125cfa93 100644 --- a/nipyapi/nifi/models/controller_dto.py +++ b/nipyapi/nifi/models/controller_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_entity.py b/nipyapi/nifi/models/controller_entity.py index 413377f5..1fc80c9f 100644 --- a/nipyapi/nifi/models/controller_entity.py +++ b/nipyapi/nifi/models/controller_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_api.py b/nipyapi/nifi/models/controller_service_api.py index 43b2d080..7e3a67bb 100644 --- a/nipyapi/nifi/models/controller_service_api.py +++ b/nipyapi/nifi/models/controller_service_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_api_dto.py b/nipyapi/nifi/models/controller_service_api_dto.py index 0fd19595..b6d9215a 100644 --- a/nipyapi/nifi/models/controller_service_api_dto.py +++ b/nipyapi/nifi/models/controller_service_api_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_definition.py b/nipyapi/nifi/models/controller_service_definition.py index 1d8c2b00..84372733 100644 --- a/nipyapi/nifi/models/controller_service_definition.py +++ b/nipyapi/nifi/models/controller_service_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_dto.py b/nipyapi/nifi/models/controller_service_dto.py index 4d413f8d..221bd6a7 100644 --- a/nipyapi/nifi/models/controller_service_dto.py +++ b/nipyapi/nifi/models/controller_service_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_entity.py b/nipyapi/nifi/models/controller_service_entity.py index b675a75a..1c87b350 100644 --- a/nipyapi/nifi/models/controller_service_entity.py +++ b/nipyapi/nifi/models/controller_service_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_referencing_component_dto.py b/nipyapi/nifi/models/controller_service_referencing_component_dto.py index 57976841..4076bbe0 100644 --- a/nipyapi/nifi/models/controller_service_referencing_component_dto.py +++ b/nipyapi/nifi/models/controller_service_referencing_component_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_referencing_component_entity.py b/nipyapi/nifi/models/controller_service_referencing_component_entity.py index 115d1358..082765b2 100644 --- a/nipyapi/nifi/models/controller_service_referencing_component_entity.py +++ b/nipyapi/nifi/models/controller_service_referencing_component_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_referencing_components_entity.py b/nipyapi/nifi/models/controller_service_referencing_components_entity.py index dd439e27..91f7cc7b 100644 --- a/nipyapi/nifi/models/controller_service_referencing_components_entity.py +++ b/nipyapi/nifi/models/controller_service_referencing_components_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_run_status_entity.py b/nipyapi/nifi/models/controller_service_run_status_entity.py index 0e00625f..514e61d2 100644 --- a/nipyapi/nifi/models/controller_service_run_status_entity.py +++ b/nipyapi/nifi/models/controller_service_run_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_status_dto.py b/nipyapi/nifi/models/controller_service_status_dto.py index 87d63c4e..67f09cc8 100644 --- a/nipyapi/nifi/models/controller_service_status_dto.py +++ b/nipyapi/nifi/models/controller_service_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_service_types_entity.py b/nipyapi/nifi/models/controller_service_types_entity.py index 273de014..465e2900 100644 --- a/nipyapi/nifi/models/controller_service_types_entity.py +++ b/nipyapi/nifi/models/controller_service_types_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_services_entity.py b/nipyapi/nifi/models/controller_services_entity.py index de229e5e..bff5f499 100644 --- a/nipyapi/nifi/models/controller_services_entity.py +++ b/nipyapi/nifi/models/controller_services_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_status_dto.py b/nipyapi/nifi/models/controller_status_dto.py index 17d12128..d57a9e79 100644 --- a/nipyapi/nifi/models/controller_status_dto.py +++ b/nipyapi/nifi/models/controller_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/controller_status_entity.py b/nipyapi/nifi/models/controller_status_entity.py index 45dead85..b86cba3a 100644 --- a/nipyapi/nifi/models/controller_status_entity.py +++ b/nipyapi/nifi/models/controller_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/copy_request_entity.py b/nipyapi/nifi/models/copy_request_entity.py index 12ff66c3..ca24db03 100644 --- a/nipyapi/nifi/models/copy_request_entity.py +++ b/nipyapi/nifi/models/copy_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/copy_response_entity.py b/nipyapi/nifi/models/copy_response_entity.py index 3a5ec855..33289afa 100644 --- a/nipyapi/nifi/models/copy_response_entity.py +++ b/nipyapi/nifi/models/copy_response_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/copy_snippet_request_entity.py b/nipyapi/nifi/models/copy_snippet_request_entity.py index 92b9e397..c72153ca 100644 --- a/nipyapi/nifi/models/copy_snippet_request_entity.py +++ b/nipyapi/nifi/models/copy_snippet_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/counter_dto.py b/nipyapi/nifi/models/counter_dto.py index bb1c56ef..27bd4f79 100644 --- a/nipyapi/nifi/models/counter_dto.py +++ b/nipyapi/nifi/models/counter_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/counter_entity.py b/nipyapi/nifi/models/counter_entity.py index d8ad07ab..9f7b4174 100644 --- a/nipyapi/nifi/models/counter_entity.py +++ b/nipyapi/nifi/models/counter_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/counters_dto.py b/nipyapi/nifi/models/counters_dto.py index 6458754f..bc6a8628 100644 --- a/nipyapi/nifi/models/counters_dto.py +++ b/nipyapi/nifi/models/counters_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/counters_entity.py b/nipyapi/nifi/models/counters_entity.py index b22a28fe..a07469fe 100644 --- a/nipyapi/nifi/models/counters_entity.py +++ b/nipyapi/nifi/models/counters_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/counters_snapshot_dto.py b/nipyapi/nifi/models/counters_snapshot_dto.py index 87acf4d0..3c554d30 100644 --- a/nipyapi/nifi/models/counters_snapshot_dto.py +++ b/nipyapi/nifi/models/counters_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/create_active_request_entity.py b/nipyapi/nifi/models/create_active_request_entity.py index d63ab1e0..ae55ee7f 100644 --- a/nipyapi/nifi/models/create_active_request_entity.py +++ b/nipyapi/nifi/models/create_active_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/current_user_entity.py b/nipyapi/nifi/models/current_user_entity.py index 8c313fd4..652e141a 100644 --- a/nipyapi/nifi/models/current_user_entity.py +++ b/nipyapi/nifi/models/current_user_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/date_time_parameter.py b/nipyapi/nifi/models/date_time_parameter.py index e7cf3953..61ca0d7b 100644 --- a/nipyapi/nifi/models/date_time_parameter.py +++ b/nipyapi/nifi/models/date_time_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/defined_type.py b/nipyapi/nifi/models/defined_type.py index 1cbbf533..3634b7e0 100644 --- a/nipyapi/nifi/models/defined_type.py +++ b/nipyapi/nifi/models/defined_type.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/difference_dto.py b/nipyapi/nifi/models/difference_dto.py index f595181a..d130bcc1 100644 --- a/nipyapi/nifi/models/difference_dto.py +++ b/nipyapi/nifi/models/difference_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/dimensions_dto.py b/nipyapi/nifi/models/dimensions_dto.py index 34822e17..a3b104b1 100644 --- a/nipyapi/nifi/models/dimensions_dto.py +++ b/nipyapi/nifi/models/dimensions_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/documented_type_dto.py b/nipyapi/nifi/models/documented_type_dto.py index a6e1d22d..5c801865 100644 --- a/nipyapi/nifi/models/documented_type_dto.py +++ b/nipyapi/nifi/models/documented_type_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/drop_request_dto.py b/nipyapi/nifi/models/drop_request_dto.py index 7a79b810..e237000f 100644 --- a/nipyapi/nifi/models/drop_request_dto.py +++ b/nipyapi/nifi/models/drop_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/drop_request_entity.py b/nipyapi/nifi/models/drop_request_entity.py index c3894e69..d0ca58a6 100644 --- a/nipyapi/nifi/models/drop_request_entity.py +++ b/nipyapi/nifi/models/drop_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/dynamic_property.py b/nipyapi/nifi/models/dynamic_property.py index b3b5cf3d..e60c40dd 100644 --- a/nipyapi/nifi/models/dynamic_property.py +++ b/nipyapi/nifi/models/dynamic_property.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/dynamic_relationship.py b/nipyapi/nifi/models/dynamic_relationship.py index cb9b3613..f99ca553 100644 --- a/nipyapi/nifi/models/dynamic_relationship.py +++ b/nipyapi/nifi/models/dynamic_relationship.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/explicit_restriction_dto.py b/nipyapi/nifi/models/explicit_restriction_dto.py index d36786cd..7cb715f1 100644 --- a/nipyapi/nifi/models/explicit_restriction_dto.py +++ b/nipyapi/nifi/models/explicit_restriction_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/external_controller_service_reference.py b/nipyapi/nifi/models/external_controller_service_reference.py index 486df14d..4d0ab735 100644 --- a/nipyapi/nifi/models/external_controller_service_reference.py +++ b/nipyapi/nifi/models/external_controller_service_reference.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_result_entity.py b/nipyapi/nifi/models/flow_analysis_result_entity.py index 9b407edb..ba51bbc7 100644 --- a/nipyapi/nifi/models/flow_analysis_result_entity.py +++ b/nipyapi/nifi/models/flow_analysis_result_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_rule_definition.py b/nipyapi/nifi/models/flow_analysis_rule_definition.py index 7c847dd1..c71c5153 100644 --- a/nipyapi/nifi/models/flow_analysis_rule_definition.py +++ b/nipyapi/nifi/models/flow_analysis_rule_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_rule_dto.py b/nipyapi/nifi/models/flow_analysis_rule_dto.py index 6413dbe6..2efefc80 100644 --- a/nipyapi/nifi/models/flow_analysis_rule_dto.py +++ b/nipyapi/nifi/models/flow_analysis_rule_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_rule_entity.py b/nipyapi/nifi/models/flow_analysis_rule_entity.py index 31de1123..4856f561 100644 --- a/nipyapi/nifi/models/flow_analysis_rule_entity.py +++ b/nipyapi/nifi/models/flow_analysis_rule_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_rule_run_status_entity.py b/nipyapi/nifi/models/flow_analysis_rule_run_status_entity.py index 5c550672..ea3f6700 100644 --- a/nipyapi/nifi/models/flow_analysis_rule_run_status_entity.py +++ b/nipyapi/nifi/models/flow_analysis_rule_run_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_rule_status_dto.py b/nipyapi/nifi/models/flow_analysis_rule_status_dto.py index 6b468593..93d740d3 100644 --- a/nipyapi/nifi/models/flow_analysis_rule_status_dto.py +++ b/nipyapi/nifi/models/flow_analysis_rule_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_rule_types_entity.py b/nipyapi/nifi/models/flow_analysis_rule_types_entity.py index eeac9451..afaeb8cc 100644 --- a/nipyapi/nifi/models/flow_analysis_rule_types_entity.py +++ b/nipyapi/nifi/models/flow_analysis_rule_types_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_rule_violation_dto.py b/nipyapi/nifi/models/flow_analysis_rule_violation_dto.py index c6813843..10b7cb05 100644 --- a/nipyapi/nifi/models/flow_analysis_rule_violation_dto.py +++ b/nipyapi/nifi/models/flow_analysis_rule_violation_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_analysis_rules_entity.py b/nipyapi/nifi/models/flow_analysis_rules_entity.py index fb732d3b..b931f1c4 100644 --- a/nipyapi/nifi/models/flow_analysis_rules_entity.py +++ b/nipyapi/nifi/models/flow_analysis_rules_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_breadcrumb_dto.py b/nipyapi/nifi/models/flow_breadcrumb_dto.py index 56a26db6..9d78e1dc 100644 --- a/nipyapi/nifi/models/flow_breadcrumb_dto.py +++ b/nipyapi/nifi/models/flow_breadcrumb_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_breadcrumb_entity.py b/nipyapi/nifi/models/flow_breadcrumb_entity.py index 6e46a9bf..7c834670 100644 --- a/nipyapi/nifi/models/flow_breadcrumb_entity.py +++ b/nipyapi/nifi/models/flow_breadcrumb_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_comparison_entity.py b/nipyapi/nifi/models/flow_comparison_entity.py index d3b54feb..3a222d69 100644 --- a/nipyapi/nifi/models/flow_comparison_entity.py +++ b/nipyapi/nifi/models/flow_comparison_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_configuration_dto.py b/nipyapi/nifi/models/flow_configuration_dto.py index ab5951d3..4aeeb83b 100644 --- a/nipyapi/nifi/models/flow_configuration_dto.py +++ b/nipyapi/nifi/models/flow_configuration_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_configuration_entity.py b/nipyapi/nifi/models/flow_configuration_entity.py index 6315a939..f5ff99f7 100644 --- a/nipyapi/nifi/models/flow_configuration_entity.py +++ b/nipyapi/nifi/models/flow_configuration_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_dto.py b/nipyapi/nifi/models/flow_dto.py index 020e7c31..4aa7e38a 100644 --- a/nipyapi/nifi/models/flow_dto.py +++ b/nipyapi/nifi/models/flow_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_entity.py b/nipyapi/nifi/models/flow_entity.py index 441cae49..9d09eb38 100644 --- a/nipyapi/nifi/models/flow_entity.py +++ b/nipyapi/nifi/models/flow_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_file_dto.py b/nipyapi/nifi/models/flow_file_dto.py index 4de84ed9..6695863a 100644 --- a/nipyapi/nifi/models/flow_file_dto.py +++ b/nipyapi/nifi/models/flow_file_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_file_entity.py b/nipyapi/nifi/models/flow_file_entity.py index fbbf3283..dfe5056f 100644 --- a/nipyapi/nifi/models/flow_file_entity.py +++ b/nipyapi/nifi/models/flow_file_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_file_summary_dto.py b/nipyapi/nifi/models/flow_file_summary_dto.py index d6d41332..d12b3d1c 100644 --- a/nipyapi/nifi/models/flow_file_summary_dto.py +++ b/nipyapi/nifi/models/flow_file_summary_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_branch_dto.py b/nipyapi/nifi/models/flow_registry_branch_dto.py index 5776e521..642a6aaa 100644 --- a/nipyapi/nifi/models/flow_registry_branch_dto.py +++ b/nipyapi/nifi/models/flow_registry_branch_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_branch_entity.py b/nipyapi/nifi/models/flow_registry_branch_entity.py index 1d8a9d1c..fa9dfcf3 100644 --- a/nipyapi/nifi/models/flow_registry_branch_entity.py +++ b/nipyapi/nifi/models/flow_registry_branch_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_branches_entity.py b/nipyapi/nifi/models/flow_registry_branches_entity.py index ce106bed..4b447d3b 100644 --- a/nipyapi/nifi/models/flow_registry_branches_entity.py +++ b/nipyapi/nifi/models/flow_registry_branches_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_bucket.py b/nipyapi/nifi/models/flow_registry_bucket.py index 8f3ef0aa..91ca0f51 100644 --- a/nipyapi/nifi/models/flow_registry_bucket.py +++ b/nipyapi/nifi/models/flow_registry_bucket.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_bucket_dto.py b/nipyapi/nifi/models/flow_registry_bucket_dto.py index 7ff65a24..f407f57c 100644 --- a/nipyapi/nifi/models/flow_registry_bucket_dto.py +++ b/nipyapi/nifi/models/flow_registry_bucket_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_bucket_entity.py b/nipyapi/nifi/models/flow_registry_bucket_entity.py index cbff4031..ac117cef 100644 --- a/nipyapi/nifi/models/flow_registry_bucket_entity.py +++ b/nipyapi/nifi/models/flow_registry_bucket_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_buckets_entity.py b/nipyapi/nifi/models/flow_registry_buckets_entity.py index 714cec5f..4a157aa1 100644 --- a/nipyapi/nifi/models/flow_registry_buckets_entity.py +++ b/nipyapi/nifi/models/flow_registry_buckets_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_client_dto.py b/nipyapi/nifi/models/flow_registry_client_dto.py index 58eab63a..bace7afe 100644 --- a/nipyapi/nifi/models/flow_registry_client_dto.py +++ b/nipyapi/nifi/models/flow_registry_client_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_client_entity.py b/nipyapi/nifi/models/flow_registry_client_entity.py index 7c88a6ce..b6b2f014 100644 --- a/nipyapi/nifi/models/flow_registry_client_entity.py +++ b/nipyapi/nifi/models/flow_registry_client_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_client_types_entity.py b/nipyapi/nifi/models/flow_registry_client_types_entity.py index e9670d89..99cd0866 100644 --- a/nipyapi/nifi/models/flow_registry_client_types_entity.py +++ b/nipyapi/nifi/models/flow_registry_client_types_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_clients_entity.py b/nipyapi/nifi/models/flow_registry_clients_entity.py index 582952d0..c6660616 100644 --- a/nipyapi/nifi/models/flow_registry_clients_entity.py +++ b/nipyapi/nifi/models/flow_registry_clients_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_registry_permissions.py b/nipyapi/nifi/models/flow_registry_permissions.py index 1a336b2b..36c698da 100644 --- a/nipyapi/nifi/models/flow_registry_permissions.py +++ b/nipyapi/nifi/models/flow_registry_permissions.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/flow_snippet_dto.py b/nipyapi/nifi/models/flow_snippet_dto.py index 325f4c0c..ee1ffa16 100644 --- a/nipyapi/nifi/models/flow_snippet_dto.py +++ b/nipyapi/nifi/models/flow_snippet_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/funnel_dto.py b/nipyapi/nifi/models/funnel_dto.py index 929c4441..5d231686 100644 --- a/nipyapi/nifi/models/funnel_dto.py +++ b/nipyapi/nifi/models/funnel_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/funnel_entity.py b/nipyapi/nifi/models/funnel_entity.py index 897d0cf2..6b57dc2c 100644 --- a/nipyapi/nifi/models/funnel_entity.py +++ b/nipyapi/nifi/models/funnel_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/funnels_entity.py b/nipyapi/nifi/models/funnels_entity.py index 0b8b6c92..87792a5a 100644 --- a/nipyapi/nifi/models/funnels_entity.py +++ b/nipyapi/nifi/models/funnels_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/garbage_collection_dto.py b/nipyapi/nifi/models/garbage_collection_dto.py index ece40ee1..84099876 100644 --- a/nipyapi/nifi/models/garbage_collection_dto.py +++ b/nipyapi/nifi/models/garbage_collection_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/history_dto.py b/nipyapi/nifi/models/history_dto.py index 3e8b1938..faa10039 100644 --- a/nipyapi/nifi/models/history_dto.py +++ b/nipyapi/nifi/models/history_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/history_entity.py b/nipyapi/nifi/models/history_entity.py index 617b407b..212be26c 100644 --- a/nipyapi/nifi/models/history_entity.py +++ b/nipyapi/nifi/models/history_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/input_ports_entity.py b/nipyapi/nifi/models/input_ports_entity.py index 64370c1d..116798b5 100644 --- a/nipyapi/nifi/models/input_ports_entity.py +++ b/nipyapi/nifi/models/input_ports_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/integer_parameter.py b/nipyapi/nifi/models/integer_parameter.py index f08e99bd..8bad7a78 100644 --- a/nipyapi/nifi/models/integer_parameter.py +++ b/nipyapi/nifi/models/integer_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/jmx_metrics_result_dto.py b/nipyapi/nifi/models/jmx_metrics_result_dto.py index 1dce0fca..17395f51 100644 --- a/nipyapi/nifi/models/jmx_metrics_result_dto.py +++ b/nipyapi/nifi/models/jmx_metrics_result_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/jmx_metrics_results_entity.py b/nipyapi/nifi/models/jmx_metrics_results_entity.py index cbc0e482..9b9ccce3 100644 --- a/nipyapi/nifi/models/jmx_metrics_results_entity.py +++ b/nipyapi/nifi/models/jmx_metrics_results_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/label_dto.py b/nipyapi/nifi/models/label_dto.py index 86eb2907..14f90e56 100644 --- a/nipyapi/nifi/models/label_dto.py +++ b/nipyapi/nifi/models/label_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/label_entity.py b/nipyapi/nifi/models/label_entity.py index b11ad5b3..56caae22 100644 --- a/nipyapi/nifi/models/label_entity.py +++ b/nipyapi/nifi/models/label_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/labels_entity.py b/nipyapi/nifi/models/labels_entity.py index 9a2ec511..591ab699 100644 --- a/nipyapi/nifi/models/labels_entity.py +++ b/nipyapi/nifi/models/labels_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/latest_provenance_events_dto.py b/nipyapi/nifi/models/latest_provenance_events_dto.py index 391cb396..f1d2b5de 100644 --- a/nipyapi/nifi/models/latest_provenance_events_dto.py +++ b/nipyapi/nifi/models/latest_provenance_events_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/latest_provenance_events_entity.py b/nipyapi/nifi/models/latest_provenance_events_entity.py index 40fe3de6..43651945 100644 --- a/nipyapi/nifi/models/latest_provenance_events_entity.py +++ b/nipyapi/nifi/models/latest_provenance_events_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/lineage_dto.py b/nipyapi/nifi/models/lineage_dto.py index 0f1abc7f..f8765819 100644 --- a/nipyapi/nifi/models/lineage_dto.py +++ b/nipyapi/nifi/models/lineage_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/lineage_entity.py b/nipyapi/nifi/models/lineage_entity.py index bf0a8218..f0b81b77 100644 --- a/nipyapi/nifi/models/lineage_entity.py +++ b/nipyapi/nifi/models/lineage_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/lineage_request_dto.py b/nipyapi/nifi/models/lineage_request_dto.py index 7dd753f9..7712f572 100644 --- a/nipyapi/nifi/models/lineage_request_dto.py +++ b/nipyapi/nifi/models/lineage_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/lineage_results_dto.py b/nipyapi/nifi/models/lineage_results_dto.py index 99bf2cb7..c59dcab8 100644 --- a/nipyapi/nifi/models/lineage_results_dto.py +++ b/nipyapi/nifi/models/lineage_results_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/listing_request_dto.py b/nipyapi/nifi/models/listing_request_dto.py index 5cb8765a..990431a3 100644 --- a/nipyapi/nifi/models/listing_request_dto.py +++ b/nipyapi/nifi/models/listing_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/listing_request_entity.py b/nipyapi/nifi/models/listing_request_entity.py index 53966b6c..59ac8c28 100644 --- a/nipyapi/nifi/models/listing_request_entity.py +++ b/nipyapi/nifi/models/listing_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/long_parameter.py b/nipyapi/nifi/models/long_parameter.py index 56481c2e..143016ce 100644 --- a/nipyapi/nifi/models/long_parameter.py +++ b/nipyapi/nifi/models/long_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/multi_processor_use_case.py b/nipyapi/nifi/models/multi_processor_use_case.py index 346f5466..53e0959b 100644 --- a/nipyapi/nifi/models/multi_processor_use_case.py +++ b/nipyapi/nifi/models/multi_processor_use_case.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/nar_coordinate_dto.py b/nipyapi/nifi/models/nar_coordinate_dto.py index fb0af736..3884bfbc 100644 --- a/nipyapi/nifi/models/nar_coordinate_dto.py +++ b/nipyapi/nifi/models/nar_coordinate_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/nar_details_entity.py b/nipyapi/nifi/models/nar_details_entity.py index fef69af9..bed4fe56 100644 --- a/nipyapi/nifi/models/nar_details_entity.py +++ b/nipyapi/nifi/models/nar_details_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/nar_summaries_entity.py b/nipyapi/nifi/models/nar_summaries_entity.py index e14992ec..839a78cf 100644 --- a/nipyapi/nifi/models/nar_summaries_entity.py +++ b/nipyapi/nifi/models/nar_summaries_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/nar_summary_dto.py b/nipyapi/nifi/models/nar_summary_dto.py index e9c7da4c..dc833e82 100644 --- a/nipyapi/nifi/models/nar_summary_dto.py +++ b/nipyapi/nifi/models/nar_summary_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/nar_summary_entity.py b/nipyapi/nifi/models/nar_summary_entity.py index 612921b2..b26bb84e 100644 --- a/nipyapi/nifi/models/nar_summary_entity.py +++ b/nipyapi/nifi/models/nar_summary_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_connection_statistics_snapshot_dto.py b/nipyapi/nifi/models/node_connection_statistics_snapshot_dto.py index 9d1521f5..8efc6027 100644 --- a/nipyapi/nifi/models/node_connection_statistics_snapshot_dto.py +++ b/nipyapi/nifi/models/node_connection_statistics_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_connection_status_snapshot_dto.py b/nipyapi/nifi/models/node_connection_status_snapshot_dto.py index bb63e061..ab3608f5 100644 --- a/nipyapi/nifi/models/node_connection_status_snapshot_dto.py +++ b/nipyapi/nifi/models/node_connection_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_counters_snapshot_dto.py b/nipyapi/nifi/models/node_counters_snapshot_dto.py index 150a745f..41b42388 100644 --- a/nipyapi/nifi/models/node_counters_snapshot_dto.py +++ b/nipyapi/nifi/models/node_counters_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_dto.py b/nipyapi/nifi/models/node_dto.py index 7ea6160e..39ce4645 100644 --- a/nipyapi/nifi/models/node_dto.py +++ b/nipyapi/nifi/models/node_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_entity.py b/nipyapi/nifi/models/node_entity.py index 2a8f4c33..5d4439fb 100644 --- a/nipyapi/nifi/models/node_entity.py +++ b/nipyapi/nifi/models/node_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_event_dto.py b/nipyapi/nifi/models/node_event_dto.py index 84f02c72..c3399945 100644 --- a/nipyapi/nifi/models/node_event_dto.py +++ b/nipyapi/nifi/models/node_event_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_port_status_snapshot_dto.py b/nipyapi/nifi/models/node_port_status_snapshot_dto.py index f843af5d..fc4a7681 100644 --- a/nipyapi/nifi/models/node_port_status_snapshot_dto.py +++ b/nipyapi/nifi/models/node_port_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_process_group_status_snapshot_dto.py b/nipyapi/nifi/models/node_process_group_status_snapshot_dto.py index e23d251a..cc1ced27 100644 --- a/nipyapi/nifi/models/node_process_group_status_snapshot_dto.py +++ b/nipyapi/nifi/models/node_process_group_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_processor_status_snapshot_dto.py b/nipyapi/nifi/models/node_processor_status_snapshot_dto.py index 684e65ba..8bdbb025 100644 --- a/nipyapi/nifi/models/node_processor_status_snapshot_dto.py +++ b/nipyapi/nifi/models/node_processor_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_remote_process_group_status_snapshot_dto.py b/nipyapi/nifi/models/node_remote_process_group_status_snapshot_dto.py index 5b9af872..ca59dfea 100644 --- a/nipyapi/nifi/models/node_remote_process_group_status_snapshot_dto.py +++ b/nipyapi/nifi/models/node_remote_process_group_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_replay_last_event_snapshot_dto.py b/nipyapi/nifi/models/node_replay_last_event_snapshot_dto.py index 5f41822e..2d462432 100644 --- a/nipyapi/nifi/models/node_replay_last_event_snapshot_dto.py +++ b/nipyapi/nifi/models/node_replay_last_event_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_search_result_dto.py b/nipyapi/nifi/models/node_search_result_dto.py index a1f9e644..f4432094 100644 --- a/nipyapi/nifi/models/node_search_result_dto.py +++ b/nipyapi/nifi/models/node_search_result_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_status_snapshots_dto.py b/nipyapi/nifi/models/node_status_snapshots_dto.py index 56fba122..1c055ed3 100644 --- a/nipyapi/nifi/models/node_status_snapshots_dto.py +++ b/nipyapi/nifi/models/node_status_snapshots_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/node_system_diagnostics_snapshot_dto.py b/nipyapi/nifi/models/node_system_diagnostics_snapshot_dto.py index a249b0c2..069af3ac 100644 --- a/nipyapi/nifi/models/node_system_diagnostics_snapshot_dto.py +++ b/nipyapi/nifi/models/node_system_diagnostics_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/output_ports_entity.py b/nipyapi/nifi/models/output_ports_entity.py index 92bda5d3..fe2f4683 100644 --- a/nipyapi/nifi/models/output_ports_entity.py +++ b/nipyapi/nifi/models/output_ports_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_dto.py b/nipyapi/nifi/models/parameter_context_dto.py index 58651399..3590adac 100644 --- a/nipyapi/nifi/models/parameter_context_dto.py +++ b/nipyapi/nifi/models/parameter_context_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_entity.py b/nipyapi/nifi/models/parameter_context_entity.py index 7a3920da..621665e1 100644 --- a/nipyapi/nifi/models/parameter_context_entity.py +++ b/nipyapi/nifi/models/parameter_context_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_reference_dto.py b/nipyapi/nifi/models/parameter_context_reference_dto.py index 042d1168..dc5afd32 100644 --- a/nipyapi/nifi/models/parameter_context_reference_dto.py +++ b/nipyapi/nifi/models/parameter_context_reference_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_reference_entity.py b/nipyapi/nifi/models/parameter_context_reference_entity.py index 1360f231..1715240f 100644 --- a/nipyapi/nifi/models/parameter_context_reference_entity.py +++ b/nipyapi/nifi/models/parameter_context_reference_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_update_entity.py b/nipyapi/nifi/models/parameter_context_update_entity.py index 58a3ff1d..0121d2bc 100644 --- a/nipyapi/nifi/models/parameter_context_update_entity.py +++ b/nipyapi/nifi/models/parameter_context_update_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_update_request_dto.py b/nipyapi/nifi/models/parameter_context_update_request_dto.py index c33cdc0a..8bf47476 100644 --- a/nipyapi/nifi/models/parameter_context_update_request_dto.py +++ b/nipyapi/nifi/models/parameter_context_update_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_update_request_entity.py b/nipyapi/nifi/models/parameter_context_update_request_entity.py index 95d85613..b3c370d5 100644 --- a/nipyapi/nifi/models/parameter_context_update_request_entity.py +++ b/nipyapi/nifi/models/parameter_context_update_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_update_step_dto.py b/nipyapi/nifi/models/parameter_context_update_step_dto.py index 4e019a85..75179b60 100644 --- a/nipyapi/nifi/models/parameter_context_update_step_dto.py +++ b/nipyapi/nifi/models/parameter_context_update_step_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_validation_request_dto.py b/nipyapi/nifi/models/parameter_context_validation_request_dto.py index e1e9cc4a..a077ad4d 100644 --- a/nipyapi/nifi/models/parameter_context_validation_request_dto.py +++ b/nipyapi/nifi/models/parameter_context_validation_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_validation_request_entity.py b/nipyapi/nifi/models/parameter_context_validation_request_entity.py index ab485bbf..d7e8c745 100644 --- a/nipyapi/nifi/models/parameter_context_validation_request_entity.py +++ b/nipyapi/nifi/models/parameter_context_validation_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_context_validation_step_dto.py b/nipyapi/nifi/models/parameter_context_validation_step_dto.py index a85bfafc..7872df7b 100644 --- a/nipyapi/nifi/models/parameter_context_validation_step_dto.py +++ b/nipyapi/nifi/models/parameter_context_validation_step_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_contexts_entity.py b/nipyapi/nifi/models/parameter_contexts_entity.py index 098c3b70..01766370 100644 --- a/nipyapi/nifi/models/parameter_contexts_entity.py +++ b/nipyapi/nifi/models/parameter_contexts_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_dto.py b/nipyapi/nifi/models/parameter_dto.py index 351c7796..dcd3f97a 100644 --- a/nipyapi/nifi/models/parameter_dto.py +++ b/nipyapi/nifi/models/parameter_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_entity.py b/nipyapi/nifi/models/parameter_entity.py index 1aa85953..d71a88c6 100644 --- a/nipyapi/nifi/models/parameter_entity.py +++ b/nipyapi/nifi/models/parameter_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_group_configuration_entity.py b/nipyapi/nifi/models/parameter_group_configuration_entity.py index 99ac6c2b..ec601384 100644 --- a/nipyapi/nifi/models/parameter_group_configuration_entity.py +++ b/nipyapi/nifi/models/parameter_group_configuration_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_apply_parameters_request_dto.py b/nipyapi/nifi/models/parameter_provider_apply_parameters_request_dto.py index a4a7c415..a556f03b 100644 --- a/nipyapi/nifi/models/parameter_provider_apply_parameters_request_dto.py +++ b/nipyapi/nifi/models/parameter_provider_apply_parameters_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_apply_parameters_request_entity.py b/nipyapi/nifi/models/parameter_provider_apply_parameters_request_entity.py index 6ecba445..dc1ea7de 100644 --- a/nipyapi/nifi/models/parameter_provider_apply_parameters_request_entity.py +++ b/nipyapi/nifi/models/parameter_provider_apply_parameters_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_apply_parameters_update_step_dto.py b/nipyapi/nifi/models/parameter_provider_apply_parameters_update_step_dto.py index fe5f9eee..2bb4e2cb 100644 --- a/nipyapi/nifi/models/parameter_provider_apply_parameters_update_step_dto.py +++ b/nipyapi/nifi/models/parameter_provider_apply_parameters_update_step_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_configuration_dto.py b/nipyapi/nifi/models/parameter_provider_configuration_dto.py index 6f0378f0..9214e156 100644 --- a/nipyapi/nifi/models/parameter_provider_configuration_dto.py +++ b/nipyapi/nifi/models/parameter_provider_configuration_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_configuration_entity.py b/nipyapi/nifi/models/parameter_provider_configuration_entity.py index f5819f29..2c166a00 100644 --- a/nipyapi/nifi/models/parameter_provider_configuration_entity.py +++ b/nipyapi/nifi/models/parameter_provider_configuration_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_definition.py b/nipyapi/nifi/models/parameter_provider_definition.py index 38f2fc50..6814c66a 100644 --- a/nipyapi/nifi/models/parameter_provider_definition.py +++ b/nipyapi/nifi/models/parameter_provider_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_dto.py b/nipyapi/nifi/models/parameter_provider_dto.py index 6cd33dc6..3525f698 100644 --- a/nipyapi/nifi/models/parameter_provider_dto.py +++ b/nipyapi/nifi/models/parameter_provider_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_entity.py b/nipyapi/nifi/models/parameter_provider_entity.py index 9d9d2f01..1b2772fc 100644 --- a/nipyapi/nifi/models/parameter_provider_entity.py +++ b/nipyapi/nifi/models/parameter_provider_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_parameter_application_entity.py b/nipyapi/nifi/models/parameter_provider_parameter_application_entity.py index b8e05f45..d6e2a020 100644 --- a/nipyapi/nifi/models/parameter_provider_parameter_application_entity.py +++ b/nipyapi/nifi/models/parameter_provider_parameter_application_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_parameter_fetch_entity.py b/nipyapi/nifi/models/parameter_provider_parameter_fetch_entity.py index 5f3569db..2494d1b6 100644 --- a/nipyapi/nifi/models/parameter_provider_parameter_fetch_entity.py +++ b/nipyapi/nifi/models/parameter_provider_parameter_fetch_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_reference.py b/nipyapi/nifi/models/parameter_provider_reference.py index 2bca1922..73dac29f 100644 --- a/nipyapi/nifi/models/parameter_provider_reference.py +++ b/nipyapi/nifi/models/parameter_provider_reference.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_referencing_component_dto.py b/nipyapi/nifi/models/parameter_provider_referencing_component_dto.py index eb682430..cce749a4 100644 --- a/nipyapi/nifi/models/parameter_provider_referencing_component_dto.py +++ b/nipyapi/nifi/models/parameter_provider_referencing_component_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_referencing_component_entity.py b/nipyapi/nifi/models/parameter_provider_referencing_component_entity.py index 7f778d31..44c54db8 100644 --- a/nipyapi/nifi/models/parameter_provider_referencing_component_entity.py +++ b/nipyapi/nifi/models/parameter_provider_referencing_component_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_referencing_components_entity.py b/nipyapi/nifi/models/parameter_provider_referencing_components_entity.py index e271be05..040ea98a 100644 --- a/nipyapi/nifi/models/parameter_provider_referencing_components_entity.py +++ b/nipyapi/nifi/models/parameter_provider_referencing_components_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_provider_types_entity.py b/nipyapi/nifi/models/parameter_provider_types_entity.py index 7e414a2d..5ce2f3b3 100644 --- a/nipyapi/nifi/models/parameter_provider_types_entity.py +++ b/nipyapi/nifi/models/parameter_provider_types_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_providers_entity.py b/nipyapi/nifi/models/parameter_providers_entity.py index 6f00829e..4f53e3b2 100644 --- a/nipyapi/nifi/models/parameter_providers_entity.py +++ b/nipyapi/nifi/models/parameter_providers_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/parameter_status_dto.py b/nipyapi/nifi/models/parameter_status_dto.py index c596b0e0..e3d7910f 100644 --- a/nipyapi/nifi/models/parameter_status_dto.py +++ b/nipyapi/nifi/models/parameter_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/paste_request_entity.py b/nipyapi/nifi/models/paste_request_entity.py index 09f085fd..c9626fef 100644 --- a/nipyapi/nifi/models/paste_request_entity.py +++ b/nipyapi/nifi/models/paste_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/paste_response_entity.py b/nipyapi/nifi/models/paste_response_entity.py index e5fd0416..46adc138 100644 --- a/nipyapi/nifi/models/paste_response_entity.py +++ b/nipyapi/nifi/models/paste_response_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/peer_dto.py b/nipyapi/nifi/models/peer_dto.py index ebd5e539..121c29ce 100644 --- a/nipyapi/nifi/models/peer_dto.py +++ b/nipyapi/nifi/models/peer_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/peers_entity.py b/nipyapi/nifi/models/peers_entity.py index e97b9771..3b5a54dd 100644 --- a/nipyapi/nifi/models/peers_entity.py +++ b/nipyapi/nifi/models/peers_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/permissions_dto.py b/nipyapi/nifi/models/permissions_dto.py index f23db825..29717f60 100644 --- a/nipyapi/nifi/models/permissions_dto.py +++ b/nipyapi/nifi/models/permissions_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/port_dto.py b/nipyapi/nifi/models/port_dto.py index 9b4e9825..e963bd88 100644 --- a/nipyapi/nifi/models/port_dto.py +++ b/nipyapi/nifi/models/port_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/port_entity.py b/nipyapi/nifi/models/port_entity.py index 7f37c265..803e1aaf 100644 --- a/nipyapi/nifi/models/port_entity.py +++ b/nipyapi/nifi/models/port_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/port_run_status_entity.py b/nipyapi/nifi/models/port_run_status_entity.py index 6a7c3d7d..c8a39398 100644 --- a/nipyapi/nifi/models/port_run_status_entity.py +++ b/nipyapi/nifi/models/port_run_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/port_status_dto.py b/nipyapi/nifi/models/port_status_dto.py index 53d85f5a..fd072427 100644 --- a/nipyapi/nifi/models/port_status_dto.py +++ b/nipyapi/nifi/models/port_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/port_status_entity.py b/nipyapi/nifi/models/port_status_entity.py index dda4bf3e..309e7a3a 100644 --- a/nipyapi/nifi/models/port_status_entity.py +++ b/nipyapi/nifi/models/port_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/port_status_snapshot_dto.py b/nipyapi/nifi/models/port_status_snapshot_dto.py index 7dd65007..c42be143 100644 --- a/nipyapi/nifi/models/port_status_snapshot_dto.py +++ b/nipyapi/nifi/models/port_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/port_status_snapshot_entity.py b/nipyapi/nifi/models/port_status_snapshot_entity.py index bf7c5364..b9d58e45 100644 --- a/nipyapi/nifi/models/port_status_snapshot_entity.py +++ b/nipyapi/nifi/models/port_status_snapshot_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/position.py b/nipyapi/nifi/models/position.py index 3839d801..fe266f8e 100644 --- a/nipyapi/nifi/models/position.py +++ b/nipyapi/nifi/models/position.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/position_dto.py b/nipyapi/nifi/models/position_dto.py index 37051730..67736627 100644 --- a/nipyapi/nifi/models/position_dto.py +++ b/nipyapi/nifi/models/position_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/previous_value_dto.py b/nipyapi/nifi/models/previous_value_dto.py index c9e76e67..c9a2205c 100644 --- a/nipyapi/nifi/models/previous_value_dto.py +++ b/nipyapi/nifi/models/previous_value_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/prioritizer_types_entity.py b/nipyapi/nifi/models/prioritizer_types_entity.py index 9ba4efdb..54ca36d5 100644 --- a/nipyapi/nifi/models/prioritizer_types_entity.py +++ b/nipyapi/nifi/models/prioritizer_types_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_dto.py b/nipyapi/nifi/models/process_group_dto.py index 912c7b10..5b627930 100644 --- a/nipyapi/nifi/models/process_group_dto.py +++ b/nipyapi/nifi/models/process_group_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_entity.py b/nipyapi/nifi/models/process_group_entity.py index 7b9b08d2..4166d34b 100644 --- a/nipyapi/nifi/models/process_group_entity.py +++ b/nipyapi/nifi/models/process_group_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_flow_dto.py b/nipyapi/nifi/models/process_group_flow_dto.py index b29d5bd8..eca42f23 100644 --- a/nipyapi/nifi/models/process_group_flow_dto.py +++ b/nipyapi/nifi/models/process_group_flow_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_flow_entity.py b/nipyapi/nifi/models/process_group_flow_entity.py index 2b18474b..5bdaa8b5 100644 --- a/nipyapi/nifi/models/process_group_flow_entity.py +++ b/nipyapi/nifi/models/process_group_flow_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_import_entity.py b/nipyapi/nifi/models/process_group_import_entity.py index f03409f6..aaaafde4 100644 --- a/nipyapi/nifi/models/process_group_import_entity.py +++ b/nipyapi/nifi/models/process_group_import_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_name_dto.py b/nipyapi/nifi/models/process_group_name_dto.py index 9bbb1e24..21e9089c 100644 --- a/nipyapi/nifi/models/process_group_name_dto.py +++ b/nipyapi/nifi/models/process_group_name_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_replace_request_dto.py b/nipyapi/nifi/models/process_group_replace_request_dto.py index 379d1656..8adc2a8c 100644 --- a/nipyapi/nifi/models/process_group_replace_request_dto.py +++ b/nipyapi/nifi/models/process_group_replace_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_replace_request_entity.py b/nipyapi/nifi/models/process_group_replace_request_entity.py index 0ff2d2b4..dcbb3f21 100644 --- a/nipyapi/nifi/models/process_group_replace_request_entity.py +++ b/nipyapi/nifi/models/process_group_replace_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_status_dto.py b/nipyapi/nifi/models/process_group_status_dto.py index 69d3f3ac..f6a6f748 100644 --- a/nipyapi/nifi/models/process_group_status_dto.py +++ b/nipyapi/nifi/models/process_group_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_status_entity.py b/nipyapi/nifi/models/process_group_status_entity.py index 0bd2a064..4e75baf0 100644 --- a/nipyapi/nifi/models/process_group_status_entity.py +++ b/nipyapi/nifi/models/process_group_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_status_snapshot_dto.py b/nipyapi/nifi/models/process_group_status_snapshot_dto.py index 2d06c3f2..f03f8896 100644 --- a/nipyapi/nifi/models/process_group_status_snapshot_dto.py +++ b/nipyapi/nifi/models/process_group_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_status_snapshot_entity.py b/nipyapi/nifi/models/process_group_status_snapshot_entity.py index dc65d4a9..90135801 100644 --- a/nipyapi/nifi/models/process_group_status_snapshot_entity.py +++ b/nipyapi/nifi/models/process_group_status_snapshot_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_group_upload_entity.py b/nipyapi/nifi/models/process_group_upload_entity.py index 26b7a47a..222e5028 100644 --- a/nipyapi/nifi/models/process_group_upload_entity.py +++ b/nipyapi/nifi/models/process_group_upload_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/process_groups_entity.py b/nipyapi/nifi/models/process_groups_entity.py index 2d042f69..85de8057 100644 --- a/nipyapi/nifi/models/process_groups_entity.py +++ b/nipyapi/nifi/models/process_groups_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processgroups_upload_body.py b/nipyapi/nifi/models/processgroups_upload_body.py index 25e6634f..47a68c0e 100644 --- a/nipyapi/nifi/models/processgroups_upload_body.py +++ b/nipyapi/nifi/models/processgroups_upload_body.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processing_performance_status_dto.py b/nipyapi/nifi/models/processing_performance_status_dto.py index 816a0309..4dee5bc1 100644 --- a/nipyapi/nifi/models/processing_performance_status_dto.py +++ b/nipyapi/nifi/models/processing_performance_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_config_dto.py b/nipyapi/nifi/models/processor_config_dto.py index a307cf5c..af86b206 100644 --- a/nipyapi/nifi/models/processor_config_dto.py +++ b/nipyapi/nifi/models/processor_config_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -197,7 +197,7 @@ def auto_terminated_relationships(self, auto_terminated_relationships): def backoff_mechanism(self): """ Gets the backoff_mechanism of this ProcessorConfigDTO. - Determines whether the FlowFile should be penalized or the processor should be yielded between retries. + Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR. See BackoffMechanism.class for more details. :return: The backoff_mechanism of this ProcessorConfigDTO. :rtype: str @@ -208,17 +208,11 @@ def backoff_mechanism(self): def backoff_mechanism(self, backoff_mechanism): """ Sets the backoff_mechanism of this ProcessorConfigDTO. - Determines whether the FlowFile should be penalized or the processor should be yielded between retries. + Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR. See BackoffMechanism.class for more details. :param backoff_mechanism: The backoff_mechanism of this ProcessorConfigDTO. :type: str """ - allowed_values = ["PENALIZE_FLOWFILE", "YIELD_PROCESSOR", ] - if backoff_mechanism not in allowed_values: - raise ValueError( - "Invalid value for `backoff_mechanism` ({0}), must be one of {1}" - .format(backoff_mechanism, allowed_values) - ) self._backoff_mechanism = backoff_mechanism diff --git a/nipyapi/nifi/models/processor_configuration.py b/nipyapi/nifi/models/processor_configuration.py index d3312229..f103abab 100644 --- a/nipyapi/nifi/models/processor_configuration.py +++ b/nipyapi/nifi/models/processor_configuration.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_definition.py b/nipyapi/nifi/models/processor_definition.py index d52ae958..704ac529 100644 --- a/nipyapi/nifi/models/processor_definition.py +++ b/nipyapi/nifi/models/processor_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_dto.py b/nipyapi/nifi/models/processor_dto.py index 1a9ec7bc..2f073b33 100644 --- a/nipyapi/nifi/models/processor_dto.py +++ b/nipyapi/nifi/models/processor_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_entity.py b/nipyapi/nifi/models/processor_entity.py index 4ab05058..9cf59902 100644 --- a/nipyapi/nifi/models/processor_entity.py +++ b/nipyapi/nifi/models/processor_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_run_status_details_dto.py b/nipyapi/nifi/models/processor_run_status_details_dto.py index 918c58c8..23e220e4 100644 --- a/nipyapi/nifi/models/processor_run_status_details_dto.py +++ b/nipyapi/nifi/models/processor_run_status_details_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_run_status_details_entity.py b/nipyapi/nifi/models/processor_run_status_details_entity.py index 9f0ae3c8..8fe0def4 100644 --- a/nipyapi/nifi/models/processor_run_status_details_entity.py +++ b/nipyapi/nifi/models/processor_run_status_details_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_run_status_entity.py b/nipyapi/nifi/models/processor_run_status_entity.py index d7af6d82..662c5e12 100644 --- a/nipyapi/nifi/models/processor_run_status_entity.py +++ b/nipyapi/nifi/models/processor_run_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_status_dto.py b/nipyapi/nifi/models/processor_status_dto.py index 2fe8e09d..d08b91ff 100644 --- a/nipyapi/nifi/models/processor_status_dto.py +++ b/nipyapi/nifi/models/processor_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_status_entity.py b/nipyapi/nifi/models/processor_status_entity.py index 7477eacd..a624bfe2 100644 --- a/nipyapi/nifi/models/processor_status_entity.py +++ b/nipyapi/nifi/models/processor_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_status_snapshot_dto.py b/nipyapi/nifi/models/processor_status_snapshot_dto.py index d9d72b16..1a84d4e7 100644 --- a/nipyapi/nifi/models/processor_status_snapshot_dto.py +++ b/nipyapi/nifi/models/processor_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_status_snapshot_entity.py b/nipyapi/nifi/models/processor_status_snapshot_entity.py index 31b1eb61..6c912b60 100644 --- a/nipyapi/nifi/models/processor_status_snapshot_entity.py +++ b/nipyapi/nifi/models/processor_status_snapshot_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processor_types_entity.py b/nipyapi/nifi/models/processor_types_entity.py index 5b901285..d5b7477d 100644 --- a/nipyapi/nifi/models/processor_types_entity.py +++ b/nipyapi/nifi/models/processor_types_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processors_entity.py b/nipyapi/nifi/models/processors_entity.py index f7048b62..69e4da60 100644 --- a/nipyapi/nifi/models/processors_entity.py +++ b/nipyapi/nifi/models/processors_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/processors_run_status_details_entity.py b/nipyapi/nifi/models/processors_run_status_details_entity.py index b5c08679..8a557c7d 100644 --- a/nipyapi/nifi/models/processors_run_status_details_entity.py +++ b/nipyapi/nifi/models/processors_run_status_details_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/property_allowable_value.py b/nipyapi/nifi/models/property_allowable_value.py index f96e5f23..ed82ac38 100644 --- a/nipyapi/nifi/models/property_allowable_value.py +++ b/nipyapi/nifi/models/property_allowable_value.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/property_dependency.py b/nipyapi/nifi/models/property_dependency.py index 6a3ccbcc..72df44cd 100644 --- a/nipyapi/nifi/models/property_dependency.py +++ b/nipyapi/nifi/models/property_dependency.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/property_dependency_dto.py b/nipyapi/nifi/models/property_dependency_dto.py index 087b5a5b..0fd64b82 100644 --- a/nipyapi/nifi/models/property_dependency_dto.py +++ b/nipyapi/nifi/models/property_dependency_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/property_descriptor.py b/nipyapi/nifi/models/property_descriptor.py index 1506a62e..b4cd2106 100644 --- a/nipyapi/nifi/models/property_descriptor.py +++ b/nipyapi/nifi/models/property_descriptor.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/property_descriptor_dto.py b/nipyapi/nifi/models/property_descriptor_dto.py index 8706f333..95d2a2f8 100644 --- a/nipyapi/nifi/models/property_descriptor_dto.py +++ b/nipyapi/nifi/models/property_descriptor_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/property_descriptor_entity.py b/nipyapi/nifi/models/property_descriptor_entity.py index 045a5ae3..b3863ee1 100644 --- a/nipyapi/nifi/models/property_descriptor_entity.py +++ b/nipyapi/nifi/models/property_descriptor_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/property_history_dto.py b/nipyapi/nifi/models/property_history_dto.py index 81787ce5..d95b23b2 100644 --- a/nipyapi/nifi/models/property_history_dto.py +++ b/nipyapi/nifi/models/property_history_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/property_resource_definition.py b/nipyapi/nifi/models/property_resource_definition.py index 128d52d9..2d7292bb 100644 --- a/nipyapi/nifi/models/property_resource_definition.py +++ b/nipyapi/nifi/models/property_resource_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_dto.py b/nipyapi/nifi/models/provenance_dto.py index 22d8767c..4547840b 100644 --- a/nipyapi/nifi/models/provenance_dto.py +++ b/nipyapi/nifi/models/provenance_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_entity.py b/nipyapi/nifi/models/provenance_entity.py index c80183db..fa61c2dc 100644 --- a/nipyapi/nifi/models/provenance_entity.py +++ b/nipyapi/nifi/models/provenance_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_event_dto.py b/nipyapi/nifi/models/provenance_event_dto.py index 3c5d36ad..4a299ccd 100644 --- a/nipyapi/nifi/models/provenance_event_dto.py +++ b/nipyapi/nifi/models/provenance_event_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_event_entity.py b/nipyapi/nifi/models/provenance_event_entity.py index 3b9d194f..ff41f9e0 100644 --- a/nipyapi/nifi/models/provenance_event_entity.py +++ b/nipyapi/nifi/models/provenance_event_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_link_dto.py b/nipyapi/nifi/models/provenance_link_dto.py index 4b025b9a..29a79d01 100644 --- a/nipyapi/nifi/models/provenance_link_dto.py +++ b/nipyapi/nifi/models/provenance_link_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_node_dto.py b/nipyapi/nifi/models/provenance_node_dto.py index a2e527e5..d4c510d5 100644 --- a/nipyapi/nifi/models/provenance_node_dto.py +++ b/nipyapi/nifi/models/provenance_node_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_options_dto.py b/nipyapi/nifi/models/provenance_options_dto.py index 541e6cd5..95d461df 100644 --- a/nipyapi/nifi/models/provenance_options_dto.py +++ b/nipyapi/nifi/models/provenance_options_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_options_entity.py b/nipyapi/nifi/models/provenance_options_entity.py index 4bb257a9..c5177479 100644 --- a/nipyapi/nifi/models/provenance_options_entity.py +++ b/nipyapi/nifi/models/provenance_options_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_request_dto.py b/nipyapi/nifi/models/provenance_request_dto.py index b407a1dd..78092dc8 100644 --- a/nipyapi/nifi/models/provenance_request_dto.py +++ b/nipyapi/nifi/models/provenance_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_results_dto.py b/nipyapi/nifi/models/provenance_results_dto.py index 9f1d36ca..d66f397f 100644 --- a/nipyapi/nifi/models/provenance_results_dto.py +++ b/nipyapi/nifi/models/provenance_results_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_search_value_dto.py b/nipyapi/nifi/models/provenance_search_value_dto.py index f37d5928..ff10b529 100644 --- a/nipyapi/nifi/models/provenance_search_value_dto.py +++ b/nipyapi/nifi/models/provenance_search_value_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/provenance_searchable_field_dto.py b/nipyapi/nifi/models/provenance_searchable_field_dto.py index 30310cff..5a731220 100644 --- a/nipyapi/nifi/models/provenance_searchable_field_dto.py +++ b/nipyapi/nifi/models/provenance_searchable_field_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/queue_size_dto.py b/nipyapi/nifi/models/queue_size_dto.py index 041b50ed..de76091f 100644 --- a/nipyapi/nifi/models/queue_size_dto.py +++ b/nipyapi/nifi/models/queue_size_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/registered_flow.py b/nipyapi/nifi/models/registered_flow.py index c152c2fb..b61b0b5f 100644 --- a/nipyapi/nifi/models/registered_flow.py +++ b/nipyapi/nifi/models/registered_flow.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/registered_flow_snapshot.py b/nipyapi/nifi/models/registered_flow_snapshot.py index 23a63412..43fb22ca 100644 --- a/nipyapi/nifi/models/registered_flow_snapshot.py +++ b/nipyapi/nifi/models/registered_flow_snapshot.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/registered_flow_snapshot_metadata.py b/nipyapi/nifi/models/registered_flow_snapshot_metadata.py index 4f9bba5a..07f745e4 100644 --- a/nipyapi/nifi/models/registered_flow_snapshot_metadata.py +++ b/nipyapi/nifi/models/registered_flow_snapshot_metadata.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -32,6 +32,9 @@ class RegisteredFlowSnapshotMetadata(object): 'bucket_identifier': 'str', 'comments': 'str', 'flow_identifier': 'str', +'flow_name': 'str', +'registry_identifier': 'str', +'registry_name': 'str', 'timestamp': 'int', 'version': 'str' } @@ -41,10 +44,13 @@ class RegisteredFlowSnapshotMetadata(object): 'bucket_identifier': 'bucketIdentifier', 'comments': 'comments', 'flow_identifier': 'flowIdentifier', +'flow_name': 'flowName', +'registry_identifier': 'registryIdentifier', +'registry_name': 'registryName', 'timestamp': 'timestamp', 'version': 'version' } - def __init__(self, author=None, branch=None, bucket_identifier=None, comments=None, flow_identifier=None, timestamp=None, version=None): + def __init__(self, author=None, branch=None, bucket_identifier=None, comments=None, flow_identifier=None, flow_name=None, registry_identifier=None, registry_name=None, timestamp=None, version=None): """ RegisteredFlowSnapshotMetadata - a model defined in Swagger """ @@ -54,6 +60,9 @@ def __init__(self, author=None, branch=None, bucket_identifier=None, comments=No self._bucket_identifier = None self._comments = None self._flow_identifier = None + self._flow_name = None + self._registry_identifier = None + self._registry_name = None self._timestamp = None self._version = None @@ -67,6 +76,12 @@ def __init__(self, author=None, branch=None, bucket_identifier=None, comments=No self.comments = comments if flow_identifier is not None: self.flow_identifier = flow_identifier + if flow_name is not None: + self.flow_name = flow_name + if registry_identifier is not None: + self.registry_identifier = registry_identifier + if registry_name is not None: + self.registry_name = registry_name if timestamp is not None: self.timestamp = timestamp if version is not None: @@ -177,6 +192,69 @@ def flow_identifier(self, flow_identifier): self._flow_identifier = flow_identifier + @property + def flow_name(self): + """ + Gets the flow_name of this RegisteredFlowSnapshotMetadata. + + :return: The flow_name of this RegisteredFlowSnapshotMetadata. + :rtype: str + """ + return self._flow_name + + @flow_name.setter + def flow_name(self, flow_name): + """ + Sets the flow_name of this RegisteredFlowSnapshotMetadata. + + :param flow_name: The flow_name of this RegisteredFlowSnapshotMetadata. + :type: str + """ + + self._flow_name = flow_name + + @property + def registry_identifier(self): + """ + Gets the registry_identifier of this RegisteredFlowSnapshotMetadata. + + :return: The registry_identifier of this RegisteredFlowSnapshotMetadata. + :rtype: str + """ + return self._registry_identifier + + @registry_identifier.setter + def registry_identifier(self, registry_identifier): + """ + Sets the registry_identifier of this RegisteredFlowSnapshotMetadata. + + :param registry_identifier: The registry_identifier of this RegisteredFlowSnapshotMetadata. + :type: str + """ + + self._registry_identifier = registry_identifier + + @property + def registry_name(self): + """ + Gets the registry_name of this RegisteredFlowSnapshotMetadata. + + :return: The registry_name of this RegisteredFlowSnapshotMetadata. + :rtype: str + """ + return self._registry_name + + @registry_name.setter + def registry_name(self, registry_name): + """ + Sets the registry_name of this RegisteredFlowSnapshotMetadata. + + :param registry_name: The registry_name of this RegisteredFlowSnapshotMetadata. + :type: str + """ + + self._registry_name = registry_name + @property def timestamp(self): """ diff --git a/nipyapi/nifi/models/registered_flow_version_info.py b/nipyapi/nifi/models/registered_flow_version_info.py index afd27e87..8983663b 100644 --- a/nipyapi/nifi/models/registered_flow_version_info.py +++ b/nipyapi/nifi/models/registered_flow_version_info.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/relationship.py b/nipyapi/nifi/models/relationship.py index 1f584901..ce655f2c 100644 --- a/nipyapi/nifi/models/relationship.py +++ b/nipyapi/nifi/models/relationship.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/relationship_dto.py b/nipyapi/nifi/models/relationship_dto.py index 762e3581..cbdbf8a8 100644 --- a/nipyapi/nifi/models/relationship_dto.py +++ b/nipyapi/nifi/models/relationship_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_port_run_status_entity.py b/nipyapi/nifi/models/remote_port_run_status_entity.py index 751301c8..2df529b1 100644 --- a/nipyapi/nifi/models/remote_port_run_status_entity.py +++ b/nipyapi/nifi/models/remote_port_run_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_contents_dto.py b/nipyapi/nifi/models/remote_process_group_contents_dto.py index e8619c0c..df9ffd81 100644 --- a/nipyapi/nifi/models/remote_process_group_contents_dto.py +++ b/nipyapi/nifi/models/remote_process_group_contents_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_dto.py b/nipyapi/nifi/models/remote_process_group_dto.py index f5fc1ad6..46170088 100644 --- a/nipyapi/nifi/models/remote_process_group_dto.py +++ b/nipyapi/nifi/models/remote_process_group_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_entity.py b/nipyapi/nifi/models/remote_process_group_entity.py index d0923df8..07528d20 100644 --- a/nipyapi/nifi/models/remote_process_group_entity.py +++ b/nipyapi/nifi/models/remote_process_group_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_port_dto.py b/nipyapi/nifi/models/remote_process_group_port_dto.py index ba15f163..e0b4675a 100644 --- a/nipyapi/nifi/models/remote_process_group_port_dto.py +++ b/nipyapi/nifi/models/remote_process_group_port_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_port_entity.py b/nipyapi/nifi/models/remote_process_group_port_entity.py index 07c412a8..6d6443b0 100644 --- a/nipyapi/nifi/models/remote_process_group_port_entity.py +++ b/nipyapi/nifi/models/remote_process_group_port_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_status_dto.py b/nipyapi/nifi/models/remote_process_group_status_dto.py index f3c1efc2..aeda6561 100644 --- a/nipyapi/nifi/models/remote_process_group_status_dto.py +++ b/nipyapi/nifi/models/remote_process_group_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_status_entity.py b/nipyapi/nifi/models/remote_process_group_status_entity.py index 33382a79..cd3533f7 100644 --- a/nipyapi/nifi/models/remote_process_group_status_entity.py +++ b/nipyapi/nifi/models/remote_process_group_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_status_snapshot_dto.py b/nipyapi/nifi/models/remote_process_group_status_snapshot_dto.py index 4b5bcd3e..05e929e3 100644 --- a/nipyapi/nifi/models/remote_process_group_status_snapshot_dto.py +++ b/nipyapi/nifi/models/remote_process_group_status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_group_status_snapshot_entity.py b/nipyapi/nifi/models/remote_process_group_status_snapshot_entity.py index 47dff860..bdc58835 100644 --- a/nipyapi/nifi/models/remote_process_group_status_snapshot_entity.py +++ b/nipyapi/nifi/models/remote_process_group_status_snapshot_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/remote_process_groups_entity.py b/nipyapi/nifi/models/remote_process_groups_entity.py index 3b971ad1..21a67fd6 100644 --- a/nipyapi/nifi/models/remote_process_groups_entity.py +++ b/nipyapi/nifi/models/remote_process_groups_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/replay_last_event_request_entity.py b/nipyapi/nifi/models/replay_last_event_request_entity.py index 84d72edf..51a3087f 100644 --- a/nipyapi/nifi/models/replay_last_event_request_entity.py +++ b/nipyapi/nifi/models/replay_last_event_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/replay_last_event_response_entity.py b/nipyapi/nifi/models/replay_last_event_response_entity.py index 3ea7db38..ed2a9855 100644 --- a/nipyapi/nifi/models/replay_last_event_response_entity.py +++ b/nipyapi/nifi/models/replay_last_event_response_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/replay_last_event_snapshot_dto.py b/nipyapi/nifi/models/replay_last_event_snapshot_dto.py index f8891df2..9eb805e2 100644 --- a/nipyapi/nifi/models/replay_last_event_snapshot_dto.py +++ b/nipyapi/nifi/models/replay_last_event_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/reporting_task_definition.py b/nipyapi/nifi/models/reporting_task_definition.py index e9cedf9a..bb0fb932 100644 --- a/nipyapi/nifi/models/reporting_task_definition.py +++ b/nipyapi/nifi/models/reporting_task_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/reporting_task_dto.py b/nipyapi/nifi/models/reporting_task_dto.py index 5f9bbd88..831dc296 100644 --- a/nipyapi/nifi/models/reporting_task_dto.py +++ b/nipyapi/nifi/models/reporting_task_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/reporting_task_entity.py b/nipyapi/nifi/models/reporting_task_entity.py index 7149da61..fcd84f22 100644 --- a/nipyapi/nifi/models/reporting_task_entity.py +++ b/nipyapi/nifi/models/reporting_task_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/reporting_task_run_status_entity.py b/nipyapi/nifi/models/reporting_task_run_status_entity.py index 8534a336..0f91c167 100644 --- a/nipyapi/nifi/models/reporting_task_run_status_entity.py +++ b/nipyapi/nifi/models/reporting_task_run_status_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/reporting_task_status_dto.py b/nipyapi/nifi/models/reporting_task_status_dto.py index 06289b96..d2620e1b 100644 --- a/nipyapi/nifi/models/reporting_task_status_dto.py +++ b/nipyapi/nifi/models/reporting_task_status_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/reporting_task_types_entity.py b/nipyapi/nifi/models/reporting_task_types_entity.py index d644f528..78d64177 100644 --- a/nipyapi/nifi/models/reporting_task_types_entity.py +++ b/nipyapi/nifi/models/reporting_task_types_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/reporting_tasks_entity.py b/nipyapi/nifi/models/reporting_tasks_entity.py index 44a6d6db..63f831c5 100644 --- a/nipyapi/nifi/models/reporting_tasks_entity.py +++ b/nipyapi/nifi/models/reporting_tasks_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/required_permission_dto.py b/nipyapi/nifi/models/required_permission_dto.py index 65ad7534..abe5cea3 100644 --- a/nipyapi/nifi/models/required_permission_dto.py +++ b/nipyapi/nifi/models/required_permission_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/resource_claim_details_dto.py b/nipyapi/nifi/models/resource_claim_details_dto.py index 3086adb0..7cdc5332 100644 --- a/nipyapi/nifi/models/resource_claim_details_dto.py +++ b/nipyapi/nifi/models/resource_claim_details_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/resource_dto.py b/nipyapi/nifi/models/resource_dto.py index e84ba61a..da726963 100644 --- a/nipyapi/nifi/models/resource_dto.py +++ b/nipyapi/nifi/models/resource_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/resources_entity.py b/nipyapi/nifi/models/resources_entity.py index 4a7b22de..4f11296f 100644 --- a/nipyapi/nifi/models/resources_entity.py +++ b/nipyapi/nifi/models/resources_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/restriction.py b/nipyapi/nifi/models/restriction.py index ea721efe..cbb9ebe7 100644 --- a/nipyapi/nifi/models/restriction.py +++ b/nipyapi/nifi/models/restriction.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/revision_dto.py b/nipyapi/nifi/models/revision_dto.py index d4169215..0af8b276 100644 --- a/nipyapi/nifi/models/revision_dto.py +++ b/nipyapi/nifi/models/revision_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/run_status_details_request_entity.py b/nipyapi/nifi/models/run_status_details_request_entity.py index 818adc95..6583da70 100644 --- a/nipyapi/nifi/models/run_status_details_request_entity.py +++ b/nipyapi/nifi/models/run_status_details_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/runtime_manifest.py b/nipyapi/nifi/models/runtime_manifest.py index 54704962..1b2795bf 100644 --- a/nipyapi/nifi/models/runtime_manifest.py +++ b/nipyapi/nifi/models/runtime_manifest.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/runtime_manifest_entity.py b/nipyapi/nifi/models/runtime_manifest_entity.py index 142aa98b..65df3747 100644 --- a/nipyapi/nifi/models/runtime_manifest_entity.py +++ b/nipyapi/nifi/models/runtime_manifest_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/schedule_components_entity.py b/nipyapi/nifi/models/schedule_components_entity.py index 9f57a4bb..23a37801 100644 --- a/nipyapi/nifi/models/schedule_components_entity.py +++ b/nipyapi/nifi/models/schedule_components_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/scheduling_defaults.py b/nipyapi/nifi/models/scheduling_defaults.py index 418c3d4c..b5812e1a 100644 --- a/nipyapi/nifi/models/scheduling_defaults.py +++ b/nipyapi/nifi/models/scheduling_defaults.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/search_result_group_dto.py b/nipyapi/nifi/models/search_result_group_dto.py index 387d3b66..cb0a8ef4 100644 --- a/nipyapi/nifi/models/search_result_group_dto.py +++ b/nipyapi/nifi/models/search_result_group_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/search_results_dto.py b/nipyapi/nifi/models/search_results_dto.py index eda0c2e9..d3049a4c 100644 --- a/nipyapi/nifi/models/search_results_dto.py +++ b/nipyapi/nifi/models/search_results_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/search_results_entity.py b/nipyapi/nifi/models/search_results_entity.py index 39fdecd6..104f678f 100644 --- a/nipyapi/nifi/models/search_results_entity.py +++ b/nipyapi/nifi/models/search_results_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/snippet_dto.py b/nipyapi/nifi/models/snippet_dto.py index 86c3386d..775d210d 100644 --- a/nipyapi/nifi/models/snippet_dto.py +++ b/nipyapi/nifi/models/snippet_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/snippet_entity.py b/nipyapi/nifi/models/snippet_entity.py index 0d7be9c9..5aac1cc3 100644 --- a/nipyapi/nifi/models/snippet_entity.py +++ b/nipyapi/nifi/models/snippet_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/start_version_control_request_entity.py b/nipyapi/nifi/models/start_version_control_request_entity.py index 3962edee..02652c8c 100644 --- a/nipyapi/nifi/models/start_version_control_request_entity.py +++ b/nipyapi/nifi/models/start_version_control_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/state_entry_dto.py b/nipyapi/nifi/models/state_entry_dto.py index 8c00d78f..cc66bebd 100644 --- a/nipyapi/nifi/models/state_entry_dto.py +++ b/nipyapi/nifi/models/state_entry_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/state_map_dto.py b/nipyapi/nifi/models/state_map_dto.py index 3531ab0f..33f5b582 100644 --- a/nipyapi/nifi/models/state_map_dto.py +++ b/nipyapi/nifi/models/state_map_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/stateful.py b/nipyapi/nifi/models/stateful.py index 2aab5f27..0e0dc121 100644 --- a/nipyapi/nifi/models/stateful.py +++ b/nipyapi/nifi/models/stateful.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/status_descriptor_dto.py b/nipyapi/nifi/models/status_descriptor_dto.py index 97a792d9..d6cca0b5 100644 --- a/nipyapi/nifi/models/status_descriptor_dto.py +++ b/nipyapi/nifi/models/status_descriptor_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/status_history_dto.py b/nipyapi/nifi/models/status_history_dto.py index c7cd034d..cce8753b 100644 --- a/nipyapi/nifi/models/status_history_dto.py +++ b/nipyapi/nifi/models/status_history_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/status_history_entity.py b/nipyapi/nifi/models/status_history_entity.py index a33a4d4e..5994791f 100644 --- a/nipyapi/nifi/models/status_history_entity.py +++ b/nipyapi/nifi/models/status_history_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/status_snapshot_dto.py b/nipyapi/nifi/models/status_snapshot_dto.py index c2d00889..d795e78b 100644 --- a/nipyapi/nifi/models/status_snapshot_dto.py +++ b/nipyapi/nifi/models/status_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/storage_usage_dto.py b/nipyapi/nifi/models/storage_usage_dto.py index cfa58d35..b647dc18 100644 --- a/nipyapi/nifi/models/storage_usage_dto.py +++ b/nipyapi/nifi/models/storage_usage_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/streaming_output.py b/nipyapi/nifi/models/streaming_output.py index 9ab4b143..e345f90e 100644 --- a/nipyapi/nifi/models/streaming_output.py +++ b/nipyapi/nifi/models/streaming_output.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/submit_replay_request_entity.py b/nipyapi/nifi/models/submit_replay_request_entity.py index b6aa09d2..a59647bd 100644 --- a/nipyapi/nifi/models/submit_replay_request_entity.py +++ b/nipyapi/nifi/models/submit_replay_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/supported_mime_types_dto.py b/nipyapi/nifi/models/supported_mime_types_dto.py index d1b87b0f..2c3c7d9a 100644 --- a/nipyapi/nifi/models/supported_mime_types_dto.py +++ b/nipyapi/nifi/models/supported_mime_types_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/system_diagnostics_dto.py b/nipyapi/nifi/models/system_diagnostics_dto.py index 41839941..42de832c 100644 --- a/nipyapi/nifi/models/system_diagnostics_dto.py +++ b/nipyapi/nifi/models/system_diagnostics_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/system_diagnostics_entity.py b/nipyapi/nifi/models/system_diagnostics_entity.py index 60b847b5..b260e72d 100644 --- a/nipyapi/nifi/models/system_diagnostics_entity.py +++ b/nipyapi/nifi/models/system_diagnostics_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/system_diagnostics_snapshot_dto.py b/nipyapi/nifi/models/system_diagnostics_snapshot_dto.py index 188050d4..9cc4f1ee 100644 --- a/nipyapi/nifi/models/system_diagnostics_snapshot_dto.py +++ b/nipyapi/nifi/models/system_diagnostics_snapshot_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/system_resource_consideration.py b/nipyapi/nifi/models/system_resource_consideration.py index 5252a82a..04e2dbd6 100644 --- a/nipyapi/nifi/models/system_resource_consideration.py +++ b/nipyapi/nifi/models/system_resource_consideration.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/tenant_dto.py b/nipyapi/nifi/models/tenant_dto.py index 8b1300af..d5c4c26c 100644 --- a/nipyapi/nifi/models/tenant_dto.py +++ b/nipyapi/nifi/models/tenant_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/tenant_entity.py b/nipyapi/nifi/models/tenant_entity.py index fd0a01d2..6f9a39f3 100644 --- a/nipyapi/nifi/models/tenant_entity.py +++ b/nipyapi/nifi/models/tenant_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/tenants_entity.py b/nipyapi/nifi/models/tenants_entity.py index 37d5f092..3779396f 100644 --- a/nipyapi/nifi/models/tenants_entity.py +++ b/nipyapi/nifi/models/tenants_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/transaction_result_entity.py b/nipyapi/nifi/models/transaction_result_entity.py index 36c4d516..7b1d0f67 100644 --- a/nipyapi/nifi/models/transaction_result_entity.py +++ b/nipyapi/nifi/models/transaction_result_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/update_controller_service_reference_request_entity.py b/nipyapi/nifi/models/update_controller_service_reference_request_entity.py index 355f411c..be39571b 100644 --- a/nipyapi/nifi/models/update_controller_service_reference_request_entity.py +++ b/nipyapi/nifi/models/update_controller_service_reference_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/use_case.py b/nipyapi/nifi/models/use_case.py index 00c158e1..cbfacc43 100644 --- a/nipyapi/nifi/models/use_case.py +++ b/nipyapi/nifi/models/use_case.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/user_dto.py b/nipyapi/nifi/models/user_dto.py index a17af057..c1c41fea 100644 --- a/nipyapi/nifi/models/user_dto.py +++ b/nipyapi/nifi/models/user_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/user_entity.py b/nipyapi/nifi/models/user_entity.py index f5657d4d..ede6b5cb 100644 --- a/nipyapi/nifi/models/user_entity.py +++ b/nipyapi/nifi/models/user_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/user_group_dto.py b/nipyapi/nifi/models/user_group_dto.py index ae09d7da..69dc1edb 100644 --- a/nipyapi/nifi/models/user_group_dto.py +++ b/nipyapi/nifi/models/user_group_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/user_group_entity.py b/nipyapi/nifi/models/user_group_entity.py index d7ff6753..a536f84f 100644 --- a/nipyapi/nifi/models/user_group_entity.py +++ b/nipyapi/nifi/models/user_group_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/user_groups_entity.py b/nipyapi/nifi/models/user_groups_entity.py index 3b430c2f..5c7db0e5 100644 --- a/nipyapi/nifi/models/user_groups_entity.py +++ b/nipyapi/nifi/models/user_groups_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/users_entity.py b/nipyapi/nifi/models/users_entity.py index 50d4e9f1..25e65e5c 100644 --- a/nipyapi/nifi/models/users_entity.py +++ b/nipyapi/nifi/models/users_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/verify_config_request_dto.py b/nipyapi/nifi/models/verify_config_request_dto.py index bcaf01b6..a7cb7c77 100644 --- a/nipyapi/nifi/models/verify_config_request_dto.py +++ b/nipyapi/nifi/models/verify_config_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/verify_config_request_entity.py b/nipyapi/nifi/models/verify_config_request_entity.py index aa2cf3da..26bcee64 100644 --- a/nipyapi/nifi/models/verify_config_request_entity.py +++ b/nipyapi/nifi/models/verify_config_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/verify_config_update_step_dto.py b/nipyapi/nifi/models/verify_config_update_step_dto.py index 28c39535..83dca183 100644 --- a/nipyapi/nifi/models/verify_config_update_step_dto.py +++ b/nipyapi/nifi/models/verify_config_update_step_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/version_control_component_mapping_entity.py b/nipyapi/nifi/models/version_control_component_mapping_entity.py index b8de7fdc..1e5ea730 100644 --- a/nipyapi/nifi/models/version_control_component_mapping_entity.py +++ b/nipyapi/nifi/models/version_control_component_mapping_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/version_control_information_dto.py b/nipyapi/nifi/models/version_control_information_dto.py index 475d063a..78f77c28 100644 --- a/nipyapi/nifi/models/version_control_information_dto.py +++ b/nipyapi/nifi/models/version_control_information_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/version_control_information_entity.py b/nipyapi/nifi/models/version_control_information_entity.py index 455871a6..745babf6 100644 --- a/nipyapi/nifi/models/version_control_information_entity.py +++ b/nipyapi/nifi/models/version_control_information_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/version_info_dto.py b/nipyapi/nifi/models/version_info_dto.py index 1284df24..9e6487a9 100644 --- a/nipyapi/nifi/models/version_info_dto.py +++ b/nipyapi/nifi/models/version_info_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_asset.py b/nipyapi/nifi/models/versioned_asset.py index dede58ce..637ee4c0 100644 --- a/nipyapi/nifi/models/versioned_asset.py +++ b/nipyapi/nifi/models/versioned_asset.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_connection.py b/nipyapi/nifi/models/versioned_connection.py index 2235a630..082fe441 100644 --- a/nipyapi/nifi/models/versioned_connection.py +++ b/nipyapi/nifi/models/versioned_connection.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -396,7 +396,7 @@ def label_index(self, label_index): def load_balance_compression(self): """ Gets the load_balance_compression of this VersionedConnection. - Whether or not compression should be used when transferring FlowFiles between nodes + Whether or not compression should be used when transferring FlowFiles between nodes Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details. :return: The load_balance_compression of this VersionedConnection. :rtype: str @@ -407,17 +407,11 @@ def load_balance_compression(self): def load_balance_compression(self, load_balance_compression): """ Sets the load_balance_compression of this VersionedConnection. - Whether or not compression should be used when transferring FlowFiles between nodes + Whether or not compression should be used when transferring FlowFiles between nodes Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details. :param load_balance_compression: The load_balance_compression of this VersionedConnection. :type: str """ - allowed_values = ["DO_NOT_COMPRESS", "COMPRESS_ATTRIBUTES_ONLY", "COMPRESS_ATTRIBUTES_AND_CONTENT", ] - if load_balance_compression not in allowed_values: - raise ValueError( - "Invalid value for `load_balance_compression` ({0}), must be one of {1}" - .format(load_balance_compression, allowed_values) - ) self._load_balance_compression = load_balance_compression @@ -425,7 +419,7 @@ def load_balance_compression(self, load_balance_compression): def load_balance_strategy(self): """ Gets the load_balance_strategy of this VersionedConnection. - The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. + The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details. :return: The load_balance_strategy of this VersionedConnection. :rtype: str @@ -436,17 +430,11 @@ def load_balance_strategy(self): def load_balance_strategy(self, load_balance_strategy): """ Sets the load_balance_strategy of this VersionedConnection. - The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. + The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details. :param load_balance_strategy: The load_balance_strategy of this VersionedConnection. :type: str """ - allowed_values = ["DO_NOT_LOAD_BALANCE", "PARTITION_BY_ATTRIBUTE", "ROUND_ROBIN", "SINGLE_NODE", ] - if load_balance_strategy not in allowed_values: - raise ValueError( - "Invalid value for `load_balance_strategy` ({0}), must be one of {1}" - .format(load_balance_strategy, allowed_values) - ) self._load_balance_strategy = load_balance_strategy diff --git a/nipyapi/nifi/models/versioned_controller_service.py b/nipyapi/nifi/models/versioned_controller_service.py index 64c8c1fc..6f4abef2 100644 --- a/nipyapi/nifi/models/versioned_controller_service.py +++ b/nipyapi/nifi/models/versioned_controller_service.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flow_coordinates.py b/nipyapi/nifi/models/versioned_flow_coordinates.py index 05f12440..28d6e324 100644 --- a/nipyapi/nifi/models/versioned_flow_coordinates.py +++ b/nipyapi/nifi/models/versioned_flow_coordinates.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flow_dto.py b/nipyapi/nifi/models/versioned_flow_dto.py index 0e38d971..eec89aa8 100644 --- a/nipyapi/nifi/models/versioned_flow_dto.py +++ b/nipyapi/nifi/models/versioned_flow_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flow_entity.py b/nipyapi/nifi/models/versioned_flow_entity.py index 9fa53016..588323d5 100644 --- a/nipyapi/nifi/models/versioned_flow_entity.py +++ b/nipyapi/nifi/models/versioned_flow_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flow_snapshot_entity.py b/nipyapi/nifi/models/versioned_flow_snapshot_entity.py index a0774258..b6e1fe75 100644 --- a/nipyapi/nifi/models/versioned_flow_snapshot_entity.py +++ b/nipyapi/nifi/models/versioned_flow_snapshot_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flow_snapshot_metadata_entity.py b/nipyapi/nifi/models/versioned_flow_snapshot_metadata_entity.py index 05b777f2..66fc46c9 100644 --- a/nipyapi/nifi/models/versioned_flow_snapshot_metadata_entity.py +++ b/nipyapi/nifi/models/versioned_flow_snapshot_metadata_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flow_snapshot_metadata_set_entity.py b/nipyapi/nifi/models/versioned_flow_snapshot_metadata_set_entity.py index 5f180dd9..6c1f1614 100644 --- a/nipyapi/nifi/models/versioned_flow_snapshot_metadata_set_entity.py +++ b/nipyapi/nifi/models/versioned_flow_snapshot_metadata_set_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flow_update_request_dto.py b/nipyapi/nifi/models/versioned_flow_update_request_dto.py index 4c2e3098..bc195ea8 100644 --- a/nipyapi/nifi/models/versioned_flow_update_request_dto.py +++ b/nipyapi/nifi/models/versioned_flow_update_request_dto.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flow_update_request_entity.py b/nipyapi/nifi/models/versioned_flow_update_request_entity.py index 606c71ba..673b487d 100644 --- a/nipyapi/nifi/models/versioned_flow_update_request_entity.py +++ b/nipyapi/nifi/models/versioned_flow_update_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_flows_entity.py b/nipyapi/nifi/models/versioned_flows_entity.py index 959a34de..36641e6e 100644 --- a/nipyapi/nifi/models/versioned_flows_entity.py +++ b/nipyapi/nifi/models/versioned_flows_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_funnel.py b/nipyapi/nifi/models/versioned_funnel.py index 6d9b4582..4e972370 100644 --- a/nipyapi/nifi/models/versioned_funnel.py +++ b/nipyapi/nifi/models/versioned_funnel.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_label.py b/nipyapi/nifi/models/versioned_label.py index fd4e8334..61ef4619 100644 --- a/nipyapi/nifi/models/versioned_label.py +++ b/nipyapi/nifi/models/versioned_label.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_parameter.py b/nipyapi/nifi/models/versioned_parameter.py index f3c03209..a965b8c1 100644 --- a/nipyapi/nifi/models/versioned_parameter.py +++ b/nipyapi/nifi/models/versioned_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_parameter_context.py b/nipyapi/nifi/models/versioned_parameter_context.py index 91e27477..f6542931 100644 --- a/nipyapi/nifi/models/versioned_parameter_context.py +++ b/nipyapi/nifi/models/versioned_parameter_context.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_port.py b/nipyapi/nifi/models/versioned_port.py index 3054c722..63dd944f 100644 --- a/nipyapi/nifi/models/versioned_port.py +++ b/nipyapi/nifi/models/versioned_port.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_process_group.py b/nipyapi/nifi/models/versioned_process_group.py index 6accc9d8..04a74923 100644 --- a/nipyapi/nifi/models/versioned_process_group.py +++ b/nipyapi/nifi/models/versioned_process_group.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_processor.py b/nipyapi/nifi/models/versioned_processor.py index 8eacff16..a496702f 100644 --- a/nipyapi/nifi/models/versioned_processor.py +++ b/nipyapi/nifi/models/versioned_processor.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -222,7 +222,7 @@ def auto_terminated_relationships(self, auto_terminated_relationships): def backoff_mechanism(self): """ Gets the backoff_mechanism of this VersionedProcessor. - Determines whether the FlowFile should be penalized or the processor should be yielded between retries. + Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR. :return: The backoff_mechanism of this VersionedProcessor. :rtype: str @@ -233,17 +233,11 @@ def backoff_mechanism(self): def backoff_mechanism(self, backoff_mechanism): """ Sets the backoff_mechanism of this VersionedProcessor. - Determines whether the FlowFile should be penalized or the processor should be yielded between retries. + Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR. :param backoff_mechanism: The backoff_mechanism of this VersionedProcessor. :type: str """ - allowed_values = ["PENALIZE_FLOWFILE", "YIELD_PROCESSOR", ] - if backoff_mechanism not in allowed_values: - raise ValueError( - "Invalid value for `backoff_mechanism` ({0}), must be one of {1}" - .format(backoff_mechanism, allowed_values) - ) self._backoff_mechanism = backoff_mechanism diff --git a/nipyapi/nifi/models/versioned_property_descriptor.py b/nipyapi/nifi/models/versioned_property_descriptor.py index 3c445d18..59711ad0 100644 --- a/nipyapi/nifi/models/versioned_property_descriptor.py +++ b/nipyapi/nifi/models/versioned_property_descriptor.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_remote_group_port.py b/nipyapi/nifi/models/versioned_remote_group_port.py index bbae9fde..1637f26d 100644 --- a/nipyapi/nifi/models/versioned_remote_group_port.py +++ b/nipyapi/nifi/models/versioned_remote_group_port.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_remote_process_group.py b/nipyapi/nifi/models/versioned_remote_process_group.py index b9ef3379..bef67fe1 100644 --- a/nipyapi/nifi/models/versioned_remote_process_group.py +++ b/nipyapi/nifi/models/versioned_remote_process_group.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -493,7 +493,7 @@ def target_uris(self, target_uris): def transport_protocol(self): """ Gets the transport_protocol of this VersionedRemoteProcessGroup. - The Transport Protocol that is used for Site-to-Site communications + The Transport Protocol that is used for Site-to-Site communications. Possible returned values: RAW, HTTP. :return: The transport_protocol of this VersionedRemoteProcessGroup. :rtype: str @@ -504,17 +504,11 @@ def transport_protocol(self): def transport_protocol(self, transport_protocol): """ Sets the transport_protocol of this VersionedRemoteProcessGroup. - The Transport Protocol that is used for Site-to-Site communications + The Transport Protocol that is used for Site-to-Site communications. Possible returned values: RAW, HTTP. :param transport_protocol: The transport_protocol of this VersionedRemoteProcessGroup. :type: str """ - allowed_values = ["RAW", "HTTP", ] - if transport_protocol not in allowed_values: - raise ValueError( - "Invalid value for `transport_protocol` ({0}), must be one of {1}" - .format(transport_protocol, allowed_values) - ) self._transport_protocol = transport_protocol diff --git a/nipyapi/nifi/models/versioned_reporting_task.py b/nipyapi/nifi/models/versioned_reporting_task.py index 0bf36e6d..78d2e539 100644 --- a/nipyapi/nifi/models/versioned_reporting_task.py +++ b/nipyapi/nifi/models/versioned_reporting_task.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_reporting_task_import_request_entity.py b/nipyapi/nifi/models/versioned_reporting_task_import_request_entity.py index b64f3a20..86db1668 100644 --- a/nipyapi/nifi/models/versioned_reporting_task_import_request_entity.py +++ b/nipyapi/nifi/models/versioned_reporting_task_import_request_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_reporting_task_import_response_entity.py b/nipyapi/nifi/models/versioned_reporting_task_import_response_entity.py index de0a3b32..0e141555 100644 --- a/nipyapi/nifi/models/versioned_reporting_task_import_response_entity.py +++ b/nipyapi/nifi/models/versioned_reporting_task_import_response_entity.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_reporting_task_snapshot.py b/nipyapi/nifi/models/versioned_reporting_task_snapshot.py index 41243d8f..2c25373c 100644 --- a/nipyapi/nifi/models/versioned_reporting_task_snapshot.py +++ b/nipyapi/nifi/models/versioned_reporting_task_snapshot.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/models/versioned_resource_definition.py b/nipyapi/nifi/models/versioned_resource_definition.py index 7b0fee7f..c1f63cd4 100644 --- a/nipyapi/nifi/models/versioned_resource_definition.py +++ b/nipyapi/nifi/models/versioned_resource_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/nifi/rest.py b/nipyapi/nifi/rest.py index f29da6ce..a8a24428 100644 --- a/nipyapi/nifi/rest.py +++ b/nipyapi/nifi/rest.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -100,7 +100,8 @@ def __init__(self, pools_size=4, maxsize=4): if proxy and "socks" not in str(proxy): self.pool_manager = urllib3.ProxyManager(proxy_url=proxy, **pool_kwargs) elif proxy and "socks" in str(proxy): - self.pool_manager = urllib3.contrib.socks.SOCKSProxyManager(proxy_url=proxy, **pool_kwargs) + self.pool_manager = urllib3.contrib.socks.SOCKSProxyManager( + proxy_url=proxy, **pool_kwargs) else: self.pool_manager = urllib3.PoolManager(**pool_kwargs) diff --git a/nipyapi/registry/__init__.py b/nipyapi/registry/__init__.py index c9cb7ef7..4da6e6ab 100644 --- a/nipyapi/registry/__init__.py +++ b/nipyapi/registry/__init__.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/api_client.py b/nipyapi/registry/api_client.py index 9b1c85ee..b859bd39 100644 --- a/nipyapi/registry/api_client.py +++ b/nipyapi/registry/api_client.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/about_api.py b/nipyapi/registry/apis/about_api.py index 2b3d05d6..faf2ab9a 100644 --- a/nipyapi/registry/apis/about_api.py +++ b/nipyapi/registry/apis/about_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/access_api.py b/nipyapi/registry/apis/access_api.py index 20e9dafd..d58b1291 100644 --- a/nipyapi/registry/apis/access_api.py +++ b/nipyapi/registry/apis/access_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/bucket_bundles_api.py b/nipyapi/registry/apis/bucket_bundles_api.py index a7f61d5b..e6106890 100644 --- a/nipyapi/registry/apis/bucket_bundles_api.py +++ b/nipyapi/registry/apis/bucket_bundles_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/bucket_flows_api.py b/nipyapi/registry/apis/bucket_flows_api.py index 78701f61..eb3cb3f8 100644 --- a/nipyapi/registry/apis/bucket_flows_api.py +++ b/nipyapi/registry/apis/bucket_flows_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/buckets_api.py b/nipyapi/registry/apis/buckets_api.py index c3b16350..6706196a 100644 --- a/nipyapi/registry/apis/buckets_api.py +++ b/nipyapi/registry/apis/buckets_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/bundles_api.py b/nipyapi/registry/apis/bundles_api.py index 634a6095..9d26477e 100644 --- a/nipyapi/registry/apis/bundles_api.py +++ b/nipyapi/registry/apis/bundles_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/config_api.py b/nipyapi/registry/apis/config_api.py index 3db7c63e..e6acee78 100644 --- a/nipyapi/registry/apis/config_api.py +++ b/nipyapi/registry/apis/config_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/extension_repository_api.py b/nipyapi/registry/apis/extension_repository_api.py index 84332682..9a967ed4 100644 --- a/nipyapi/registry/apis/extension_repository_api.py +++ b/nipyapi/registry/apis/extension_repository_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/extensions_api.py b/nipyapi/registry/apis/extensions_api.py index 62d16144..8218cf61 100644 --- a/nipyapi/registry/apis/extensions_api.py +++ b/nipyapi/registry/apis/extensions_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/flows_api.py b/nipyapi/registry/apis/flows_api.py index 2760ca28..636c07e5 100644 --- a/nipyapi/registry/apis/flows_api.py +++ b/nipyapi/registry/apis/flows_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/items_api.py b/nipyapi/registry/apis/items_api.py index 811a1c0b..9fedfb3d 100644 --- a/nipyapi/registry/apis/items_api.py +++ b/nipyapi/registry/apis/items_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/policies_api.py b/nipyapi/registry/apis/policies_api.py index cda415b5..22ad6dd2 100644 --- a/nipyapi/registry/apis/policies_api.py +++ b/nipyapi/registry/apis/policies_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/apis/tenants_api.py b/nipyapi/registry/apis/tenants_api.py index 7898cdeb..734f9163 100644 --- a/nipyapi/registry/apis/tenants_api.py +++ b/nipyapi/registry/apis/tenants_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/configuration.py b/nipyapi/registry/configuration.py index 5ae45f19..7ba1607c 100644 --- a/nipyapi/registry/configuration.py +++ b/nipyapi/registry/configuration.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -220,6 +220,13 @@ def auth_settings(self): 'key': 'Authorization', 'value': self.get_basic_auth_token() }, + 'bearerAuth': + { + 'type': 'api_key', + 'in': 'header', + 'key': 'Authorization', + 'value': self.get_api_key_with_prefix('bearerAuth') + }, } def to_debug_report(self): @@ -231,6 +238,6 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 2.5.0\n"\ + "Version of the API: 2.6.0\n"\ "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/nipyapi/registry/models/__init__.py b/nipyapi/registry/models/__init__.py index a3bbd28e..85024a89 100644 --- a/nipyapi/registry/models/__init__.py +++ b/nipyapi/registry/models/__init__.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/access_policy.py b/nipyapi/registry/models/access_policy.py index bd17c593..6f6f81db 100644 --- a/nipyapi/registry/models/access_policy.py +++ b/nipyapi/registry/models/access_policy.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/access_policy_summary.py b/nipyapi/registry/models/access_policy_summary.py index 56aa2dab..d03009b1 100644 --- a/nipyapi/registry/models/access_policy_summary.py +++ b/nipyapi/registry/models/access_policy_summary.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/allowable_value.py b/nipyapi/registry/models/allowable_value.py index 2a735a02..860a0793 100644 --- a/nipyapi/registry/models/allowable_value.py +++ b/nipyapi/registry/models/allowable_value.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/attribute.py b/nipyapi/registry/models/attribute.py index 6630ac6d..d2aa5293 100644 --- a/nipyapi/registry/models/attribute.py +++ b/nipyapi/registry/models/attribute.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/batch_size.py b/nipyapi/registry/models/batch_size.py index fee909fc..58c48030 100644 --- a/nipyapi/registry/models/batch_size.py +++ b/nipyapi/registry/models/batch_size.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/bucket.py b/nipyapi/registry/models/bucket.py index 02ed45dd..8c78475f 100644 --- a/nipyapi/registry/models/bucket.py +++ b/nipyapi/registry/models/bucket.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/bucket_item.py b/nipyapi/registry/models/bucket_item.py index 57cd57a0..3f1fd905 100644 --- a/nipyapi/registry/models/bucket_item.py +++ b/nipyapi/registry/models/bucket_item.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/build_info.py b/nipyapi/registry/models/build_info.py index c93004af..401873a7 100644 --- a/nipyapi/registry/models/build_info.py +++ b/nipyapi/registry/models/build_info.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/bundle.py b/nipyapi/registry/models/bundle.py index b8f46146..2c060a5f 100644 --- a/nipyapi/registry/models/bundle.py +++ b/nipyapi/registry/models/bundle.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/bundle_info.py b/nipyapi/registry/models/bundle_info.py index 40349e36..2a3956eb 100644 --- a/nipyapi/registry/models/bundle_info.py +++ b/nipyapi/registry/models/bundle_info.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/bundle_version.py b/nipyapi/registry/models/bundle_version.py index 1dc74810..aa58bcca 100644 --- a/nipyapi/registry/models/bundle_version.py +++ b/nipyapi/registry/models/bundle_version.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/bundle_version_dependency.py b/nipyapi/registry/models/bundle_version_dependency.py index 085dfc92..ab7200a4 100644 --- a/nipyapi/registry/models/bundle_version_dependency.py +++ b/nipyapi/registry/models/bundle_version_dependency.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/bundle_version_metadata.py b/nipyapi/registry/models/bundle_version_metadata.py index 949cb303..2723c374 100644 --- a/nipyapi/registry/models/bundle_version_metadata.py +++ b/nipyapi/registry/models/bundle_version_metadata.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/bundles_bundle_type_body.py b/nipyapi/registry/models/bundles_bundle_type_body.py index 199e992c..68f1e634 100644 --- a/nipyapi/registry/models/bundles_bundle_type_body.py +++ b/nipyapi/registry/models/bundles_bundle_type_body.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/client_id_parameter.py b/nipyapi/registry/models/client_id_parameter.py index aa82a5f6..e35fea7b 100644 --- a/nipyapi/registry/models/client_id_parameter.py +++ b/nipyapi/registry/models/client_id_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/component_difference.py b/nipyapi/registry/models/component_difference.py index e5ea7a44..59c1e5a1 100644 --- a/nipyapi/registry/models/component_difference.py +++ b/nipyapi/registry/models/component_difference.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/component_difference_group.py b/nipyapi/registry/models/component_difference_group.py index 8a12d31e..ed2db692 100644 --- a/nipyapi/registry/models/component_difference_group.py +++ b/nipyapi/registry/models/component_difference_group.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/connectable_component.py b/nipyapi/registry/models/connectable_component.py index d1eb91f8..7e2610f6 100644 --- a/nipyapi/registry/models/connectable_component.py +++ b/nipyapi/registry/models/connectable_component.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/controller_service_api.py b/nipyapi/registry/models/controller_service_api.py index 89cca316..830bb84c 100644 --- a/nipyapi/registry/models/controller_service_api.py +++ b/nipyapi/registry/models/controller_service_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/controller_service_definition.py b/nipyapi/registry/models/controller_service_definition.py index e852cc08..077011f7 100644 --- a/nipyapi/registry/models/controller_service_definition.py +++ b/nipyapi/registry/models/controller_service_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/current_user.py b/nipyapi/registry/models/current_user.py index 882e6929..ab8f8e43 100644 --- a/nipyapi/registry/models/current_user.py +++ b/nipyapi/registry/models/current_user.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/default_schedule.py b/nipyapi/registry/models/default_schedule.py index dd95ffa1..b4ae81b2 100644 --- a/nipyapi/registry/models/default_schedule.py +++ b/nipyapi/registry/models/default_schedule.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/default_settings.py b/nipyapi/registry/models/default_settings.py index 6d354d54..34f8b37c 100644 --- a/nipyapi/registry/models/default_settings.py +++ b/nipyapi/registry/models/default_settings.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/dependency.py b/nipyapi/registry/models/dependency.py index d26f31d7..d3321514 100644 --- a/nipyapi/registry/models/dependency.py +++ b/nipyapi/registry/models/dependency.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/dependent_values.py b/nipyapi/registry/models/dependent_values.py index 28e0e228..d920d7da 100644 --- a/nipyapi/registry/models/dependent_values.py +++ b/nipyapi/registry/models/dependent_values.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/deprecation_notice.py b/nipyapi/registry/models/deprecation_notice.py index a4ba8ec4..7715763f 100644 --- a/nipyapi/registry/models/deprecation_notice.py +++ b/nipyapi/registry/models/deprecation_notice.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/dynamic_property.py b/nipyapi/registry/models/dynamic_property.py index 6ad2c4fa..f2d2691b 100644 --- a/nipyapi/registry/models/dynamic_property.py +++ b/nipyapi/registry/models/dynamic_property.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/dynamic_relationship.py b/nipyapi/registry/models/dynamic_relationship.py index adbe4365..816ed82e 100644 --- a/nipyapi/registry/models/dynamic_relationship.py +++ b/nipyapi/registry/models/dynamic_relationship.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension.py b/nipyapi/registry/models/extension.py index a604d9ae..d38f01a5 100644 --- a/nipyapi/registry/models/extension.py +++ b/nipyapi/registry/models/extension.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension_filter_params.py b/nipyapi/registry/models/extension_filter_params.py index 500a3b4e..636212f9 100644 --- a/nipyapi/registry/models/extension_filter_params.py +++ b/nipyapi/registry/models/extension_filter_params.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension_metadata.py b/nipyapi/registry/models/extension_metadata.py index 26e21fb6..33df2f3a 100644 --- a/nipyapi/registry/models/extension_metadata.py +++ b/nipyapi/registry/models/extension_metadata.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension_metadata_container.py b/nipyapi/registry/models/extension_metadata_container.py index 3ad87316..8e38b438 100644 --- a/nipyapi/registry/models/extension_metadata_container.py +++ b/nipyapi/registry/models/extension_metadata_container.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension_repo_artifact.py b/nipyapi/registry/models/extension_repo_artifact.py index c929616c..263f6850 100644 --- a/nipyapi/registry/models/extension_repo_artifact.py +++ b/nipyapi/registry/models/extension_repo_artifact.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension_repo_bucket.py b/nipyapi/registry/models/extension_repo_bucket.py index fc1f3dfe..e90ca114 100644 --- a/nipyapi/registry/models/extension_repo_bucket.py +++ b/nipyapi/registry/models/extension_repo_bucket.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension_repo_group.py b/nipyapi/registry/models/extension_repo_group.py index 54793989..78739d6b 100644 --- a/nipyapi/registry/models/extension_repo_group.py +++ b/nipyapi/registry/models/extension_repo_group.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension_repo_version.py b/nipyapi/registry/models/extension_repo_version.py index 06dc15cb..d0e8c929 100644 --- a/nipyapi/registry/models/extension_repo_version.py +++ b/nipyapi/registry/models/extension_repo_version.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/extension_repo_version_summary.py b/nipyapi/registry/models/extension_repo_version_summary.py index f46b669f..7cbfcdf2 100644 --- a/nipyapi/registry/models/extension_repo_version_summary.py +++ b/nipyapi/registry/models/extension_repo_version_summary.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/external_controller_service_reference.py b/nipyapi/registry/models/external_controller_service_reference.py index 754beb00..93598c4b 100644 --- a/nipyapi/registry/models/external_controller_service_reference.py +++ b/nipyapi/registry/models/external_controller_service_reference.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/fields.py b/nipyapi/registry/models/fields.py index 741187ec..e411eee0 100644 --- a/nipyapi/registry/models/fields.py +++ b/nipyapi/registry/models/fields.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/form_data_content_disposition.py b/nipyapi/registry/models/form_data_content_disposition.py index 140e95d8..88d6e2f6 100644 --- a/nipyapi/registry/models/form_data_content_disposition.py +++ b/nipyapi/registry/models/form_data_content_disposition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/link.py b/nipyapi/registry/models/link.py index 83850e29..2a04ed67 100644 --- a/nipyapi/registry/models/link.py +++ b/nipyapi/registry/models/link.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/long_parameter.py b/nipyapi/registry/models/long_parameter.py index d0c4b092..cf2ff169 100644 --- a/nipyapi/registry/models/long_parameter.py +++ b/nipyapi/registry/models/long_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/model_property.py b/nipyapi/registry/models/model_property.py index a507b67c..2b9bbb96 100644 --- a/nipyapi/registry/models/model_property.py +++ b/nipyapi/registry/models/model_property.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/multi_processor_use_case.py b/nipyapi/registry/models/multi_processor_use_case.py index 48613289..52491576 100644 --- a/nipyapi/registry/models/multi_processor_use_case.py +++ b/nipyapi/registry/models/multi_processor_use_case.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/parameter_provider_reference.py b/nipyapi/registry/models/parameter_provider_reference.py index 97a30a06..94e4e214 100644 --- a/nipyapi/registry/models/parameter_provider_reference.py +++ b/nipyapi/registry/models/parameter_provider_reference.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/permissions.py b/nipyapi/registry/models/permissions.py index b6c5c7b7..62768d48 100644 --- a/nipyapi/registry/models/permissions.py +++ b/nipyapi/registry/models/permissions.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/position.py b/nipyapi/registry/models/position.py index 1d3e1da2..f00e545d 100644 --- a/nipyapi/registry/models/position.py +++ b/nipyapi/registry/models/position.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/processor_configuration.py b/nipyapi/registry/models/processor_configuration.py index 1984614c..aee2faea 100644 --- a/nipyapi/registry/models/processor_configuration.py +++ b/nipyapi/registry/models/processor_configuration.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/provided_service_api.py b/nipyapi/registry/models/provided_service_api.py index 0b6f53a2..15176686 100644 --- a/nipyapi/registry/models/provided_service_api.py +++ b/nipyapi/registry/models/provided_service_api.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/registry_about.py b/nipyapi/registry/models/registry_about.py index b9233a65..8d0db009 100644 --- a/nipyapi/registry/models/registry_about.py +++ b/nipyapi/registry/models/registry_about.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/registry_configuration.py b/nipyapi/registry/models/registry_configuration.py index 137f7d86..cf0276d3 100644 --- a/nipyapi/registry/models/registry_configuration.py +++ b/nipyapi/registry/models/registry_configuration.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/relationship.py b/nipyapi/registry/models/relationship.py index 8e98190a..8f9c3f95 100644 --- a/nipyapi/registry/models/relationship.py +++ b/nipyapi/registry/models/relationship.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/resource.py b/nipyapi/registry/models/resource.py index f523b4cf..20ea3f51 100644 --- a/nipyapi/registry/models/resource.py +++ b/nipyapi/registry/models/resource.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/resource_definition.py b/nipyapi/registry/models/resource_definition.py index d067828f..25421631 100644 --- a/nipyapi/registry/models/resource_definition.py +++ b/nipyapi/registry/models/resource_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/resource_permissions.py b/nipyapi/registry/models/resource_permissions.py index 27178341..30f27c06 100644 --- a/nipyapi/registry/models/resource_permissions.py +++ b/nipyapi/registry/models/resource_permissions.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/restricted.py b/nipyapi/registry/models/restricted.py index cab5a862..626ce7e2 100644 --- a/nipyapi/registry/models/restricted.py +++ b/nipyapi/registry/models/restricted.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/restriction.py b/nipyapi/registry/models/restriction.py index 0b31eaf3..bf425f07 100644 --- a/nipyapi/registry/models/restriction.py +++ b/nipyapi/registry/models/restriction.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/revision_info.py b/nipyapi/registry/models/revision_info.py index cd3c6281..e75b2b5e 100644 --- a/nipyapi/registry/models/revision_info.py +++ b/nipyapi/registry/models/revision_info.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/stateful.py b/nipyapi/registry/models/stateful.py index 412f9c3f..5cbb562c 100644 --- a/nipyapi/registry/models/stateful.py +++ b/nipyapi/registry/models/stateful.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/system_resource_consideration.py b/nipyapi/registry/models/system_resource_consideration.py index 2c631c8d..f75a7781 100644 --- a/nipyapi/registry/models/system_resource_consideration.py +++ b/nipyapi/registry/models/system_resource_consideration.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/tag_count.py b/nipyapi/registry/models/tag_count.py index 8f729e8a..98740dbb 100644 --- a/nipyapi/registry/models/tag_count.py +++ b/nipyapi/registry/models/tag_count.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/tenant.py b/nipyapi/registry/models/tenant.py index 84d64ed8..379f291d 100644 --- a/nipyapi/registry/models/tenant.py +++ b/nipyapi/registry/models/tenant.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/uri_builder.py b/nipyapi/registry/models/uri_builder.py index f3339fa3..0aeba841 100644 --- a/nipyapi/registry/models/uri_builder.py +++ b/nipyapi/registry/models/uri_builder.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/use_case.py b/nipyapi/registry/models/use_case.py index 36d18b1e..f00182bb 100644 --- a/nipyapi/registry/models/use_case.py +++ b/nipyapi/registry/models/use_case.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/user.py b/nipyapi/registry/models/user.py index 5b5c6e5d..7c9b5350 100644 --- a/nipyapi/registry/models/user.py +++ b/nipyapi/registry/models/user.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/user_group.py b/nipyapi/registry/models/user_group.py index 4df746c6..0063e174 100644 --- a/nipyapi/registry/models/user_group.py +++ b/nipyapi/registry/models/user_group.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_asset.py b/nipyapi/registry/models/versioned_asset.py index f2424d52..87d23ab2 100644 --- a/nipyapi/registry/models/versioned_asset.py +++ b/nipyapi/registry/models/versioned_asset.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_connection.py b/nipyapi/registry/models/versioned_connection.py index 9da5d596..7886b662 100644 --- a/nipyapi/registry/models/versioned_connection.py +++ b/nipyapi/registry/models/versioned_connection.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -396,7 +396,7 @@ def label_index(self, label_index): def load_balance_compression(self): """ Gets the load_balance_compression of this VersionedConnection. - Whether or not compression should be used when transferring FlowFiles between nodes + Whether or not compression should be used when transferring FlowFiles between nodes Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details. :return: The load_balance_compression of this VersionedConnection. :rtype: str @@ -407,17 +407,11 @@ def load_balance_compression(self): def load_balance_compression(self, load_balance_compression): """ Sets the load_balance_compression of this VersionedConnection. - Whether or not compression should be used when transferring FlowFiles between nodes + Whether or not compression should be used when transferring FlowFiles between nodes Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details. :param load_balance_compression: The load_balance_compression of this VersionedConnection. :type: str """ - allowed_values = ["DO_NOT_COMPRESS", "COMPRESS_ATTRIBUTES_ONLY", "COMPRESS_ATTRIBUTES_AND_CONTENT", ] - if load_balance_compression not in allowed_values: - raise ValueError( - "Invalid value for `load_balance_compression` ({0}), must be one of {1}" - .format(load_balance_compression, allowed_values) - ) self._load_balance_compression = load_balance_compression @@ -425,7 +419,7 @@ def load_balance_compression(self, load_balance_compression): def load_balance_strategy(self): """ Gets the load_balance_strategy of this VersionedConnection. - The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. + The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details. :return: The load_balance_strategy of this VersionedConnection. :rtype: str @@ -436,17 +430,11 @@ def load_balance_strategy(self): def load_balance_strategy(self, load_balance_strategy): """ Sets the load_balance_strategy of this VersionedConnection. - The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. + The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details. :param load_balance_strategy: The load_balance_strategy of this VersionedConnection. :type: str """ - allowed_values = ["DO_NOT_LOAD_BALANCE", "PARTITION_BY_ATTRIBUTE", "ROUND_ROBIN", "SINGLE_NODE", ] - if load_balance_strategy not in allowed_values: - raise ValueError( - "Invalid value for `load_balance_strategy` ({0}), must be one of {1}" - .format(load_balance_strategy, allowed_values) - ) self._load_balance_strategy = load_balance_strategy diff --git a/nipyapi/registry/models/versioned_controller_service.py b/nipyapi/registry/models/versioned_controller_service.py index 4ef701d4..d3f9a1dc 100644 --- a/nipyapi/registry/models/versioned_controller_service.py +++ b/nipyapi/registry/models/versioned_controller_service.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_flow.py b/nipyapi/registry/models/versioned_flow.py index c61f1e6a..560d073e 100644 --- a/nipyapi/registry/models/versioned_flow.py +++ b/nipyapi/registry/models/versioned_flow.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_flow_coordinates.py b/nipyapi/registry/models/versioned_flow_coordinates.py index b72dfe29..28fc3570 100644 --- a/nipyapi/registry/models/versioned_flow_coordinates.py +++ b/nipyapi/registry/models/versioned_flow_coordinates.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_flow_difference.py b/nipyapi/registry/models/versioned_flow_difference.py index adb7e1cd..5d541053 100644 --- a/nipyapi/registry/models/versioned_flow_difference.py +++ b/nipyapi/registry/models/versioned_flow_difference.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_flow_snapshot.py b/nipyapi/registry/models/versioned_flow_snapshot.py index b1749458..9a57e399 100644 --- a/nipyapi/registry/models/versioned_flow_snapshot.py +++ b/nipyapi/registry/models/versioned_flow_snapshot.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_flow_snapshot_metadata.py b/nipyapi/registry/models/versioned_flow_snapshot_metadata.py index a19fc60f..392eb630 100644 --- a/nipyapi/registry/models/versioned_flow_snapshot_metadata.py +++ b/nipyapi/registry/models/versioned_flow_snapshot_metadata.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_funnel.py b/nipyapi/registry/models/versioned_funnel.py index fd46aa95..576114f8 100644 --- a/nipyapi/registry/models/versioned_funnel.py +++ b/nipyapi/registry/models/versioned_funnel.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_label.py b/nipyapi/registry/models/versioned_label.py index 6b1c409b..ddb56666 100644 --- a/nipyapi/registry/models/versioned_label.py +++ b/nipyapi/registry/models/versioned_label.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_parameter.py b/nipyapi/registry/models/versioned_parameter.py index 114c18e1..1a88e6b2 100644 --- a/nipyapi/registry/models/versioned_parameter.py +++ b/nipyapi/registry/models/versioned_parameter.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_parameter_context.py b/nipyapi/registry/models/versioned_parameter_context.py index b64041e0..dbbc6b9d 100644 --- a/nipyapi/registry/models/versioned_parameter_context.py +++ b/nipyapi/registry/models/versioned_parameter_context.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_port.py b/nipyapi/registry/models/versioned_port.py index 6076d3b8..93079e69 100644 --- a/nipyapi/registry/models/versioned_port.py +++ b/nipyapi/registry/models/versioned_port.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_process_group.py b/nipyapi/registry/models/versioned_process_group.py index a48649f7..b67b5105 100644 --- a/nipyapi/registry/models/versioned_process_group.py +++ b/nipyapi/registry/models/versioned_process_group.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_processor.py b/nipyapi/registry/models/versioned_processor.py index f432ad24..b317054f 100644 --- a/nipyapi/registry/models/versioned_processor.py +++ b/nipyapi/registry/models/versioned_processor.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -222,7 +222,7 @@ def auto_terminated_relationships(self, auto_terminated_relationships): def backoff_mechanism(self): """ Gets the backoff_mechanism of this VersionedProcessor. - Determines whether the FlowFile should be penalized or the processor should be yielded between retries. + Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR. :return: The backoff_mechanism of this VersionedProcessor. :rtype: str @@ -233,17 +233,11 @@ def backoff_mechanism(self): def backoff_mechanism(self, backoff_mechanism): """ Sets the backoff_mechanism of this VersionedProcessor. - Determines whether the FlowFile should be penalized or the processor should be yielded between retries. + Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR. :param backoff_mechanism: The backoff_mechanism of this VersionedProcessor. :type: str """ - allowed_values = ["PENALIZE_FLOWFILE", "YIELD_PROCESSOR", ] - if backoff_mechanism not in allowed_values: - raise ValueError( - "Invalid value for `backoff_mechanism` ({0}), must be one of {1}" - .format(backoff_mechanism, allowed_values) - ) self._backoff_mechanism = backoff_mechanism diff --git a/nipyapi/registry/models/versioned_property_descriptor.py b/nipyapi/registry/models/versioned_property_descriptor.py index cc5bf436..e9470d1b 100644 --- a/nipyapi/registry/models/versioned_property_descriptor.py +++ b/nipyapi/registry/models/versioned_property_descriptor.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_remote_group_port.py b/nipyapi/registry/models/versioned_remote_group_port.py index c22ceb3b..a6fb2030 100644 --- a/nipyapi/registry/models/versioned_remote_group_port.py +++ b/nipyapi/registry/models/versioned_remote_group_port.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/models/versioned_remote_process_group.py b/nipyapi/registry/models/versioned_remote_process_group.py index bf1c9e36..3f91cd28 100644 --- a/nipyapi/registry/models/versioned_remote_process_group.py +++ b/nipyapi/registry/models/versioned_remote_process_group.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ @@ -493,7 +493,7 @@ def target_uris(self, target_uris): def transport_protocol(self): """ Gets the transport_protocol of this VersionedRemoteProcessGroup. - The Transport Protocol that is used for Site-to-Site communications + The Transport Protocol that is used for Site-to-Site communications. Possible returned values: RAW, HTTP. :return: The transport_protocol of this VersionedRemoteProcessGroup. :rtype: str @@ -504,17 +504,11 @@ def transport_protocol(self): def transport_protocol(self, transport_protocol): """ Sets the transport_protocol of this VersionedRemoteProcessGroup. - The Transport Protocol that is used for Site-to-Site communications + The Transport Protocol that is used for Site-to-Site communications. Possible returned values: RAW, HTTP. :param transport_protocol: The transport_protocol of this VersionedRemoteProcessGroup. :type: str """ - allowed_values = ["RAW", "HTTP", ] - if transport_protocol not in allowed_values: - raise ValueError( - "Invalid value for `transport_protocol` ({0}), must be one of {1}" - .format(transport_protocol, allowed_values) - ) self._transport_protocol = transport_protocol diff --git a/nipyapi/registry/models/versioned_resource_definition.py b/nipyapi/registry/models/versioned_resource_definition.py index 9f572780..54ce0bf7 100644 --- a/nipyapi/registry/models/versioned_resource_definition.py +++ b/nipyapi/registry/models/versioned_resource_definition.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/nipyapi/registry/rest.py b/nipyapi/registry/rest.py index 50136a20..c0e1fb06 100644 --- a/nipyapi/registry/rest.py +++ b/nipyapi/registry/rest.py @@ -3,7 +3,7 @@ REST API definition for Apache NiFi Registry web services - OpenAPI spec version: 2.5.0 + OpenAPI spec version: 2.6.0 Contact: dev@nifi.apache.org Generated by: https://github.com/swagger-api/swagger-codegen.git """ diff --git a/resources/client_gen/api_defs/nifi-2.5.0.json b/resources/client_gen/api_defs/nifi-2.6.0.json similarity index 99% rename from resources/client_gen/api_defs/nifi-2.5.0.json rename to resources/client_gen/api_defs/nifi-2.6.0.json index cb716d3d..1442496f 100644 --- a/resources/client_gen/api_defs/nifi-2.5.0.json +++ b/resources/client_gen/api_defs/nifi-2.6.0.json @@ -11,8 +11,13 @@ "url" : "https://www.apache.org/licenses/LICENSE-2.0.html" }, "title" : "Apache NiFi REST API", - "version" : "2.5.0" + "version" : "2.6.0" }, + "security" : [ { + "HTTPBearerJWT" : [ ] + }, { + "CookieSecureAuthorizationBearer" : [ ] + } ], "paths" : { "/access/logout" : { "delete" : { @@ -96,6 +101,7 @@ "description" : "Unable to create access token because an unexpected error occurred." } }, + "security" : [ ], "summary" : "Creates a token for accessing the REST API via username/password", "tags" : [ "Access" ] } @@ -114,6 +120,7 @@ } } }, + "security" : [ ], "summary" : "Retrieves the authentication configuration endpoint and status information", "tags" : [ "Authentication" ] } @@ -965,6 +972,21 @@ "type" : "string" } } ], + "requestBody" : { + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + }, + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + } + }, + "description" : "Optional component state to perform a selective key removal. If omitted, clears all state." + }, "responses" : { "200" : { "content" : { @@ -1982,6 +2004,21 @@ "type" : "string" } } ], + "requestBody" : { + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + }, + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + } + }, + "description" : "Optional component state to perform a selective key removal. If omitted, clears all state." + }, "responses" : { "200" : { "content" : { @@ -2888,6 +2925,38 @@ } ], "summary" : "Gets the current counters for this NiFi", "tags" : [ "Counters" ] + }, + "put" : { + "description" : "Note: This endpoint is subject to change as NiFi and it's REST API evolve.", + "operationId" : "updateAllCounters", + "responses" : { + "200" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/CountersEntity" + } + } + } + }, + "400" : { + "description" : "NiFi was unable to complete the request because it was invalid. The request should not be retried without modification." + }, + "401" : { + "description" : "Client could not be authenticated." + }, + "403" : { + "description" : "Client is not authorized to make this request." + }, + "409" : { + "description" : "The request was valid but NiFi was not in the appropriate state to process it." + } + }, + "security" : [ { + "Write - /counters" : [ ] + } ], + "summary" : "Updates all counters. This will reset all counter values to 0", + "tags" : [ "Counters" ] } }, "/counters/{id}" : { @@ -4687,20 +4756,15 @@ "required" : true, "schema" : { "type" : "string", - "enum" : [ "prometheus", "json" ] + "enum" : [ "PROMETHEUS", "JSON" ] } }, { "description" : "Set of included metrics registries. Duplicate the parameter to include multiple registries. All registries are included by default.", "in" : "query", "name" : "includedRegistries", "schema" : { - "type" : "array", - "enum" : [ "NIFI", "JVM", "BULLETIN", "CONNECTION", "CLUSTER" ], - "items" : { - "type" : "string", - "enum" : [ "NIFI", "JVM", "BULLETIN", "CONNECTION", "CLUSTER", "NIFI", "JVM", "BULLETIN", "CONNECTION", "CLUSTER" ] - }, - "uniqueItems" : true + "type" : "string", + "enum" : [ "NIFI", "JVM", "BULLETIN", "CONNECTION", "CLUSTER" ] } }, { "description" : "Regular Expression Pattern to be applied against the sample name field", @@ -9208,6 +9272,21 @@ "type" : "string" } } ], + "requestBody" : { + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + }, + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + } + }, + "description" : "Optional component state to perform a selective key removal. If omitted, clears all state." + }, "responses" : { "200" : { "content" : { @@ -11517,6 +11596,11 @@ "operationId" : "getProcessorRunStatusDetails", "requestBody" : { "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/RunStatusDetailsRequestEntity" + } + }, "application/json" : { "schema" : { "$ref" : "#/components/schemas/RunStatusDetailsRequestEntity" @@ -12173,6 +12257,21 @@ "type" : "string" } } ], + "requestBody" : { + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + }, + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + } + }, + "description" : "Optional component state to perform a selective key removal. If omitted, clears all state." + }, "responses" : { "200" : { "content" : { @@ -14094,6 +14193,21 @@ "type" : "string" } } ], + "requestBody" : { + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + }, + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ComponentStateEntity" + } + } + }, + "description" : "Optional component state to perform a selective key removal. If omitted, clears all state." + }, "responses" : { "200" : { "content" : { @@ -16944,6 +17058,10 @@ "type" : "string", "description" : "The component identifier." }, + "dropStateKeySupported" : { + "type" : "boolean", + "description" : "Whether dropping state by key is supported for this component. Defaults to false when not specified by the component." + }, "localState" : { "$ref" : "#/components/schemas/StateMapDTO" }, @@ -17266,8 +17384,7 @@ }, "loadBalanceCompression" : { "type" : "string", - "description" : "Whether or not data should be compressed when being transferred between nodes in the cluster.", - "enum" : [ "DO_NOT_COMPRESS", "COMPRESS_ATTRIBUTES_ONLY", "COMPRESS_ATTRIBUTES_AND_CONTENT" ] + "description" : "Whether or not data should be compressed when being transferred between nodes in the cluster. Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details." }, "loadBalancePartitionAttribute" : { "type" : "string", @@ -17275,14 +17392,12 @@ }, "loadBalanceStatus" : { "type" : "string", - "description" : "The current status of the Connection's Load Balancing Activities. Status can indicate that Load Balancing is not configured for the connection, that Load Balancing is configured but inactive (not currently transferring data to another node), or that Load Balancing is configured and actively transferring data to another node.", - "enum" : [ "LOAD_BALANCE_NOT_CONFIGURED", "LOAD_BALANCE_INACTIVE", "LOAD_BALANCE_ACTIVE" ], + "description" : "The current status of the Connection's Load Balancing Activities. Status can indicate that Load Balancing is not configured for the connection, that Load Balancing is configured but inactive (not currently transferring data to another node), or that Load Balancing is configured and actively transferring data to another node. Possible returned values: LOAD_BALANCE_NOT_CONFIGURED, LOAD_BALANCE_INACTIVE, LOAD_BALANCE_ACTIVE. See LoadBalanceStatus.class for more details.", "readOnly" : true }, "loadBalanceStrategy" : { "type" : "string", - "description" : "How to load balance the data in this Connection across the nodes in the cluster.", - "enum" : [ "DO_NOT_LOAD_BALANCE", "PARTITION_BY_ATTRIBUTE", "ROUND_ROBIN", "SINGLE_NODE" ] + "description" : "How to load balance the data in this Connection across the nodes in the cluster. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details." }, "name" : { "type" : "string", @@ -17303,6 +17418,17 @@ "description" : "The comparators used to prioritize the queue." } }, + "retriedRelationships" : { + "type" : "array", + "description" : "The relationships from the source of the connection that are configured to be retried.", + "items" : { + "type" : "string", + "description" : "The relationships from the source of the connection that are configured to be retried.", + "readOnly" : true + }, + "readOnly" : true, + "uniqueItems" : true + }, "selectedRelationships" : { "type" : "array", "description" : "The selected relationship that comprise the connection.", @@ -17654,13 +17780,18 @@ "type" : "string", "description" : "The input count/size for the connection in the last 5 minutes, pretty printed." }, + "loadBalanceStatus" : { + "type" : "string", + "description" : "The load balance status of the connection", + "enum" : [ "LOAD_BALANCE_NOT_CONFIGURED", "LOAD_BALANCE_ACTIVE", "LOAD_BALANCE_INACTIVE" ] + }, "name" : { "type" : "string", "description" : "The name of the connection." }, "output" : { "type" : "string", - "description" : "The output count/sie for the connection in the last 5 minutes, pretty printed." + "description" : "The output count/size for the connection in the last 5 minutes, pretty printed." }, "percentUseBytes" : { "type" : "integer", @@ -20739,7 +20870,7 @@ "lineageRequestType" : { "type" : "string", "description" : "The type of lineage request. PARENTS will return the lineage for the flowfiles that are parents of the specified event. CHILDREN will return the lineage for the flowfiles that are children of the specified event. FLOWFILE will return the lineage for the specified flowfile.", - "enum" : [ "PARENTS", "CHILDREN", "FLOWFILE", "PARENTS", "CHILDREN", "FLOWFILE" ] + "enum" : [ "PARENTS", "CHILDREN", "FLOWFILE" ] }, "uuid" : { "type" : "string", @@ -23750,8 +23881,7 @@ }, "backoffMechanism" : { "type" : "string", - "description" : "Determines whether the FlowFile should be penalized or the processor should be yielded between retries.", - "enum" : [ "PENALIZE_FLOWFILE", "YIELD_PROCESSOR" ] + "description" : "Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR. See BackoffMechanism.class for more details." }, "bulletinLevel" : { "type" : "string", @@ -25400,6 +25530,15 @@ "flowIdentifier" : { "type" : "string" }, + "flowName" : { + "type" : "string" + }, + "registryIdentifier" : { + "type" : "string" + }, + "registryName" : { + "type" : "string" + }, "timestamp" : { "type" : "integer", "format" : "int64" @@ -28014,13 +28153,11 @@ }, "loadBalanceCompression" : { "type" : "string", - "description" : "Whether or not compression should be used when transferring FlowFiles between nodes", - "enum" : [ "DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT" ] + "description" : "Whether or not compression should be used when transferring FlowFiles between nodes Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details." }, "loadBalanceStrategy" : { "type" : "string", - "description" : "The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified.", - "enum" : [ "DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE" ] + "description" : "The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details." }, "name" : { "type" : "string", @@ -28777,8 +28914,7 @@ }, "backoffMechanism" : { "type" : "string", - "description" : "Determines whether the FlowFile should be penalized or the processor should be yielded between retries.", - "enum" : [ "PENALIZE_FLOWFILE, YIELD_PROCESSOR" ] + "description" : "Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR." }, "bulletinLevel" : { "type" : "string", @@ -29057,8 +29193,7 @@ }, "transportProtocol" : { "type" : "string", - "description" : "The Transport Protocol that is used for Site-to-Site communications", - "enum" : [ "RAW, HTTP" ] + "description" : "The Transport Protocol that is used for Site-to-Site communications. Possible returned values: RAW, HTTP." }, "yieldDuration" : { "type" : "string", @@ -29217,6 +29352,20 @@ } } } + }, + "securitySchemes" : { + "CookieSecureAuthorizationBearer" : { + "description" : "JSON Web Token authentication with session cookie", + "in" : "cookie", + "name" : "__Secure-Authorization-Bearer", + "type" : "apiKey" + }, + "HTTPBearerJWT" : { + "bearerFormat" : "JWT", + "description" : "HTTP Bearer authentication with JSON Web Token", + "scheme" : "Bearer", + "type" : "http" + } } } } \ No newline at end of file diff --git a/resources/client_gen/api_defs/registry-2.5.0.json b/resources/client_gen/api_defs/registry-2.6.0.json similarity index 99% rename from resources/client_gen/api_defs/registry-2.5.0.json rename to resources/client_gen/api_defs/registry-2.6.0.json index 6571fa74..9a4b5e0d 100644 --- a/resources/client_gen/api_defs/registry-2.5.0.json +++ b/resources/client_gen/api_defs/registry-2.6.0.json @@ -11,7 +11,7 @@ "url" : "https://www.apache.org/licenses/LICENSE-2.0.html" }, "title" : "Apache NiFi Registry REST API", - "version" : "2.5.0" + "version" : "2.6.0" }, "paths" : { "/about" : { @@ -6139,13 +6139,11 @@ }, "loadBalanceCompression" : { "type" : "string", - "description" : "Whether or not compression should be used when transferring FlowFiles between nodes", - "enum" : [ "DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT" ] + "description" : "Whether or not compression should be used when transferring FlowFiles between nodes Possible returned values: DO_NOT_COMPRESS, COMPRESS_ATTRIBUTES_ONLY, COMPRESS_ATTRIBUTES_AND_CONTENT. See LoadBalanceCompression.class for more details." }, "loadBalanceStrategy" : { "type" : "string", - "description" : "The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified.", - "enum" : [ "DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE" ] + "description" : "The Strategy to use for load balancing data across the cluster, or null, if no Load Balance Strategy has been specified. Possible returned values: DO_NOT_LOAD_BALANCE, PARTITION_BY_ATTRIBUTE, ROUND_ROBIN, SINGLE_NODE. See LoadBalanceStrategy.class for more details." }, "name" : { "type" : "string", @@ -6903,8 +6901,7 @@ }, "backoffMechanism" : { "type" : "string", - "description" : "Determines whether the FlowFile should be penalized or the processor should be yielded between retries.", - "enum" : [ "PENALIZE_FLOWFILE, YIELD_PROCESSOR" ] + "description" : "Determines whether the FlowFile should be penalized or the processor should be yielded between retries. Possible returned values: PENALIZE_FLOWFILE, YIELD_PROCESSOR." }, "bulletinLevel" : { "type" : "string", @@ -7183,8 +7180,7 @@ }, "transportProtocol" : { "type" : "string", - "description" : "The Transport Protocol that is used for Site-to-Site communications", - "enum" : [ "RAW, HTTP" ] + "description" : "The Transport Protocol that is used for Site-to-Site communications. Possible returned values: RAW, HTTP." }, "yieldDuration" : { "type" : "string", diff --git a/resources/client_gen/swagger_templates/configuration.mustache b/resources/client_gen/swagger_templates/configuration.mustache index 827d4d77..111b3422 100644 --- a/resources/client_gen/swagger_templates/configuration.mustache +++ b/resources/client_gen/swagger_templates/configuration.mustache @@ -235,7 +235,15 @@ class Configuration(object): 'key': 'Authorization', 'value': 'Bearer ' + self.access_token }, -{{/isOAuth}}{{/authMethods}} +{{/isOAuth}}{{#isBearer}}{{^isBearerAuth}} + '{{name}}': + { + 'type': 'api_key', + 'in': 'header', + 'key': 'Authorization', + 'value': self.get_api_key_with_prefix('bearerAuth') + }, +{{/isBearerAuth}}{{/isBearer}}{{/authMethods}} } def to_debug_report(self):