@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
67 lines (66 loc) • 2.52 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information on fortios system vdomsflow
*/
export declare function getVdomsflow(args?: GetVdomsflowArgs, opts?: pulumi.InvokeOptions): Promise<GetVdomsflowResult>;
/**
* A collection of arguments for invoking getVdomsflow.
*/
export interface GetVdomsflowArgs {
/**
* 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 getVdomsflow.
*/
export interface GetVdomsflowResult {
/**
* IP addresses of the sFlow collectors that sFlow agents added to interfaces in this VDOM send sFlow datagrams to.
*/
readonly collectorIp: string;
/**
* UDP port number used for sending sFlow datagrams (configure only if required by your sFlow collector or your network configuration) (0 - 65535, default = 6343).
*/
readonly collectorPort: number;
/**
* sFlow collectors. The structure of `collectors` block is documented below.
*/
readonly collectors: outputs.system.GetVdomsflowCollector[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Specify outgoing interface to reach server.
*/
readonly interface: string;
/**
* Specify how to select outgoing interface to reach server.
*/
readonly interfaceSelectMethod: string;
/**
* Source IP address for sFlow agent.
*/
readonly sourceIp: string;
/**
* Enable/disable the sFlow configuration for the current VDOM.
*/
readonly vdomSflow: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on fortios system vdomsflow
*/
export declare function getVdomsflowOutput(args?: GetVdomsflowOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVdomsflowResult>;
/**
* A collection of arguments for invoking getVdomsflow.
*/
export interface GetVdomsflowOutputArgs {
/**
* 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>;
}