vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface RetrieveRequest

    interface RetrieveRequest {
        apiVersion: string | number;
        packageNames?: string[];
        singlePackage?: boolean;
        specificFiles?: string[];
        unpackaged?: RetrievePackage;
    }
    Index

    Properties

    apiVersion: string | number
    packageNames?: string[]

    A list of package names to be retrieved. If you are retrieving only unpackaged components, do not specify a name here. You can retrieve packaged and unpackaged components in the same retrieve.

    singlePackage?: boolean

    Specifies whether only a single package is being retrieved (true) or not (false). If false, then more than one package is being retrieved.

    specificFiles?: string[]

    A list of file names to be retrieved. If a value is specified for this property, packageNames must be set to null and singlePackage must be set to true.

    unpackaged?: RetrievePackage

    A list of components to retrieve that are not in a package.