UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

55 lines (54 loc) 2.13 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to get information on fortios router multicast6 */ export declare function getMulticast6(args?: GetMulticast6Args, opts?: pulumi.InvokeOptions): Promise<GetMulticast6Result>; /** * A collection of arguments for invoking getMulticast6. */ export interface GetMulticast6Args { /** * 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 getMulticast6. */ export interface GetMulticast6Result { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Protocol Independent Multicast (PIM) interfaces. The structure of `interface` block is documented below. */ readonly interfaces: outputs.router.GetMulticast6Interface[]; /** * Enable/disable PMTU for IPv6 multicast. */ readonly multicastPmtu: string; /** * Enable/disable IPv6 multicast routing. */ readonly multicastRouting: string; /** * PIM sparse-mode global settings. The structure of `pimSmGlobal` block is documented below. */ readonly pimSmGlobals: outputs.router.GetMulticast6PimSmGlobal[]; readonly vdomparam?: string; } /** * Use this data source to get information on fortios router multicast6 */ export declare function getMulticast6Output(args?: GetMulticast6OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetMulticast6Result>; /** * A collection of arguments for invoking getMulticast6. */ export interface GetMulticast6OutputArgs { /** * 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>; }