@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
131 lines (130 loc) • 3.76 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information on an fortios system ddns
*/
export declare function getDdns(args: GetDdnsArgs, opts?: pulumi.InvokeOptions): Promise<GetDdnsResult>;
/**
* A collection of arguments for invoking getDdns.
*/
export interface GetDdnsArgs {
/**
* Specify the ddnsid of the desired system ddns.
*/
ddnsid: number;
/**
* 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 getDdns.
*/
export interface GetDdnsResult {
/**
* Address type of interface address in DDNS update.
*/
readonly addrType: string;
/**
* Bound IP address.
*/
readonly boundIp: string;
/**
* Enable/disable use of clear text connections.
*/
readonly clearText: string;
/**
* Enable/disable TSIG authentication for your DDNS server.
*/
readonly ddnsAuth: string;
/**
* Your fully qualified domain name (for example, yourname.DDNS.com).
*/
readonly ddnsDomain: string;
/**
* DDNS update key (base 64 encoding).
*/
readonly ddnsKey: string;
/**
* DDNS update key name.
*/
readonly ddnsKeyname: string;
/**
* DDNS password.
*/
readonly ddnsPassword: string;
/**
* Select a DDNS service provider.
*/
readonly ddnsServer: string;
/**
* Generic DDNS server IP/FQDN list. The structure of `ddnsServerAddr` block is documented below.
*/
readonly ddnsServerAddrs: outputs.system.GetDdnsDdnsServerAddr[];
/**
* Generic DDNS server IP.
*/
readonly ddnsServerIp: string;
/**
* DDNS Serial Number.
*/
readonly ddnsSn: string;
/**
* Time-to-live for DDNS packets.
*/
readonly ddnsTtl: number;
/**
* DDNS user name.
*/
readonly ddnsUsername: string;
/**
* Zone of your domain name (for example, DDNS.com).
*/
readonly ddnsZone: string;
/**
* DDNS ID.
*/
readonly ddnsid: number;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Monitored interface. The structure of `monitorInterface` block is documented below.
*/
readonly monitorInterfaces: outputs.system.GetDdnsMonitorInterface[];
/**
* Address type of the DDNS server.
*/
readonly serverType: string;
/**
* Name of local certificate for SSL connections.
*/
readonly sslCertificate: string;
/**
* DDNS update interval (60 - 2592000 sec, default = 300).
*/
readonly updateInterval: number;
/**
* Enable/disable use of public IP address.
*/
readonly usePublicIp: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios system ddns
*/
export declare function getDdnsOutput(args: GetDdnsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDdnsResult>;
/**
* A collection of arguments for invoking getDdns.
*/
export interface GetDdnsOutputArgs {
/**
* Specify the ddnsid of the desired system ddns.
*/
ddnsid: pulumi.Input<number>;
/**
* 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>;
}