startTso

@POST(value = "/zosmf/tsoApp/tso")
abstract fun startTso(    @Header(value = "Authorization") authorizationToken: String,     @Header(value = "Content-type") contentType: ContentType = ContentType.APP_JSON,     @Query(value = "proc") proc: String,     @Query(value = "chset") chset: String,     @Query(value = "cpage") cpage: String,     @Query(value = "rows") rows: Int,     @Query(value = "cols") cols: Int,     @Query(value = "acct") acct: String? = null,     @Query(value = "ugrp") ugrp: String? = null,     @Query(value = "rsize") rsize: Int? = null,     @Query(value = "appsessid") appsessid: String? = null,     @Query(value = "system") system: String? = null): Call<TsoResponse>

An API function to start a new TSO address space (session)

Return

a wrapped instance of TsoResponse

Parameters

authorizationToken

is a base 64 encoding representation of :

contentType

content type of the request

proc

a procedure name

chset

a charset which should be used

cpage

a codepage which should be used

rows

a number of rows available for a new session

cols

a number of columns available for a new session

acct

an account number

ugrp

an user group

rsize

a region size

appsessid

an application session identifier

system

a system name