@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
47 lines (46 loc) • 1.78 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information on fortios system ndproxy
*/
export declare function getNdproxy(args?: GetNdproxyArgs, opts?: pulumi.InvokeOptions): Promise<GetNdproxyResult>;
/**
* A collection of arguments for invoking getNdproxy.
*/
export interface GetNdproxyArgs {
/**
* 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 getNdproxy.
*/
export interface GetNdproxyResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Interfaces using the neighbor discovery proxy. The structure of `member` block is documented below.
*/
readonly members: outputs.system.GetNdproxyMember[];
/**
* Enable/disable neighbor discovery proxy.
*/
readonly status: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on fortios system ndproxy
*/
export declare function getNdproxyOutput(args?: GetNdproxyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNdproxyResult>;
/**
* A collection of arguments for invoking getNdproxy.
*/
export interface GetNdproxyOutputArgs {
/**
* 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>;
}