@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.23 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source to get information on an fortios system ipv6tunnel
*/
export declare function getIpv6tunnel(args: GetIpv6tunnelArgs, opts?: pulumi.InvokeOptions): Promise<GetIpv6tunnelResult>;
/**
* A collection of arguments for invoking getIpv6tunnel.
*/
export interface GetIpv6tunnelArgs {
/**
* Specify the name of the desired system ipv6tunnel.
*/
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 getIpv6tunnel.
*/
export interface GetIpv6tunnelResult {
/**
* Enable/disable tunnel ASIC offloading.
*/
readonly autoAsicOffload: string;
/**
* Remote IPv6 address of the tunnel.
*/
readonly destination: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Interface name.
*/
readonly interface: string;
/**
* IPv6 tunnel name.
*/
readonly name: string;
/**
* Local IPv6 address of the tunnel.
*/
readonly source: string;
/**
* Enable/disable use of SD-WAN to reach remote gateway.
*/
readonly useSdwan: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios system ipv6tunnel
*/
export declare function getIpv6tunnelOutput(args: GetIpv6tunnelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetIpv6tunnelResult>;
/**
* A collection of arguments for invoking getIpv6tunnel.
*/
export interface GetIpv6tunnelOutputArgs {
/**
* Specify the name of the desired system ipv6tunnel.
*/
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>;
}