public static interface DataSet.Builder extends SdkPojo, CopyableBuilder<DataSet.Builder,DataSet>
| Modifier and Type | Method and Description |
|---|---|
DataSet.Builder |
datasetName(String datasetName)
The logical identifier for a specific data set (in mainframe format).
|
default DataSet.Builder |
datasetOrg(Consumer<DatasetOrgAttributes.Builder> datasetOrg)
The type of dataset.
|
DataSet.Builder |
datasetOrg(DatasetOrgAttributes datasetOrg)
The type of dataset.
|
default DataSet.Builder |
recordLength(Consumer<RecordLength.Builder> recordLength)
The length of a record.
|
DataSet.Builder |
recordLength(RecordLength recordLength)
The length of a record.
|
DataSet.Builder |
relativePath(String relativePath)
The relative location of the data set in the database or file system.
|
DataSet.Builder |
storageType(String storageType)
The storage type of the data set: database or file system.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildDataSet.Builder datasetName(String datasetName)
The logical identifier for a specific data set (in mainframe format).
datasetName - The logical identifier for a specific data set (in mainframe format).DataSet.Builder datasetOrg(DatasetOrgAttributes datasetOrg)
The type of dataset. The only supported value is VSAM.
datasetOrg - The type of dataset. The only supported value is VSAM.default DataSet.Builder datasetOrg(Consumer<DatasetOrgAttributes.Builder> datasetOrg)
The type of dataset. The only supported value is VSAM.
This is a convenience method that creates an instance of theDatasetOrgAttributes.Builder avoiding
the need to create one manually via DatasetOrgAttributes.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to datasetOrg(DatasetOrgAttributes).
datasetOrg - a consumer that will call methods on DatasetOrgAttributes.BuilderdatasetOrg(DatasetOrgAttributes)DataSet.Builder recordLength(RecordLength recordLength)
The length of a record.
recordLength - The length of a record.default DataSet.Builder recordLength(Consumer<RecordLength.Builder> recordLength)
The length of a record.
This is a convenience method that creates an instance of theRecordLength.Builder avoiding the need
to create one manually via RecordLength.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to recordLength(RecordLength).
recordLength - a consumer that will call methods on RecordLength.BuilderrecordLength(RecordLength)DataSet.Builder relativePath(String relativePath)
The relative location of the data set in the database or file system.
relativePath - The relative location of the data set in the database or file system.DataSet.Builder storageType(String storageType)
The storage type of the data set: database or file system. For Micro Focus, database corresponds to datastore and file system corresponds to EFS/FSX. For Blu Age, there is no support of file system and database corresponds to Blusam.
storageType - The storage type of the data set: database or file system. For Micro Focus, database corresponds to
datastore and file system corresponds to EFS/FSX. For Blu Age, there is no support of file system and
database corresponds to Blusam.Copyright © 2023. All rights reserved.