UNPKG

@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.25 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to get information on fortios router multicast */ export declare function getMulticast(args?: GetMulticastArgs, opts?: pulumi.InvokeOptions): Promise<GetMulticastResult>; /** * A collection of arguments for invoking getMulticast. */ export interface GetMulticastArgs { /** * 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 getMulticast. */ export interface GetMulticastResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * PIM interfaces. The structure of `interface` block is documented below. */ readonly interfaces: outputs.router.GetMulticastInterface[]; /** * Enable/disable IP multicast routing. */ readonly multicastRouting: string; /** * PIM sparse-mode global settings. The structure of `pimSmGlobal` block is documented below. */ readonly pimSmGlobals: outputs.router.GetMulticastPimSmGlobal[]; /** * Maximum number of multicast routes. */ readonly routeLimit: number; /** * Generate warnings when the number of multicast routes exceeds this number, must not be greater than route-limit. */ readonly routeThreshold: number; readonly vdomparam?: string; } /** * Use this data source to get information on fortios router multicast */ export declare function getMulticastOutput(args?: GetMulticastOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetMulticastResult>; /** * A collection of arguments for invoking getMulticast. */ export interface GetMulticastOutputArgs { /** * 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>; }