@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
59 lines (58 loc) • 2.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information on an fortios router multicastflow
*/
export declare function getMulticastflow(args: GetMulticastflowArgs, opts?: pulumi.InvokeOptions): Promise<GetMulticastflowResult>;
/**
* A collection of arguments for invoking getMulticastflow.
*/
export interface GetMulticastflowArgs {
/**
* Specify the name of the desired router multicastflow.
*/
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 getMulticastflow.
*/
export interface GetMulticastflowResult {
/**
* Comment.
*/
readonly comments: string;
/**
* Multicast-flow entries. The structure of `flows` block is documented below.
*/
readonly flows: outputs.router.GetMulticastflowFlow[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Name.
*/
readonly name: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios router multicastflow
*/
export declare function getMulticastflowOutput(args: GetMulticastflowOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetMulticastflowResult>;
/**
* A collection of arguments for invoking getMulticastflow.
*/
export interface GetMulticastflowOutputArgs {
/**
* Specify the name of the desired router multicastflow.
*/
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>;
}