Selecting an Existing Schedule to Associate with a Volume
Explains how to associate an existing schedule with a volume using the Control System, the CLI, or the REST API.
Selecting an Existing Schedule Using the Control System
Procedure
- Log in to the Control System and go to Summary tab in the volume details page.
- Click the (associated with the type of schedule in the Schedules pane) to display the Edit Schedules window.
- Review the name and detail of each schedule and select a schedule from the list.
- Click Save Changes to associate the schedule with the volume.
Selecting an Existing Schedule Using the CLI and REST API
About this task
You can associate a schedule with a volume using the
schedule
parameter when creating or editing a
volume. For example:
maprcli volume create -name <volName> -path <mountPath> -schedule <scheduleID>
maprcli volume modify -name <volName> -schedule <scheduleID>
You can associate a schedule with a volume using the
schedule
parameter when creating or editing a
volume. Send a request of type POST. For example:
curl -X POST 'https://<hostname>:8443/rest/volume/create?name=<volName>&path=<volPath>&schedule=<scheduleID>' --user <username>:<password>
curl -X POST 'https://<hostname>:8443/rest/volume/modify?name=<volName>&schedule=<scheduleID>' --user <username>:<password>
volume create
and volume modify.