zap-cdk
    Preparing search index...

    Interface IOpenAPI

    IOpenAPI Represents the configuration for importing an OpenAPI definition.

    interface IOpenAPI {
        apiFile?: string;
        apiUrl?: string;
        context?: string;
        targetUrl?: string;
        user?: string;
    }
    Index

    Properties

    apiFile?: string

    Local file containing the OpenAPI definition, default: null.

    apiUrl?: string

    URL containing the OpenAPI definition, default: null.

    context?: string

    Context to use when importing the OpenAPI definition, default: first context.

    targetUrl?: string

    URL which overrides the target defined in the definition, default: null.

    user?: string

    Optional user for authentication, must be defined in the environment.