galileo_sdk.sdk.missions.MissionsSdk.get_mission_type_settings_info

MissionsSdk.get_mission_type_settings_info(mission_type_id)[source]

Gets the settings of a particular Mission Framework Type. Use the settings that are returned when creating or updating a Mission with Framework Type mission_type_id.

Parameters

mission_type_id – str: Mission Framework Type UUID

Returns

Dict[str, str]: a dictionary where the keys are the names of the settings you can provide and

the value is the type or options that are expected for that setting.

Example:

>>> mission_types = galileo.missions.list_mission_types()
>>> mission_type_id = mission_types[0].id
>>> my_mission_type = galileo.missions.get_mission_type(mission_type_id)
>>> my_mission_type_settings = galileo.missions.get_mission_type_settings_info(my_mission_type.id)
>>> for parameter in my_missin_type_settings:
>>>     print(parameter, my_mission_type_settings[parameter])