UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

28 lines 1.19 kB
import { type Any } from "google-protobuf/google/protobuf/any_pb.js"; import { type Metadata } from "../../common/Metadata.js"; /** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ /** The Log Invocation related information is captured in the message LogInvocation */ export interface LogInvocation { kind?: string | undefined; apiVersion?: string | undefined; /** common metadata to identify a specific asset in the files */ metadata?: Metadata | undefined; kindEnum?: LogInvocation_KindEnums | undefined; spec?: LogInvocation_Spec | undefined; } /** Kind id supported for Log */ export declare enum LogInvocation_KindEnums { Log = "Log" } /** The Spec is used to define the list of log invocation information */ export interface LogInvocation_Spec { enabled?: boolean | undefined; logRequestHeaders?: boolean | undefined; logResponseHeaders?: boolean | undefined; logRequestPayload?: boolean | undefined; logResponsePayload?: boolean | undefined; compressPayloads?: boolean | undefined; logGenerationFrequency?: string | undefined; destination?: Any[] | undefined; } //# sourceMappingURL=LogInvocation.d.ts.map