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.85 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on an fortios system smsserver */ export declare function getSmsserver(args: GetSmsserverArgs, opts?: pulumi.InvokeOptions): Promise<GetSmsserverResult>; /** * A collection of arguments for invoking getSmsserver. */ export interface GetSmsserverArgs { /** * Specify the name of the desired system smsserver. */ 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 getSmsserver. */ export interface GetSmsserverResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Email-to-SMS server domain name. */ readonly mailServer: string; /** * Name of SMS server. */ readonly name: string; readonly vdomparam?: string; } /** * Use this data source to get information on an fortios system smsserver */ export declare function getSmsserverOutput(args: GetSmsserverOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSmsserverResult>; /** * A collection of arguments for invoking getSmsserver. */ export interface GetSmsserverOutputArgs { /** * Specify the name of the desired system smsserver. */ 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>; }