Easiest fix should be to add vmware to:
|
def get_version_map(sensor_versions: list): # pylint: disable=R0914 |
|
"""Create a mapping of all available sensor versions.""" |
|
version_map = { |
|
"windows": {}, |
|
"mac": {}, |
|
"linux": {} |
|
} |
|
|
Other suggestion might be just getting it dynamically based on the response first
Easiest fix should be to add vmware to:
falconpy/samples/sensor_download/download_sensor.py
Lines 87 to 94 in 4b7010e
Other suggestion might be just getting it dynamically based on the response first