@apistudio/apim-cli
Version:
CLI for API Management Products
29 lines • 1.14 kB
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 InboundMessaging */
export interface InboundMessaging {
kind?: string | undefined;
apiVersion?: string | undefined;
/** common metadata to identify a specific asset in the files */
metadata?: Metadata | undefined;
kindEnum?: InboundMessaging_KindEnums | undefined;
spec?: InboundMessaging_Spec | undefined;
}
/** Kind id supported for InboundMessaging */
export declare enum InboundMessaging_KindEnums {
InboundMessaging = "InboundMessaging"
}
export interface InboundMessaging_Source {
name?: string | undefined;
type?: string | undefined;
selector?: string[] | undefined;
resource?: string | undefined;
httpMethod?: string | undefined;
contentType?: string | undefined;
}
/** The Spec is used to define the InboundMessaging */
export interface InboundMessaging_Spec {
alias?: string | undefined;
source?: InboundMessaging_Source[] | undefined;
}
//# sourceMappingURL=JMSAMQPTransport.d.ts.map