UNPKG

@zowe/provisioning-for-zowe-sdk

Version:

Zowe SDK to interact with the z/OS provisioning APIs

45 lines 1.21 kB
import { IExplanationMap } from "@zowe/imperative"; /** * Interface for the response body returned from a registry create action. * @export * @interface ITemplateRegistryInfo */ export interface ITemplateRegistryInfo { /** * Name of the object. * @type {string} * @memberof ITemplateRegistryInfo */ "object-name": string; /** * ID of the object. * @type {string} * @memberof ITemplateRegistryInfo */ "object-id": string; /** * URI of the object. * @type {string} * @memberof ITemplateRegistryInfo */ "object-uri": string; /** * External name of the software services instance. * @type {string} * @memberof ITemplateRegistryInfo */ "external-name": string; /** * The name of the system entry in the system entry table of the software. * @type {string} * @memberof ITemplateRegistryInfo */ "system-nickname": string; } /** * Main explanation map object for summary output. * @type {IExplanationMap} * @memberof ITemplateRegistryInfo */ export declare const explainTemplateRegistryInfoResponse: IExplanationMap; //# sourceMappingURL=ITemplateRegistryInfo.d.ts.map