@apistudio/apim-cli
Version:
CLI for API Management Products
21 lines • 824 B
TypeScript
import { type Metadata } from "../../common/Metadata.js";
/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */
/** The transport related information is captured in the message Transport */
export interface Transport {
kind?: string | undefined;
apiVersion?: string | undefined;
/** common metadata to identify a specific asset in the files */
metadata?: Metadata | undefined;
kindEnum?: Transport_KindEnums | undefined;
spec?: Transport_Spec | undefined;
}
/** Kind id supported for Routing */
export declare enum Transport_KindEnums {
Transport = "Transport"
}
/** The Spec is used to define the list of protocol */
export interface Transport_Spec {
/** Multiple instance of protocol can be given */
protocol?: string[] | undefined;
}
//# sourceMappingURL=Transport.d.ts.map