JobServiceArgs

data class JobServiceArgs(val endpoint: Output<String>? = null, val jobServiceType: Output<String>? = null, val nodes: Output<AllNodesArgs>? = null, val port: Output<Int>? = null, val properties: Output<Map<String, String>>? = null) : ConvertibleToJava<JobServiceArgs>

Job endpoint definition

Constructors

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

Properties

Link copied to clipboard
val endpoint: Output<String>? = null

Url for endpoint.

Link copied to clipboard
val jobServiceType: Output<String>? = null

Endpoint type.

Link copied to clipboard
val nodes: Output<AllNodesArgs>? = 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: Output<Int>? = null

Port for endpoint.

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

Additional properties to set on the endpoint.

Functions

Link copied to clipboard
open override fun toJava(): JobServiceArgs