ZosLibypeMapping
The ZosLibypeMapping object represents a single library type definition. This object can be obtained using the Item property of ZosLibypeMappings.
ZosLibypeMapping Properties
ZosLibypeMapping exposes the following properties:
Property | Type | R/W | Description |
---|---|---|---|
DataSetName | String | R | Data set name pattern. |
LibType | String | R | Library type: "S" (Standard), "L" (Librarian), or "P" (Panvalet). |
...
Examples of using ZosLibypeMapping.
Visual Basic or VBScript:
Dim objLibType
Dim strDataSetName
Dim strLibType
strDataSetName = objLibType.DataSetName
strLibType = objLibType.LibType
...
JScript:
var objLibType;
var strDataSetName;
var strLibType;
strDataSetName = objLibType.DataSetName;
strLibType = objLibType.LibType;
...