import * as pulumi from "@pulumi/pulumi"; export declare function getJSONGenericAPI(args: GetJSONGenericAPIArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetJSONGenericAPI. */ export interface GetJSONGenericAPIArgs { path: string; specialparams?: string; vdomparam?: string; } /** * A collection of values returned by GetJSONGenericAPI. */ export interface GetJSONGenericAPIResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly path: string; readonly response: string; readonly specialparams?: string; readonly vdomparam?: string; } export declare function getJSONGenericAPIOutput(args: GetJSONGenericAPIOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetJSONGenericAPI. */ export interface GetJSONGenericAPIOutputArgs { path: pulumi.Input; specialparams?: pulumi.Input; vdomparam?: pulumi.Input; }