JobServiceResponse

data class JobServiceResponse(val endpoint: String? = null, val errorMessage: String, val jobServiceType: String? = null, val nodes: AllNodesResponse? = null, val port: Int? = null, val properties: Map<String, String>? = null, val status: String)

Job endpoint definition

Constructors

Link copied to clipboard
constructor(endpoint: String? = null, errorMessage: String, jobServiceType: String? = null, nodes: AllNodesResponse? = null, port: Int? = null, properties: Map<String, String>? = null, status: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val endpoint: String? = null

Url for endpoint.

Link copied to clipboard

Any error in the service.

Link copied to clipboard
val jobServiceType: String? = null

Endpoint type.

Link copied to clipboard
val nodes: AllNodesResponse? = null

Nodes that user would like to start the service on. If Nodes is not set or set to null, the service will only be started on leader node.

Link copied to clipboard
val port: Int? = null

Port for endpoint.

Link copied to clipboard
val properties: Map<String, String>? = null

Additional properties to set on the endpoint.

Link copied to clipboard

Status of endpoint.