@apistudio/apim-cli
Version:
CLI for API Management Products
43 lines (36 loc) • 1.28 kB
text/typescript
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
// protoc-gen-ts_proto v2.6.1
// protoc v3.17.1
// source: policy/transport/JMSAMQPTransport.proto
/* eslint-disable */
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 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;
}