schedule

Operation: GET /dataservice/schedule/{schedulerId}

Get a schedule record for backup by scheduler id

def get_schedule_record_for_backup(scheduler_id: str) -> Any: ...

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.schedule.get_schedule_record_for_backup()

Operation: DELETE /dataservice/schedule/{schedulerId}

Delete a schedule record for backup in vManage by scheduler id

def delete_schedule(scheduler_id: str) -> Any: ...

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.schedule.delete_schedule()