2023-10-31 14:03:31 +00:00
|
|
|
// package: stream
|
|
|
|
// file: stream/api_request.proto
|
2022-11-23 16:46:28 +00:00
|
|
|
|
|
|
|
import * as jspb from "google-protobuf";
|
|
|
|
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
|
|
import * as common_common_pb from "../common/common_pb";
|
|
|
|
import * as gw_gw_pb from "../gw/gw_pb";
|
|
|
|
|
2023-10-31 11:59:07 +00:00
|
|
|
export class ApiRequestLog extends jspb.Message {
|
2022-11-23 16:46:28 +00:00
|
|
|
getService(): string;
|
|
|
|
setService(value: string): void;
|
|
|
|
|
|
|
|
getMethod(): string;
|
|
|
|
setMethod(value: string): void;
|
|
|
|
|
|
|
|
getMetadataMap(): jspb.Map<string, string>;
|
|
|
|
clearMetadataMap(): void;
|
|
|
|
serializeBinary(): Uint8Array;
|
2023-10-31 11:59:07 +00:00
|
|
|
toObject(includeInstance?: boolean): ApiRequestLog.AsObject;
|
|
|
|
static toObject(includeInstance: boolean, msg: ApiRequestLog): ApiRequestLog.AsObject;
|
2022-11-23 16:46:28 +00:00
|
|
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
|
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
2023-10-31 11:59:07 +00:00
|
|
|
static serializeBinaryToWriter(message: ApiRequestLog, writer: jspb.BinaryWriter): void;
|
|
|
|
static deserializeBinary(bytes: Uint8Array): ApiRequestLog;
|
|
|
|
static deserializeBinaryFromReader(message: ApiRequestLog, reader: jspb.BinaryReader): ApiRequestLog;
|
2022-11-23 16:46:28 +00:00
|
|
|
}
|
|
|
|
|
2023-10-31 11:59:07 +00:00
|
|
|
export namespace ApiRequestLog {
|
2022-11-23 16:46:28 +00:00
|
|
|
export type AsObject = {
|
|
|
|
service: string,
|
|
|
|
method: string,
|
|
|
|
metadataMap: Array<[string, string]>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|