getSchedule

On this page
Back to index

Summary

Retrieves a schedule by its name.
projectName
Stringrequired
The name for the project that must be unique among all projects.
scheduleName
Stringrequired
Name for the schedule; must be unique among all schedules for the project.

Usage

Groovy

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.getSchedule( projectName: "test-projectName", scheduleName: "test-scheduleName" )