Describes the response structure returned by PAN-OS when querying URL categorization information. This response includes the command executed, the status of the request, and the categorization result.

interface TestUrlInfoResponse {
    response: {
        cmd: string;
        result: string;
        status: string;
    };
}

Properties

Properties

response: {
    cmd: string;
    result: string;
    status: string;
}

Contains the status of the request and the result payload with URL categorization details.

Type declaration

  • cmd: string

    The command string that was executed to obtain the URL information.

  • result: string

    The result of the URL categorization request, typically containing categorization details such as risk levels, URL category, and other relevant metadata.

  • status: string

    Indicates if the request to fetch URL information was successful ('success') or not ('error').

Generated using TypeDoc