device.file_based.data_collection.file_generation_status

Operation: POST /dataservice/device/file-based/data-collection/file-generation-status

Device notify when file is ready and vManage has to download them

def post(
    payload: HandleFileGenerationStatusNotificationRequest,
) -> None: ...

Example:

from catalyswan.core import create_client

url = "example.com"
username = "admin"
password = "password123"

with create_client(
    url=url, username=username, password=password
) as client:
    client.device.file_based.data_collection.file_generation_status.post()