/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/Address.ts (2366B)
// Original file: proto/channelz.proto import type { Any as _google_protobuf_Any, Any__Output as _google_protobuf_Any__Output } from '../../../google/protobuf/Any'; /** * An address type not included above. */ export interface _grpc_channelz_v1_Address_OtherAddress { /** * The human readable version of the value. This value should be set. */ 'name'?: (string); /** * The actual address message. */ 'value'?: (_google_protobuf_Any | null); } /** * An address type not included above. */ export interface _grpc_channelz_v1_Address_OtherAddress__Output { /** * The human readable version of the value. This value should be set. */ 'name': (string); /** * The actual address message. */ 'value': (_google_protobuf_Any__Output | null); } export interface _grpc_channelz_v1_Address_TcpIpAddress { /** * Either the IPv4 or IPv6 address in bytes. Will be either 4 bytes or 16 * bytes in length. */ 'ip_address'?: (Buffer | Uint8Array | string); /** * 0-64k, or -1 if not appropriate. */ 'port'?: (number); } export interface _grpc_channelz_v1_Address_TcpIpAddress__Output { /** * Either the IPv4 or IPv6 address in bytes. Will be either 4 bytes or 16 * bytes in length. */ 'ip_address': (Buffer); /** * 0-64k, or -1 if not appropriate. */ 'port': (number); } /** * A Unix Domain Socket address. */ export interface _grpc_channelz_v1_Address_UdsAddress { 'filename'?: (string); } /** * A Unix Domain Socket address. */ export interface _grpc_channelz_v1_Address_UdsAddress__Output { 'filename': (string); } /** * Address represents the address used to create the socket. */ export interface Address { 'tcpip_address'?: (_grpc_channelz_v1_Address_TcpIpAddress | null); 'uds_address'?: (_grpc_channelz_v1_Address_UdsAddress | null); 'other_address'?: (_grpc_channelz_v1_Address_OtherAddress | null); 'address'?: "tcpip_address"|"uds_address"|"other_address"; } /** * Address represents the address used to create the socket. */ export interface Address__Output { 'tcpip_address'?: (_grpc_channelz_v1_Address_TcpIpAddress__Output | null); 'uds_address'?: (_grpc_channelz_v1_Address_UdsAddress__Output | null); 'other_address'?: (_grpc_channelz_v1_Address_OtherAddress__Output | null); 'address': "tcpip_address"|"uds_address"|"other_address"; }