import { type Metadata } from "../../common/Metadata.js";
/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */
/** The Context Variablemrelated information is captured in the message WebMethodsISService. */
export interface WebMethodsISService {
    kind?: string | undefined;
    apiVersion?: string | undefined;
    /** common metadata to identify a specific asset in the files */
    metadata?: Metadata | undefined;
    kindEnum?: WebMethodsISService_KindEnums | undefined;
    spec?: WebMethodsISService_Spec | undefined;
}
/** Kind id supported for WebMethodsISService */
export declare enum WebMethodsISService_KindEnums {
    WebMethodsISService = "WebMethodsISService"
}
/** The message specified the information related to Service */
export interface WebMethodsISService_Services {
    name?: string | undefined;
    runAs?: string | undefined;
    complyToISSpec?: boolean | undefined;
}
/** The Spec is used to define the list of variables and namespaces */
export interface WebMethodsISService_Spec {
    enabled?: boolean | undefined;
    condition?: string | undefined;
    /** Multiple instances of Service can be given */
    services?: WebMethodsISService_Services[] | undefined;
    alias?: string | undefined;
}
//# sourceMappingURL=WebMethodsISService.d.ts.map