UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

54 lines (53 loc) 1.95 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios system autoinstall */ export declare function getAutoinstall(args?: GetAutoinstallArgs, opts?: pulumi.InvokeOptions): Promise<GetAutoinstallResult>; /** * A collection of arguments for invoking getAutoinstall. */ export interface GetAutoinstallArgs { /** * Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: string; } /** * A collection of values returned by getAutoinstall. */ export interface GetAutoinstallResult { /** * Enable/disable auto install the config in USB disk. */ readonly autoInstallConfig: string; /** * Enable/disable auto install the image in USB disk. */ readonly autoInstallImage: string; /** * Default config file name in USB disk. */ readonly defaultConfigFile: string; /** * Default image file name in USB disk. */ readonly defaultImageFile: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly vdomparam?: string; } /** * Use this data source to get information on fortios system autoinstall */ export declare function getAutoinstallOutput(args?: GetAutoinstallOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAutoinstallResult>; /** * A collection of arguments for invoking getAutoinstall. */ export interface GetAutoinstallOutputArgs { /** * Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: pulumi.Input<string>; }