CreateDataset

data class CreateDataset(    var volumeSerial: String? = null,     var deviceType: String? = null,     var datasetOrganization: DatasetOrganization,     var allocationUnit: AllocationUnit? = null,     var primaryAllocation: Int,     var secondaryAllocation: Int,     var directoryBlocks: Int? = null,     var recordFormat: RecordFormat,     var blockSize: Int? = null,     var recordLength: Int? = null,     var storageClass: String? = null,     var managementClass: String? = null,     var dataClass: String? = null,     var averageBlockLength: Int? = null,     var dsnType: DsnameType? = null,     var datasetModel: String? = null)

Constructors

Link copied to clipboard
fun CreateDataset(    volumeSerial: String? = null,     deviceType: String? = null,     datasetOrganization: DatasetOrganization,     allocationUnit: AllocationUnit? = null,     primaryAllocation: Int,     secondaryAllocation: Int,     directoryBlocks: Int? = null,     recordFormat: RecordFormat,     blockSize: Int? = null,     recordLength: Int? = null,     storageClass: String? = null,     managementClass: String? = null,     dataClass: String? = null,     averageBlockLength: Int? = null,     dsnType: DsnameType? = null,     datasetModel: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "alcunit")
@Expose
var allocationUnit: AllocationUnit? = null
Link copied to clipboard
@SerializedName(value = "avgblk")
var averageBlockLength: Int? = null
Link copied to clipboard
@SerializedName(value = "blksize")
@Expose
var blockSize: Int? = null
Link copied to clipboard
@SerializedName(value = "dataclass")
@Expose
var dataClass: String? = null
Link copied to clipboard
@SerializedName(value = "like")
@Expose
var datasetModel: String? = null
Link copied to clipboard
@SerializedName(value = "dsorg")
@Expose
var datasetOrganization: DatasetOrganization
Link copied to clipboard
@SerializedName(value = "unit")
@Expose
var deviceType: String? = null
Link copied to clipboard
@SerializedName(value = "dirblk")
@Expose
var directoryBlocks: Int? = null
Link copied to clipboard
@SerializedName(value = "dsntype")
@Expose
var dsnType: DsnameType? = null
Link copied to clipboard
@SerializedName(value = "mgntclass")
@Expose
var managementClass: String? = null
Link copied to clipboard
@SerializedName(value = "primary")
var primaryAllocation: Int
Link copied to clipboard
@SerializedName(value = "recfm")
@Expose
var recordFormat: RecordFormat
Link copied to clipboard
@SerializedName(value = "lrecl")
@Expose
var recordLength: Int? = null
Link copied to clipboard
@SerializedName(value = "secondary")
@Expose
var secondaryAllocation: Int
Link copied to clipboard
@SerializedName(value = "storclass")
@Expose
var storageClass: String? = null
Link copied to clipboard
@SerializedName(value = "volser")
@Expose
var volumeSerial: String? = null