Method: LabClient::PipelineSchedules#show

Defined in:
lib/labclient/projects/pipeline_schedules/show.rb

#show(project_id, pipeline_schedule_id) ⇒ Object

Show Specific



14
15
16
17
18
# File 'lib/labclient/projects/pipeline_schedules/show.rb', line 14

def show(project_id, pipeline_schedule_id)
  pipeline_schedule_id = format_id(pipeline_schedule_id)
  project_id = format_id(project_id)
  client.request(:get, "projects/#{project_id}/pipeline_schedules/#{pipeline_schedule_id}", klass: PipelineSchedule)
end