UNPKG

@pulumiverse/fortios

Version:

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

70 lines (69 loc) 2.19 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on an fortios system dnsserver */ export declare function getDnsserver(args: GetDnsserverArgs, opts?: pulumi.InvokeOptions): Promise<GetDnsserverResult>; /** * A collection of arguments for invoking getDnsserver. */ export interface GetDnsserverArgs { /** * Specify the name of the desired system dnsserver. */ 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 getDnsserver. */ export interface GetDnsserverResult { /** * DNS filter profile. */ readonly dnsfilterProfile: string; /** * DNS over HTTPS. */ readonly doh: string; /** * Enable/disable DNS over QUIC/HTTP3/443 (default = disable). */ readonly doh3: string; /** * Enable/disable DNS over QUIC/853 (default = disable). */ readonly doq: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * DNS server mode. */ readonly mode: string; /** * DNS server name. */ readonly name: string; readonly vdomparam?: string; } /** * Use this data source to get information on an fortios system dnsserver */ export declare function getDnsserverOutput(args: GetDnsserverOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDnsserverResult>; /** * A collection of arguments for invoking getDnsserver. */ export interface GetDnsserverOutputArgs { /** * Specify the name of the desired system dnsserver. */ 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>; }