UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

43 lines (35 loc) 1.38 kB
// 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/BulkHeadTransport.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 InboundBulkHead */ export interface InboundBulkHead { kind?: string | undefined; apiVersion?: | string | undefined; /** common metadata to identify a specific asset in the files */ metadata?: Metadata | undefined; kindEnum?: InboundBulkHead_KindEnums | undefined; spec?: InboundBulkHead_Spec | undefined; } /** Kind id supported for InboundBulkHead */ export enum InboundBulkHead_KindEnums { InboundBulkHead = "InboundBulkHead", } export interface InboundBulkHead_EnableBulkheadForCallbacks { maxConcurrentCallbacks?: string | undefined; } export interface InboundBulkHead_RetryAfterResponseHeader { retryAfterValue?: string | undefined; } /** The Spec is used to define the InboundBulkHead */ export interface InboundBulkHead_Spec { maxConcurrentCalls?: string | undefined; enableBulkheadForCallbacks?: InboundBulkHead_EnableBulkheadForCallbacks | undefined; retryAfterResponseHeader?: InboundBulkHead_RetryAfterResponseHeader | undefined; }