Package | Description |
---|---|
org.springframework.cloud.dataflow.rest.client |
Defines the operations of the Spring Cloud Data Flow REST Client.
|
org.springframework.cloud.dataflow.server.controller |
Spring Cloud Data Flow Server Controllers.
|
Modifier and Type | Method and Description |
---|---|
ScheduleInfoResource |
SchedulerTemplate.getSchedule(String scheduleName) |
ScheduleInfoResource |
SchedulerOperations.getSchedule(String scheduleName)
Retrieves the
ScheduleInfo for the specified ScheduleName for the default platform. |
ScheduleInfoResource |
SchedulerTemplate.getSchedule(String scheduleName,
String platform) |
ScheduleInfoResource |
SchedulerOperations.getSchedule(String scheduleName,
String platform)
Retrieves the
ScheduleInfo for the specified ScheduleName. |
Modifier and Type | Method and Description |
---|---|
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
SchedulerTemplate.list() |
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
SchedulerOperations.list()
List all of the Schedules for the default platform.
|
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
SchedulerTemplate.list(String taskDefinitionName) |
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
SchedulerOperations.list(String taskDefinitionName)
List all of the Schedules associated with the provided TaskDefinition for the default platform.
|
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
SchedulerTemplate.list(String taskDefinitionName,
String platform) |
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
SchedulerOperations.list(String taskDefinitionName,
String platform)
List all of the Schedules associated with the provided TaskDefinition.
|
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
SchedulerTemplate.listByPlatform(String platform) |
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
SchedulerOperations.listByPlatform(String platform)
List all of the schedules registered with the system.
|
Modifier and Type | Method and Description |
---|---|
ScheduleInfoResource |
TaskSchedulerController.getSchedule(String scheduleName,
String platform)
Return a
ScheduleInfo for a specific Schedule. |
Modifier and Type | Method and Description |
---|---|
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
TaskSchedulerController.filteredList(String taskDefinitionName,
String platform,
org.springframework.data.web.PagedResourcesAssembler<org.springframework.cloud.deployer.spi.scheduler.ScheduleInfo> assembler)
Return a page-able list of
ScheduleInfo s for a specific
TaskDefinition name. |
org.springframework.hateoas.PagedModel<ScheduleInfoResource> |
TaskSchedulerController.list(org.springframework.data.domain.Pageable pageable,
String platform,
org.springframework.data.web.PagedResourcesAssembler<org.springframework.cloud.deployer.spi.scheduler.ScheduleInfo> assembler)
Return a page-able list of
ScheduleInfo s. |
Copyright © 2024 Pivotal Software, Inc.. All rights reserved.