/var/www/greso.tech/server/nsm/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1
NameSizeModeActions
Address.ts23660644editdlrm
Channel.ts28400644editdlrm
ChannelConnectivityState.ts12260644editdlrm
ChannelData.ts26670644editdlrm
ChannelRef.ts6720644editdlrm
ChannelTrace.ts16480644editdlrm
ChannelTraceEvent.ts30680644editdlrm
Channelz.ts174500644editdlrm
GetChannelRequest.ts4010644editdlrm
GetChannelResponse.ts6000644editdlrm
GetServerRequest.ts3930644editdlrm
GetServerResponse.ts5850644editdlrm
GetServerSocketsRequest.ts13810644editdlrm
GetServerSocketsResponse.ts12030644editdlrm
GetServersRequest.ts13020644editdlrm
GetServersResponse.ts11540644editdlrm
GetSocketRequest.ts7700644editdlrm
GetSocketResponse.ts5850644editdlrm
GetSubchannelRequest.ts4250644editdlrm
GetSubchannelResponse.ts6450644editdlrm
GetTopChannelsRequest.ts13200644editdlrm
GetTopChannelsResponse.ts11770644editdlrm
Security.ts23480644editdlrm
Server.ts15970644editdlrm
ServerData.ts18450644editdlrm
ServerRef.ts6720644editdlrm
Socket.ts23560644editdlrm
SocketData.ts58340644editdlrm
SocketOption.ts14310644editdlrm
SocketOptionLinger.ts8650644editdlrm
SocketOptionTcpInfo.ts20310644editdlrm
SocketOptionTimeout.ts6240644editdlrm
SocketRef.ts6600644editdlrm
Subchannel.ts29260644editdlrm
SubchannelRef.ts7080644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/@grpc/grpc-js/src/generated/grpc/channelz/v1/Channel.ts (2840B)
// Original file: proto/channelz.proto import type { ChannelRef as _grpc_channelz_v1_ChannelRef, ChannelRef__Output as _grpc_channelz_v1_ChannelRef__Output } from '../../../grpc/channelz/v1/ChannelRef'; import type { ChannelData as _grpc_channelz_v1_ChannelData, ChannelData__Output as _grpc_channelz_v1_ChannelData__Output } from '../../../grpc/channelz/v1/ChannelData'; import type { SubchannelRef as _grpc_channelz_v1_SubchannelRef, SubchannelRef__Output as _grpc_channelz_v1_SubchannelRef__Output } from '../../../grpc/channelz/v1/SubchannelRef'; import type { SocketRef as _grpc_channelz_v1_SocketRef, SocketRef__Output as _grpc_channelz_v1_SocketRef__Output } from '../../../grpc/channelz/v1/SocketRef'; /** * Channel is a logical grouping of channels, subchannels, and sockets. */ export interface Channel { /** * The identifier for this channel. This should bet set. */ 'ref'?: (_grpc_channelz_v1_ChannelRef | null); /** * Data specific to this channel. */ 'data'?: (_grpc_channelz_v1_ChannelData | null); /** * There are no ordering guarantees on the order of channel refs. * There may not be cycles in the ref graph. * A channel ref may be present in more than one channel or subchannel. */ 'channel_ref'?: (_grpc_channelz_v1_ChannelRef)[]; /** * At most one of 'channel_ref+subchannel_ref' and 'socket' is set. * There are no ordering guarantees on the order of subchannel refs. * There may not be cycles in the ref graph. * A sub channel ref may be present in more than one channel or subchannel. */ 'subchannel_ref'?: (_grpc_channelz_v1_SubchannelRef)[]; /** * There are no ordering guarantees on the order of sockets. */ 'socket_ref'?: (_grpc_channelz_v1_SocketRef)[]; } /** * Channel is a logical grouping of channels, subchannels, and sockets. */ export interface Channel__Output { /** * The identifier for this channel. This should bet set. */ 'ref': (_grpc_channelz_v1_ChannelRef__Output | null); /** * Data specific to this channel. */ 'data': (_grpc_channelz_v1_ChannelData__Output | null); /** * There are no ordering guarantees on the order of channel refs. * There may not be cycles in the ref graph. * A channel ref may be present in more than one channel or subchannel. */ 'channel_ref': (_grpc_channelz_v1_ChannelRef__Output)[]; /** * At most one of 'channel_ref+subchannel_ref' and 'socket' is set. * There are no ordering guarantees on the order of subchannel refs. * There may not be cycles in the ref graph. * A sub channel ref may be present in more than one channel or subchannel. */ 'subchannel_ref': (_grpc_channelz_v1_SubchannelRef__Output)[]; /** * There are no ordering guarantees on the order of sockets. */ 'socket_ref': (_grpc_channelz_v1_SocketRef__Output)[]; }