Skip to content

ZosScratchRenameInfo

The ZosScratchRenamInfo object contains information about a component scratch or rename request in a package. You can obtain an array of ZosScratchRenamInfo objects using the GetScratchList, GetRenameList, or GetScratchRenameList methods of ZosPackage.

A ZosScratchRenamInfo object can represent either a scratch request or a rename request. You can determine the type of request by inspecting the NewComponentName property. The NewComponentName property is a null string for a scratch request; otherwise, the request is for a rename operation.

ZosScratchRename Properties

ZosScratchRenameInfo exposes the following properties:

Property Type R/W Description
Name String R File name for component, including file extension.
ComponentName String R Component name.
NewComponentName String R New component name for a rename operation. If NewComponentName is a null string, then this represents a scratch operation.
ComponentType String R Component type (library type).
LastWriteTime DateTime R Date and time component was last updated.
User String R Updater user ID
ComponentStatus ZosComponentStatus R Component status.

...

Back to top