@lubyou/pulumi-fortios
Version:
A Pulumi package for creating and managing fortios cloud resources.
30 lines (29 loc) • 1.1 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare function getSystemSessionHelperList(args?: GetSystemSessionHelperListArgs, opts?: pulumi.InvokeOptions): Promise<GetSystemSessionHelperListResult>;
/**
* A collection of arguments for invoking GetSystemSessionHelperList.
*/
export interface GetSystemSessionHelperListArgs {
filter?: string;
vdomparam?: string;
}
/**
* A collection of values returned by GetSystemSessionHelperList.
*/
export interface GetSystemSessionHelperListResult {
readonly filter?: string;
readonly fosidlists: number[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly vdomparam?: string;
}
export declare function getSystemSessionHelperListOutput(args?: GetSystemSessionHelperListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSystemSessionHelperListResult>;
/**
* A collection of arguments for invoking GetSystemSessionHelperList.
*/
export interface GetSystemSessionHelperListOutputArgs {
filter?: pulumi.Input<string>;
vdomparam?: pulumi.Input<string>;
}