UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

34 lines (28 loc) 975 B
// 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/Transport.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 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 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; }