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.78 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on an fortios system alias */ export declare function getAlias(args: GetAliasArgs, opts?: pulumi.InvokeOptions): Promise<GetAliasResult>; /** * A collection of arguments for invoking getAlias. */ export interface GetAliasArgs { /** * Specify the name of the desired system alias. */ name: string; /** * 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 getAlias. */ export interface GetAliasResult { /** * Command list to execute. */ readonly command: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Alias command name. */ readonly name: string; readonly vdomparam?: string; } /** * Use this data source to get information on an fortios system alias */ export declare function getAliasOutput(args: GetAliasOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAliasResult>; /** * A collection of arguments for invoking getAlias. */ export interface GetAliasOutputArgs { /** * Specify the name of the desired system alias. */ name: pulumi.Input<string>; /** * 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>; }